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", | |
385 "tools/ProcStats.cpp", | 383 "tools/ProcStats.cpp", |
386 "tools/ProcStats.h", | 384 "tools/ProcStats.h", |
387 "tools/Resources.cpp", | 385 "tools/Resources.cpp", |
388 "tools/Resources.h", | 386 "tools/Resources.h", |
389 "tools/SkBitmapRegionCanvas.cpp", | 387 "tools/SkBitmapRegionCanvas.cpp", |
390 "tools/SkBitmapRegionCanvas.h", | 388 "tools/SkBitmapRegionCanvas.h", |
391 "tools/SkBitmapRegionCodec.cpp", | 389 "tools/SkBitmapRegionCodec.cpp", |
392 "tools/SkBitmapRegionCodec.h", | 390 "tools/SkBitmapRegionCodec.h", |
393 "tools/SkBitmapRegionDecoder.cpp", | 391 "tools/SkBitmapRegionDecoder.cpp", |
394 "tools/SkBitmapRegionDecoder.h", | 392 "tools/SkBitmapRegionDecoder.h", |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
512 | 510 |
513 LINKOPTS_ANDROID = [ | 511 LINKOPTS_ANDROID = [ |
514 "-lEGL", | 512 "-lEGL", |
515 ] | 513 ] |
516 | 514 |
517 LINKOPTS_IOS = [] | 515 LINKOPTS_IOS = [] |
518 | 516 |
519 LINKOPTS_ALL = [ | 517 LINKOPTS_ALL = [ |
520 "-ldl", | 518 "-ldl", |
521 ] | 519 ] |
OLD | NEW |