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

Side by Side Diff: gyp/ports.gyp

Issue 12896002: Fix android build. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
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 | no next file » | 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 #Android provides at least FreeType 2.4.0 at runtime. 160 #Android provides at least FreeType 2.4.0 at runtime.
161 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400', 161 'SK_FONTHOST_FREETYPE_RUNTIME_VERSION=0x020400',
162 #Skia should not use dlopen on Android. 162 #Skia should not use dlopen on Android.
163 'SK_CAN_USE_DLOPEN=0', 163 'SK_CAN_USE_DLOPEN=0',
164 ], 164 ],
165 'sources!': [ 165 'sources!': [
166 '../src/ports/SkDebug_stdio.cpp', 166 '../src/ports/SkDebug_stdio.cpp',
167 '../src/ports/SkPurgeableMemoryBlock_none.cpp', 167 '../src/ports/SkPurgeableMemoryBlock_none.cpp',
168 ], 168 ],
169 'sources': [ 169 'sources': [
170 '../include/ports/SkAshmemImageCache.h',
171
170 '../src/ports/SkDebug_android.cpp', 172 '../src/ports/SkDebug_android.cpp',
171 '../src/ports/SkThread_pthread.cpp', 173 '../src/ports/SkThread_pthread.cpp',
172 '../src/ports/SkFontHost_android.cpp', 174 '../src/ports/SkFontHost_android.cpp',
173 '../src/ports/SkFontHost_FreeType.cpp', 175 '../src/ports/SkFontHost_FreeType.cpp',
174 '../src/ports/SkFontHost_FreeType_common.cpp', 176 '../src/ports/SkFontHost_FreeType_common.cpp',
175 '../src/ports/SkPurgeableMemoryBlock_android.cpp', 177 '../src/ports/SkPurgeableMemoryBlock_android.cpp',
176 '../src/ports/FontHostConfiguration_android.cpp', 178 '../src/ports/FontHostConfiguration_android.cpp',
borenet 2013/03/15 19:19:22 Do you mind re-alphabetizing this section?
scroggo 2013/03/15 19:25:42 My next CL (https://codereview.chromium.org/124330
179 '../src/ports/SkAshmemImageCache.cpp',
177 ], 180 ],
178 'dependencies': [ 181 'dependencies': [
179 'freetype.gyp:freetype', 182 'freetype.gyp:freetype',
180 'android_deps.gyp:expat', 183 'android_deps.gyp:expat',
181 ], 184 ],
182 }], 185 }],
183 ], 186 ],
184 'direct_dependent_settings': { 187 'direct_dependent_settings': {
185 'include_dirs': [ 188 'include_dirs': [
186 '../include/ports', 189 '../include/ports',
187 ], 190 ],
188 }, 191 },
189 }, 192 },
190 ], 193 ],
191 } 194 }
192 195
193 # Local Variables: 196 # Local Variables:
194 # tab-width:2 197 # tab-width:2
195 # indent-tabs-mode:nil 198 # indent-tabs-mode:nil
196 # End: 199 # End:
197 # vim: set expandtab tabstop=2 shiftwidth=2: 200 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698