| 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 'pinspect', | 19 'pinspect', |
| 19 'render_pdfs', | 20 'render_pdfs', |
| 20 'render_pictures', | 21 'render_pictures', |
| 21 'skdiff', | 22 'skdiff', |
| 22 'skhello', | 23 'skhello', |
| 23 'skimage', | 24 'skimage', |
| 24 ], | 25 ], |
| 25 }, | 26 }, |
| 26 { | 27 { |
| 27 'target_name': 'skdiff', | 28 'target_name': 'skdiff', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'skia_base_libs.gyp:skia_base_libs', | 87 'skia_base_libs.gyp:skia_base_libs', |
| 87 'effects.gyp:effects', | 88 'effects.gyp:effects', |
| 88 'flags.gyp:flags', | 89 'flags.gyp:flags', |
| 89 'gm.gyp:gm_expectations', | 90 'gm.gyp:gm_expectations', |
| 90 'images.gyp:images', | 91 'images.gyp:images', |
| 91 'jsoncpp.gyp:jsoncpp', | 92 'jsoncpp.gyp:jsoncpp', |
| 92 'utils.gyp:utils', | 93 'utils.gyp:utils', |
| 93 ], | 94 ], |
| 94 }, | 95 }, |
| 95 { | 96 { |
| 97 'target_name': 'lua_pictures', |
| 98 'type': 'executable', |
| 99 'sources': [ |
| 100 '../tools/lua/lua_pictures.cpp', |
| 101 '../src/utils/SkLuaCanvas.cpp', |
| 102 ], |
| 103 'dependencies': [ |
| 104 'skia_base_libs.gyp:skia_base_libs', |
| 105 'effects.gyp:effects', |
| 106 'utils.gyp:utils', |
| 107 'images.gyp:images', |
| 108 'tools.gyp:picture_renderer', |
| 109 'tools.gyp:picture_utils', |
| 110 'ports.gyp:ports', |
| 111 'flags.gyp:flags', |
| 112 'lua.gyp:lua', |
| 113 ], |
| 114 }, |
| 115 { |
| 96 'target_name': 'render_pictures', | 116 'target_name': 'render_pictures', |
| 97 'type': 'executable', | 117 'type': 'executable', |
| 98 'sources': [ | 118 'sources': [ |
| 99 '../tools/render_pictures_main.cpp', | 119 '../tools/render_pictures_main.cpp', |
| 100 ], | 120 ], |
| 101 'include_dirs': [ | 121 'include_dirs': [ |
| 102 '../src/pipe/utils/', | 122 '../src/pipe/utils/', |
| 103 ], | 123 ], |
| 104 'dependencies': [ | 124 'dependencies': [ |
| 105 'skia_base_libs.gyp:skia_base_libs', | 125 'skia_base_libs.gyp:skia_base_libs', |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 }, | 329 }, |
| 310 ], | 330 ], |
| 311 ], | 331 ], |
| 312 } | 332 } |
| 313 | 333 |
| 314 # Local Variables: | 334 # Local Variables: |
| 315 # tab-width:2 | 335 # tab-width:2 |
| 316 # indent-tabs-mode:nil | 336 # indent-tabs-mode:nil |
| 317 # End: | 337 # End: |
| 318 # vim: set expandtab tabstop=2 shiftwidth=2: | 338 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |