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

Side by Side Diff: public.bzl

Issue 1699183004: Make SkPicture/SkImageGenerator default to SkCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix rebase bug 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 include = [ 366 include = [
367 "dm/*.cpp", 367 "dm/*.cpp",
368 "dm/*.h", 368 "dm/*.h",
369 "gm/*.c", 369 "gm/*.c",
370 "gm/*.cpp", 370 "gm/*.cpp",
371 "gm/*.h", 371 "gm/*.h",
372 "tests/*.cpp", 372 "tests/*.cpp",
373 "tests/*.h", 373 "tests/*.h",
374 "tools/CrashHandler.cpp", 374 "tools/CrashHandler.cpp",
375 "tools/CrashHandler.h", 375 "tools/CrashHandler.h",
376 "tools/LazyDecodeBitmap.cpp",
377 "tools/LazyDecodeBitmap.h",
378 "tools/ProcStats.cpp", 376 "tools/ProcStats.cpp",
379 "tools/ProcStats.h", 377 "tools/ProcStats.h",
380 "tools/Resources.cpp", 378 "tools/Resources.cpp",
381 "tools/Resources.h", 379 "tools/Resources.h",
382 "tools/SkBitmapRegionCanvas.cpp", 380 "tools/SkBitmapRegionCanvas.cpp",
383 "tools/SkBitmapRegionCanvas.h", 381 "tools/SkBitmapRegionCanvas.h",
384 "tools/SkBitmapRegionCodec.cpp", 382 "tools/SkBitmapRegionCodec.cpp",
385 "tools/SkBitmapRegionCodec.h", 383 "tools/SkBitmapRegionCodec.h",
386 "tools/SkBitmapRegionDecoder.cpp", 384 "tools/SkBitmapRegionDecoder.cpp",
387 "tools/SkBitmapRegionDecoder.h", 385 "tools/SkBitmapRegionDecoder.h",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 514
517 LINKOPTS_ANDROID = [ 515 LINKOPTS_ANDROID = [
518 "-lEGL", 516 "-lEGL",
519 ] 517 ]
520 518
521 LINKOPTS_IOS = [] 519 LINKOPTS_IOS = []
522 520
523 LINKOPTS_ALL = [ 521 LINKOPTS_ALL = [
524 "-ldl", 522 "-ldl",
525 ] 523 ]
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