| 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 'filter', | 19 'filter', |
| 19 'lua_app', | 20 'lua_app', |
| 20 'lua_pictures', | 21 'lua_pictures', |
| 21 'pinspect', | 22 'pinspect', |
| 22 'render_pdfs', | 23 'render_pdfs', |
| 23 'render_pictures', | 24 'render_pictures', |
| 24 'skdiff', | 25 'skdiff', |
| 25 'skhello', | 26 'skhello', |
| 26 'skpdiff', | 27 'skpdiff', |
| 27 'skpmaker', | 28 'skpmaker', |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 ], | 257 ], |
| 257 'dependencies': [ | 258 'dependencies': [ |
| 258 'bench.gyp:bench_timer', | 259 'bench.gyp:bench_timer', |
| 259 'flags.gyp:flags', | 260 'flags.gyp:flags', |
| 260 'skia_lib.gyp:skia_lib', | 261 'skia_lib.gyp:skia_lib', |
| 261 'tools.gyp:picture_utils', | 262 'tools.gyp:picture_utils', |
| 262 'tools.gyp:picture_renderer', | 263 'tools.gyp:picture_renderer', |
| 263 ], | 264 ], |
| 264 }, | 265 }, |
| 265 { | 266 { |
| 267 'target_name': 'bench_record', |
| 268 'type': 'executable', |
| 269 'sources': ['../tools/bench_record.cpp'], |
| 270 'include_dirs': [ '../src/core/' ], |
| 271 'dependencies': [ |
| 272 'flags.gyp:flags', |
| 273 'skia_lib.gyp:skia_lib', |
| 274 ], |
| 275 }, |
| 276 { |
| 266 'target_name': 'picture_renderer', | 277 'target_name': 'picture_renderer', |
| 267 'type': 'static_library', | 278 'type': 'static_library', |
| 268 'sources': [ | 279 'sources': [ |
| 269 '../tools/LazyDecodeBitmap.cpp', | 280 '../tools/LazyDecodeBitmap.cpp', |
| 270 '../tools/PictureRenderer.h', | 281 '../tools/PictureRenderer.h', |
| 271 '../tools/PictureRenderer.cpp', | 282 '../tools/PictureRenderer.cpp', |
| 272 '../tools/PictureRenderingFlags.h', | 283 '../tools/PictureRenderingFlags.h', |
| 273 '../tools/PictureRenderingFlags.cpp', | 284 '../tools/PictureRenderingFlags.cpp', |
| 274 '../tools/CopyTilesRenderer.h', | 285 '../tools/CopyTilesRenderer.h', |
| 275 '../tools/CopyTilesRenderer.cpp', | 286 '../tools/CopyTilesRenderer.cpp', |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 'type': 'executable', | 517 'type': 'executable', |
| 507 'sources': [ | 518 'sources': [ |
| 508 '../tools/win_lcid.cpp', | 519 '../tools/win_lcid.cpp', |
| 509 ], | 520 ], |
| 510 }, | 521 }, |
| 511 ], | 522 ], |
| 512 }, | 523 }, |
| 513 ], | 524 ], |
| 514 ], | 525 ], |
| 515 } | 526 } |
| OLD | NEW |