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

Side by Side Diff: gyp/ports.gyp

Issue 12433020: Improvements/additions to SkImageCache/SkLazyPixelRef. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Respond to comments. 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 | « gyp/core.gypi ('k') | gyp/tools.gyp » ('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 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', 170 '../src/ports/FontHostConfiguration_android.cpp',
171
172 '../src/ports/SkDebug_android.cpp', 171 '../src/ports/SkDebug_android.cpp',
173 '../src/ports/SkThread_pthread.cpp', 172 '../src/ports/SkThread_pthread.cpp',
174 '../src/ports/SkFontHost_android.cpp', 173 '../src/ports/SkFontHost_android.cpp',
175 '../src/ports/SkFontHost_FreeType.cpp', 174 '../src/ports/SkFontHost_FreeType.cpp',
176 '../src/ports/SkFontHost_FreeType_common.cpp', 175 '../src/ports/SkFontHost_FreeType_common.cpp',
177 '../src/ports/SkPurgeableMemoryBlock_android.cpp', 176 '../src/ports/SkPurgeableMemoryBlock_android.cpp',
178 '../src/ports/FontHostConfiguration_android.cpp',
179 '../src/ports/SkAshmemImageCache.cpp',
180 ], 177 ],
181 'dependencies': [ 178 'dependencies': [
182 'freetype.gyp:freetype', 179 'freetype.gyp:freetype',
183 'android_deps.gyp:expat', 180 'android_deps.gyp:expat',
184 ], 181 ],
185 }], 182 }],
186 ], 183 ],
187 'direct_dependent_settings': { 184 'direct_dependent_settings': {
188 'include_dirs': [ 185 'include_dirs': [
189 '../include/ports', 186 '../include/ports',
190 ], 187 ],
191 }, 188 },
192 }, 189 },
193 ], 190 ],
194 } 191 }
195 192
196 # Local Variables: 193 # Local Variables:
197 # tab-width:2 194 # tab-width:2
198 # indent-tabs-mode:nil 195 # indent-tabs-mode:nil
199 # End: 196 # End:
200 # vim: set expandtab tabstop=2 shiftwidth=2: 197 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698