| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build various tools. | 5 # GYP file to build various tools. |
| 6 # | 6 # |
| 7 # To build on Linux: | 7 # To build on Linux: |
| 8 # ./gyp_skia tools.gyp && make tools | 8 # ./gyp_skia tools.gyp && make tools |
| 9 # | 9 # |
| 10 { | 10 { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 '../src/effects', | 109 '../src/effects', |
| 110 '../src/effects/gradients', | 110 '../src/effects/gradients', |
| 111 '../src/image', | 111 '../src/image', |
| 112 '../src/gpu', | 112 '../src/gpu', |
| 113 '../src/pdf', | 113 '../src/pdf', |
| 114 '../src/utils', | 114 '../src/utils', |
| 115 ], | 115 ], |
| 116 'sources': [ | 116 'sources': [ |
| 117 '../tools/monobench.cpp', | 117 '../tools/monobench.cpp', |
| 118 '../bench/Benchmark.cpp', | 118 '../bench/Benchmark.cpp', |
| 119 '<!@(python find.py ../bench "*Bench.cpp")', | 119 '<!@(python find.py "*Bench.cpp" ../bench)', |
| 120 ], | 120 ], |
| 121 'sources!': [ | 121 'sources!': [ |
| 122 '../bench/GMBench.cpp', | 122 '../bench/GMBench.cpp', |
| 123 ], | 123 ], |
| 124 }, | 124 }, |
| 125 { | 125 { |
| 126 'target_name': 'chrome_fuzz', | 126 'target_name': 'chrome_fuzz', |
| 127 'type': 'executable', | 127 'type': 'executable', |
| 128 'sources': [ | 128 'sources': [ |
| 129 '../tools/chrome_fuzz.cpp', | 129 '../tools/chrome_fuzz.cpp', |
| (...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 'pdf.gyp:pdf', | 695 'pdf.gyp:pdf', |
| 696 'gputest.gyp:osmesa', | 696 'gputest.gyp:osmesa', |
| 697 ], | 697 ], |
| 698 'defines': [ 'FIDDLE_BUILD_TEST' ], | 698 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 699 }, | 699 }, |
| 700 ], | 700 ], |
| 701 }, | 701 }, |
| 702 ], | 702 ], |
| 703 ], | 703 ], |
| 704 } | 704 } |
| OLD | NEW |