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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 }, | 94 }, |
95 { | 95 { |
96 'target_name': 'sk_tool_utils', | 96 'target_name': 'sk_tool_utils', |
97 'type': 'static_library', | 97 'type': 'static_library', |
98 'sources': [ | 98 'sources': [ |
99 '../tools/sk_tool_utils.cpp', | 99 '../tools/sk_tool_utils.cpp', |
100 '../tools/sk_tool_utils_font.cpp', | 100 '../tools/sk_tool_utils_font.cpp', |
101 ], | 101 ], |
102 'include_dirs': [ | 102 'include_dirs': [ |
103 '../src/fonts', | 103 '../src/fonts', |
| 104 '../src/core', |
104 ], | 105 ], |
105 'dependencies': [ | 106 'dependencies': [ |
106 'resources', | 107 'resources', |
107 'flags.gyp:flags', | 108 'flags.gyp:flags', |
108 'skia_lib.gyp:skia_lib', | 109 'skia_lib.gyp:skia_lib', |
109 ], | 110 ], |
110 'direct_dependent_settings': { | 111 'direct_dependent_settings': { |
111 'include_dirs': [ '../tools', ], | 112 'include_dirs': [ '../tools', ], |
112 }, | 113 }, |
113 }, | 114 }, |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
809 'flags.gyp:flags', | 810 'flags.gyp:flags', |
810 'skia_lib.gyp:skia_lib', | 811 'skia_lib.gyp:skia_lib', |
811 'resources', | 812 'resources', |
812 ], | 813 ], |
813 }, | 814 }, |
814 ], | 815 ], |
815 }, | 816 }, |
816 ], | 817 ], |
817 ], | 818 ], |
818 } | 819 } |
OLD | NEW |