5c8c6a90fd
This reverts commit 0daa405272
.
Reason for revert: Breaks cf_x86_phone-userdebug: https://android-build.googleplex.com/builds/build-details/5273735/targets/cf_x86_phone-userdebug
Bug: 123700170
Change-Id: Id82a91f845120dd41ce02b6d7fef886a87eb23a8
33 lines
697 B
Text
33 lines
697 B
Text
// Shared library for target
|
|
// ========================================================
|
|
cc_library {
|
|
name: "libnativeloader",
|
|
host_supported: true,
|
|
srcs: ["native_loader.cpp"],
|
|
shared_libs: [
|
|
"libnativehelper",
|
|
"liblog",
|
|
"libcutils",
|
|
"libnativebridge",
|
|
"libbase",
|
|
],
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
cppflags: [
|
|
"-fvisibility=hidden",
|
|
],
|
|
export_include_dirs: ["include"],
|
|
required: [
|
|
"llndk.libraries.txt",
|
|
"vndksp.libraries.txt",
|
|
],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libnativeloader-dummy-headers",
|
|
|
|
host_supported: true,
|
|
export_include_dirs: ["include"],
|
|
}
|