| 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 { |
| 11 'includes': [ | 11 'includes': [ |
| 12 'apptype_console.gypi', | 12 'apptype_console.gypi', |
| 13 ], | 13 ], |
| 14 'targets': [ | 14 'targets': [ |
| 15 { | 15 { |
| 16 # Build all executable targets defined below. | 16 # Build all executable targets defined below. |
| 17 'target_name': 'tools', | 17 'target_name': 'tools', |
| 18 'type': 'none', | 18 'type': 'none', |
| 19 'dependencies': [ | 19 'dependencies': [ |
| 20 'chrome_fuzz', | 20 'chrome_fuzz', |
| 21 'dump_record', | 21 'dump_record', |
| 22 'get_images_from_skps', |
| 22 'gpuveto', | 23 'gpuveto', |
| 23 'imgblur', | 24 'imgblur', |
| 24 'imgconv', | 25 'imgconv', |
| 25 'imgslice', | 26 'imgslice', |
| 26 'lua_app', | 27 'lua_app', |
| 27 'lua_pictures', | 28 'lua_pictures', |
| 28 'pinspect', | 29 'pinspect', |
| 29 'skdiff', | 30 'skdiff', |
| 30 'skhello', | 31 'skhello', |
| 31 'skpinfo', | 32 'skpinfo', |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 '../include/private', | 274 '../include/private', |
| 274 '../src/core', | 275 '../src/core', |
| 275 '../src/lazy', | 276 '../src/lazy', |
| 276 ], | 277 ], |
| 277 'dependencies': [ | 278 'dependencies': [ |
| 278 'flags.gyp:flags', | 279 'flags.gyp:flags', |
| 279 'skia_lib.gyp:skia_lib' | 280 'skia_lib.gyp:skia_lib' |
| 280 ], | 281 ], |
| 281 }, | 282 }, |
| 282 { | 283 { |
| 284 'target_name': 'get_images_from_skps', |
| 285 'type': 'executable', |
| 286 'sources': [ |
| 287 '../tools/get_images_from_skps.cpp', |
| 288 ], |
| 289 'dependencies': [ |
| 290 'flags.gyp:flags', |
| 291 'skia_lib.gyp:skia_lib', |
| 292 ], |
| 293 }, |
| 294 { |
| 283 'target_name': 'gpuveto', | 295 'target_name': 'gpuveto', |
| 284 'type': 'executable', | 296 'type': 'executable', |
| 285 'sources': [ | 297 'sources': [ |
| 286 '../tools/gpuveto.cpp', | 298 '../tools/gpuveto.cpp', |
| 287 ], | 299 ], |
| 288 'include_dirs': [ | 300 'include_dirs': [ |
| 289 '../include/private', | 301 '../include/private', |
| 290 '../src/core/', | 302 '../src/core/', |
| 291 '../src/images', | 303 '../src/images', |
| 292 ], | 304 ], |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 604 'flags.gyp:flags', | 616 'flags.gyp:flags', |
| 605 'skia_lib.gyp:skia_lib', | 617 'skia_lib.gyp:skia_lib', |
| 606 'resources', | 618 'resources', |
| 607 ], | 619 ], |
| 608 }, | 620 }, |
| 609 ], | 621 ], |
| 610 }, | 622 }, |
| 611 ], | 623 ], |
| 612 ], | 624 ], |
| 613 } | 625 } |
| OLD | NEW |