umbra/vendor/gtest/gtest.BUILD

14 lines
306 B
Plaintext
Raw Normal View History

2022-06-18 15:03:30 +00:00
cc_library(
name = "gtest_main",
srcs = glob(
["src/*.cc"],
exclude = ["src/gtest-all.cc"]
),
hdrs = glob([
"include/**/*.h",
"src/*.h"
]),
copts = ["-Iexternal/gtest/include"],
linkopts = ["-pthread"],
visibility = ["//visibility:public"],
)