| 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 'lua_pictures', |
| 19 'pinspect', | 19 'pinspect', |
| 20 'render_pdfs', | 20 'render_pdfs', |
| 21 'render_pictures', | 21 'render_pictures', |
| 22 'skdiff', | 22 'skdiff', |
| 23 'skhello', | 23 'skhello', |
| 24 'skimage', | 24 'skimage', |
| 25 ], | 25 ], |
| 26 }, | 26 }, |
| 27 { | 27 { |
| 28 'target_name': 'skdiff', | 28 'target_name': 'skdiff', |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 { | 251 { |
| 252 'target_name': 'picture_utils', | 252 'target_name': 'picture_utils', |
| 253 'type': 'static_library', | 253 'type': 'static_library', |
| 254 'sources': [ | 254 'sources': [ |
| 255 '../tools/picture_utils.cpp', | 255 '../tools/picture_utils.cpp', |
| 256 '../tools/picture_utils.h', | 256 '../tools/picture_utils.h', |
| 257 ], | 257 ], |
| 258 'dependencies': [ | 258 'dependencies': [ |
| 259 'skia_base_libs.gyp:skia_base_libs', | 259 'skia_base_libs.gyp:skia_base_libs', |
| 260 ], | 260 ], |
| 261 'direct_dependent_settings': { |
| 262 'include_dirs': [ |
| 263 '../tools/picture_utils.h', |
| 264 ], |
| 265 }, |
| 261 }, | 266 }, |
| 262 { | 267 { |
| 263 'target_name': 'pinspect', | 268 'target_name': 'pinspect', |
| 264 'type': 'executable', | 269 'type': 'executable', |
| 265 'sources': [ | 270 'sources': [ |
| 266 '../tools/pinspect.cpp', | 271 '../tools/pinspect.cpp', |
| 267 ], | 272 ], |
| 268 'dependencies': [ | 273 'dependencies': [ |
| 269 'skia_base_libs.gyp:skia_base_libs', | 274 'skia_base_libs.gyp:skia_base_libs', |
| 270 'effects.gyp:effects', | 275 'effects.gyp:effects', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 }, | 334 }, |
| 330 ], | 335 ], |
| 331 ], | 336 ], |
| 332 } | 337 } |
| 333 | 338 |
| 334 # Local Variables: | 339 # Local Variables: |
| 335 # tab-width:2 | 340 # tab-width:2 |
| 336 # indent-tabs-mode:nil | 341 # indent-tabs-mode:nil |
| 337 # End: | 342 # End: |
| 338 # vim: set expandtab tabstop=2 shiftwidth=2: | 343 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |