blob: 546c15c2471e4cf1d32d5bb23df3acc29888c47d [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",
5 srcs: ["linker.c"],
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 {
24 name: "libvndksupport",
25 symbol_file: "libvndksupport.map.txt",
26 export_include_dirs: ["include"],
27}