1cc_library {
2    name: "libvndksupport",
3    native_bridge_supported: true,
4    srcs: ["linker.cpp"],
5    cflags: [
6        "-Wall",
7        "-Werror",
8    ],
9    local_include_dirs: ["include/vndksupport"],
10    export_include_dirs: ["include"],
11    shared_libs: [
12        "libdl_android",
13        "liblog",
14    ],
15    version_script: "libvndksupport.map.txt",
16    stubs: {
17        symbol_file: "libvndksupport.map.txt",
18        versions: ["29"],
19    },
20}
21
22llndk_library {
23    name: "libvndksupport",
24    native_bridge_supported: true,
25    symbol_file: "libvndksupport.map.txt",
26    export_include_dirs: ["include"],
27}
28