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

Side by Side Diff: public.bzl

Issue 1902333002: Fix DM blaze build (PNG output is now dependent on picture_utils) (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 | « 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 "tools/CrashHandler.cpp", 401 "tools/CrashHandler.cpp",
402 "tools/CrashHandler.h", 402 "tools/CrashHandler.h",
403 "tools/ProcStats.cpp", 403 "tools/ProcStats.cpp",
404 "tools/ProcStats.h", 404 "tools/ProcStats.h",
405 "tools/Resources.cpp", 405 "tools/Resources.cpp",
406 "tools/Resources.h", 406 "tools/Resources.h",
407 "tools/flags/*.cpp", 407 "tools/flags/*.cpp",
408 "tools/flags/*.h", 408 "tools/flags/*.h",
409 "tools/gpu/**/*.cpp", 409 "tools/gpu/**/*.cpp",
410 "tools/gpu/**/*.h", 410 "tools/gpu/**/*.h",
411 "tools/picture_utils.cpp",
411 "tools/random_parse_path.cpp", 412 "tools/random_parse_path.cpp",
412 "tools/random_parse_path.h", 413 "tools/random_parse_path.h",
413 "tools/sk_tool_utils.cpp", 414 "tools/sk_tool_utils.cpp",
414 "tools/sk_tool_utils.h", 415 "tools/sk_tool_utils.h",
415 "tools/sk_tool_utils_font.cpp", 416 "tools/sk_tool_utils_font.cpp",
416 "tools/timer/*.cpp", 417 "tools/timer/*.cpp",
417 "tools/timer/*.h", 418 "tools/timer/*.h",
418 ], 419 ],
419 exclude = [ 420 exclude = [
420 "dm/DMSrcSinkAndroid.cpp", # Android-only. 421 "dm/DMSrcSinkAndroid.cpp", # Android-only.
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 567
567 LINKOPTS_ANDROID = [ 568 LINKOPTS_ANDROID = [
568 "-lEGL", 569 "-lEGL",
569 ] 570 ]
570 571
571 LINKOPTS_IOS = [] 572 LINKOPTS_IOS = []
572 573
573 LINKOPTS_ALL = [ 574 LINKOPTS_ALL = [
574 "-ldl", 575 "-ldl",
575 ] 576 ]
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