blob: b1ae15a9193092f6daf72d19efb171df2d9ff268 [file] [log] [blame]
Jakob Buchgraber8cc62f72018-07-09 16:45:04 +02001cc_library(
2 name = "gtest",
3 srcs = [
4 "googletest/src/gtest-all.cc",
5 "googlemock/src/gmock-all.cc",
6 ],
7 hdrs = glob([
8 "**/*.h",
9 "googletest/src/*.cc",
10 "googlemock/src/*.cc",
11 ]),
12 includes = [
13 "googlemock",
14 "googletest",
15 "googletest/include",
16 "googlemock/include",
17 ],
18 linkopts = ["-pthread"],
19 visibility = ["//visibility:public"],
20)
21
22cc_library(
23 name = "gtest_main",
24 srcs = ["googlemock/src/gmock_main.cc"],
25 linkopts = ["-pthread"],
26 visibility = ["//visibility:public"],
27 deps = [":gtest"],
28)