No public description PiperOrigin-RevId: 551047198 Change-Id: I97f4a299aa47597143a9e91e3fd0f83f9a8ebe69
diff --git a/BUILD.bazel b/BUILD.bazel index 31c5a6e..5231327 100644 --- a/BUILD.bazel +++ b/BUILD.bazel
@@ -1,5 +1,5 @@ # Bazel build rules for Fuzzyc. -load("@fuzzyc_deps//:requirements.bzl", "requirement") +load("@antlr4_deps//:requirements.bzl", "requirement") package(default_visibility = [ "//visibility:public", @@ -26,7 +26,7 @@ "ModuleBaseListener.h", ], cmd = " ".join([ - "$(locations @fuzzyc_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4) -v ", + "$(locations @antlr4_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4) -v ", ANTLR4_VERSION, " -o $(RULEDIR) -Dlanguage=Cpp -package fuzzyc_cc_module $(SRCS);", "find $(RULEDIR) \\( -name *.cpp -o -name *.h \\) -exec cp -n {} $(RULEDIR) \\;", @@ -34,7 +34,7 @@ local = True, tools = [ requirement("antlr4-tools"), - "@fuzzyc_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4", + "@antlr4_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4", ], ) @@ -57,7 +57,7 @@ "FunctionBaseListener.h", ], cmd = " ".join([ - "$(locations @fuzzyc_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4) -v ", + "$(locations @antlr4_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4) -v ", ANTLR4_VERSION, " -o $(RULEDIR) -Dlanguage=Cpp -package fuzzyc_cc_function $(SRCS);", "find $(RULEDIR) \\( -name *.cpp -o -name *.h \\) -exec cp -n {} $(RULEDIR) \\;", @@ -65,7 +65,7 @@ local = True, tools = [ requirement("antlr4-tools"), - "@fuzzyc_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4", + "@antlr4_deps_antlr4_tools//:rules_python_wheel_entry_point_antlr4", ], )
diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index 1a25216..39d590b 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel
@@ -19,11 +19,11 @@ # Install antlr4-tools to generate C++ Lexor and Parser. pip_parse( - name = "fuzzyc_deps", + name = "antlr4_deps", requirements_lock = "//:requirements_lock.txt", ) -load("@fuzzyc_deps//:requirements.bzl", "install_deps") +load("@antlr4_deps//:requirements.bzl", "install_deps") install_deps() # Antlr4 CC Runtime Library.