OLD | NEW |
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 Loading... |
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 Loading... |
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 ] |
OLD | NEW |