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

Side by Side Diff: public.bzl

Issue 1671193002: Make SkPicture/SkImageGenerator default to SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Move ImageGenerator impl into ktx code to share with nanobench Created 4 years, 10 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 | « include/core/SkPicture.h ('k') | src/core/SkPicture.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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 include = [ 373 include = [
374 "dm/*.cpp", 374 "dm/*.cpp",
375 "dm/*.h", 375 "dm/*.h",
376 "gm/*.c", 376 "gm/*.c",
377 "gm/*.cpp", 377 "gm/*.cpp",
378 "gm/*.h", 378 "gm/*.h",
379 "tests/*.cpp", 379 "tests/*.cpp",
380 "tests/*.h", 380 "tests/*.h",
381 "tools/CrashHandler.cpp", 381 "tools/CrashHandler.cpp",
382 "tools/CrashHandler.h", 382 "tools/CrashHandler.h",
383 "tools/LazyDecodeBitmap.cpp",
384 "tools/LazyDecodeBitmap.h",
385 "tools/ProcStats.cpp", 383 "tools/ProcStats.cpp",
386 "tools/ProcStats.h", 384 "tools/ProcStats.h",
387 "tools/Resources.cpp", 385 "tools/Resources.cpp",
388 "tools/Resources.h", 386 "tools/Resources.h",
389 "tools/SkBitmapRegionCanvas.cpp", 387 "tools/SkBitmapRegionCanvas.cpp",
390 "tools/SkBitmapRegionCanvas.h", 388 "tools/SkBitmapRegionCanvas.h",
391 "tools/SkBitmapRegionCodec.cpp", 389 "tools/SkBitmapRegionCodec.cpp",
392 "tools/SkBitmapRegionCodec.h", 390 "tools/SkBitmapRegionCodec.h",
393 "tools/SkBitmapRegionDecoder.cpp", 391 "tools/SkBitmapRegionDecoder.cpp",
394 "tools/SkBitmapRegionDecoder.h", 392 "tools/SkBitmapRegionDecoder.h",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 510
513 LINKOPTS_ANDROID = [ 511 LINKOPTS_ANDROID = [
514 "-lEGL", 512 "-lEGL",
515 ] 513 ]
516 514
517 LINKOPTS_IOS = [] 515 LINKOPTS_IOS = []
518 516
519 LINKOPTS_ALL = [ 517 LINKOPTS_ALL = [
520 "-ldl", 518 "-ldl",
521 ] 519 ]
OLDNEW
« no previous file with comments | « include/core/SkPicture.h ('k') | src/core/SkPicture.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698