Colin Cross | a715894 | 2016-11-23 17:01:45 -0800 | [diff] [blame] | 1 | cc_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 Cross | b706c58 | 2016-12-07 12:26:00 -0800 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | cc_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 Cross | a715894 | 2016-11-23 17:01:45 -0800 | [diff] [blame] | 37 | } |