| 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 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 'type': 'static_library', | 468 'type': 'static_library', |
| 469 'sources': [ | 469 'sources': [ |
| 470 '../tools/picture_utils.cpp', | 470 '../tools/picture_utils.cpp', |
| 471 '../tools/picture_utils.h', | 471 '../tools/picture_utils.h', |
| 472 ], | 472 ], |
| 473 'dependencies': [ | 473 'dependencies': [ |
| 474 'skia_lib.gyp:skia_lib', | 474 'skia_lib.gyp:skia_lib', |
| 475 ], | 475 ], |
| 476 'direct_dependent_settings': { | 476 'direct_dependent_settings': { |
| 477 'include_dirs': [ | 477 'include_dirs': [ |
| 478 '../tools/', | 478 '../tools/', |
| 479 ], | 479 ], |
| 480 }, | 480 }, |
| 481 }, | 481 }, |
| 482 { |
| 483 'target_name': 'resources', |
| 484 'type': 'static_library', |
| 485 'sources': [ |
| 486 '../tools/Resources.cpp', |
| 487 '../tools/Resources.h', |
| 488 ], |
| 489 'dependencies': [ |
| 490 'flags.gyp:flags', |
| 491 'skia_lib.gyp:skia_lib', |
| 492 ], |
| 493 'direct_dependent_settings': { |
| 494 'include_dirs': [ |
| 495 '../tools/', |
| 496 ], |
| 497 }, |
| 498 }, |
| 482 { | 499 { |
| 483 'target_name': 'pinspect', | 500 'target_name': 'pinspect', |
| 484 'type': 'executable', | 501 'type': 'executable', |
| 485 'sources': [ | 502 'sources': [ |
| 486 '../tools/pinspect.cpp', | 503 '../tools/pinspect.cpp', |
| 487 ], | 504 ], |
| 488 'dependencies': [ | 505 'dependencies': [ |
| 489 'flags.gyp:flags', | 506 'flags.gyp:flags', |
| 490 'skia_lib.gyp:skia_lib', | 507 'skia_lib.gyp:skia_lib', |
| 491 'tools.gyp:picture_renderer', | 508 'tools.gyp:picture_renderer', |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 618 'type': 'executable', | 635 'type': 'executable', |
| 619 'sources': [ | 636 'sources': [ |
| 620 '../tools/win_lcid.cpp', | 637 '../tools/win_lcid.cpp', |
| 621 ], | 638 ], |
| 622 }, | 639 }, |
| 623 ], | 640 ], |
| 624 }, | 641 }, |
| 625 ], | 642 ], |
| 626 ], | 643 ], |
| 627 } | 644 } |
| OLD | NEW |