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

Side by Side Diff: public.bzl

Issue 1678893003: moved debugger support files from src/utils/debugger to tools/debugger (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 | « gyp/tests.gypi ('k') | src/utils/debugger/SkDebugCanvas.h » ('j') | 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 431
432 DM_INCLUDES = [ 432 DM_INCLUDES = [
433 "dm", 433 "dm",
434 "gm", 434 "gm",
435 "src/codec", 435 "src/codec",
436 "src/effects", 436 "src/effects",
437 "src/fonts", 437 "src/fonts",
438 "src/pathops", 438 "src/pathops",
439 "src/pipe/utils", 439 "src/pipe/utils",
440 "src/ports", 440 "src/ports",
441 "src/utils/debugger", 441 "tools/debugger",
442 "tests", 442 "tests",
443 "tools", 443 "tools",
444 "tools/flags", 444 "tools/flags",
445 "tools/timer", 445 "tools/timer",
446 ] 446 ]
447 447
448 ################################################################################ 448 ################################################################################
449 ## DM_ARGS 449 ## DM_ARGS
450 ################################################################################ 450 ################################################################################
451 451
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 512
513 LINKOPTS_ANDROID = [ 513 LINKOPTS_ANDROID = [
514 "-lEGL", 514 "-lEGL",
515 ] 515 ]
516 516
517 LINKOPTS_IOS = [] 517 LINKOPTS_IOS = []
518 518
519 LINKOPTS_ALL = [ 519 LINKOPTS_ALL = [
520 "-ldl", 520 "-ldl",
521 ] 521 ]
OLDNEW
« no previous file with comments | « gyp/tests.gypi ('k') | src/utils/debugger/SkDebugCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698