| 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', |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 '../bench/MergeBench.cpp', | 64 '../bench/MergeBench.cpp', |
| 65 '../bench/MorphologyBench.cpp', | 65 '../bench/MorphologyBench.cpp', |
| 66 '../bench/MutexBench.cpp', | 66 '../bench/MutexBench.cpp', |
| 67 '../bench/PathBench.cpp', | 67 '../bench/PathBench.cpp', |
| 68 '../bench/PathIterBench.cpp', | 68 '../bench/PathIterBench.cpp', |
| 69 '../bench/PathUtilsBench.cpp', | 69 '../bench/PathUtilsBench.cpp', |
| 70 '../bench/PerlinNoiseBench.cpp', | 70 '../bench/PerlinNoiseBench.cpp', |
| 71 '../bench/PicturePlaybackBench.cpp', | 71 '../bench/PicturePlaybackBench.cpp', |
| 72 '../bench/PictureRecordBench.cpp', | 72 '../bench/PictureRecordBench.cpp', |
| 73 '../bench/PremulAndUnpremulAlphaOpsBench.cpp', | 73 '../bench/PremulAndUnpremulAlphaOpsBench.cpp', |
| 74 '../bench/QuadTreeBench.cpp', |
| 74 '../bench/RTreeBench.cpp', | 75 '../bench/RTreeBench.cpp', |
| 75 '../bench/ReadPixBench.cpp', | 76 '../bench/ReadPixBench.cpp', |
| 76 '../bench/RectBench.cpp', | 77 '../bench/RectBench.cpp', |
| 77 '../bench/RectoriBench.cpp', | 78 '../bench/RectoriBench.cpp', |
| 78 '../bench/RefCntBench.cpp', | 79 '../bench/RefCntBench.cpp', |
| 79 '../bench/RegionBench.cpp', | 80 '../bench/RegionBench.cpp', |
| 80 '../bench/RegionContainBench.cpp', | 81 '../bench/RegionContainBench.cpp', |
| 81 '../bench/RepeatTileBench.cpp', | 82 '../bench/RepeatTileBench.cpp', |
| 82 '../bench/ScalarBench.cpp', | 83 '../bench/ScalarBench.cpp', |
| 83 '../bench/ShaderMaskBench.cpp', | 84 '../bench/ShaderMaskBench.cpp', |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 ['skia_gpu == 1', { | 168 ['skia_gpu == 1', { |
| 168 'sources': [ | 169 'sources': [ |
| 169 '../bench/BenchGpuTimer_gl.h', | 170 '../bench/BenchGpuTimer_gl.h', |
| 170 '../bench/BenchGpuTimer_gl.cpp', | 171 '../bench/BenchGpuTimer_gl.cpp', |
| 171 ], | 172 ], |
| 172 }], | 173 }], |
| 173 ], | 174 ], |
| 174 } | 175 } |
| 175 ], | 176 ], |
| 176 } | 177 } |
| OLD | NEW |