2017-05-10 17:15:24 +00:00
|
|
|
subdirs = ["tests"]
|
|
|
|
|
2017-05-26 08:57:18 +00:00
|
|
|
cc_library {
|
2017-05-10 17:15:24 +00:00
|
|
|
name: "libvndksupport",
|
|
|
|
srcs: ["linker.c"],
|
2018-02-17 01:58:14 +00:00
|
|
|
cflags: [
|
|
|
|
"-Wall",
|
|
|
|
"-Werror",
|
|
|
|
],
|
2017-05-10 17:15:24 +00:00
|
|
|
local_include_dirs: ["include/vndksupport"],
|
|
|
|
export_include_dirs: ["include"],
|
2019-03-19 11:29:49 +00:00
|
|
|
shared_libs: [
|
|
|
|
"libdl_android",
|
|
|
|
"liblog",
|
|
|
|
],
|
2019-02-08 22:00:35 +00:00
|
|
|
version_script: "libvndksupport.map.txt",
|
|
|
|
stubs: {
|
|
|
|
symbol_file: "libvndksupport.map.txt",
|
|
|
|
versions: ["29"],
|
|
|
|
},
|
2017-05-10 17:15:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
llndk_library {
|
|
|
|
name: "libvndksupport",
|
|
|
|
symbol_file: "libvndksupport.map.txt",
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
}
|