aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE.bazel
diff options
context:
space:
mode:
authorSadaf Ebrahimi <sadafebrahimi@google.com>2022-05-05 18:31:25 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-05-05 18:31:25 +0000
commitc3c511bc0332191977a83e153c70176913bd0ca0 (patch)
tree9ba69b307a17b6d4b5410fce4e058f24f99504d7 /WORKSPACE.bazel
parentd6854b78cd0ed8288f8d81970eff353d2176be24 (diff)
parent14aa962455d4270e2e2c0c0ee50ba63ccee2f100 (diff)
downloadantlr-c3c511bc0332191977a83e153c70176913bd0ca0.tar.gz
Merge "Updating antlr 3.5.2 to antlr 3.5.3" am: 49ada8cca6 am: 439abe4f67 am: 14aa962455
Original change: https://android-review.googlesource.com/c/platform/external/antlr/+/2086203 Change-Id: I71033c0ece79ca6cf64516c7596e56578db3067d Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'WORKSPACE.bazel')
-rw-r--r--WORKSPACE.bazel29
1 files changed, 29 insertions, 0 deletions
diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel
new file mode 100644
index 0000000..71ed40e
--- /dev/null
+++ b/WORKSPACE.bazel
@@ -0,0 +1,29 @@
+workspace(name = "antlr3")
+
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_jar")
+
+# This needs to be identical to the one used inhttps://github.com/antlr/stringtemplate4/blob/master/WORKSPACE.bazel.
+http_jar(
+ name = "antlr3_bootstrap",
+ sha256 = "46531814ba9739cdf20c6c1789c252d3d95b68932813d79fb8bbfdf8d5840417",
+ url = "http://www.antlr3.org/download/antlr-3.5.2-complete-no-st3.jar",
+)
+
+http_jar(
+ name = "junit",
+ sha256 = "8e495b634469d64fb8acfa3495a065cbacc8a0fff55ce1e31007be4c16dc57d3",
+ url = "https://repo1.maven.org/maven2/junit/junit/4.13.2/junit-4.13.2.jar",
+)
+
+http_jar(
+ name = "hamcrest_core",
+ sha256 = "66fdef91e9739348df7a096aa384a5685f4e875584cce89386a7a47251c4d8e9",
+ url = "https://repo1.maven.org/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar",
+)
+
+http_archive(
+ name = "stringtemplate4",
+ sha256 = "a91974e67013c1e68ef80794151dd66f04fc034cd3a9cf68af78867cd3067520",
+ strip_prefix = "stringtemplate4-139f34243e516fc9d2cc4db8eeaa825014d631cc",
+ url = "https://github.com/antlr/stringtemplate4/archive/139f34243e516fc9d2cc4db8eeaa825014d631cc.zip",
+)