| 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 ], | 423 ], |
| 424 ) | 424 ) |
| 425 | 425 |
| 426 DM_SRCS_IOS = struct() | 426 DM_SRCS_IOS = struct() |
| 427 | 427 |
| 428 ################################################################################ | 428 ################################################################################ |
| 429 ## DM_INCLUDES | 429 ## DM_INCLUDES |
| 430 ################################################################################ | 430 ################################################################################ |
| 431 | 431 |
| 432 DM_INCLUDES = [ | 432 DM_INCLUDES = [ |
| 433 "dm", |
| 433 "gm", | 434 "gm", |
| 434 "src/codec", | 435 "src/codec", |
| 435 "src/effects", | 436 "src/effects", |
| 436 "src/fonts", | 437 "src/fonts", |
| 437 "src/pathops", | 438 "src/pathops", |
| 438 "src/pipe/utils", | 439 "src/pipe/utils", |
| 439 "src/ports", | 440 "src/ports", |
| 440 "src/utils/debugger", | 441 "src/utils/debugger", |
| 441 "tests", | 442 "tests", |
| 442 "tools", | 443 "tools", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 | 512 |
| 512 LINKOPTS_ANDROID = [ | 513 LINKOPTS_ANDROID = [ |
| 513 "-lEGL", | 514 "-lEGL", |
| 514 ] | 515 ] |
| 515 | 516 |
| 516 LINKOPTS_IOS = [] | 517 LINKOPTS_IOS = [] |
| 517 | 518 |
| 518 LINKOPTS_ALL = [ | 519 LINKOPTS_ALL = [ |
| 519 "-ldl", | 520 "-ldl", |
| 520 ] | 521 ] |
| OLD | NEW |