| 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 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 ], | 317 ], |
| 318 'include_dirs': [ | 318 'include_dirs': [ |
| 319 '../src/core/', | 319 '../src/core/', |
| 320 '../src/images', | 320 '../src/images', |
| 321 '../src/lazy', | 321 '../src/lazy', |
| 322 ], | 322 ], |
| 323 'dependencies': [ | 323 'dependencies': [ |
| 324 'bench.gyp:bench_timer', | 324 'bench.gyp:bench_timer', |
| 325 'flags.gyp:flags', | 325 'flags.gyp:flags', |
| 326 'skia_lib.gyp:skia_lib', | 326 'skia_lib.gyp:skia_lib', |
| 327 'record.gyp:*', | |
| 328 ], | 327 ], |
| 329 }, | 328 }, |
| 330 { | 329 { |
| 331 'target_name': 'bench_playback', | 330 'target_name': 'bench_playback', |
| 332 'type': 'executable', | 331 'type': 'executable', |
| 333 'sources': [ | 332 'sources': [ |
| 334 '../tools/bench_playback.cpp', | 333 '../tools/bench_playback.cpp', |
| 335 ], | 334 ], |
| 336 'include_dirs': [ | 335 'include_dirs': [ |
| 337 '../src/core/', | 336 '../src/core/', |
| 338 '../src/images', | 337 '../src/images', |
| 339 '../src/record', | |
| 340 ], | 338 ], |
| 341 'dependencies': [ | 339 'dependencies': [ |
| 342 'bench.gyp:bench_timer', | 340 'bench.gyp:bench_timer', |
| 343 'flags.gyp:flags', | 341 'flags.gyp:flags', |
| 344 'skia_lib.gyp:skia_lib', | 342 'skia_lib.gyp:skia_lib', |
| 345 'record.gyp:*', | |
| 346 ], | 343 ], |
| 347 }, | 344 }, |
| 348 { | 345 { |
| 349 'target_name': 'dump_record', | 346 'target_name': 'dump_record', |
| 350 'type': 'executable', | 347 'type': 'executable', |
| 351 'sources': [ | 348 'sources': [ |
| 352 '../tools/dump_record.cpp', | 349 '../tools/dump_record.cpp', |
| 353 '../tools/DumpRecord.cpp', | 350 '../tools/DumpRecord.cpp', |
| 354 '../tools/LazyDecodeBitmap.cpp', | 351 '../tools/LazyDecodeBitmap.cpp', |
| 355 ], | 352 ], |
| 356 'include_dirs': [ | 353 'include_dirs': [ |
| 357 '../src/core/', | 354 '../src/core/', |
| 358 '../src/images', | 355 '../src/images', |
| 359 '../src/lazy', | 356 '../src/lazy', |
| 360 '../src/record', | |
| 361 ], | 357 ], |
| 362 'dependencies': [ | 358 'dependencies': [ |
| 363 'bench.gyp:bench_timer', | 359 'bench.gyp:bench_timer', |
| 364 'flags.gyp:flags', | 360 'flags.gyp:flags', |
| 365 'record.gyp:*', | |
| 366 'skia_lib.gyp:skia_lib', | 361 'skia_lib.gyp:skia_lib', |
| 367 ], | 362 ], |
| 368 }, | 363 }, |
| 369 { | 364 { |
| 370 'target_name': 'picture_renderer', | 365 'target_name': 'picture_renderer', |
| 371 'type': 'static_library', | 366 'type': 'static_library', |
| 372 'sources': [ | 367 'sources': [ |
| 373 '../tools/image_expectations.h', | 368 '../tools/image_expectations.h', |
| 374 '../tools/image_expectations.cpp', | 369 '../tools/image_expectations.cpp', |
| 375 '../tools/LazyDecodeBitmap.cpp', | 370 '../tools/LazyDecodeBitmap.cpp', |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 'type': 'executable', | 618 'type': 'executable', |
| 624 'sources': [ | 619 'sources': [ |
| 625 '../tools/win_lcid.cpp', | 620 '../tools/win_lcid.cpp', |
| 626 ], | 621 ], |
| 627 }, | 622 }, |
| 628 ], | 623 ], |
| 629 }, | 624 }, |
| 630 ], | 625 ], |
| 631 ], | 626 ], |
| 632 } | 627 } |
| OLD | NEW |