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 # Port-specific Skia library code. | 5 # Port-specific Skia library code. |
6 { | 6 { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'ports', | 9 'target_name': 'ports', |
10 'product_name': 'skia_ports', | 10 'product_name': 'skia_ports', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'conditions': [ | 71 'conditions': [ |
72 [ 'skia_embedded_fonts', { | 72 [ 'skia_embedded_fonts', { |
73 'link_settings': { | 73 'link_settings': { |
74 'libraries': [ | 74 'libraries': [ |
75 '-ldl', | 75 '-ldl', |
76 ], | 76 ], |
77 }, | 77 }, |
78 'variables': { | 78 'variables': { |
79 'embedded_font_data_identifier': 'sk_fonts', | 79 'embedded_font_data_identifier': 'sk_fonts', |
80 'fonts_to_include': [ | 80 'fonts_to_include': [ |
81 '../resources/Funkster.ttf', | 81 '../resources/fonts/Funkster.ttf', |
82 ], | 82 ], |
83 }, | 83 }, |
84 'sources': [ | 84 'sources': [ |
85 '../src/ports/SkFontHost_linux.cpp', | 85 '../src/ports/SkFontHost_linux.cpp', |
86 ], | 86 ], |
87 'actions': [{ | 87 'actions': [{ |
88 'action_name': 'generate_embedded_font_data', | 88 'action_name': 'generate_embedded_font_data', |
89 'inputs': [ | 89 'inputs': [ |
90 '../tools/embed_resources.py', | 90 '../tools/embed_resources.py', |
91 '<@(fonts_to_include)', | 91 '<@(fonts_to_include)', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 }], | 209 }], |
210 ], | 210 ], |
211 'direct_dependent_settings': { | 211 'direct_dependent_settings': { |
212 'include_dirs': [ | 212 'include_dirs': [ |
213 '../include/ports', | 213 '../include/ports', |
214 ], | 214 ], |
215 }, | 215 }, |
216 }, | 216 }, |
217 ], | 217 ], |
218 } | 218 } |
OLD | NEW |