Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
535 B
24 lines
535 B
10 years ago
|
cc_library(
|
||
|
name = "gtest",
|
||
|
srcs = [
|
||
|
"gmock-1.7.0/gtest/src/gtest-all.cc",
|
||
|
"gmock-1.7.0/src/gmock-all.cc",
|
||
|
],
|
||
|
includes = [
|
||
|
"gmock-1.7.0",
|
||
|
"gmock-1.7.0/gtest",
|
||
|
"gmock-1.7.0/gtest/include",
|
||
|
"gmock-1.7.0/include",
|
||
|
],
|
||
|
linkopts = ["-pthread"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "gtest_main",
|
||
|
srcs = ["gmock-1.7.0/src/gmock_main.cc"],
|
||
|
linkopts = ["-pthread"],
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [":gtest"],
|
||
|
)
|