| 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 'bbh_shootout', | 16 'bbh_shootout', |
| 17 'bench_pictures', | 17 'bench_pictures', |
| 18 'bench_record', | 18 'bench_record', |
| 19 'bench_playback', |
| 19 'filter', | 20 'filter', |
| 20 'lua_app', | 21 'lua_app', |
| 21 'lua_pictures', | 22 'lua_pictures', |
| 22 'pinspect', | 23 'pinspect', |
| 23 'render_pdfs', | 24 'render_pdfs', |
| 24 'render_pictures', | 25 'render_pictures', |
| 25 'skdiff', | 26 'skdiff', |
| 26 'skhello', | 27 'skhello', |
| 27 'skpdiff', | 28 'skpdiff', |
| 28 'skpinfo', | 29 'skpinfo', |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 '../src/images', | 302 '../src/images', |
| 302 '../src/lazy', | 303 '../src/lazy', |
| 303 ], | 304 ], |
| 304 'dependencies': [ | 305 'dependencies': [ |
| 305 'flags.gyp:flags', | 306 'flags.gyp:flags', |
| 306 'skia_lib.gyp:skia_lib', | 307 'skia_lib.gyp:skia_lib', |
| 307 'record.gyp:*', | 308 'record.gyp:*', |
| 308 ], | 309 ], |
| 309 }, | 310 }, |
| 310 { | 311 { |
| 312 'target_name': 'bench_playback', |
| 313 'type': 'executable', |
| 314 'sources': [ |
| 315 '../tools/bench_playback.cpp', |
| 316 '../tools/LazyDecodeBitmap.cpp', |
| 317 ], |
| 318 'include_dirs': [ |
| 319 '../src/core/', |
| 320 '../src/images', |
| 321 '../src/lazy', |
| 322 ], |
| 323 'dependencies': [ |
| 324 'flags.gyp:flags', |
| 325 'skia_lib.gyp:skia_lib', |
| 326 'record.gyp:*', |
| 327 ], |
| 328 }, |
| 329 { |
| 311 'target_name': 'picture_renderer', | 330 'target_name': 'picture_renderer', |
| 312 'type': 'static_library', | 331 'type': 'static_library', |
| 313 'sources': [ | 332 'sources': [ |
| 314 '../tools/LazyDecodeBitmap.cpp', | 333 '../tools/LazyDecodeBitmap.cpp', |
| 315 '../tools/PictureRenderer.h', | 334 '../tools/PictureRenderer.h', |
| 316 '../tools/PictureRenderer.cpp', | 335 '../tools/PictureRenderer.cpp', |
| 317 '../tools/PictureRenderingFlags.h', | 336 '../tools/PictureRenderingFlags.h', |
| 318 '../tools/PictureRenderingFlags.cpp', | 337 '../tools/PictureRenderingFlags.cpp', |
| 319 '../tools/CopyTilesRenderer.h', | 338 '../tools/CopyTilesRenderer.h', |
| 320 '../tools/CopyTilesRenderer.cpp', | 339 '../tools/CopyTilesRenderer.cpp', |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 'type': 'executable', | 573 'type': 'executable', |
| 555 'sources': [ | 574 'sources': [ |
| 556 '../tools/win_lcid.cpp', | 575 '../tools/win_lcid.cpp', |
| 557 ], | 576 ], |
| 558 }, | 577 }, |
| 559 ], | 578 ], |
| 560 }, | 579 }, |
| 561 ], | 580 ], |
| 562 ], | 581 ], |
| 563 } | 582 } |
| OLD | NEW |