aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE
diff options
context:
space:
mode:
authorDavid Neto <dneto@google.com>2019-09-07 12:52:37 -0400
committerDavid Neto <dneto@google.com>2019-09-07 12:52:37 -0400
commit291037172dcb79318a7d0214a194e985c9ad0d7b (patch)
treed58a7039f474073fcf1bbe32a958c55252f723c5 /WORKSPACE
parentb93cb2bdda93ed98f253b75a59582780c8460cc1 (diff)
parent6527fb25482ee16f0ae8c735d1d0c33f7d5f220a (diff)
downloadeffcee-ndk-r26-rc1.tar.gz
Includes: 6527fb2 Fail parsing checks if var def regexp is bad 0eb6499 Fail parsing checks if the regexp is bad. ecbc165 Add effcee-fuzz 3842fdc Add Bazel build rules. 4bef5db Require Python 3 8bf4e0a Add Clang warning -Wextra-semi Change-Id: If24758e51cfcc12826dd97550429502441d769e9 Testing: checkbuild.py on Linux
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE21
1 files changed, 21 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
new file mode 100644
index 0000000..8f2869b
--- /dev/null
+++ b/WORKSPACE
@@ -0,0 +1,21 @@
+workspace(name = "effcee")
+
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
+
+http_archive(
+ name = "rules_cc",
+ strip_prefix = "rules_cc-master",
+ urls = ["https://github.com/bazelbuild/rules_cc/archive/master.zip"],
+)
+
+http_archive(
+ name = "com_google_googletest",
+ strip_prefix = "googletest-master",
+ urls = ["https://github.com/google/googletest/archive/master.zip"],
+)
+
+http_archive(
+ name = "com_googlesource_code_re2",
+ strip_prefix = "re2-master",
+ urls = ["https://github.com/google/re2/archive/master.zip"],
+)