| 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': [ |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 'flags.gyp:flags', | 306 'flags.gyp:flags', |
| 307 'skia_lib.gyp:skia_lib', | 307 'skia_lib.gyp:skia_lib', |
| 308 'record.gyp:*', | 308 'record.gyp:*', |
| 309 ], | 309 ], |
| 310 }, | 310 }, |
| 311 { | 311 { |
| 312 'target_name': 'bench_playback', | 312 'target_name': 'bench_playback', |
| 313 'type': 'executable', | 313 'type': 'executable', |
| 314 'sources': [ | 314 'sources': [ |
| 315 '../tools/bench_playback.cpp', | 315 '../tools/bench_playback.cpp', |
| 316 '../tools/LazyDecodeBitmap.cpp', | |
| 317 ], | 316 ], |
| 318 'include_dirs': [ | 317 'include_dirs': [ |
| 319 '../src/core/', | 318 '../src/core/', |
| 320 '../src/images', | 319 '../src/images', |
| 321 '../src/lazy', | 320 '../src/record', |
| 322 ], | 321 ], |
| 323 'dependencies': [ | 322 'dependencies': [ |
| 324 'flags.gyp:flags', | 323 'flags.gyp:flags', |
| 325 'skia_lib.gyp:skia_lib', | 324 'skia_lib.gyp:skia_lib', |
| 326 'record.gyp:*', | 325 'record.gyp:*', |
| 327 ], | 326 ], |
| 328 }, | 327 }, |
| 329 { | 328 { |
| 330 'target_name': 'picture_renderer', | 329 'target_name': 'picture_renderer', |
| 331 'type': 'static_library', | 330 'type': 'static_library', |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 'type': 'executable', | 572 'type': 'executable', |
| 574 'sources': [ | 573 'sources': [ |
| 575 '../tools/win_lcid.cpp', | 574 '../tools/win_lcid.cpp', |
| 576 ], | 575 ], |
| 577 }, | 576 }, |
| 578 ], | 577 ], |
| 579 }, | 578 }, |
| 580 ], | 579 ], |
| 581 ], | 580 ], |
| 582 } | 581 } |
| OLD | NEW |