aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-02-17 13:27:21 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-02-17 13:27:21 -0800
commit05fbe3c5185c8ba487041862496c41c304ff4c03 (patch)
treeeb1f2c66e23e8babb2adbc879d50db62e6e6991d /WORKSPACE
parentdfc217528e401bd667c8f64246c0004f62c65595 (diff)
Get gtest building with Bazel, add first test in test/cpp/common/BUILD
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE11
1 files changed, 11 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 9883109634..4f90f06d88 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -28,6 +28,11 @@ bind(
actual = "@submodule_protobuf//:protoc",
)
+bind(
+ name = "gtest",
+ actual = "@submodule_gtest//:gtest",
+)
+
new_local_repository(
name = "submodule_boringssl",
path = "third_party/boringssl-with-bazel",
@@ -45,3 +50,9 @@ new_local_repository(
path = "third_party/protobuf",
build_file = "third_party/protobuf/BUILD",
)
+
+new_local_repository(
+ name = "submodule_gtest",
+ path = "third_party/googletest",
+ build_file = "third_party/gtest.BUILD",
+)