blob: f800bf7a01010810c2698159bbb5b69c95640018 [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 Cross176ec1b2021-04-21 19:13:41 -07008 llndk: {
9 symbol_file: "libvndksupport.map.txt",
10 },
Ryan Prichard807d9d62019-07-15 13:35:31 -070011 srcs: ["linker.cpp"],
Elliott Hughesdc699a22018-02-16 17:58:14 -080012 cflags: [
13 "-Wall",
14 "-Werror",
15 ],
Jiyong Park8902f752017-05-11 02:15:24 +090016 local_include_dirs: ["include/vndksupport"],
17 export_include_dirs: ["include"],
dimitry0c119412019-03-19 12:29:49 +010018 shared_libs: [
19 "libdl_android",
20 "liblog",
21 ],
Dongwon Kang9dff5152019-02-08 14:00:35 -080022 version_script: "libvndksupport.map.txt",
23 stubs: {
24 symbol_file: "libvndksupport.map.txt",
25 versions: ["29"],
26 },
Jiyong Park8902f752017-05-11 02:15:24 +090027}