In preparation for including them in prebuilts/build-tools. acp: We use a prebuilt in prebuilts/sdk, but it's not part of the sdk. ijar: We use the host libstdc++ to workaround the lack of libc++ on some unbundled branches. ziptime: We disable this on unbundled builds, due to the lack of libc++. Change-Id: Ib9766b1dbddd151c38ff27c529865200ab37fce1
21 lines
305 B
Plaintext
21 lines
305 B
Plaintext
cc_library_host_static {
|
|
|
|
srcs: ["CopyFile.c"],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
|
|
name: "libhost",
|
|
target: {
|
|
windows: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
local_include_dirs: ["include"],
|
|
export_include_dirs: ["include"],
|
|
stl: "none",
|
|
|
|
}
|