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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 ], | 510 ], |
511 }, | 511 }, |
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/LazyDecodeBitmap.cpp', |
520 '../tools/PdfRenderer.cpp', | 521 '../tools/PdfRenderer.cpp', |
521 '../tools/PdfRenderer.h', | 522 '../tools/PdfRenderer.h', |
522 ], | 523 ], |
523 'include_dirs': [ | 524 'include_dirs': [ |
524 '../src/core', | 525 '../src/core', |
| 526 '../src/lazy', |
525 '../src/pipe/utils/', | 527 '../src/pipe/utils/', |
526 '../src/utils/', | 528 '../src/utils/', |
527 ], | 529 ], |
528 'dependencies': [ | 530 'dependencies': [ |
529 'flags.gyp:flags', | 531 'flags.gyp:flags', |
530 'pdf.gyp:pdf', | 532 'pdf.gyp:pdf', |
531 'skia_lib.gyp:skia_lib', | 533 'skia_lib.gyp:skia_lib', |
532 'tools.gyp:picture_utils', | 534 'tools.gyp:picture_utils', |
533 ], | 535 ], |
534 'conditions': [ | 536 'conditions': [ |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
731 'flags.gyp:flags', | 733 'flags.gyp:flags', |
732 'skia_lib.gyp:skia_lib', | 734 'skia_lib.gyp:skia_lib', |
733 'resources', | 735 'resources', |
734 ], | 736 ], |
735 }, | 737 }, |
736 ], | 738 ], |
737 }, | 739 }, |
738 ], | 740 ], |
739 ], | 741 ], |
740 } | 742 } |
OLD | NEW |