| 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 'filter', | |
| 22 'gpuveto', | 21 'gpuveto', |
| 23 'imgblur', | 22 'imgblur', |
| 24 'imgconv', | 23 'imgconv', |
| 25 'imgslice', | 24 'imgslice', |
| 26 'lua_app', | 25 'lua_app', |
| 27 'lua_pictures', | 26 'lua_pictures', |
| 28 'pinspect', | 27 'pinspect', |
| 29 'render_pdfs', | 28 'render_pdfs', |
| 30 'skdiff', | 29 'skdiff', |
| 31 'skhello', | 30 'skhello', |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 'type': 'executable', | 487 'type': 'executable', |
| 489 'sources': [ | 488 'sources': [ |
| 490 '../tools/imgconv.cpp', | 489 '../tools/imgconv.cpp', |
| 491 ], | 490 ], |
| 492 'dependencies': [ | 491 'dependencies': [ |
| 493 'flags.gyp:flags', | 492 'flags.gyp:flags', |
| 494 'skia_lib.gyp:skia_lib', | 493 'skia_lib.gyp:skia_lib', |
| 495 ], | 494 ], |
| 496 }, | 495 }, |
| 497 { | 496 { |
| 498 'target_name': 'filter', | |
| 499 'type': 'executable', | |
| 500 'include_dirs' : [ | |
| 501 '../include/private', | |
| 502 '../src/core', | |
| 503 '../src/utils/debugger', | |
| 504 ], | |
| 505 'sources': [ | |
| 506 '../tools/filtermain.cpp', | |
| 507 '../src/utils/debugger/SkDrawCommand.h', | |
| 508 '../src/utils/debugger/SkDrawCommand.cpp', | |
| 509 '../src/utils/debugger/SkDebugCanvas.h', | |
| 510 '../src/utils/debugger/SkDebugCanvas.cpp', | |
| 511 '../src/utils/debugger/SkObjectParser.h', | |
| 512 '../src/utils/debugger/SkObjectParser.cpp', | |
| 513 ], | |
| 514 'dependencies': [ | |
| 515 'skia_lib.gyp:skia_lib', | |
| 516 'tools.gyp:picture_utils', | |
| 517 ], | |
| 518 }, | |
| 519 { | |
| 520 'target_name': 'test_image_decoder', | 497 'target_name': 'test_image_decoder', |
| 521 'type': 'executable', | 498 'type': 'executable', |
| 522 'sources': [ | 499 'sources': [ |
| 523 '../tools/test_image_decoder.cpp', | 500 '../tools/test_image_decoder.cpp', |
| 524 ], | 501 ], |
| 525 'dependencies': [ | 502 'dependencies': [ |
| 526 'skia_lib.gyp:skia_lib', | 503 'skia_lib.gyp:skia_lib', |
| 527 ], | 504 ], |
| 528 }, | 505 }, |
| 529 { | 506 { |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 'flags.gyp:flags', | 681 'flags.gyp:flags', |
| 705 'skia_lib.gyp:skia_lib', | 682 'skia_lib.gyp:skia_lib', |
| 706 'resources', | 683 'resources', |
| 707 ], | 684 ], |
| 708 }, | 685 }, |
| 709 ], | 686 ], |
| 710 }, | 687 }, |
| 711 ], | 688 ], |
| 712 ], | 689 ], |
| 713 } | 690 } |
| OLD | NEW |