2018-03-08 12:48:46 +00:00
|
|
|
licenses(["notice"])
|
|
|
|
|
2021-06-28 12:46:08 +00:00
|
|
|
config_setting(
|
|
|
|
name = "qnx",
|
|
|
|
constraint_values = ["@platforms//os:qnx"],
|
|
|
|
values = {
|
|
|
|
"cpu": "x64_qnx",
|
|
|
|
},
|
|
|
|
visibility = [":__subpackages__"],
|
|
|
|
)
|
|
|
|
|
2018-05-01 14:24:38 +00:00
|
|
|
config_setting(
|
|
|
|
name = "windows",
|
2021-06-28 12:46:08 +00:00
|
|
|
constraint_values = ["@platforms//os:windows"],
|
2020-09-03 09:59:15 +00:00
|
|
|
values = {
|
|
|
|
"cpu": "x64_windows",
|
|
|
|
},
|
2018-05-01 14:24:38 +00:00
|
|
|
visibility = [":__subpackages__"],
|
|
|
|
)
|
|
|
|
|
2021-01-05 09:54:04 +00:00
|
|
|
cc_library(
|
|
|
|
name = "benchmark",
|
2018-05-25 10:18:58 +00:00
|
|
|
srcs = glob(
|
|
|
|
[
|
|
|
|
"src/*.cc",
|
|
|
|
"src/*.h",
|
|
|
|
],
|
|
|
|
exclude = ["src/benchmark_main.cc"],
|
|
|
|
),
|
2022-02-14 10:48:53 +00:00
|
|
|
hdrs = [
|
|
|
|
"include/benchmark/benchmark.h",
|
|
|
|
"include/benchmark/export.h", # From generate_export_header
|
|
|
|
],
|
2018-05-01 14:24:38 +00:00
|
|
|
linkopts = select({
|
2018-05-02 10:23:18 +00:00
|
|
|
":windows": ["-DEFAULTLIB:shlwapi.lib"],
|
2018-05-01 14:24:38 +00:00
|
|
|
"//conditions:default": ["-pthread"],
|
|
|
|
}),
|
2018-03-08 12:48:46 +00:00
|
|
|
strip_include_prefix = "include",
|
|
|
|
visibility = ["//visibility:public"],
|
2022-03-17 08:47:45 +00:00
|
|
|
# Only static linking is allowed; no .so will be produced.
|
|
|
|
# Using `defines` (i.e. not `local_defines`) means that no
|
|
|
|
# dependent rules need to bother about defining the macro.
|
|
|
|
linkstatic = True,
|
|
|
|
defines = ["BENCHMARK_STATIC_DEFINE"],
|
2018-03-08 12:48:46 +00:00
|
|
|
)
|
|
|
|
|
2018-05-25 10:18:58 +00:00
|
|
|
cc_library(
|
|
|
|
name = "benchmark_main",
|
|
|
|
srcs = ["src/benchmark_main.cc"],
|
|
|
|
hdrs = ["include/benchmark/benchmark.h"],
|
|
|
|
strip_include_prefix = "include",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [":benchmark"],
|
|
|
|
)
|
|
|
|
|
2018-03-08 12:48:46 +00:00
|
|
|
cc_library(
|
|
|
|
name = "benchmark_internal_headers",
|
|
|
|
hdrs = glob(["src/*.h"]),
|
|
|
|
visibility = ["//test:__pkg__"],
|
|
|
|
)
|