aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE
diff options
context:
space:
mode:
authorPaul Yang <TeBoring@users.noreply.github.com>2015-06-24 16:14:46 -0700
committerPaul Yang <TeBoring@users.noreply.github.com>2015-06-24 16:14:46 -0700
commiteda912eeb3865f4c6f6896863bd1ea31a3ebbef8 (patch)
tree74b3422b7980023a19fbc3adc1ee167feb65432e /WORKSPACE
parent53c306de19b416bc8110f68b407490114fcc414e (diff)
parent7a0c431c8f2e5071c54f7f0fa37834138d9648de (diff)
downloadprotobuf-eda912eeb3865f4c6f6896863bd1ea31a3ebbef8.tar.gz
protobuf-eda912eeb3865f4c6f6896863bd1ea31a3ebbef8.tar.bz2
protobuf-eda912eeb3865f4c6f6896863bd1ea31a3ebbef8.zip
Merge pull request #512 from pherl/bazel
Enable tests for bazel build.
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE16
1 files changed, 16 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index e69de29b..f72f239a 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -0,0 +1,16 @@
+new_http_archive(
+ name = "gmock_archive",
+ url = "https://googlemock.googlecode.com/files/gmock-1.7.0.zip",
+ sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b",
+ build_file = "gmock.BUILD",
+)
+
+bind(
+ name = "gtest",
+ actual = "@gmock_archive//:gtest",
+)
+
+bind(
+ name = "gtest_main",
+ actual = "@gmock_archive//:gtest_main",
+)