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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 | 433 |
434 ################################################################################ | 434 ################################################################################ |
435 ## DM_INCLUDES | 435 ## DM_INCLUDES |
436 ################################################################################ | 436 ################################################################################ |
437 | 437 |
438 DM_INCLUDES = [ | 438 DM_INCLUDES = [ |
439 "dm", | 439 "dm", |
440 "gm", | 440 "gm", |
441 "src/codec", | 441 "src/codec", |
442 "src/effects", | 442 "src/effects", |
| 443 "src/effects/gradients", |
443 "src/fonts", | 444 "src/fonts", |
444 "src/pathops", | 445 "src/pathops", |
445 "src/pipe/utils", | 446 "src/pipe/utils", |
446 "src/ports", | 447 "src/ports", |
447 "tools/debugger", | 448 "tools/debugger", |
448 "tests", | 449 "tests", |
449 "tools", | 450 "tools", |
450 "tools/flags", | 451 "tools/flags", |
451 "tools/timer", | 452 "tools/timer", |
452 ] | 453 ] |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
527 | 528 |
528 LINKOPTS_ANDROID = [ | 529 LINKOPTS_ANDROID = [ |
529 "-lEGL", | 530 "-lEGL", |
530 ] | 531 ] |
531 | 532 |
532 LINKOPTS_IOS = [] | 533 LINKOPTS_IOS = [] |
533 | 534 |
534 LINKOPTS_ALL = [ | 535 LINKOPTS_ALL = [ |
535 "-ldl", | 536 "-ldl", |
536 ] | 537 ] |
OLD | NEW |