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

Side by Side Diff: gyp/ports.gyp

Issue 14731025: Add a fontConfig interface for android. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: rebasing Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | include/ports/SkTypeface_android.h » ('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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 #Android provides at least FreeType 2.4.0 at runtime. 155 #Android provides at least FreeType 2.4.0 at runtime.
156 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400', 156 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400',
157 #Skia should not use dlopen on Android. 157 #Skia should not use dlopen on Android.
158 'SK_CAN_USE_DLOPEN=0', 158 'SK_CAN_USE_DLOPEN=0',
159 ], 159 ],
160 'sources!': [ 160 'sources!': [
161 '../src/ports/SkDebug_stdio.cpp', 161 '../src/ports/SkDebug_stdio.cpp',
162 '../src/ports/SkPurgeableMemoryBlock_none.cpp', 162 '../src/ports/SkPurgeableMemoryBlock_none.cpp',
163 ], 163 ],
164 'sources': [ 164 'sources': [
165 '../src/ports/FontHostConfiguration_android.cpp',
166 '../src/ports/SkDebug_android.cpp', 165 '../src/ports/SkDebug_android.cpp',
167 '../src/ports/SkThread_pthread.cpp', 166 '../src/ports/SkThread_pthread.cpp',
168 '../src/ports/SkFontHost_android.cpp', 167 '../src/ports/SkFontConfigInterface_android.cpp',
168 '../src/ports/SkFontConfigParser_android.cpp',
169 '../src/ports/SkFontHost_FreeType.cpp', 169 '../src/ports/SkFontHost_FreeType.cpp',
170 '../src/ports/SkFontHost_FreeType_common.cpp', 170 '../src/ports/SkFontHost_FreeType_common.cpp',
171 '../src/ports/SkFontHost_fontconfig.cpp',
171 '../src/ports/SkPurgeableMemoryBlock_android.cpp', 172 '../src/ports/SkPurgeableMemoryBlock_android.cpp',
172 ], 173 ],
173 'dependencies': [ 174 'dependencies': [
174 'freetype.gyp:freetype', 175 'freetype.gyp:freetype',
175 'android_deps.gyp:expat', 176 'android_deps.gyp:expat',
176 ], 177 ],
177 }], 178 }],
178 ], 179 ],
179 'direct_dependent_settings': { 180 'direct_dependent_settings': {
180 'include_dirs': [ 181 'include_dirs': [
181 '../include/ports', 182 '../include/ports',
182 ], 183 ],
183 }, 184 },
184 }, 185 },
185 ], 186 ],
186 } 187 }
187 188
188 # Local Variables: 189 # Local Variables:
189 # tab-width:2 190 # tab-width:2
190 # indent-tabs-mode:nil 191 # indent-tabs-mode:nil
191 # End: 192 # End:
192 # vim: set expandtab tabstop=2 shiftwidth=2: 193 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | include/ports/SkTypeface_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698