Make ndk_prebuilt_* be available to any apex

The NDK prebuilts are implicitly used when building with sdk_version set.
Make the module types be available to any apex so that we don't need to
manually add apex_available property to the module definitions manually.

Bug: 150999716
Test: m

Change-Id: I0870afa4c74b4a06ab1273dff84615778561ecc9
This commit is contained in:
Jiyong Park
2020-03-09 16:24:11 +09:00
parent 541142ce6b
commit e01e228270
2 changed files with 10 additions and 16 deletions

View File

@@ -819,22 +819,6 @@ func makeApexAvailableWhitelist() map[string][]string {
"libprofile-extras",
"libprofile-extras_ndk",
"libunwind_llvm",
"ndk_crtbegin_dynamic.27",
"ndk_crtbegin_so.16",
"ndk_crtbegin_so.19",
"ndk_crtbegin_so.21",
"ndk_crtbegin_so.24",
"ndk_crtbegin_so.27",
"ndk_crtend_android.27",
"ndk_crtend_so.16",
"ndk_crtend_so.19",
"ndk_crtend_so.21",
"ndk_crtend_so.24",
"ndk_crtend_so.27",
"ndk_libandroid_support",
"ndk_libc++_static",
"ndk_libc++abi",
"ndk_libunwind",
}
return m
}