| 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', | |
| 13 'bench_timer', | 12 'bench_timer', |
| 13 'etc1.gyp:libetc1', |
| 14 'flags.gyp:flags', | 14 'flags.gyp:flags', |
| 15 'jsoncpp.gyp:jsoncpp', | 15 'jsoncpp.gyp:jsoncpp', |
| 16 'etc1.gyp:libetc1', | 16 'skia_lib.gyp:skia_lib', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 '../bench/ResultsWriter.cpp', | 19 '../bench/ResultsWriter.cpp', |
| 20 '../bench/SkBenchLogger.cpp', | 20 '../bench/SkBenchLogger.cpp', |
| 21 '../bench/SkBenchLogger.h', | 21 '../bench/SkBenchLogger.h', |
| 22 '../bench/SkGMBench.cpp', | 22 '../bench/SkGMBench.cpp', |
| 23 '../bench/SkGMBench.h', | 23 '../bench/SkGMBench.h', |
| 24 '../bench/benchmain.cpp', | 24 '../bench/benchmain.cpp', |
| 25 '../tools/Resources.cpp', |
| 25 '../tools/sk_tool_utils.cpp', | 26 '../tools/sk_tool_utils.cpp', |
| 26 ], | 27 ], |
| 27 'conditions': [ | 28 'conditions': [ |
| 28 ['skia_gpu == 1', | 29 ['skia_gpu == 1', |
| 29 { | 30 { |
| 30 'include_dirs' : [ | 31 'include_dirs' : [ |
| 31 '../src/gpu', | 32 '../src/gpu', |
| 32 ], | 33 ], |
| 33 'dependencies': [ | 34 'dependencies': [ |
| 34 'gputest.gyp:skgputest', | 35 'gputest.gyp:skgputest', |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 ['skia_gpu == 1', { | 102 ['skia_gpu == 1', { |
| 102 'sources': [ | 103 'sources': [ |
| 103 '../bench/BenchGpuTimer_gl.h', | 104 '../bench/BenchGpuTimer_gl.h', |
| 104 '../bench/BenchGpuTimer_gl.cpp', | 105 '../bench/BenchGpuTimer_gl.cpp', |
| 105 ], | 106 ], |
| 106 }], | 107 }], |
| 107 ], | 108 ], |
| 108 } | 109 } |
| 109 ], | 110 ], |
| 110 } | 111 } |
| OLD | NEW |