diff options
Diffstat (limited to 'Software/External Repositories/Protobuf/protobuf-3.4.1/gmock.BUILD')
| -rw-r--r-- | Software/External Repositories/Protobuf/protobuf-3.4.1/gmock.BUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Software/External Repositories/Protobuf/protobuf-3.4.1/gmock.BUILD b/Software/External Repositories/Protobuf/protobuf-3.4.1/gmock.BUILD new file mode 100644 index 000000000..b1ae15a91 --- /dev/null +++ b/Software/External Repositories/Protobuf/protobuf-3.4.1/gmock.BUILD @@ -0,0 +1,28 @@ +cc_library( + name = "gtest", + srcs = [ + "googletest/src/gtest-all.cc", + "googlemock/src/gmock-all.cc", + ], + hdrs = glob([ + "**/*.h", + "googletest/src/*.cc", + "googlemock/src/*.cc", + ]), + includes = [ + "googlemock", + "googletest", + "googletest/include", + "googlemock/include", + ], + linkopts = ["-pthread"], + visibility = ["//visibility:public"], +) + +cc_library( + name = "gtest_main", + srcs = ["googlemock/src/gmock_main.cc"], + linkopts = ["-pthread"], + visibility = ["//visibility:public"], + deps = [":gtest"], +) |
