| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'type': 'executable', | 271 'type': 'executable', |
| 272 'sources': [ | 272 'sources': [ |
| 273 '../tools/get_images_from_skps.cpp', | 273 '../tools/get_images_from_skps.cpp', |
| 274 ], | 274 ], |
| 275 'include_dirs': [ | 275 'include_dirs': [ |
| 276 '../src/core', | 276 '../src/core', |
| 277 '../include/private', | 277 '../include/private', |
| 278 ], | 278 ], |
| 279 'dependencies': [ | 279 'dependencies': [ |
| 280 'flags.gyp:flags', | 280 'flags.gyp:flags', |
| 281 'jsoncpp.gyp:jsoncpp', |
| 281 'skia_lib.gyp:skia_lib', | 282 'skia_lib.gyp:skia_lib', |
| 282 ], | 283 ], |
| 283 }, | 284 }, |
| 284 { | 285 { |
| 285 'target_name': 'gpuveto', | 286 'target_name': 'gpuveto', |
| 286 'type': 'executable', | 287 'type': 'executable', |
| 287 'sources': [ | 288 'sources': [ |
| 288 '../tools/gpuveto.cpp', | 289 '../tools/gpuveto.cpp', |
| 289 ], | 290 ], |
| 290 'include_dirs': [ | 291 'include_dirs': [ |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 610 'pdf.gyp:pdf', | 611 'pdf.gyp:pdf', |
| 611 'gputest.gyp:osmesa', | 612 'gputest.gyp:osmesa', |
| 612 ], | 613 ], |
| 613 'defines': [ 'FIDDLE_BUILD_TEST' ], | 614 'defines': [ 'FIDDLE_BUILD_TEST' ], |
| 614 }, | 615 }, |
| 615 ], | 616 ], |
| 616 }, | 617 }, |
| 617 ], | 618 ], |
| 618 ], | 619 ], |
| 619 } | 620 } |
| OLD | NEW |