Home | History | Annotate | Download | only in tools
      1 cc_prebuilt_library_shared {
      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     },
     18 }
     19 
     20 cc_prebuilt_library_shared {
     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     },
     37 }
     38