Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(355)

Side by Side Diff: gyp/ports.gyp

Issue 1120823002: Move resource fonts to common location. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Remove now unused variable. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gm/mixedtextblobs.cpp ('k') | resources/Funkster.ttf » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « gm/mixedtextblobs.cpp ('k') | resources/Funkster.ttf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698