blob: bfa25088f01eeb55e1cab59132f48e27e4935344 [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"],
12 shared_libs: ["liblog"],
Dongwon Kang9dff5152019-02-08 14:00:35 -080013 version_script: "libvndksupport.map.txt",
14 stubs: {
15 symbol_file: "libvndksupport.map.txt",
16 versions: ["29"],
17 },
Jiyong Park8902f752017-05-11 02:15:24 +090018}
19
20llndk_library {
21 name: "libvndksupport",
22 symbol_file: "libvndksupport.map.txt",
23 export_include_dirs: ["include"],
24}