Merge "Make apex availability of some bionic libraries explicit" into main

This commit is contained in:
Treehugger Robot 2024-01-05 00:32:10 +00:00 committed by Gerrit Code Review
commit 343381d593
3 changed files with 12 additions and 0 deletions

View file

@ -32,6 +32,9 @@ cc_library_static {
"bionic/libstdc++/include",
],
export_include_dirs: ["include"],
apex_available: [
"com.android.runtime",
],
}
cc_benchmark {

View file

@ -47,6 +47,9 @@ cc_library_static {
sanitize: {
never: true,
},
apex_available: [
"com.android.runtime",
],
}
cc_library {

View file

@ -146,12 +146,18 @@ cc_library_static {
// Ensure that the compiler won't insert string function calls before ifuncs are resolved.
cflags: ["-ffreestanding"],
apex_available: [
"com.android.runtime",
],
}
cc_library_static {
name: "liblinker_malloc",
defaults: ["linker_defaults", "linker_all_targets"],
srcs: ["linker_memory.cpp"],
apex_available: [
"com.android.runtime",
],
}
cc_library_static {