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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
512 ], | 512 ], |
513 ], | 513 ], |
514 }, | 514 }, |
515 { | 515 { |
516 'target_name': 'render_pdfs', | 516 'target_name': 'render_pdfs', |
517 'type': 'executable', | 517 'type': 'executable', |
518 'sources': [ | 518 'sources': [ |
519 '../tools/render_pdfs_main.cpp', | 519 '../tools/render_pdfs_main.cpp', |
520 '../tools/PdfRenderer.cpp', | 520 '../tools/PdfRenderer.cpp', |
521 '../tools/PdfRenderer.h', | 521 '../tools/PdfRenderer.h', |
522 '../tools/flags/SkCommandLineFlags.h', | |
523 '../tools/flags/SkCommandLineFlags.cpp', | |
mtklein
2014/08/06 18:48:36
depend on flags.gyp:flags instead?
hal.canary
2014/08/06 20:11:23
Done.
| |
522 ], | 524 ], |
523 'include_dirs': [ | 525 'include_dirs': [ |
524 '../src/pipe/utils/', | 526 '../src/pipe/utils/', |
525 '../src/utils/', | 527 '../src/utils/', |
528 '../tools/flags', | |
526 ], | 529 ], |
527 'dependencies': [ | 530 'dependencies': [ |
528 'pdf.gyp:pdf', | 531 'pdf.gyp:pdf', |
529 'skia_lib.gyp:skia_lib', | 532 'skia_lib.gyp:skia_lib', |
530 'tools.gyp:picture_utils', | 533 'tools.gyp:picture_utils', |
531 ], | 534 ], |
532 'conditions': [ | 535 'conditions': [ |
533 ['skia_win_debuggers_path and skia_os == "win"', | 536 ['skia_win_debuggers_path and skia_os == "win"', |
534 { | 537 { |
535 'dependencies': [ | 538 'dependencies': [ |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
729 'flags.gyp:flags', | 732 'flags.gyp:flags', |
730 'skia_lib.gyp:skia_lib', | 733 'skia_lib.gyp:skia_lib', |
731 'resources', | 734 'resources', |
732 ], | 735 ], |
733 }, | 736 }, |
734 ], | 737 ], |
735 }, | 738 }, |
736 ], | 739 ], |
737 ], | 740 ], |
738 } | 741 } |
OLD | NEW |