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

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: Modified a comment. 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 | gyp/tools.gyp » ('j') | include/lazy/SkImageCache.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:core', 10 'core.gyp:core',
11 'sfnt.gyp:sfnt', 11 'sfnt.gyp:sfnt',
12 'utils.gyp:utils', 12 'utils.gyp:utils',
13 ], 13 ],
14 'include_dirs': [ 14 'include_dirs': [
15 '../include/effects',
15 '../include/images', 16 '../include/images',
16 '../include/effects', 17 '../include/lazy',
17 '../include/ports', 18 '../include/ports',
18 '../include/xml', 19 '../include/xml',
19 '../src/core', 20 '../src/core',
20 '../src/utils', 21 '../src/utils',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 '../src/ports/SkDebug_nacl.cpp', 24 '../src/ports/SkDebug_nacl.cpp',
24 '../src/ports/SkDebug_stdio.cpp', 25 '../src/ports/SkDebug_stdio.cpp',
25 '../src/ports/SkDebug_win.cpp', 26 '../src/ports/SkDebug_win.cpp',
26 '../src/ports/SkFontHost_sandbox_none.cpp', 27 '../src/ports/SkFontHost_sandbox_none.cpp',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 '../include/utils/mac', 95 '../include/utils/mac',
95 '../third_party/freetype/include/**', 96 '../third_party/freetype/include/**',
96 ], 97 ],
97 'sources': [ 98 'sources': [
98 '../src/ports/SkFontHost_mac.cpp', 99 '../src/ports/SkFontHost_mac.cpp',
99 '../src/utils/mac/SkStream_mac.cpp', 100 '../src/utils/mac/SkStream_mac.cpp',
100 # '../src/ports/SkFontHost_FreeType.cpp', 101 # '../src/ports/SkFontHost_FreeType.cpp',
101 # '../src/ports/SkFontHost_FreeType_common.cpp', 102 # '../src/ports/SkFontHost_FreeType_common.cpp',
102 # '../src/ports/SkFontHost_freetype_mac.cpp', 103 # '../src/ports/SkFontHost_freetype_mac.cpp',
103 '../src/ports/SkThread_pthread.cpp', 104 '../src/ports/SkThread_pthread.cpp',
105 '../include/ports/SkMacImageCache.h',
106 '../src/ports/SkMacImageCache.cpp',
104 ], 107 ],
105 'sources!': [ 108 'sources!': [
106 '../src/ports/SkFontHost_tables.cpp', 109 '../src/ports/SkFontHost_tables.cpp',
107 ], 110 ],
108 }], 111 }],
109 [ 'skia_os == "ios"', { 112 [ 'skia_os == "ios"', {
110 'include_dirs': [ 113 'include_dirs': [
111 '../include/utils/ios', 114 '../include/utils/ios',
112 '../include/utils/mac', 115 '../include/utils/mac',
113 ], 116 ],
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 }, 186 },
184 }, 187 },
185 ], 188 ],
186 } 189 }
187 190
188 # Local Variables: 191 # Local Variables:
189 # tab-width:2 192 # tab-width:2
190 # indent-tabs-mode:nil 193 # indent-tabs-mode:nil
191 # End: 194 # End:
192 # vim: set expandtab tabstop=2 shiftwidth=2: 195 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | gyp/tools.gyp » ('j') | include/lazy/SkImageCache.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698