1subdirs = ["tests"]
2
3cc_library {
4    name: "libvndksupport",
5    srcs: ["linker.c"],
6    local_include_dirs: ["include/vndksupport"],
7    export_include_dirs: ["include"],
8    shared_libs: ["liblog"],
9}
10
11llndk_library {
12    name: "libvndksupport",
13    symbol_file: "libvndksupport.map.txt",
14    export_include_dirs: ["include"],
15}
16