blob: 4c622f32a84e83765e2d1a481f6ff47c615f9751 [file] [log] [blame]
Craig Tillerb59b6b52017-02-17 15:25:09 -08001cc_library(
2 name = "benchmark",
3 srcs = glob(["src/*.cc"]),
4 hdrs = glob(["include/**/*.h", "src/*.h"]),
5 includes = [
6 "include", "."
7 ],
8 copts = [
9 "-DHAVE_POSIX_REGEX"
10 ],
11 linkstatic = 1,
12 visibility = [
13 "//visibility:public",
14 ],
15)