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

Side by Side Diff: public.bzl

Issue 1657703002: Add dm to DM_INCLUDES to fix Google3 build. (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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 ], 423 ],
424 ) 424 )
425 425
426 DM_SRCS_IOS = struct() 426 DM_SRCS_IOS = struct()
427 427
428 ################################################################################ 428 ################################################################################
429 ## DM_INCLUDES 429 ## DM_INCLUDES
430 ################################################################################ 430 ################################################################################
431 431
432 DM_INCLUDES = [ 432 DM_INCLUDES = [
433 "dm",
433 "gm", 434 "gm",
434 "src/codec", 435 "src/codec",
435 "src/effects", 436 "src/effects",
436 "src/fonts", 437 "src/fonts",
437 "src/pathops", 438 "src/pathops",
438 "src/pipe/utils", 439 "src/pipe/utils",
439 "src/ports", 440 "src/ports",
440 "src/utils/debugger", 441 "src/utils/debugger",
441 "tests", 442 "tests",
442 "tools", 443 "tools",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 512
512 LINKOPTS_ANDROID = [ 513 LINKOPTS_ANDROID = [
513 "-lEGL", 514 "-lEGL",
514 ] 515 ]
515 516
516 LINKOPTS_IOS = [] 517 LINKOPTS_IOS = []
517 518
518 LINKOPTS_ALL = [ 519 LINKOPTS_ALL = [
519 "-ldl", 520 "-ldl",
520 ] 521 ]
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