| 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', | |
| 19 'bench_playback', | |
| 20 'dump_record', | 18 'dump_record', |
| 21 'filter', | 19 'filter', |
| 22 'gpuveto', | 20 'gpuveto', |
| 23 'lua_app', | 21 'lua_app', |
| 24 'lua_pictures', | 22 'lua_pictures', |
| 25 'pinspect', | 23 'pinspect', |
| 26 'render_pdfs', | 24 'render_pdfs', |
| 27 'render_pictures', | 25 'render_pictures', |
| 28 'skdiff', | 26 'skdiff', |
| 29 'skhello', | 27 'skhello', |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 'tools.gyp:picture_renderer', | 404 'tools.gyp:picture_renderer', |
| 407 'tools.gyp:picture_utils', | 405 'tools.gyp:picture_utils', |
| 408 ], | 406 ], |
| 409 'conditions': [ | 407 'conditions': [ |
| 410 ['skia_android_framework == 1', { | 408 ['skia_android_framework == 1', { |
| 411 'libraries': [ '-lskia' ], | 409 'libraries': [ '-lskia' ], |
| 412 }], | 410 }], |
| 413 ], | 411 ], |
| 414 }, | 412 }, |
| 415 { | 413 { |
| 416 'target_name': 'bench_record', | |
| 417 'type': 'executable', | |
| 418 'sources': [ | |
| 419 '../tools/bench_record.cpp', | |
| 420 '../tools/LazyDecodeBitmap.cpp', | |
| 421 ], | |
| 422 'include_dirs': [ | |
| 423 '../src/core/', | |
| 424 '../src/images', | |
| 425 '../src/lazy', | |
| 426 ], | |
| 427 'dependencies': [ | |
| 428 'timer', | |
| 429 'flags.gyp:flags', | |
| 430 'skia_lib.gyp:skia_lib', | |
| 431 ], | |
| 432 }, | |
| 433 { | |
| 434 'target_name': 'bench_playback', | |
| 435 'type': 'executable', | |
| 436 'sources': [ | |
| 437 '../tools/bench_playback.cpp', | |
| 438 ], | |
| 439 'include_dirs': [ | |
| 440 '../src/core/', | |
| 441 '../src/images', | |
| 442 ], | |
| 443 'dependencies': [ | |
| 444 'timer', | |
| 445 'flags.gyp:flags', | |
| 446 'skia_lib.gyp:skia_lib', | |
| 447 ], | |
| 448 }, | |
| 449 { | |
| 450 'target_name': 'dump_record', | 414 'target_name': 'dump_record', |
| 451 'type': 'executable', | 415 'type': 'executable', |
| 452 'sources': [ | 416 'sources': [ |
| 453 '../tools/dump_record.cpp', | 417 '../tools/dump_record.cpp', |
| 454 '../tools/DumpRecord.cpp', | 418 '../tools/DumpRecord.cpp', |
| 455 '../tools/LazyDecodeBitmap.cpp', | 419 '../tools/LazyDecodeBitmap.cpp', |
| 456 ], | 420 ], |
| 457 'include_dirs': [ | 421 'include_dirs': [ |
| 458 '../src/core/', | 422 '../src/core/', |
| 459 '../src/images', | 423 '../src/images', |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 'flags.gyp:flags', | 707 'flags.gyp:flags', |
| 744 'skia_lib.gyp:skia_lib', | 708 'skia_lib.gyp:skia_lib', |
| 745 'resources', | 709 'resources', |
| 746 ], | 710 ], |
| 747 }, | 711 }, |
| 748 ], | 712 ], |
| 749 }, | 713 }, |
| 750 ], | 714 ], |
| 751 ], | 715 ], |
| 752 } | 716 } |
| OLD | NEW |