blob: ba368c2f70d4963df0250ea9998f116c9437ca7c [file] [log] [blame]
cc_prebuilt_shared_library {
name: "libLLVM",
host_supported: true,
target: {
linux_x86_64: {
srcs: ["linux/lib64/libLLVM.so"],
},
darwin_x86_64: {
srcs: ["darwin/lib64/libLLVM.dylib"],
},
// TODO(ccross): this is necessary because the prebuilt module must have
// all the variants that are in the source module. Ideally Soong's
// arch mutator should handle this.
windows: {
enabled: true,
}
},
}
cc_prebuilt_shared_library {
name: "libclang",
host_supported: true,
target: {
linux_x86_64: {
srcs: ["linux/lib64/libclang.so"],
},
darwin_x86_64: {
srcs: ["darwin/lib64/libclang.dylib"],
},
// TODO(ccross): this is necessary because the prebuilt module must have
// all the variants that are in the source module. Ideally Soong's
// arch mutator should handle this.
windows: {
enabled: true,
}
},
}