Source release 14.1.0
This commit is contained in:
28
third_party/protobuf/gmock.BUILD
vendored
Normal file
28
third_party/protobuf/gmock.BUILD
vendored
Normal file
@@ -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"],
|
||||
)
|
||||
Reference in New Issue
Block a user