mirror of https://github.com/google/benchmark.git
19 lines
374 B
Python
19 lines
374 B
Python
|
licenses(["notice"])
|
||
|
|
||
|
cc_library(
|
||
|
name = "benchmark",
|
||
|
srcs = glob([
|
||
|
"src/*.cc",
|
||
|
"src/*.h",
|
||
|
]),
|
||
|
hdrs = ["include/benchmark/benchmark.h"],
|
||
|
strip_include_prefix = "include",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "benchmark_internal_headers",
|
||
|
hdrs = glob(["src/*.h"]),
|
||
|
visibility = ["//test:__pkg__"],
|
||
|
)
|