1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| cc_prebuilt_library_shared {
| name: "libLLVM_android",
| vendor_available: true,
| host_supported: true,
| target: {
| linux_glibc_x86_64: {
| srcs: ["linux/lib64/libLLVM_android.so"],
| },
| darwin_x86_64: {
| srcs: ["darwin/lib64/libLLVM_android.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_library_shared {
| name: "libclang_android",
| host_supported: true,
| target: {
| linux_glibc_x86_64: {
| srcs: ["linux/lib64/libclang_android.so"],
| },
| darwin_x86_64: {
| srcs: ["darwin/lib64/libclang_android.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,
| }
| },
| }
|
| java_import {
| name: "sdk-core-lambda-stubs",
| jars: ["core-lambda-stubs.jar"],
| }
|
|