diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/Android.bp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libc/Android.bp b/libc/Android.bp index 5bd3b9c09..b48d58231 100644 --- a/libc/Android.bp +++ b/libc/Android.bp @@ -1792,6 +1792,8 @@ cc_library_headers { "//apex_available:platform", "//apex_available:anyapex", ], + // used by most APEXes indirectly via libunwind_llvm + min_sdk_version: "apex_inherit", visibility: [ ":__subpackages__", // visible to bionic // ... and only to these places (b/152668052) @@ -1935,7 +1937,8 @@ cc_defaults { "//apex_available:platform", "//apex_available:anyapex", ], - + // crt* objects are used by most cc_binary/cc_library in "anyapex" + min_sdk_version: "apex_inherit", cflags: [ "-Wno-gcc-compat", "-Wall", @@ -2489,6 +2492,11 @@ cc_library_shared { allow_undefined_symbols: true, // Like libc, disable native coverage for libc_scudo. native_coverage: false, + apex_available: [ + "//apex_available:platform", + "com.android.media.swcodec", + ], + min_sdk_version: "apex_inherit", } subdirs = [ |