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

Side by Side Diff: public.bzl

Issue 1836493002: Rename encoders to Sk*ImageEncoder (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « gyp/images.gyp ('k') | src/codec/SkJpegCodec.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ################################################################################ 1 ################################################################################
2 # Skylark macros 2 # Skylark macros
3 ################################################################################ 3 ################################################################################
4 4
5 is_bazel = not hasattr(native, "genmpm") 5 is_bazel = not hasattr(native, "genmpm")
6 6
7 def portable_select(select_dict, bazel_condition, default_condition): 7 def portable_select(select_dict, bazel_condition, default_condition):
8 """Replaces select() with a Bazel-friendly wrapper. 8 """Replaces select() with a Bazel-friendly wrapper.
9 9
10 Args: 10 Args:
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "src/ports/*nacl*", 158 "src/ports/*nacl*",
159 "src/ports/*win*", 159 "src/ports/*win*",
160 "src/ports/SkFontConfigInterface_direct_factory.cpp", 160 "src/ports/SkFontConfigInterface_direct_factory.cpp",
161 "src/ports/SkFontMgr_custom_directory_factory.cpp", 161 "src/ports/SkFontMgr_custom_directory_factory.cpp",
162 "src/ports/SkFontMgr_custom_embedded_factory.cpp", 162 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
163 "src/ports/SkFontMgr_custom_empty_factory.cpp", 163 "src/ports/SkFontMgr_custom_empty_factory.cpp",
164 "src/ports/SkFontMgr_empty_factory.cpp", 164 "src/ports/SkFontMgr_empty_factory.cpp",
165 "src/ports/SkFontMgr_fontconfig.cpp", 165 "src/ports/SkFontMgr_fontconfig.cpp",
166 "src/ports/SkFontMgr_fontconfig_factory.cpp", 166 "src/ports/SkFontMgr_fontconfig_factory.cpp",
167 "src/ports/SkImageDecoder_empty.cpp", 167 "src/ports/SkImageDecoder_empty.cpp",
168 "src/ports/SkImageEncoder_none.cpp",
168 "src/ports/SkImageGenerator_none.cpp", 169 "src/ports/SkImageGenerator_none.cpp",
169 "src/ports/SkTLS_none.cpp", 170 "src/ports/SkTLS_none.cpp",
170 ], 171 ],
171 ) 172 )
172 173
173 # Platform-dependent SRCS for google3-default Android. 174 # Platform-dependent SRCS for google3-default Android.
174 BASE_SRCS_ANDROID = struct( 175 BASE_SRCS_ANDROID = struct(
175 include = [ 176 include = [
176 "src/android/*", 177 "src/android/*",
177 "src/codec/*", 178 "src/codec/*",
(...skipping 27 matching lines...) Expand all
205 "src/ports/*nacl*", 206 "src/ports/*nacl*",
206 "src/ports/*win*", 207 "src/ports/*win*",
207 "src/ports/SkDebug_stdio.cpp", 208 "src/ports/SkDebug_stdio.cpp",
208 "src/ports/SkFontConfigInterface_direct_factory.cpp", 209 "src/ports/SkFontConfigInterface_direct_factory.cpp",
209 "src/ports/SkFontConfigInterface_direct_google3_factory.cpp", 210 "src/ports/SkFontConfigInterface_direct_google3_factory.cpp",
210 "src/ports/SkFontMgr_custom_directory_factory.cpp", 211 "src/ports/SkFontMgr_custom_directory_factory.cpp",
211 "src/ports/SkFontMgr_custom_embedded_factory.cpp", 212 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
212 "src/ports/SkFontMgr_custom_empty_factory.cpp", 213 "src/ports/SkFontMgr_custom_empty_factory.cpp",
213 "src/ports/SkFontMgr_empty_factory.cpp", 214 "src/ports/SkFontMgr_empty_factory.cpp",
214 "src/ports/SkImageDecoder_empty.cpp", 215 "src/ports/SkImageDecoder_empty.cpp",
216 "src/ports/SkImageEncoder_none.cpp",
215 "src/ports/SkImageGenerator_none.cpp", 217 "src/ports/SkImageGenerator_none.cpp",
216 "src/ports/SkTLS_none.cpp", 218 "src/ports/SkTLS_none.cpp",
217 ], 219 ],
218 ) 220 )
219 221
220 # Platform-dependent SRCS for google3-default iOS. 222 # Platform-dependent SRCS for google3-default iOS.
221 BASE_SRCS_IOS = struct( 223 BASE_SRCS_IOS = struct(
222 include = [ 224 include = [
223 "src/android/*", 225 "src/android/*",
224 "src/codec/*", 226 "src/codec/*",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 "src/ports/*mozalloc*", 262 "src/ports/*mozalloc*",
261 "src/ports/*nacl*", 263 "src/ports/*nacl*",
262 "src/ports/*win*", 264 "src/ports/*win*",
263 "src/ports/SkFontMgr_custom.cpp", 265 "src/ports/SkFontMgr_custom.cpp",
264 "src/ports/SkFontConfigInterface_direct_factory.cpp", 266 "src/ports/SkFontConfigInterface_direct_factory.cpp",
265 "src/ports/SkFontConfigInterface_direct_google3_factory.cpp", 267 "src/ports/SkFontConfigInterface_direct_google3_factory.cpp",
266 "src/ports/SkFontMgr_custom_directory_factory.cpp", 268 "src/ports/SkFontMgr_custom_directory_factory.cpp",
267 "src/ports/SkFontMgr_custom_embedded_factory.cpp", 269 "src/ports/SkFontMgr_custom_embedded_factory.cpp",
268 "src/ports/SkFontMgr_custom_empty_factory.cpp", 270 "src/ports/SkFontMgr_custom_empty_factory.cpp",
269 "src/ports/SkFontMgr_empty_factory.cpp", 271 "src/ports/SkFontMgr_empty_factory.cpp",
272 "src/ports/SkImageDecoder_empty.cpp",
270 "src/ports/SkImageGenerator_none.cpp", 273 "src/ports/SkImageGenerator_none.cpp",
271 "src/ports/SkTLS_none.cpp", 274 "src/ports/SkTLS_none.cpp",
272 ], 275 ],
273 ) 276 )
274 277
275 ################################################################################ 278 ################################################################################
276 ## SSSE3/SSE4/AVX/AVX2 SRCS 279 ## SSSE3/SSE4/AVX/AVX2 SRCS
277 ################################################################################ 280 ################################################################################
278 281
279 SSSE3_SRCS = struct( 282 SSSE3_SRCS = struct(
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 "gm/*.cpp", 392 "gm/*.cpp",
390 "gm/*.h", 393 "gm/*.h",
391 "tests/*.cpp", 394 "tests/*.cpp",
392 "tests/*.h", 395 "tests/*.h",
393 "tools/CrashHandler.cpp", 396 "tools/CrashHandler.cpp",
394 "tools/CrashHandler.h", 397 "tools/CrashHandler.h",
395 "tools/ProcStats.cpp", 398 "tools/ProcStats.cpp",
396 "tools/ProcStats.h", 399 "tools/ProcStats.h",
397 "tools/Resources.cpp", 400 "tools/Resources.cpp",
398 "tools/Resources.h", 401 "tools/Resources.h",
399 "tools/SkBitmapRegionCanvas.cpp",
400 "tools/SkBitmapRegionCanvas.h",
401 "tools/SkBitmapRegionCodec.cpp",
402 "tools/SkBitmapRegionCodec.h",
403 "tools/SkBitmapRegionDecoder.cpp",
404 "tools/SkBitmapRegionDecoder.h",
405 "tools/SkBitmapRegionSampler.cpp",
406 "tools/SkBitmapRegionSampler.h",
407 "tools/flags/*.cpp", 402 "tools/flags/*.cpp",
408 "tools/flags/*.h", 403 "tools/flags/*.h",
409 "tools/random_parse_path.cpp", 404 "tools/random_parse_path.cpp",
410 "tools/random_parse_path.h", 405 "tools/random_parse_path.h",
411 "tools/sk_tool_utils.cpp", 406 "tools/sk_tool_utils.cpp",
412 "tools/sk_tool_utils.h", 407 "tools/sk_tool_utils.h",
413 "tools/sk_tool_utils_font.cpp", 408 "tools/sk_tool_utils_font.cpp",
414 "tools/timer/*.cpp", 409 "tools/timer/*.cpp",
415 "tools/timer/*.h", 410 "tools/timer/*.h",
416 ], 411 ],
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 536
542 LINKOPTS_ANDROID = [ 537 LINKOPTS_ANDROID = [
543 "-lEGL", 538 "-lEGL",
544 ] 539 ]
545 540
546 LINKOPTS_IOS = [] 541 LINKOPTS_IOS = []
547 542
548 LINKOPTS_ALL = [ 543 LINKOPTS_ALL = [
549 "-ldl", 544 "-ldl",
550 ] 545 ]
OLDNEW
« no previous file with comments | « gyp/images.gyp ('k') | src/codec/SkJpegCodec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698