| OLD | NEW |
| 1 { | 1 { |
| 2 'include_dirs': [ | 2 'include_dirs': [ |
| 3 '../src/core', | 3 '../src/core', |
| 4 '../src/effects', | 4 '../src/effects', |
| 5 '../src/gpu', |
| 5 '../src/utils', | 6 '../src/utils', |
| 6 '../tools', | 7 '../tools', |
| 7 ], | 8 ], |
| 8 'dependencies': [ | 9 'dependencies': [ |
| 10 'etc1.gyp:libetc1', |
| 9 'skia_lib.gyp:skia_lib', | 11 'skia_lib.gyp:skia_lib', |
| 12 'tools.gyp:resources', |
| 13 'tools.gyp:sk_tool_utils', |
| 14 ], |
| 15 'conditions': [ |
| 16 ['skia_gpu == 1', { |
| 17 'include_dirs': [ '../src/gpu' ], |
| 18 'dependencies': [ 'gputest.gyp:skgputest' ], |
| 19 }], |
| 10 ], | 20 ], |
| 11 'sources': [ | 21 'sources': [ |
| 12 '../bench/Benchmark.cpp', | 22 '../bench/Benchmark.cpp', |
| 13 '../bench/Benchmark.h', | 23 '../bench/Benchmark.h', |
| 14 | 24 |
| 15 '../bench/AAClipBench.cpp', | 25 '../bench/AAClipBench.cpp', |
| 16 '../bench/BicubicBench.cpp', | 26 '../bench/BicubicBench.cpp', |
| 17 '../bench/BitmapBench.cpp', | 27 '../bench/BitmapBench.cpp', |
| 18 '../bench/BitmapRectBench.cpp', | 28 '../bench/BitmapRectBench.cpp', |
| 19 '../bench/BitmapScaleBench.cpp', | 29 '../bench/BitmapScaleBench.cpp', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 '../bench/StrokeBench.cpp', | 95 '../bench/StrokeBench.cpp', |
| 86 '../bench/TableBench.cpp', | 96 '../bench/TableBench.cpp', |
| 87 '../bench/TextBench.cpp', | 97 '../bench/TextBench.cpp', |
| 88 '../bench/TileBench.cpp', | 98 '../bench/TileBench.cpp', |
| 89 '../bench/VertBench.cpp', | 99 '../bench/VertBench.cpp', |
| 90 '../bench/WritePixelsBench.cpp', | 100 '../bench/WritePixelsBench.cpp', |
| 91 '../bench/WriterBench.cpp', | 101 '../bench/WriterBench.cpp', |
| 92 '../bench/XfermodeBench.cpp', | 102 '../bench/XfermodeBench.cpp', |
| 93 ], | 103 ], |
| 94 } | 104 } |
| OLD | NEW |