blob: f4544a14c1b200f9fc130ca4463a6ad5e5cdb5fa [file] [log] [blame]
Jiyong Park8902f752017-05-11 02:15:24 +09001subdirs = ["tests"]
2
Jiyong Park0b3c24b2017-05-26 17:57:18 +09003cc_library {
Jiyong Park8902f752017-05-11 02:15:24 +09004 name: "libvndksupport",
dimitry15f8ce32019-05-16 14:20:31 +02005 native_bridge_supported: true,
Ryan Prichard807d9d62019-07-15 13:35:31 -07006 srcs: ["linker.cpp"],
Elliott Hughesdc699a22018-02-16 17:58:14 -08007 cflags: [
8 "-Wall",
9 "-Werror",
10 ],
Jiyong Park8902f752017-05-11 02:15:24 +090011 local_include_dirs: ["include/vndksupport"],
12 export_include_dirs: ["include"],
dimitry0c119412019-03-19 12:29:49 +010013 shared_libs: [
14 "libdl_android",
15 "liblog",
16 ],
Dongwon Kang9dff5152019-02-08 14:00:35 -080017 version_script: "libvndksupport.map.txt",
18 stubs: {
19 symbol_file: "libvndksupport.map.txt",
20 versions: ["29"],
21 },
Jiyong Park8902f752017-05-11 02:15:24 +090022}
23
24llndk_library {
25 name: "libvndksupport",
dimitry15f8ce32019-05-16 14:20:31 +020026 native_bridge_supported: true,
Jiyong Park8902f752017-05-11 02:15:24 +090027 symbol_file: "libvndksupport.map.txt",
28 export_include_dirs: ["include"],
29}