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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 }, | 111 }, |
112 }, | 112 }, |
113 { | 113 { |
114 'target_name': 'sk_tool_utils', | 114 'target_name': 'sk_tool_utils', |
115 'type': 'static_library', | 115 'type': 'static_library', |
116 'sources': [ | 116 'sources': [ |
117 '../tools/sk_tool_utils.cpp', | 117 '../tools/sk_tool_utils.cpp', |
118 '../tools/sk_tool_utils_font.cpp', | 118 '../tools/sk_tool_utils_font.cpp', |
119 ], | 119 ], |
120 'include_dirs': [ | 120 'include_dirs': [ |
| 121 '../include/private', |
121 '../src/fonts', | 122 '../src/fonts', |
122 '../src/core', | 123 '../src/core', |
123 ], | 124 ], |
124 'dependencies': [ | 125 'dependencies': [ |
125 'resources', | 126 'resources', |
126 'flags.gyp:flags', | 127 'flags.gyp:flags', |
127 'skia_lib.gyp:skia_lib', | 128 'skia_lib.gyp:skia_lib', |
128 ], | 129 ], |
129 'direct_dependent_settings': { | 130 'direct_dependent_settings': { |
130 'include_dirs': [ '../tools', ], | 131 'include_dirs': [ '../tools', ], |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
850 'flags.gyp:flags', | 851 'flags.gyp:flags', |
851 'skia_lib.gyp:skia_lib', | 852 'skia_lib.gyp:skia_lib', |
852 'resources', | 853 'resources', |
853 ], | 854 ], |
854 }, | 855 }, |
855 ], | 856 ], |
856 }, | 857 }, |
857 ], | 858 ], |
858 ], | 859 ], |
859 } | 860 } |
OLD | NEW |