aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-02-17 15:17:05 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-02-17 15:17:05 -0800
commit19f3ea2c204794e7eabc5bbc34fde3328fedb22a (patch)
treeac245bb8bd0a8117656fad026cdbfa7d82834c8c /WORKSPACE
parentbbc1eb00a86fdd5d3bea0ede8060563f45a4188e (diff)
Start bringing microbenchmarks to Bazel
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE11
1 files changed, 11 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 4f90f06d88..b92986127b 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -33,6 +33,11 @@ bind(
actual = "@submodule_gtest//:gtest",
)
+bind(
+ name = "benchmark",
+ actual = "@submodule_benchmark//:benchmark",
+)
+
new_local_repository(
name = "submodule_boringssl",
path = "third_party/boringssl-with-bazel",
@@ -56,3 +61,9 @@ new_local_repository(
path = "third_party/googletest",
build_file = "third_party/gtest.BUILD",
)
+
+new_local_repository(
+ name = "submodule_benchmark",
+ path = "third_party/benchmark",
+ build_file = "third_party/benchmark.BUILD",
+)