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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 include = [ | 373 include = [ |
374 "dm/*.cpp", | 374 "dm/*.cpp", |
375 "dm/*.h", | 375 "dm/*.h", |
376 "gm/*.c", | 376 "gm/*.c", |
377 "gm/*.cpp", | 377 "gm/*.cpp", |
378 "gm/*.h", | 378 "gm/*.h", |
379 "tests/*.cpp", | 379 "tests/*.cpp", |
380 "tests/*.h", | 380 "tests/*.h", |
381 "tools/CrashHandler.cpp", | 381 "tools/CrashHandler.cpp", |
382 "tools/CrashHandler.h", | 382 "tools/CrashHandler.h", |
| 383 "tools/LazyDecodeBitmap.cpp", |
| 384 "tools/LazyDecodeBitmap.h", |
383 "tools/ProcStats.cpp", | 385 "tools/ProcStats.cpp", |
384 "tools/ProcStats.h", | 386 "tools/ProcStats.h", |
385 "tools/Resources.cpp", | 387 "tools/Resources.cpp", |
386 "tools/Resources.h", | 388 "tools/Resources.h", |
387 "tools/SkBitmapRegionCanvas.cpp", | 389 "tools/SkBitmapRegionCanvas.cpp", |
388 "tools/SkBitmapRegionCanvas.h", | 390 "tools/SkBitmapRegionCanvas.h", |
389 "tools/SkBitmapRegionCodec.cpp", | 391 "tools/SkBitmapRegionCodec.cpp", |
390 "tools/SkBitmapRegionCodec.h", | 392 "tools/SkBitmapRegionCodec.h", |
391 "tools/SkBitmapRegionDecoder.cpp", | 393 "tools/SkBitmapRegionDecoder.cpp", |
392 "tools/SkBitmapRegionDecoder.h", | 394 "tools/SkBitmapRegionDecoder.h", |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 | 512 |
511 LINKOPTS_ANDROID = [ | 513 LINKOPTS_ANDROID = [ |
512 "-lEGL", | 514 "-lEGL", |
513 ] | 515 ] |
514 | 516 |
515 LINKOPTS_IOS = [] | 517 LINKOPTS_IOS = [] |
516 | 518 |
517 LINKOPTS_ALL = [ | 519 LINKOPTS_ALL = [ |
518 "-ldl", | 520 "-ldl", |
519 ] | 521 ] |
OLD | NEW |