summaryrefslogtreecommitdiff
path: root/stl.bp
blob: fc1648dc76ab2b21c4dc99f1c169a16993151aa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
libcxx_includes =  [
    "current/sources/cxx-stl/llvm-libc++/include",
    "current/sources/cxx-stl/llvm-libc++abi/include",
    "current/sources/android/support/include",
]

ndk_prebuilt_static_stl {
    name: "ndk_libandroid_support",
}

ndk_prebuilt_static_stl {
    name: "ndk_libc++abi",
}

// The LLVM libunwind unwinder. This unwinder is only used for arm32.
ndk_prebuilt_static_stl {
    name: "ndk_libunwind",
    enabled: false,
    arch: {
        arm: {
            enabled: true,
        },
    },
}

ndk_prebuilt_static_stl {
    name: "ndk_libc++_static",
    export_include_dirs: libcxx_includes,
}

ndk_prebuilt_shared_stl {
    name: "ndk_libc++_shared",
    export_include_dirs: libcxx_includes,
}