blob: a5cece408e5587514f639b11b48441a2416a65f2 [file] [log] [blame]
Jiyong Park0b3c24b2017-05-26 17:57:18 +09001cc_library {
Jiyong Park8902f752017-05-11 02:15:24 +09002 name: "libvndksupport",
dimitry15f8ce32019-05-16 14:20:31 +02003 native_bridge_supported: true,
Colin Cross6a2b1662020-10-19 13:38:05 -07004 llndk_stubs: "libvndksupport.llndk",
Ryan Prichard807d9d62019-07-15 13:35:31 -07005 srcs: ["linker.cpp"],
Elliott Hughesdc699a22018-02-16 17:58:14 -08006 cflags: [
7 "-Wall",
8 "-Werror",
9 ],
Jiyong Park8902f752017-05-11 02:15:24 +090010 local_include_dirs: ["include/vndksupport"],
11 export_include_dirs: ["include"],
dimitry0c119412019-03-19 12:29:49 +010012 shared_libs: [
13 "libdl_android",
14 "liblog",
15 ],
Dongwon Kang9dff5152019-02-08 14:00:35 -080016 version_script: "libvndksupport.map.txt",
17 stubs: {
18 symbol_file: "libvndksupport.map.txt",
19 versions: ["29"],
20 },
Jiyong Park8902f752017-05-11 02:15:24 +090021}
22
23llndk_library {
Colin Cross6a2b1662020-10-19 13:38:05 -070024 name: "libvndksupport.llndk",
dimitry15f8ce32019-05-16 14:20:31 +020025 native_bridge_supported: true,
Jiyong Park8902f752017-05-11 02:15:24 +090026 symbol_file: "libvndksupport.map.txt",
27 export_include_dirs: ["include"],
28}