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

Side by Side Diff: public.bzl

Issue 2396953002: Revert[8] "replace SkXfermode obj with SkBlendMode enum in paints" (Closed)
Patch Set: add tmp virtual to unroll legacy arithmodes Created 4 years, 2 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/gpu/effects/GrPorterDuffXferProcessor.h ('k') | samplecode/SampleAARectModes.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 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR", 609 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR",
610 "SK_SUPPORT_LEGACY_NEW_SURFACE_API", 610 "SK_SUPPORT_LEGACY_NEW_SURFACE_API",
611 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR", 611 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR",
612 "SK_SUPPORT_LEGACY_PICTURE_PTR", 612 "SK_SUPPORT_LEGACY_PICTURE_PTR",
613 "SK_SUPPORT_LEGACY_TYPEFACE_PTR", 613 "SK_SUPPORT_LEGACY_TYPEFACE_PTR",
614 "SK_SUPPORT_LEGACY_XFERMODE_PTR", 614 "SK_SUPPORT_LEGACY_XFERMODE_PTR",
615 "SK_SUPPORT_LEGACY_PICTUREINSTALLPIXELREF", 615 "SK_SUPPORT_LEGACY_PICTUREINSTALLPIXELREF",
616 "SK_SUPPORT_LEGACY_STREAM_DATA", 616 "SK_SUPPORT_LEGACY_STREAM_DATA",
617 "SK_SUPPORT_LEGACY_CLIP_REGIONOPS", 617 "SK_SUPPORT_LEGACY_CLIP_REGIONOPS",
618 "SK_SUPPORT_LEGACY_SHADER_ISABITMAP", 618 "SK_SUPPORT_LEGACY_SHADER_ISABITMAP",
619 "SK_SUPPORT_LEGACY_XFERMODE_OBJECT",
619 ] 620 ]
620 621
621 ################################################################################ 622 ################################################################################
622 ## LINKOPTS 623 ## LINKOPTS
623 ################################################################################ 624 ################################################################################
624 625
625 LINKOPTS_UNIX = [] 626 LINKOPTS_UNIX = []
626 627
627 LINKOPTS_ANDROID = [ 628 LINKOPTS_ANDROID = [
628 "-lEGL", 629 "-lEGL",
629 ] 630 ]
630 631
631 LINKOPTS_IOS = [] 632 LINKOPTS_IOS = []
632 633
633 LINKOPTS_ALL = [ 634 LINKOPTS_ALL = [
634 "-ldl", 635 "-ldl",
635 ] 636 ]
OLDNEW
« no previous file with comments | « include/gpu/effects/GrPorterDuffXferProcessor.h ('k') | samplecode/SampleAARectModes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698