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

Side by Side Diff: gyp/ports.gyp

Issue 83563002: Implement SkAshmemDiscardableMemory (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: final rebase Created 7 years 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 | gyp/tests.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:*', 10 'core.gyp:*',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 '../src/ports/SkFontMgr_default_dw.cpp', 146 '../src/ports/SkFontMgr_default_dw.cpp',
147 '../src/ports/SkOSFile_win.cpp', 147 '../src/ports/SkOSFile_win.cpp',
148 '../src/ports/SkThread_win.cpp', 148 '../src/ports/SkThread_win.cpp',
149 '../src/ports/SkTime_win.cpp', 149 '../src/ports/SkTime_win.cpp',
150 '../src/ports/SkTLS_win.cpp', 150 '../src/ports/SkTLS_win.cpp',
151 ], 151 ],
152 }], 152 }],
153 [ 'skia_os == "android"', { 153 [ 'skia_os == "android"', {
154 'sources!': [ 154 'sources!': [
155 '../src/ports/SkDebug_stdio.cpp', 155 '../src/ports/SkDebug_stdio.cpp',
156 '../src/ports/SkDiscardableMemory_none.cpp',
156 '../src/ports/SkPurgeableMemoryBlock_none.cpp', 157 '../src/ports/SkPurgeableMemoryBlock_none.cpp',
157 ], 158 ],
158 'sources': [ 159 'sources': [
159 '../src/ports/SkDebug_android.cpp', 160 '../src/ports/SkDebug_android.cpp',
161 '../src/ports/SkDiscardableMemory_ashmem.cpp',
160 '../src/ports/SkFontConfigInterface_android.cpp', 162 '../src/ports/SkFontConfigInterface_android.cpp',
161 '../src/ports/SkFontConfigParser_android.cpp', 163 '../src/ports/SkFontConfigParser_android.cpp',
162 '../src/ports/SkFontHost_fontconfig.cpp', 164 '../src/ports/SkFontHost_fontconfig.cpp',
163 '../src/ports/SkPurgeableMemoryBlock_android.cpp', 165 '../src/ports/SkPurgeableMemoryBlock_android.cpp',
164 ], 166 ],
165 'dependencies': [ 167 'dependencies': [
166 'android_deps.gyp:expat', 168 'android_deps.gyp:expat',
167 ], 169 ],
168 }], 170 }],
169 ], 171 ],
170 'direct_dependent_settings': { 172 'direct_dependent_settings': {
171 'include_dirs': [ 173 'include_dirs': [
172 '../include/ports', 174 '../include/ports',
173 ], 175 ],
174 }, 176 },
175 }, 177 },
176 ], 178 ],
177 } 179 }
OLDNEW
« no previous file with comments | « no previous file | gyp/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698