| 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 'lua_app', | 19 'lua_app', |
| 20 'pinspect', | 20 'pinspect', |
| 21 'render_pdfs', | 21 'render_pdfs', |
| 22 'render_pictures', | 22 'render_pictures', |
| 23 'skdiff', | 23 'skdiff', |
| 24 'skhello', | 24 'skhello', |
| 25 'skimage', | 25 'skimage', |
| 26 ], | 26 ], |
| 27 'conditions': [ | 27 'conditions': [ |
| 28 ['skia_shared_lib', | 28 ['skia_shared_lib', |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 'type': 'executable', | 291 'type': 'executable', |
| 292 'sources': [ | 292 'sources': [ |
| 293 '../tools/pinspect.cpp', | 293 '../tools/pinspect.cpp', |
| 294 ], | 294 ], |
| 295 'dependencies': [ | 295 'dependencies': [ |
| 296 'skia_lib.gyp:skia_lib', | 296 'skia_lib.gyp:skia_lib', |
| 297 'tools.gyp:picture_renderer', | 297 'tools.gyp:picture_renderer', |
| 298 ], | 298 ], |
| 299 }, | 299 }, |
| 300 { | 300 { |
| 301 'target_name': 'bbh_shootout', |
| 302 'type': 'executable', |
| 303 'include_dirs': [ |
| 304 '../bench', |
| 305 '../tools/' |
| 306 ], |
| 307 'sources': [ |
| 308 '../tools/bbh_shootout.cpp', |
| 309 |
| 310 # Bench code: |
| 311 '../bench/TimerData.h', |
| 312 '../bench/TimerData.cpp', |
| 313 ], |
| 314 'dependencies': [ |
| 315 'skia_lib.gyp:skia_lib', |
| 316 'bench.gyp:bench_timer', |
| 317 'tools.gyp:picture_utils', |
| 318 'tools.gyp:picture_renderer', |
| 319 'flags.gyp:flags', |
| 320 ], |
| 321 }, |
| 322 { |
| 301 'target_name': 'filter', | 323 'target_name': 'filter', |
| 302 'type': 'executable', | 324 'type': 'executable', |
| 303 'include_dirs' : [ | 325 'include_dirs' : [ |
| 304 '../src/core', | 326 '../src/core', |
| 305 '../src/utils/debugger', | 327 '../src/utils/debugger', |
| 306 ], | 328 ], |
| 307 'sources': [ | 329 'sources': [ |
| 308 '../tools/filtermain.cpp', | 330 '../tools/filtermain.cpp', |
| 309 '../tools/path_utils.h', | 331 '../tools/path_utils.h', |
| 310 '../tools/path_utils.cpp', | 332 '../tools/path_utils.cpp', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 }, | 409 }, |
| 388 ], | 410 ], |
| 389 ], | 411 ], |
| 390 } | 412 } |
| 391 | 413 |
| 392 # Local Variables: | 414 # Local Variables: |
| 393 # tab-width:2 | 415 # tab-width:2 |
| 394 # indent-tabs-mode:nil | 416 # indent-tabs-mode:nil |
| 395 # End: | 417 # End: |
| 396 # vim: set expandtab tabstop=2 shiftwidth=2: | 418 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |