| 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': [ |
| 11 { | 11 { |
| 12 # Build all executable targets defined below. | 12 # Build all executable targets defined below. |
| 13 'target_name': 'tools', | 13 'target_name': 'tools', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'bbh_shootout', | 16 'bbh_shootout', |
| 17 'bench_pictures', | 17 'bench_pictures', |
| 18 'dump_record', | 18 'dump_record', |
| 19 'filter', | 19 'filter', |
| 20 'gpuveto', | 20 'gpuveto', |
| 21 'lua_app', | 21 'lua_app', |
| 22 'lua_pictures', | 22 'lua_pictures', |
| 23 'imgconv', |
| 23 'pinspect', | 24 'pinspect', |
| 24 'render_pdfs', | 25 'render_pdfs', |
| 25 'render_pictures', | 26 'render_pictures', |
| 26 'skdiff', | 27 'skdiff', |
| 27 'skhello', | 28 'skhello', |
| 28 'skpdiff', | 29 'skpdiff', |
| 29 'skpinfo', | 30 'skpinfo', |
| 30 'skpmaker', | 31 'skpmaker', |
| 31 'test_image_decoder', | 32 'test_image_decoder', |
| 32 'test_public_includes', | 33 'test_public_includes', |
| (...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 'sources': [ | 539 'sources': [ |
| 539 '../tools/pinspect.cpp', | 540 '../tools/pinspect.cpp', |
| 540 ], | 541 ], |
| 541 'dependencies': [ | 542 'dependencies': [ |
| 542 'flags.gyp:flags', | 543 'flags.gyp:flags', |
| 543 'skia_lib.gyp:skia_lib', | 544 'skia_lib.gyp:skia_lib', |
| 544 'tools.gyp:picture_renderer', | 545 'tools.gyp:picture_renderer', |
| 545 ], | 546 ], |
| 546 }, | 547 }, |
| 547 { | 548 { |
| 549 'target_name': 'imgconv', |
| 550 'type': 'executable', |
| 551 'sources': [ |
| 552 '../tools/imgconv.cpp', |
| 553 ], |
| 554 'dependencies': [ |
| 555 'flags.gyp:flags', |
| 556 'skia_lib.gyp:skia_lib', |
| 557 ], |
| 558 }, |
| 559 { |
| 548 'target_name': 'bbh_shootout', | 560 'target_name': 'bbh_shootout', |
| 549 'type': 'executable', | 561 'type': 'executable', |
| 550 'include_dirs': [ | 562 'include_dirs': [ |
| 551 '../bench', | 563 '../bench', |
| 552 '../tools/' | 564 '../tools/' |
| 553 ], | 565 ], |
| 554 'sources': [ | 566 'sources': [ |
| 555 '../tools/bbh_shootout.cpp', | 567 '../tools/bbh_shootout.cpp', |
| 556 | 568 |
| 557 # Bench code: | 569 # Bench code: |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 'flags.gyp:flags', | 772 'flags.gyp:flags', |
| 761 'skia_lib.gyp:skia_lib', | 773 'skia_lib.gyp:skia_lib', |
| 762 'resources', | 774 'resources', |
| 763 ], | 775 ], |
| 764 }, | 776 }, |
| 765 ], | 777 ], |
| 766 }, | 778 }, |
| 767 ], | 779 ], |
| 768 ], | 780 ], |
| 769 } | 781 } |
| OLD | NEW |