OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # GYP file to build various tools. | 5 # GYP file to build various tools. |
6 # | 6 # |
7 # To build on Linux: | 7 # To build on Linux: |
8 # ./gyp_skia tools.gyp && make tools | 8 # ./gyp_skia tools.gyp && make tools |
9 # | 9 # |
10 { | 10 { |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 'direct_dependent_settings': { | 129 'direct_dependent_settings': { |
130 'include_dirs': [ '../tools', ], | 130 'include_dirs': [ '../tools', ], |
131 }, | 131 }, |
132 }, | 132 }, |
133 { | 133 { |
134 'target_name': 'sk_tool_utils', | 134 'target_name': 'sk_tool_utils', |
135 'type': 'static_library', | 135 'type': 'static_library', |
136 'sources': [ | 136 'sources': [ |
137 '../tools/sk_tool_utils.cpp', | 137 '../tools/sk_tool_utils.cpp', |
138 '../tools/sk_tool_utils_font.cpp', | 138 '../tools/sk_tool_utils_font.cpp', |
| 139 '../tools/random_parse_path.cpp', |
139 ], | 140 ], |
140 'include_dirs': [ | 141 'include_dirs': [ |
141 '../include/private', | 142 '../include/private', |
142 '../src/fonts', | 143 '../src/fonts', |
143 '../src/core', | 144 '../src/core', |
144 ], | 145 ], |
145 'dependencies': [ | 146 'dependencies': [ |
146 'resources', | 147 'resources', |
147 'flags.gyp:flags', | 148 'flags.gyp:flags', |
148 'skia_lib.gyp:skia_lib', | 149 'skia_lib.gyp:skia_lib', |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 'flags.gyp:flags', | 604 'flags.gyp:flags', |
604 'skia_lib.gyp:skia_lib', | 605 'skia_lib.gyp:skia_lib', |
605 'resources', | 606 'resources', |
606 ], | 607 ], |
607 }, | 608 }, |
608 ], | 609 ], |
609 }, | 610 }, |
610 ], | 611 ], |
611 ], | 612 ], |
612 } | 613 } |
OLD | NEW |