aboutsummaryrefslogtreecommitdiffhomepage
path: root/WORKSPACE
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreecha@users.noreply.github.com>2017-02-17 13:37:03 -0800
committerGravatar GitHub <noreply@github.com>2017-02-17 13:37:03 -0800
commitdc55e1fed0bce8be0c70a7b39978fbf1b3f10abe (patch)
treeeb1f2c66e23e8babb2adbc879d50db62e6e6991d /WORKSPACE
parenta03792f1946bddb48ca8edaed91f41563dacab91 (diff)
parent05fbe3c5185c8ba487041862496c41c304ff4c03 (diff)
Merge pull request #9775 from ctiller/cpp_bazelness
C++ Bazel files
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",
+)