You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
888 B
44 lines
888 B
libcxx_includes = [ |
|
"current/sources/cxx-stl/llvm-libc++/include", |
|
"current/sources/cxx-stl/llvm-libc++abi/include", |
|
] |
|
|
|
ndk_prebuilt_static_stl { |
|
name: "ndk_libandroid_support", |
|
export_include_dirs: [ |
|
"current/sources/android/support/include", |
|
], |
|
arch: { |
|
arm64: { |
|
enabled: false, |
|
}, |
|
x86_64: { |
|
enabled: false, |
|
}, |
|
}, |
|
} |
|
|
|
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, |
|
}
|
|
|