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

Side by Side Diff: gyp/bench.gyp

Issue 438683002: nanobench: support GMs-as-benches (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: GM_ Created 6 years, 4 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 | « bench/nanobench.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP file to build performance testbench. 1 # GYP file to build performance testbench.
2 # 2 #
3 { 3 {
4 'includes': [ 4 'includes': [
5 'apptype_console.gypi', 5 'apptype_console.gypi',
6 ], 6 ],
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'bench', 9 'target_name': 'bench',
10 'type': 'executable', 10 'type': 'executable',
(...skipping 19 matching lines...) Expand all
30 ], 30 ],
31 'includes': [ 31 'includes': [
32 'bench.gypi', 32 'bench.gypi',
33 'gmslides.gypi', 33 'gmslides.gypi',
34 ], 34 ],
35 }, 35 },
36 { 36 {
37 'target_name': 'nanobench', 37 'target_name': 'nanobench',
38 'type': 'executable', 38 'type': 'executable',
39 'sources': [ 39 'sources': [
40 '../bench/GMBench.cpp',
41 '../bench/ResultsWriter.cpp',
40 '../bench/nanobench.cpp', 42 '../bench/nanobench.cpp',
41 '../bench/ResultsWriter.cpp',
42 ], 43 ],
43 'includes': [ 'bench.gypi' ], 44 'includes': [
45 'bench.gypi',
46 'gmslides.gypi',
47 ],
44 'dependencies': [ 48 'dependencies': [
45 'flags.gyp:flags_common', 49 'flags.gyp:flags_common',
46 'jsoncpp.gyp:jsoncpp', 50 'jsoncpp.gyp:jsoncpp',
47 'skia_lib.gyp:skia_lib', 51 'skia_lib.gyp:skia_lib',
48 'tools.gyp:crash_handler', 52 'tools.gyp:crash_handler',
49 'tools.gyp:timer', 53 'tools.gyp:timer',
50 ], 54 ],
51 }, 55 },
52 ], 56 ],
53 } 57 }
OLDNEW
« no previous file with comments | « bench/nanobench.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698