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

Side by Side Diff: public.bzl

Issue 1683803002: update DM deps in g3 build (Closed) Base URL: https://skia.googlesource.com/skia.git@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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 "tools/SkBitmapRegionCanvas.cpp", 389 "tools/SkBitmapRegionCanvas.cpp",
390 "tools/SkBitmapRegionCanvas.h", 390 "tools/SkBitmapRegionCanvas.h",
391 "tools/SkBitmapRegionCodec.cpp", 391 "tools/SkBitmapRegionCodec.cpp",
392 "tools/SkBitmapRegionCodec.h", 392 "tools/SkBitmapRegionCodec.h",
393 "tools/SkBitmapRegionDecoder.cpp", 393 "tools/SkBitmapRegionDecoder.cpp",
394 "tools/SkBitmapRegionDecoder.h", 394 "tools/SkBitmapRegionDecoder.h",
395 "tools/SkBitmapRegionSampler.cpp", 395 "tools/SkBitmapRegionSampler.cpp",
396 "tools/SkBitmapRegionSampler.h", 396 "tools/SkBitmapRegionSampler.h",
397 "tools/flags/*.cpp", 397 "tools/flags/*.cpp",
398 "tools/flags/*.h", 398 "tools/flags/*.h",
399 "tools/random_parse_path.cpp",
400 "tools/random_parse_path.h",
399 "tools/sk_tool_utils.cpp", 401 "tools/sk_tool_utils.cpp",
400 "tools/sk_tool_utils.h", 402 "tools/sk_tool_utils.h",
401 "tools/sk_tool_utils_font.cpp", 403 "tools/sk_tool_utils_font.cpp",
402 "tools/timer/*.cpp", 404 "tools/timer/*.cpp",
403 "tools/timer/*.h", 405 "tools/timer/*.h",
404 ], 406 ],
405 exclude = [ 407 exclude = [
406 "dm/DMSrcSinkAndroid.cpp", # Android-only. 408 "dm/DMSrcSinkAndroid.cpp", # Android-only.
407 "tests/FontMgrAndroidParserTest.cpp", # Android-only. 409 "tests/FontMgrAndroidParserTest.cpp", # Android-only.
408 "tests/PathOpsSkpClipTest.cpp", # Alternate main. 410 "tests/PathOpsSkpClipTest.cpp", # Alternate main.
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 514
513 LINKOPTS_ANDROID = [ 515 LINKOPTS_ANDROID = [
514 "-lEGL", 516 "-lEGL",
515 ] 517 ]
516 518
517 LINKOPTS_IOS = [] 519 LINKOPTS_IOS = []
518 520
519 LINKOPTS_ALL = [ 521 LINKOPTS_ALL = [
520 "-ldl", 522 "-ldl",
521 ] 523 ]
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