blob: ba368c2f70d4963df0250ea9998f116c9437ca7c [file] [log] [blame]
Colin Crossa7158942016-11-23 17:01:45 -08001cc_prebuilt_shared_library {
2 name: "libLLVM",
3 host_supported: true,
4 target: {
5 linux_x86_64: {
6 srcs: ["linux/lib64/libLLVM.so"],
7 },
8 darwin_x86_64: {
9 srcs: ["darwin/lib64/libLLVM.dylib"],
10 },
11 // TODO(ccross): this is necessary because the prebuilt module must have
12 // all the variants that are in the source module. Ideally Soong's
13 // arch mutator should handle this.
14 windows: {
15 enabled: true,
16 }
17 },
Colin Crossb706c582016-12-07 12:26:00 -080018}
19
20cc_prebuilt_shared_library {
21 name: "libclang",
22 host_supported: true,
23 target: {
24 linux_x86_64: {
25 srcs: ["linux/lib64/libclang.so"],
26 },
27 darwin_x86_64: {
28 srcs: ["darwin/lib64/libclang.dylib"],
29 },
30 // TODO(ccross): this is necessary because the prebuilt module must have
31 // all the variants that are in the source module. Ideally Soong's
32 // arch mutator should handle this.
33 windows: {
34 enabled: true,
35 }
36 },
Colin Crossa7158942016-11-23 17:01:45 -080037}