OLD | NEW |
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 'dependencies': [ | 11 'dependencies': [ |
12 'skia_lib.gyp:skia_lib', | 12 'skia_lib.gyp:skia_lib', |
13 'bench_timer', | 13 'bench_timer', |
14 'flags.gyp:flags', | 14 'flags.gyp:flags', |
15 'jsoncpp.gyp:jsoncpp', | 15 'jsoncpp.gyp:jsoncpp', |
16 ], | 16 ], |
17 'sources': [ | 17 'sources': [ |
18 '../bench/ResultsWriter.cpp', | |
19 '../bench/SkBenchLogger.cpp', | 18 '../bench/SkBenchLogger.cpp', |
20 '../bench/SkBenchLogger.h', | 19 '../bench/SkBenchLogger.h', |
21 '../bench/SkGMBench.cpp', | 20 '../bench/SkGMBench.cpp', |
22 '../bench/SkGMBench.h', | 21 '../bench/SkGMBench.h', |
23 '../bench/benchmain.cpp', | 22 '../bench/benchmain.cpp', |
24 '../tools/sk_tool_utils.cpp', | 23 '../tools/sk_tool_utils.cpp', |
25 ], | 24 ], |
26 'conditions': [ | 25 'conditions': [ |
27 ['skia_gpu == 1', | 26 ['skia_gpu == 1', |
28 { | 27 { |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 ['skia_gpu == 1', { | 100 ['skia_gpu == 1', { |
102 'sources': [ | 101 'sources': [ |
103 '../bench/BenchGpuTimer_gl.h', | 102 '../bench/BenchGpuTimer_gl.h', |
104 '../bench/BenchGpuTimer_gl.cpp', | 103 '../bench/BenchGpuTimer_gl.cpp', |
105 ], | 104 ], |
106 }], | 105 }], |
107 ], | 106 ], |
108 } | 107 } |
109 ], | 108 ], |
110 } | 109 } |
OLD | NEW |