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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 BASE_DEPS_IOS = [] | 328 BASE_DEPS_IOS = [] |
329 | 329 |
330 ################################################################################ | 330 ################################################################################ |
331 ## INCLUDES | 331 ## INCLUDES |
332 ################################################################################ | 332 ################################################################################ |
333 | 333 |
334 # Includes needed by Skia implementation. Not public includes. | 334 # Includes needed by Skia implementation. Not public includes. |
335 INCLUDES = [ | 335 INCLUDES = [ |
336 "include/android", | 336 "include/android", |
337 "include/c", | 337 "include/c", |
| 338 "include/client/android", |
338 "include/codec", | 339 "include/codec", |
339 "include/config", | 340 "include/config", |
340 "include/core", | 341 "include/core", |
341 "include/effects", | 342 "include/effects", |
342 "include/gpu", | 343 "include/gpu", |
343 "include/images", | 344 "include/images", |
344 "include/pathops", | 345 "include/pathops", |
345 "include/pipe", | 346 "include/pipe", |
346 "include/ports", | 347 "include/ports", |
347 "include/private", | 348 "include/private", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 | 511 |
511 LINKOPTS_ANDROID = [ | 512 LINKOPTS_ANDROID = [ |
512 "-lEGL", | 513 "-lEGL", |
513 ] | 514 ] |
514 | 515 |
515 LINKOPTS_IOS = [] | 516 LINKOPTS_IOS = [] |
516 | 517 |
517 LINKOPTS_ALL = [ | 518 LINKOPTS_ALL = [ |
518 "-ldl", | 519 "-ldl", |
519 ] | 520 ] |
OLD | NEW |