aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/gtest.BUILD
blob: b70f2c51bcf3c1c7b7f943a1eee406c208f5400c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
cc_library(
    name = "gtest",
    srcs = [
        "googletest/src/gtest-all.cc",
	"googlemock/src/gmock-all.cc"
    ],
    hdrs = glob(["googletest/include/**/*.h", "googletest/src/*.cc", "googletest/src/*.h", "googlemock/include/**/*.h", "googlemock/src/*.cc", "googlemock/src/*.h"]),
    includes = [
        "googletest",
        "googletest/include",
	"googlemock",
	"googlemock/include",
    ],
    linkstatic = 1,
    visibility = [
        "//visibility:public",
    ],
)