| 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 '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 Loading... |
| 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 } |
| OLD | NEW |