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

Side by Side Diff: gyp/ports.gyp

Issue 394223003: skia_directwrite -> skia_gdi (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: skia_gdi instead Created 6 years, 5 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
« no previous file with comments | « gyp/common_variables.gypi ('k') | 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:*', 10 'core.gyp:*',
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 '../src/utils/win', 142 '../src/utils/win',
143 ], 143 ],
144 'sources!': [ # these are used everywhere but windows 144 'sources!': [ # these are used everywhere but windows
145 '../src/ports/SkDebug_stdio.cpp', 145 '../src/ports/SkDebug_stdio.cpp',
146 '../src/ports/SkOSFile_posix.cpp', 146 '../src/ports/SkOSFile_posix.cpp',
147 '../src/ports/SkTime_Unix.cpp', 147 '../src/ports/SkTime_Unix.cpp',
148 '../src/ports/SkTLS_pthread.cpp', 148 '../src/ports/SkTLS_pthread.cpp',
149 ], 149 ],
150 'conditions': [ 150 'conditions': [
151 # when we build for win, we only want one of these default files 151 # when we build for win, we only want one of these default files
152 [ 'skia_directwrite', { 152 [ 'skia_gdi', {
153 'sources!': [
154 '../src/ports/SkFontMgr_default_dw.cpp',
155 ],
156 }, { # normally default to direct write
153 'sources!': [ 157 'sources!': [
154 '../src/ports/SkFontMgr_default_gdi.cpp', 158 '../src/ports/SkFontMgr_default_gdi.cpp',
155 ], 159 ],
156 }, { # else gdi
157 'sources!': [
158 '../src/ports/SkFontMgr_default_dw.cpp',
159 ],
160 }], 160 }],
161 ], 161 ],
162 }, { # else !win 162 }, { # else !win
163 'sources!': [ 163 'sources!': [
164 '../src/ports/SkDebug_win.cpp', 164 '../src/ports/SkDebug_win.cpp',
165 '../src/ports/SkFontHost_win.cpp', 165 '../src/ports/SkFontHost_win.cpp',
166 '../src/ports/SkFontMgr_default_gdi.cpp', 166 '../src/ports/SkFontMgr_default_gdi.cpp',
167 '../src/ports/SkFontMgr_default_dw.cpp', 167 '../src/ports/SkFontMgr_default_dw.cpp',
168 '../src/ports/SkFontMgr_win_dw.cpp', 168 '../src/ports/SkFontMgr_win_dw.cpp',
169 '../src/ports/SkOSFile_win.cpp', 169 '../src/ports/SkOSFile_win.cpp',
(...skipping 22 matching lines...) Expand all
192 }], 192 }],
193 ], 193 ],
194 'direct_dependent_settings': { 194 'direct_dependent_settings': {
195 'include_dirs': [ 195 'include_dirs': [
196 '../include/ports', 196 '../include/ports',
197 ], 197 ],
198 }, 198 },
199 }, 199 },
200 ], 200 ],
201 } 201 }
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698