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

Side by Side Diff: gyp/ports.gyp

Issue 22956004: skia: Added SkDiscardableMemory interface. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Added missing cpp file. Created 7 years, 4 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 | src/core/SkDiscardableMemory.h » ('j') | src/core/SkDiscardableMemory.h » ('J')
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:*',
11 ], 11 ],
12 'include_dirs': [ 12 'include_dirs': [
13 '../include/effects', 13 '../include/effects',
14 '../include/images', 14 '../include/images',
15 '../include/ports', 15 '../include/ports',
16 '../include/utils', 16 '../include/utils',
17 '../include/utils/win', 17 '../include/utils/win',
18 '../include/xml', 18 '../include/xml',
19 '../src/core', 19 '../src/core',
20 '../src/lazy', 20 '../src/lazy',
21 '../src/ports', 21 '../src/ports',
22 '../src/sfnt', 22 '../src/sfnt',
23 '../src/utils', 23 '../src/utils',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 '../src/ports/SkDebug_nacl.cpp', 26 '../src/ports/SkDebug_nacl.cpp',
27 '../src/ports/SkDebug_stdio.cpp', 27 '../src/ports/SkDebug_stdio.cpp',
28 '../src/ports/SkDebug_win.cpp', 28 '../src/ports/SkDebug_win.cpp',
29 '../src/ports/SkDiscardableMemory_none.cpp',
29 '../src/ports/SkFontHost_win.cpp', 30 '../src/ports/SkFontHost_win.cpp',
30 '../src/ports/SkFontHost_win_dw.cpp', 31 '../src/ports/SkFontHost_win_dw.cpp',
31 '../src/ports/SkGlobalInitialization_default.cpp', 32 '../src/ports/SkGlobalInitialization_default.cpp',
32 '../src/ports/SkMemory_malloc.cpp', 33 '../src/ports/SkMemory_malloc.cpp',
33 '../src/ports/SkOSFile_posix.cpp', 34 '../src/ports/SkOSFile_posix.cpp',
34 '../src/ports/SkOSFile_stdio.cpp', 35 '../src/ports/SkOSFile_stdio.cpp',
35 '../src/ports/SkOSFile_win.cpp', 36 '../src/ports/SkOSFile_win.cpp',
36 '../src/ports/SkPurgeableMemoryBlock_none.cpp', 37 '../src/ports/SkPurgeableMemoryBlock_none.cpp',
37 #'../src/ports/SkThread_none.cpp', 38 #'../src/ports/SkThread_none.cpp',
38 '../src/ports/SkThread_pthread.cpp', 39 '../src/ports/SkThread_pthread.cpp',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 }, 167 },
167 }, 168 },
168 ], 169 ],
169 } 170 }
170 171
171 # Local Variables: 172 # Local Variables:
172 # tab-width:2 173 # tab-width:2
173 # indent-tabs-mode:nil 174 # indent-tabs-mode:nil
174 # End: 175 # End:
175 # vim: set expandtab tabstop=2 shiftwidth=2: 176 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | src/core/SkDiscardableMemory.h » ('j') | src/core/SkDiscardableMemory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698