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

Side by Side Diff: public.bzl

Issue 2379843002: Add SK_SUPPORT_LEGACY_HAIRLINE_END_CAP to work around dependent test failure. (Closed)
Patch Set: 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 | « no previous file | src/core/SkScan_Hairline.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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
594 # Chrome DEFINES. 594 # Chrome DEFINES.
595 "SK_USE_FLOATBITS", 595 "SK_USE_FLOATBITS",
596 "SK_USE_FREETYPE_EMBOLDEN", 596 "SK_USE_FREETYPE_EMBOLDEN",
597 # Turn on a few Google3-specific build fixes. 597 # Turn on a few Google3-specific build fixes.
598 "GOOGLE3", 598 "GOOGLE3",
599 # Staging flags for API changes 599 # Staging flags for API changes
600 "SK_SUPPORT_LEGACY_ACCESSBITMAP", 600 "SK_SUPPORT_LEGACY_ACCESSBITMAP",
601 "SK_SUPPORT_LEGACY_ARITHMETICMODE", 601 "SK_SUPPORT_LEGACY_ARITHMETICMODE",
602 "SK_SUPPORT_LEGACY_COLORFILTER_PTR", 602 "SK_SUPPORT_LEGACY_COLORFILTER_PTR",
603 "SK_SUPPORT_LEGACY_CREATESHADER_PTR", 603 "SK_SUPPORT_LEGACY_CREATESHADER_PTR",
604 "SK_SUPPORT_LEGACY_HAIRLINE_END_CAP",
604 "SK_SUPPORT_LEGACY_IMAGEFACTORY", 605 "SK_SUPPORT_LEGACY_IMAGEFACTORY",
605 "SK_SUPPORT_LEGACY_IMAGEFILTER_PTR", 606 "SK_SUPPORT_LEGACY_IMAGEFILTER_PTR",
606 "SK_SUPPORT_LEGACY_MASKFILTER_PTR", 607 "SK_SUPPORT_LEGACY_MASKFILTER_PTR",
607 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR", 608 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR",
608 "SK_SUPPORT_LEGACY_NEW_SURFACE_API", 609 "SK_SUPPORT_LEGACY_NEW_SURFACE_API",
609 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR", 610 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR",
610 "SK_SUPPORT_LEGACY_PICTURE_PTR", 611 "SK_SUPPORT_LEGACY_PICTURE_PTR",
611 "SK_SUPPORT_LEGACY_TYPEFACE_PTR", 612 "SK_SUPPORT_LEGACY_TYPEFACE_PTR",
612 "SK_SUPPORT_LEGACY_XFERMODE_PTR", 613 "SK_SUPPORT_LEGACY_XFERMODE_PTR",
613 "SK_SUPPORT_LEGACY_PICTUREINSTALLPIXELREF", 614 "SK_SUPPORT_LEGACY_PICTUREINSTALLPIXELREF",
(...skipping 11 matching lines...) Expand all
625 626
626 LINKOPTS_ANDROID = [ 627 LINKOPTS_ANDROID = [
627 "-lEGL", 628 "-lEGL",
628 ] 629 ]
629 630
630 LINKOPTS_IOS = [] 631 LINKOPTS_IOS = []
631 632
632 LINKOPTS_ALL = [ 633 LINKOPTS_ALL = [
633 "-ldl", 634 "-ldl",
634 ] 635 ]
OLDNEW
« no previous file with comments | « no previous file | src/core/SkScan_Hairline.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698