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 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 ], | 506 ], |
507 }, | 507 }, |
508 ], | 508 ], |
509 ], | 509 ], |
510 }, | 510 }, |
511 { | 511 { |
512 'target_name': 'render_pdfs', | 512 'target_name': 'render_pdfs', |
513 'type': 'executable', | 513 'type': 'executable', |
514 'sources': [ | 514 'sources': [ |
515 '../tools/render_pdfs_main.cpp', | 515 '../tools/render_pdfs_main.cpp', |
516 '../tools/flags/SkCommandLineFlags.cpp', | |
517 '../tools/LazyDecodeBitmap.cpp', | |
518 '../tools/PdfRenderer.cpp', | 516 '../tools/PdfRenderer.cpp', |
519 '../tools/PdfRenderer.h', | 517 '../tools/PdfRenderer.h', |
520 ], | 518 ], |
521 'include_dirs': [ | 519 'include_dirs': [ |
522 '../src/core', | |
523 '../src/lazy', | |
524 '../src/pipe/utils/', | 520 '../src/pipe/utils/', |
525 '../src/utils/', | 521 '../src/utils/', |
526 '../tools/flags', | |
527 ], | 522 ], |
528 'dependencies': [ | 523 'dependencies': [ |
529 'pdf.gyp:pdf', | 524 'pdf.gyp:pdf', |
530 'skia_lib.gyp:skia_lib', | 525 'skia_lib.gyp:skia_lib', |
531 'tools.gyp:picture_utils', | 526 'tools.gyp:picture_utils', |
532 ], | 527 ], |
533 'conditions': [ | 528 'conditions': [ |
534 ['skia_win_debuggers_path and skia_os == "win"', | 529 ['skia_win_debuggers_path and skia_os == "win"', |
535 { | 530 { |
536 'dependencies': [ | 531 'dependencies': [ |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
723 'type': 'executable', | 718 'type': 'executable', |
724 'sources': [ | 719 'sources': [ |
725 '../tools/win_lcid.cpp', | 720 '../tools/win_lcid.cpp', |
726 ], | 721 ], |
727 }, | 722 }, |
728 ], | 723 ], |
729 }, | 724 }, |
730 ], | 725 ], |
731 ], | 726 ], |
732 } | 727 } |
OLD | NEW |