| 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 'bench_pictures', | 16 'bench_pictures', |
| 17 'filter', | 17 'filter', |
| 18 'lua_pictures', |
| 18 'bbh_shootout', | 19 'bbh_shootout', |
| 19 'lua_app', | 20 'lua_app', |
| 20 'pinspect', | 21 'pinspect', |
| 21 'render_pdfs', | 22 'render_pdfs', |
| 22 'render_pictures', | 23 'render_pictures', |
| 23 'skdiff', | 24 'skdiff', |
| 24 'skpdiff', | 25 'skpdiff', |
| 25 'skhello', | 26 'skhello', |
| 26 'skimage', | 27 'skimage', |
| 27 ], | 28 ], |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 }, | 468 }, |
| 468 ], | 469 ], |
| 469 ], | 470 ], |
| 470 } | 471 } |
| 471 | 472 |
| 472 # Local Variables: | 473 # Local Variables: |
| 473 # tab-width:2 | 474 # tab-width:2 |
| 474 # indent-tabs-mode:nil | 475 # indent-tabs-mode:nil |
| 475 # End: | 476 # End: |
| 476 # vim: set expandtab tabstop=2 shiftwidth=2: | 477 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |