1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5bootstrap_go_package {
6    name: "soong-cc-config",
7    pkgPath: "android/soong/cc/config",
8    deps: [
9        "soong-android",
10        "soong-remoteexec",
11        "soong-starlark-format",
12    ],
13    srcs: [
14        "clang.go",
15        "global.go",
16        "tidy.go",
17        "toolchain.go",
18
19        "bionic.go",
20
21        "arm_device.go",
22        "arm64_device.go",
23        "riscv64_device.go",
24        "x86_device.go",
25        "x86_64_device.go",
26
27        "arm_linux_host.go",
28        "darwin_host.go",
29        "x86_linux_host.go",
30        "x86_linux_bionic_host.go",
31        "x86_windows_host.go",
32
33        "arm64_linux_host.go",
34    ],
35    testSrcs: [
36        "tidy_test.go",
37    ],
38}
39