40a6077244
Functions for reading the public libraries list are moved out of library_namespace.cpp to public_libraries.cpp. In addition, library-local symbols are moved from android namespace to android::nativeloader namespace. Bug: 130388701 Test: build & pass presubmit tests Change-Id: If82419598304d56d29bfec4ef553443c788d0f53
71 lines
1.6 KiB
Text
71 lines
1.6 KiB
Text
// Shared library for target
|
|
// ========================================================
|
|
cc_defaults {
|
|
name: "libnativeloader-defaults",
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
cppflags: [
|
|
"-fvisibility=hidden",
|
|
],
|
|
header_libs: ["libnativeloader-headers"],
|
|
export_header_lib_headers: ["libnativeloader-headers"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libnativeloader",
|
|
defaults: ["libnativeloader-defaults"],
|
|
host_supported: true,
|
|
srcs: [
|
|
"native_loader.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libnativehelper",
|
|
"liblog",
|
|
"libnativebridge",
|
|
"libbase",
|
|
],
|
|
target: {
|
|
android: {
|
|
srcs: [
|
|
"library_namespaces.cpp",
|
|
"public_libraries.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libdl_android",
|
|
],
|
|
},
|
|
},
|
|
required: [
|
|
"llndk.libraries.txt",
|
|
"vndksp.libraries.txt",
|
|
],
|
|
stubs: {
|
|
symbol_file: "libnativeloader.map.txt",
|
|
versions: ["1"],
|
|
},
|
|
}
|
|
|
|
// TODO(b/124250621) eliminate the need for this library
|
|
cc_library {
|
|
name: "libnativeloader_lazy",
|
|
defaults: ["libnativeloader-defaults"],
|
|
host_supported: false,
|
|
srcs: ["native_loader_lazy.cpp"],
|
|
required: ["libnativeloader"],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libnativeloader-headers",
|
|
host_supported: true,
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
// TODO(jiyong) Remove this when its use in the internal master is
|
|
// switched to libnativeloader-headers
|
|
cc_library_headers {
|
|
name: "libnativeloader-dummy-headers",
|
|
host_supported: true,
|
|
export_include_dirs: ["include"],
|
|
}
|