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

Side by Side Diff: public.bzl

Issue 1808723002: Google3 apps are still using Create* shader methods. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 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 | no next file » | 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 DEFINES_UNIX = [ 491 DEFINES_UNIX = [
492 "PNG_SKIP_SETJMP_CHECK", 492 "PNG_SKIP_SETJMP_CHECK",
493 "SK_BUILD_FOR_UNIX", 493 "SK_BUILD_FOR_UNIX",
494 "SK_SAMPLES_FOR_X", 494 "SK_SAMPLES_FOR_X",
495 "SK_SFNTLY_SUBSETTER", 495 "SK_SFNTLY_SUBSETTER",
496 "SK_CODEC_DECODES_GIF", 496 "SK_CODEC_DECODES_GIF",
497 "SK_CODEC_DECODES_JPEG", 497 "SK_CODEC_DECODES_JPEG",
498 "SK_CODEC_DECODES_PNG", 498 "SK_CODEC_DECODES_PNG",
499 "SK_CODEC_DECODES_RAW", 499 "SK_CODEC_DECODES_RAW",
500 "SK_CODEC_DECODES_WEBP", 500 "SK_CODEC_DECODES_WEBP",
501 "SK_SUPPORT_LEGACY_CREATESHADER_PTR",
501 ] 502 ]
502 503
503 DEFINES_ANDROID = [ 504 DEFINES_ANDROID = [
504 "SK_BUILD_FOR_ANDROID", 505 "SK_BUILD_FOR_ANDROID",
505 "SK_CODEC_DECODES_GIF", 506 "SK_CODEC_DECODES_GIF",
506 "SK_CODEC_DECODES_JPEG", 507 "SK_CODEC_DECODES_JPEG",
507 "SK_CODEC_DECODES_PNG", 508 "SK_CODEC_DECODES_PNG",
508 "SK_CODEC_DECODES_RAW", 509 "SK_CODEC_DECODES_RAW",
509 "SK_CODEC_DECODES_WEBP", 510 "SK_CODEC_DECODES_WEBP",
510 ] 511 ]
(...skipping 20 matching lines...) Expand all
531 532
532 LINKOPTS_ANDROID = [ 533 LINKOPTS_ANDROID = [
533 "-lEGL", 534 "-lEGL",
534 ] 535 ]
535 536
536 LINKOPTS_IOS = [] 537 LINKOPTS_IOS = []
537 538
538 LINKOPTS_ALL = [ 539 LINKOPTS_ALL = [
539 "-ldl", 540 "-ldl",
540 ] 541 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698