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