summaryrefslogtreecommitdiff
path: root/llvm/utils/gn/secondary/third-party/benchmark/BUILD.gn
blob: 51627ecd0604c55183bd1f146815672c56e8f312 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
static_library("benchmark") {
  sources = [
    "src/benchmark.cc",
    "src/benchmark_api_internal.cc",
    "src/benchmark_name.cc",
    "src/benchmark_register.cc",
    "src/benchmark_runner.cc",
    "src/colorprint.cc",
    "src/commandlineflags.cc",
    "src/complexity.cc",
    "src/console_reporter.cc",
    "src/counter.cc",
    "src/csv_reporter.cc",
    "src/json_reporter.cc",
    "src/perf_counters.cc",
    "src/reporter.cc",
    "src/sleep.cc",
    "src/statistics.cc",
    "src/string_util.cc",
    "src/sysinfo.cc",
    "src/timers.cc",
  ]
  deps = [ "//llvm/utils/gn/build/libs/pthread" ]
  public_configs = [ ":benchmark_config" ]
}

config("benchmark_config") {
  include_dirs = [ "include" ]
}