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

Side by Side Diff: public.bzl

Issue 2355483002: abstract name of clipping ops, to transtion to a more restricted set (Closed)
Patch Set: remove setClipRegion entirely Created 4 years, 3 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
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 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 "SK_SUPPORT_LEGACY_MASKFILTER_PTR", 606 "SK_SUPPORT_LEGACY_MASKFILTER_PTR",
607 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR", 607 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR",
608 "SK_SUPPORT_LEGACY_NEW_SURFACE_API", 608 "SK_SUPPORT_LEGACY_NEW_SURFACE_API",
609 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR", 609 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR",
610 "SK_SUPPORT_LEGACY_PICTURE_PTR", 610 "SK_SUPPORT_LEGACY_PICTURE_PTR",
611 "SK_SUPPORT_LEGACY_TYPEFACE_PTR", 611 "SK_SUPPORT_LEGACY_TYPEFACE_PTR",
612 "SK_SUPPORT_LEGACY_XFERMODE_PTR", 612 "SK_SUPPORT_LEGACY_XFERMODE_PTR",
613 "SK_SUPPORT_LEGACY_PICTUREINSTALLPIXELREF", 613 "SK_SUPPORT_LEGACY_PICTUREINSTALLPIXELREF",
614 "SK_SUPPORT_LEGACY_STREAM_DATA", 614 "SK_SUPPORT_LEGACY_STREAM_DATA",
615 "SK_SUPPORT_LEGACY_TEXTBLOB_BUILDER", 615 "SK_SUPPORT_LEGACY_TEXTBLOB_BUILDER",
616 "SK_SUPPORT_LEGACY_CLIP_REGIONOPS",
616 ] 617 ]
617 618
618 ################################################################################ 619 ################################################################################
619 ## LINKOPTS 620 ## LINKOPTS
620 ################################################################################ 621 ################################################################################
621 622
622 LINKOPTS_UNIX = [] 623 LINKOPTS_UNIX = []
623 624
624 LINKOPTS_ANDROID = [ 625 LINKOPTS_ANDROID = [
625 "-lEGL", 626 "-lEGL",
626 ] 627 ]
627 628
628 LINKOPTS_IOS = [] 629 LINKOPTS_IOS = []
629 630
630 LINKOPTS_ALL = [ 631 LINKOPTS_ALL = [
631 "-ldl", 632 "-ldl",
632 ] 633 ]
OLDNEW
« no previous file with comments | « include/utils/SkNWayCanvas.h ('k') | samplecode/SampleApp.cpp » ('j') | src/core/SkCanvas.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698