Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: third_party/google_benchmark/BUILD.gn

Issue 2865663003: Adding Google benchmarking library. (Closed)
Patch Set: Sketch. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/google_benchmark/AUTHORS ('k') | third_party/google_benchmark/CMakeLists.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « third_party/google_benchmark/AUTHORS ('k') | third_party/google_benchmark/CMakeLists.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698