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