mirror of
https://github.com/google/benchmark.git
synced 2024-12-29 14:00:16 +08:00
22 lines
458 B
Python
22 lines
458 B
Python
|
licenses(["notice"])
|
||
|
|
||
|
load("//bazel:have_regex.bzl", "have_regex_copts")
|
||
|
|
||
|
cc_library(
|
||
|
name = "benchmark",
|
||
|
srcs = glob([
|
||
|
"src/*.cc",
|
||
|
"src/*.h",
|
||
|
]),
|
||
|
hdrs = ["include/benchmark/benchmark.h"],
|
||
|
copts = have_regex_copts(),
|
||
|
strip_include_prefix = "include",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
cc_library(
|
||
|
name = "benchmark_internal_headers",
|
||
|
hdrs = glob(["src/*.h"]),
|
||
|
visibility = ["//test:__pkg__"],
|
||
|
)
|