diff options
author | Noah Eisen <ncteisen@google.com> | 2017-04-25 17:01:08 -0700 |
---|---|---|
committer | Noah Eisen <ncteisen@google.com> | 2017-04-25 17:01:08 -0700 |
commit | f725d7e6b6ac57641e67f363f3e3b585d074f0e2 (patch) | |
tree | 08d98309e9fe0993e6fb33e79662776fc7cc5b54 /third_party/gtest.BUILD | |
parent | ad8d36d4dcd4deeec2d05644b78eb78ae0918f06 (diff) | |
parent | b864e7c41c6d0363e23093fb090625f260994962 (diff) |
Merge branch 'master' of https://github.com/grpc/grpc into client-auth-filter-fuzz
Diffstat (limited to 'third_party/gtest.BUILD')
-rw-r--r-- | third_party/gtest.BUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/third_party/gtest.BUILD b/third_party/gtest.BUILD index 52c9ca2ba7..b70f2c51bc 100644 --- a/third_party/gtest.BUILD +++ b/third_party/gtest.BUILD @@ -2,11 +2,14 @@ cc_library( name = "gtest", srcs = [ "googletest/src/gtest-all.cc", + "googlemock/src/gmock-all.cc" ], - hdrs = glob(["googletest/include/**/*.h", "googletest/src/*.cc", "googletest/src/*.h"]), + hdrs = glob(["googletest/include/**/*.h", "googletest/src/*.cc", "googletest/src/*.h", "googlemock/include/**/*.h", "googlemock/src/*.cc", "googlemock/src/*.h"]), includes = [ "googletest", "googletest/include", + "googlemock", + "googlemock/include", ], linkstatic = 1, visibility = [ |