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

Side by Side Diff: gyp/bench.gyp

Issue 83863002: Add JSON output option to bench. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: %040s is not the same as %40s, at least on Mac. Created 7 years 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 | Annotate | Revision Log
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',
11 'include_dirs' : [ 11 'include_dirs' : [
12 '../src/core', 12 '../src/core',
13 '../src/effects', 13 '../src/effects',
14 '../src/utils', 14 '../src/utils',
15 ], 15 ],
16 'dependencies': [ 16 'dependencies': [
17 'skia_lib.gyp:skia_lib', 17 'skia_lib.gyp:skia_lib',
18 'bench_timer', 18 'bench_timer',
19 'flags.gyp:flags', 19 'flags.gyp:flags',
20 'jsoncpp.gyp:jsoncpp',
20 ], 21 ],
21 'sources': [ 22 'sources': [
22 '../bench/AAClipBench.cpp', 23 '../bench/AAClipBench.cpp',
23 '../bench/BicubicBench.cpp', 24 '../bench/BicubicBench.cpp',
24 '../bench/BitmapBench.cpp', 25 '../bench/BitmapBench.cpp',
25 '../bench/BitmapRectBench.cpp', 26 '../bench/BitmapRectBench.cpp',
26 '../bench/BitmapScaleBench.cpp', 27 '../bench/BitmapScaleBench.cpp',
27 '../bench/BlurBench.cpp', 28 '../bench/BlurBench.cpp',
28 '../bench/BlurImageFilterBench.cpp', 29 '../bench/BlurImageFilterBench.cpp',
29 '../bench/BlurRectBench.cpp', 30 '../bench/BlurRectBench.cpp',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 ['skia_gpu == 1', { 157 ['skia_gpu == 1', {
157 'sources': [ 158 'sources': [
158 '../bench/BenchGpuTimer_gl.h', 159 '../bench/BenchGpuTimer_gl.h',
159 '../bench/BenchGpuTimer_gl.cpp', 160 '../bench/BenchGpuTimer_gl.cpp',
160 ], 161 ],
161 }], 162 }],
162 ], 163 ],
163 } 164 }
164 ], 165 ],
165 } 166 }
OLDNEW
« bench/ResultsWriter.h ('K') | « gm/gmmain.cpp ('k') | include/utils/SkJSONCPP.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698