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

Side by Side Diff: trunk/gyp/ports.gyp

Issue 12395015: implement fonthost table methods directly in fontconfig backend, _tables now relegated to (Closed) Base URL: http://skia.googlecode.com/svn/
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | trunk/src/ports/SkFontHost_fontconfig.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Port-specific Skia library code. 1 # Port-specific Skia library code.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'ports', 5 'target_name': 'ports',
6 'product_name': 'skia_ports', 6 'product_name': 'skia_ports',
7 'type': 'static_library', 7 'type': 'static_library',
8 'standalone_static_library': 1, 8 'standalone_static_library': 1,
9 'dependencies': [ 9 'dependencies': [
10 'core.gyp:core', 10 'core.gyp:core',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 '-ldl', 50 '-ldl',
51 ], 51 ],
52 }, 52 },
53 'sources': [ 53 'sources': [
54 '../src/ports/SkFontHost_FreeType.cpp', 54 '../src/ports/SkFontHost_FreeType.cpp',
55 '../src/ports/SkFontHost_FreeType_common.cpp', 55 '../src/ports/SkFontHost_FreeType_common.cpp',
56 '../src/ports/SkFontHost_fontconfig.cpp', 56 '../src/ports/SkFontHost_fontconfig.cpp',
57 '../src/ports/SkFontConfigInterface_direct.cpp', 57 '../src/ports/SkFontConfigInterface_direct.cpp',
58 '../src/ports/SkThread_pthread.cpp', 58 '../src/ports/SkThread_pthread.cpp',
59 ], 59 ],
60 'sources!': [
61 '../src/ports/SkFontHost_tables.cpp',
62 ],
60 }], 63 }],
61 [ 'skia_os == "nacl"', { 64 [ 'skia_os == "nacl"', {
62 'dependencies': [ 65 'dependencies': [
63 # On other OS, we can dynamically link against freetype. For nacl, 66 # On other OS, we can dynamically link against freetype. For nacl,
64 # we have to include our own version since the naclports version is 67 # we have to include our own version since the naclports version is
65 # too old (<0x020300) to provide the functionality we need. 68 # too old (<0x020300) to provide the functionality we need.
66 'freetype.gyp:freetype', 69 'freetype.gyp:freetype',
67 ], 70 ],
68 'export_dependent_settings': [ 71 'export_dependent_settings': [
69 'freetype.gyp:freetype', 72 'freetype.gyp:freetype',
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 }, 183 },
181 }, 184 },
182 ], 185 ],
183 } 186 }
184 187
185 # Local Variables: 188 # Local Variables:
186 # tab-width:2 189 # tab-width:2
187 # indent-tabs-mode:nil 190 # indent-tabs-mode:nil
188 # End: 191 # End:
189 # vim: set expandtab tabstop=2 shiftwidth=2: 192 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | trunk/src/ports/SkFontHost_fontconfig.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698