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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
612 'type': 'static_library', | 612 'type': 'static_library', |
613 'sources': [ | 613 'sources': [ |
614 '../tools/ProcStats.h', | 614 '../tools/ProcStats.h', |
615 '../tools/ProcStats.cpp', | 615 '../tools/ProcStats.cpp', |
616 ], | 616 ], |
617 'direct_dependent_settings': { | 617 'direct_dependent_settings': { |
618 'include_dirs': [ '../tools', ], | 618 'include_dirs': [ '../tools', ], |
619 }, | 619 }, |
620 }, | 620 }, |
621 { | 621 { |
622 'target_name': 'temp_directory', | |
mtklein
2015/01/18 22:57:55
If this sticks, let's call it temp_dir, tempdir or
| |
623 'type': 'static_library', | |
624 'include_dirs' : [ '../include/core', '../include/config' ], | |
625 'sources': [ | |
626 '../tools/TempDir.h', | |
627 '../tools/TempDir.cpp', | |
628 ], | |
629 'dependencies': [ | |
630 'flags.gyp:flags', | |
631 'skia_lib.gyp:skia_lib', | |
632 ], | |
633 'direct_dependent_settings': { | |
634 'include_dirs': [ '../tools', '../include/core', ], | |
635 }, | |
636 }, | |
637 { | |
622 'target_name': 'test_public_includes', | 638 'target_name': 'test_public_includes', |
623 'type': 'static_library', | 639 'type': 'static_library', |
624 # Ensure that our public headers don't have unused params so that clients | 640 # Ensure that our public headers don't have unused params so that clients |
625 # (e.g. Android) that include us can build with these warnings enabled | 641 # (e.g. Android) that include us can build with these warnings enabled |
626 'cflags!': [ '-Wno-unused-parameter' ], | 642 'cflags!': [ '-Wno-unused-parameter' ], |
627 'variables': { | 643 'variables': { |
628 'includes_to_test': [ | 644 'includes_to_test': [ |
629 '<(skia_include_path)/animator', | 645 '<(skia_include_path)/animator', |
630 '<(skia_include_path)/c', | 646 '<(skia_include_path)/c', |
631 '<(skia_include_path)/config', | 647 '<(skia_include_path)/config', |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
772 'flags.gyp:flags', | 788 'flags.gyp:flags', |
773 'skia_lib.gyp:skia_lib', | 789 'skia_lib.gyp:skia_lib', |
774 'resources', | 790 'resources', |
775 ], | 791 ], |
776 }, | 792 }, |
777 ], | 793 ], |
778 }, | 794 }, |
779 ], | 795 ], |
780 ], | 796 ], |
781 } | 797 } |
OLD | NEW |