blob: 11c75f7b12595d2432381d50677528e30ffa20a1 [file] [log] [blame]
Bob Badourd69ad692021-02-16 19:02:14 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Jiyong Park0b3c24b2017-05-26 17:57:18 +09005cc_library {
Jiyong Park8902f752017-05-11 02:15:24 +09006 name: "libvndksupport",
dimitry15f8ce32019-05-16 14:20:31 +02007 native_bridge_supported: true,
Colin Cross6a2b1662020-10-19 13:38:05 -07008 llndk_stubs: "libvndksupport.llndk",
Ryan Prichard807d9d62019-07-15 13:35:31 -07009 srcs: ["linker.cpp"],
Elliott Hughesdc699a22018-02-16 17:58:14 -080010 cflags: [
11 "-Wall",
12 "-Werror",
13 ],
Jiyong Park8902f752017-05-11 02:15:24 +090014 local_include_dirs: ["include/vndksupport"],
15 export_include_dirs: ["include"],
dimitry0c119412019-03-19 12:29:49 +010016 shared_libs: [
17 "libdl_android",
18 "liblog",
19 ],
Dongwon Kang9dff5152019-02-08 14:00:35 -080020 version_script: "libvndksupport.map.txt",
21 stubs: {
22 symbol_file: "libvndksupport.map.txt",
23 versions: ["29"],
24 },
Jiyong Park8902f752017-05-11 02:15:24 +090025}
26
27llndk_library {
Colin Cross6a2b1662020-10-19 13:38:05 -070028 name: "libvndksupport.llndk",
dimitry15f8ce32019-05-16 14:20:31 +020029 native_bridge_supported: true,
Jiyong Park8902f752017-05-11 02:15:24 +090030 symbol_file: "libvndksupport.map.txt",
31 export_include_dirs: ["include"],
32}