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

Side by Side Diff: gyp/ports.gyp

Issue 1718273004: Add an SkImageGeneratorCG (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 80 chars Created 4 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
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | src/ports/SkImageGeneratorCG.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Port-specific Skia library code. 5 # Port-specific Skia library code.
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'ports', 9 'target_name': 'ports',
10 'product_name': 'skia_ports', 10 'product_name': 'skia_ports',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 }] 143 }]
144 ], 144 ],
145 }], 145 }],
146 [ 'skia_os == "mac"', { 146 [ 'skia_os == "mac"', {
147 'include_dirs': [ 147 'include_dirs': [
148 '../include/utils/mac', 148 '../include/utils/mac',
149 ], 149 ],
150 'sources': [ 150 'sources': [
151 '../src/ports/SkFontHost_mac.cpp', 151 '../src/ports/SkFontHost_mac.cpp',
152 '../src/utils/mac/SkStream_mac.cpp', 152 '../src/utils/mac/SkStream_mac.cpp',
153
154 '../src/ports/SkImageGeneratorCG.cpp',
153 ], 155 ],
154 }], 156 }],
155 [ 'skia_os == "ios"', { 157 [ 'skia_os == "ios"', {
156 'include_dirs': [ 158 'include_dirs': [
157 '../include/utils/ios', 159 '../include/utils/ios',
158 '../include/utils/mac', 160 '../include/utils/mac',
159 ], 161 ],
160 'sources': [ 162 'sources': [
161 '../src/ports/SkFontHost_mac.cpp', 163 '../src/ports/SkFontHost_mac.cpp',
162 '../src/utils/mac/SkStream_mac.cpp', 164 '../src/utils/mac/SkStream_mac.cpp',
165
166 '../src/ports/SkImageGeneratorCG.cpp',
163 ], 167 ],
164 }], 168 }],
165 [ 'skia_os == "win"', { 169 [ 'skia_os == "win"', {
166 'include_dirs': [ 170 'include_dirs': [
167 'config/win', 171 'config/win',
168 '../src/utils/win', 172 '../src/utils/win',
169 ], 173 ],
170 'sources!': [ # these are used everywhere but windows 174 'sources!': [ # these are used everywhere but windows
171 '../src/ports/SkDebug_stdio.cpp', 175 '../src/ports/SkDebug_stdio.cpp',
172 '../src/ports/SkOSFile_posix.cpp', 176 '../src/ports/SkOSFile_posix.cpp',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 }], 212 }],
209 ], 213 ],
210 'direct_dependent_settings': { 214 'direct_dependent_settings': {
211 'include_dirs': [ 215 'include_dirs': [
212 '../include/ports', 216 '../include/ports',
213 ], 217 ],
214 }, 218 },
215 }, 219 },
216 ], 220 ],
217 } 221 }
OLDNEW
« no previous file with comments | « dm/DMSrcSink.cpp ('k') | src/ports/SkImageGeneratorCG.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698