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