summaryrefslogtreecommitdiff
path: root/rust/config/Android.bp
blob: 25f7580d0417c01e74239977156e4e00e3b0955c (plain)
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
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

bootstrap_go_package {
    name: "soong-rust-config",
    pkgPath: "android/soong/rust/config",
    deps: [
        "soong-android",
        "soong-cc-config",
    ],
    srcs: [
        "arm_device.go",
        "arm_linux_host.go",
        "arm64_device.go",
        "global.go",
        "lints.go",
        "riscv64_device.go",
        "toolchain.go",
        "darwin_host.go",
        "x86_linux_bionic_host.go",
        "x86_linux_host.go",
        "x86_device.go",
        "x86_64_device.go",
        "arm64_linux_host.go",
    ],
    visibility: [
        "//build/soong:__subpackages__",
        "//prebuilts/rust/soong",
    ],
}