d06cb94d25
Seems to break VMDebug test. Also add missed strdup in returned error message. bug: 122957265 Test: VMDebug Change-Id: I64727d707f20c0e6afcb5455edf20c99011a81dc
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"],
|
|
}
|