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

Side by Side Diff: public.bzl

Issue 1933393002: Move SkTypeface to sk_sp. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Restore deleted Android code. Created 4 years, 7 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/ports/SkFontConfigInterface.h ('k') | samplecode/ClockFaceView.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 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 "SK_SUPPORT_LEGACY_COLORFILTER_PTR", 583 "SK_SUPPORT_LEGACY_COLORFILTER_PTR",
584 "SK_SUPPORT_LEGACY_CREATESHADER_PTR", 584 "SK_SUPPORT_LEGACY_CREATESHADER_PTR",
585 "SK_SUPPORT_LEGACY_IMAGEFILTER_PTR", 585 "SK_SUPPORT_LEGACY_IMAGEFILTER_PTR",
586 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR", 586 "SK_SUPPORT_LEGACY_MINOR_EFFECT_PTR",
587 "SK_SUPPORT_LEGACY_NEW_SURFACE_API", 587 "SK_SUPPORT_LEGACY_NEW_SURFACE_API",
588 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR", 588 "SK_SUPPORT_LEGACY_PATHEFFECT_PTR",
589 "SK_SUPPORT_LEGACY_PICTURE_PTR", 589 "SK_SUPPORT_LEGACY_PICTURE_PTR",
590 "SK_SUPPORT_LEGACY_MASKFILTER_PTR", 590 "SK_SUPPORT_LEGACY_MASKFILTER_PTR",
591 "SK_SUPPORT_LEGACY_IMAGEFACTORY", 591 "SK_SUPPORT_LEGACY_IMAGEFACTORY",
592 "SK_SUPPORT_LEGACY_XFERMODE_PTR", 592 "SK_SUPPORT_LEGACY_XFERMODE_PTR",
593 "SK_SUPPORT_LEGACY_TYPEFACE_PTR",
593 ] 594 ]
594 595
595 ################################################################################ 596 ################################################################################
596 ## LINKOPTS 597 ## LINKOPTS
597 ################################################################################ 598 ################################################################################
598 599
599 LINKOPTS_UNIX = [] 600 LINKOPTS_UNIX = []
600 601
601 LINKOPTS_ANDROID = [ 602 LINKOPTS_ANDROID = [
602 "-lEGL", 603 "-lEGL",
603 ] 604 ]
604 605
605 LINKOPTS_IOS = [] 606 LINKOPTS_IOS = []
606 607
607 LINKOPTS_ALL = [ 608 LINKOPTS_ALL = [
608 "-ldl", 609 "-ldl",
609 ] 610 ]
OLDNEW
« no previous file with comments | « include/ports/SkFontConfigInterface.h ('k') | samplecode/ClockFaceView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698