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

Side by Side Diff: public.bzl

Issue 1719253002: Fix DM_INCLUDES after https://codereview.chromium.org/1688543002 (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 4 years, 10 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 433
434 ################################################################################ 434 ################################################################################
435 ## DM_INCLUDES 435 ## DM_INCLUDES
436 ################################################################################ 436 ################################################################################
437 437
438 DM_INCLUDES = [ 438 DM_INCLUDES = [
439 "dm", 439 "dm",
440 "gm", 440 "gm",
441 "src/codec", 441 "src/codec",
442 "src/effects", 442 "src/effects",
443 "src/effects/gradients",
443 "src/fonts", 444 "src/fonts",
444 "src/pathops", 445 "src/pathops",
445 "src/pipe/utils", 446 "src/pipe/utils",
446 "src/ports", 447 "src/ports",
447 "tools/debugger", 448 "tools/debugger",
448 "tests", 449 "tests",
449 "tools", 450 "tools",
450 "tools/flags", 451 "tools/flags",
451 "tools/timer", 452 "tools/timer",
452 ] 453 ]
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
527 528
528 LINKOPTS_ANDROID = [ 529 LINKOPTS_ANDROID = [
529 "-lEGL", 530 "-lEGL",
530 ] 531 ]
531 532
532 LINKOPTS_IOS = [] 533 LINKOPTS_IOS = []
533 534
534 LINKOPTS_ALL = [ 535 LINKOPTS_ALL = [
535 "-ldl", 536 "-ldl",
536 ] 537 ]
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