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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'dependencies': [ | 82 'dependencies': [ |
83 'resources', | 83 'resources', |
84 'flags.gyp:flags', | 84 'flags.gyp:flags', |
85 'skia_lib.gyp:skia_lib', | 85 'skia_lib.gyp:skia_lib', |
86 ], | 86 ], |
87 'direct_dependent_settings': { | 87 'direct_dependent_settings': { |
88 'include_dirs': [ '../tools', ], | 88 'include_dirs': [ '../tools', ], |
89 }, | 89 }, |
90 }, | 90 }, |
91 { | 91 { |
| 92 'target_name': 'checkerboard', |
| 93 'type': 'static_library', |
| 94 'sources': [ '../tools/Checkerboard.cpp', ], |
| 95 'dependencies': [ 'skia_lib.gyp:skia_lib', ], |
| 96 'direct_dependent_settings': { 'include_dirs': [ '../tools', ], }, |
| 97 }, |
| 98 { |
92 'target_name' : 'timer', | 99 'target_name' : 'timer', |
93 'type': 'static_library', | 100 'type': 'static_library', |
94 'sources': [ | 101 'sources': [ |
95 '../tools/timer/Timer.cpp', | 102 '../tools/timer/Timer.cpp', |
96 '../tools/timer/TimerData.cpp', | 103 '../tools/timer/TimerData.cpp', |
97 ], | 104 ], |
98 'include_dirs': [ | 105 'include_dirs': [ |
99 '../src/core', | 106 '../src/core', |
100 '../src/gpu', | 107 '../src/gpu', |
101 ], | 108 ], |
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
742 'flags.gyp:flags', | 749 'flags.gyp:flags', |
743 'skia_lib.gyp:skia_lib', | 750 'skia_lib.gyp:skia_lib', |
744 'resources', | 751 'resources', |
745 ], | 752 ], |
746 }, | 753 }, |
747 ], | 754 ], |
748 }, | 755 }, |
749 ], | 756 ], |
750 ], | 757 ], |
751 } | 758 } |
OLD | NEW |