2021-02-17 04:02:14 +01:00
|
|
|
package {
|
|
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
|
|
}
|
|
|
|
|
2017-05-26 10:57:18 +02:00
|
|
|
cc_library {
|
2017-05-10 19:15:24 +02:00
|
|
|
name: "libvndksupport",
|
2019-05-16 14:20:31 +02:00
|
|
|
native_bridge_supported: true,
|
2021-04-22 04:13:41 +02:00
|
|
|
llndk: {
|
|
|
|
symbol_file: "libvndksupport.map.txt",
|
|
|
|
},
|
2019-07-15 22:35:31 +02:00
|
|
|
srcs: ["linker.cpp"],
|
2018-02-17 02:58:14 +01:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
2017-05-10 19:15:24 +02:00
|
|
|
local_include_dirs: ["include/vndksupport"],
|
|
|
|
export_include_dirs: ["include"],
|
2019-03-19 12:29:49 +01:00
|
|
|
shared_libs: [
|
|
|
|
"libdl_android",
|
|
|
|
"liblog",
|
|
|
|
],
|
2019-02-08 23:00:35 +01:00
|
|
|
version_script: "libvndksupport.map.txt",
|
|
|
|
stubs: {
|
|
|
|
symbol_file: "libvndksupport.map.txt",
|
|
|
|
versions: ["29"],
|
|
|
|
},
|
2017-05-10 19:15:24 +02:00
|
|
|
}
|