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

Side by Side Diff: public.bzl

Issue 1852113003: switch maskfilters to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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/effects/SkEmbossMaskFilter.h ('k') | samplecode/SampleAll.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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 # Turn on a few Google3-specific build fixes. 537 # Turn on a few Google3-specific build fixes.
538 "GOOGLE3", 538 "GOOGLE3",
539 # Staging flags for API changes 539 # Staging flags for API changes
540 "SK_SUPPORT_LEGACY_COLORFILTER_PTR", 540 "SK_SUPPORT_LEGACY_COLORFILTER_PTR",
541 "SK_SUPPORT_LEGACY_CREATESHADER_PTR", 541 "SK_SUPPORT_LEGACY_CREATESHADER_PTR",
542 "SK_SUPPORT_LEGACY_IMAGEFILTER_PTR", 542 "SK_SUPPORT_LEGACY_IMAGEFILTER_PTR",
543 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR", 543 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR",
544 "SK_SUPPORT_LEGACY_NEW_SURFACE_API", 544 "SK_SUPPORT_LEGACY_NEW_SURFACE_API",
545 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR", 545 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR",
546 "SK_SUPPORT_LEGACY_PICTURE_PTR", 546 "SK_SUPPORT_LEGACY_PICTURE_PTR",
547 "SK_SUPPORT_LEGACY_MASKFILTER_PTR",
547 "SK_SUPPORT_LEGACY_XFERMODE_PTR", 548 "SK_SUPPORT_LEGACY_XFERMODE_PTR",
548 ] 549 ]
549 550
550 ################################################################################ 551 ################################################################################
551 ## LINKOPTS 552 ## LINKOPTS
552 ################################################################################ 553 ################################################################################
553 554
554 LINKOPTS_UNIX = [] 555 LINKOPTS_UNIX = []
555 556
556 LINKOPTS_ANDROID = [ 557 LINKOPTS_ANDROID = [
557 "-lEGL", 558 "-lEGL",
558 ] 559 ]
559 560
560 LINKOPTS_IOS = [] 561 LINKOPTS_IOS = []
561 562
562 LINKOPTS_ALL = [ 563 LINKOPTS_ALL = [
563 "-ldl", 564 "-ldl",
564 ] 565 ]
OLDNEW
« no previous file with comments | « include/effects/SkEmbossMaskFilter.h ('k') | samplecode/SampleAll.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698