| OLD | NEW |
| 1 # GYP file to build various tools. | 1 # GYP file to build various tools. |
| 2 # | 2 # |
| 3 # To build on Linux: | 3 # To build on Linux: |
| 4 # ./gyp_skia tools.gyp && make tools | 4 # ./gyp_skia tools.gyp && make tools |
| 5 # | 5 # |
| 6 { | 6 { |
| 7 'includes': [ | 7 'includes': [ |
| 8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
| 9 ], | 9 ], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 }, | 519 }, |
| 520 { | 520 { |
| 521 'target_name': 'filter', | 521 'target_name': 'filter', |
| 522 'type': 'executable', | 522 'type': 'executable', |
| 523 'include_dirs' : [ | 523 'include_dirs' : [ |
| 524 '../src/core', | 524 '../src/core', |
| 525 '../src/utils/debugger', | 525 '../src/utils/debugger', |
| 526 ], | 526 ], |
| 527 'sources': [ | 527 'sources': [ |
| 528 '../tools/filtermain.cpp', | 528 '../tools/filtermain.cpp', |
| 529 '../tools/path_utils.h', | |
| 530 '../tools/path_utils.cpp', | |
| 531 '../src/utils/debugger/SkDrawCommand.h', | 529 '../src/utils/debugger/SkDrawCommand.h', |
| 532 '../src/utils/debugger/SkDrawCommand.cpp', | 530 '../src/utils/debugger/SkDrawCommand.cpp', |
| 533 '../src/utils/debugger/SkDebugCanvas.h', | 531 '../src/utils/debugger/SkDebugCanvas.h', |
| 534 '../src/utils/debugger/SkDebugCanvas.cpp', | 532 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 535 '../src/utils/debugger/SkObjectParser.h', | 533 '../src/utils/debugger/SkObjectParser.h', |
| 536 '../src/utils/debugger/SkObjectParser.cpp', | 534 '../src/utils/debugger/SkObjectParser.cpp', |
| 537 ], | 535 ], |
| 538 'dependencies': [ | 536 'dependencies': [ |
| 539 'skia_lib.gyp:skia_lib', | 537 'skia_lib.gyp:skia_lib', |
| 540 'tools.gyp:picture_utils', | 538 'tools.gyp:picture_utils', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 'type': 'executable', | 623 'type': 'executable', |
| 626 'sources': [ | 624 'sources': [ |
| 627 '../tools/win_lcid.cpp', | 625 '../tools/win_lcid.cpp', |
| 628 ], | 626 ], |
| 629 }, | 627 }, |
| 630 ], | 628 ], |
| 631 }, | 629 }, |
| 632 ], | 630 ], |
| 633 ], | 631 ], |
| 634 } | 632 } |
| OLD | NEW |