| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 '../tools/random_parse_path.cpp', | 175 '../tools/random_parse_path.cpp', |
| 176 ], | 176 ], |
| 177 'include_dirs': [ | 177 'include_dirs': [ |
| 178 '../include/private', | 178 '../include/private', |
| 179 '../src/fonts', | 179 '../src/fonts', |
| 180 '../src/core', | 180 '../src/core', |
| 181 ], | 181 ], |
| 182 'dependencies': [ | 182 'dependencies': [ |
| 183 'resources', | 183 'resources', |
| 184 'flags.gyp:flags', | 184 'flags.gyp:flags', |
| 185 'flags.gyp:flags_common', |
| 185 'skia_lib.gyp:skia_lib', | 186 'skia_lib.gyp:skia_lib', |
| 186 ], | 187 ], |
| 187 'direct_dependent_settings': { | 188 'direct_dependent_settings': { |
| 188 'include_dirs': [ '../tools', ], | 189 'include_dirs': [ '../tools', ], |
| 189 }, | 190 }, |
| 190 }, | 191 }, |
| 191 { | 192 { |
| 192 'target_name' : 'timer', | 193 'target_name' : 'timer', |
| 193 'type': 'static_library', | 194 'type': 'static_library', |
| 194 'sources': [ '../tools/timer/Timer.cpp' ], | 195 'sources': [ '../tools/timer/Timer.cpp' ], |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 'pdf.gyp:pdf', | 700 'pdf.gyp:pdf', |
| 700 'gputest.gyp:osmesa', | 701 'gputest.gyp:osmesa', |
| 701 ], | 702 ], |
| 702 'defines': [ 'FIDDLE_BUILD_TEST' ], | 703 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 703 }, | 704 }, |
| 704 ], | 705 ], |
| 705 }, | 706 }, |
| 706 ], | 707 ], |
| 707 ], | 708 ], |
| 708 } | 709 } |
| OLD | NEW |