OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 config("google_benchmark_private_config") { |
| 6 include_dirs = [ |
| 7 "include", |
| 8 "src", |
| 9 ] |
| 10 } |
| 11 |
| 12 source_set("google_benchmark") { |
| 13 output_name = "google_benchmark" |
| 14 sources = [ |
| 15 "include/benchmark/benchmark.h", |
| 16 "include/benchmark/benchmark_api.h", |
| 17 "include/benchmark/macros.h", |
| 18 "include/benchmark/reporter.h", |
| 19 "src/arraysize.h", |
| 20 "src/benchmark.cc", |
| 21 "src/benchmark_api_internal.h", |
| 22 "src/benchmark_register.cc", |
| 23 "src/check.h", |
| 24 "src/colorprint.cc", |
| 25 "src/colorprint.h", |
| 26 "src/commandlineflags.cc", |
| 27 "src/commandlineflags.h", |
| 28 "src/complexity.cc", |
| 29 "src/complexity.h", |
| 30 "src/console_reporter.cc", |
| 31 "src/counter.cc", |
| 32 "src/counter.h", |
| 33 "src/csv_reporter.cc", |
| 34 "src/cycleclock.h", |
| 35 "src/internal_macros.h", |
| 36 "src/json_reporter.cc", |
| 37 "src/log.h", |
| 38 "src/mutex.h", |
| 39 "src/re.h", |
| 40 "src/reporter.cc", |
| 41 "src/sleep.cc", |
| 42 "src/sleep.h", |
| 43 "src/stat.h", |
| 44 "src/string_util.cc", |
| 45 "src/string_util.h", |
| 46 "src/sysinfo.cc", |
| 47 "src/sysinfo.h", |
| 48 "src/timers.cc", |
| 49 "src/timers.h", |
| 50 ] |
| 51 |
| 52 configs += [ ":google_benchmark_private_config" ] |
| 53 |
| 54 defines = [ "HAVE_STD_REGEX" ] |
| 55 |
| 56 } |
OLD | NEW |