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.
28 lines
661 B
28 lines
661 B
cc_library(
|
|
name = "gtest",
|
|
srcs = [
|
|
"gmock-1.7.0/gtest/src/gtest-all.cc",
|
|
"gmock-1.7.0/src/gmock-all.cc",
|
|
],
|
|
hdrs = glob([
|
|
"gmock-1.7.0/**/*.h",
|
|
"gmock-1.7.0/gtest/src/*.cc",
|
|
"gmock-1.7.0/src/*.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"],
|
|
)
|
|
|