aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar MakMukhi <mmukhi@google.com>2017-04-24 16:36:40 -0700
committerGravatar GitHub <noreply@github.com>2017-04-24 16:36:40 -0700
commitc090c619c117912b8c9e88a3c4bc8f778a94d582 (patch)
treee3063eb1460bccc34076a13719dfe5a1bd622aa1 /third_party
parentc83346f3c818b4948b3aaa018bb8c80feaf8efff (diff)
parent1bcb976a3a8b1da416a2766fb012335d52086c00 (diff)
Merge pull request #10644 from MakMukhi/master
Added unit testing support.
Diffstat (limited to 'third_party')
-rw-r--r--third_party/gtest.BUILD5
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 = [