aboutsummaryrefslogtreecommitdiffstats
path: root/cc/config/Android.bp
blob: 7edb0c9885a821427df5d40848dd78ec6f50d962 (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
32
bootstrap_go_package {
    name: "soong-cc-config",
    pkgPath: "android/soong/cc/config",
    deps: [
        "soong-android",
        "soong-remoteexec",
    ],
    srcs: [
        "clang.go",
        "global.go",
        "tidy.go",
        "toolchain.go",
        "vndk.go",

        "arm_device.go",
        "arm64_device.go",
        "arm64_fuchsia_device.go",
        "mips_device.go",
        "mips64_device.go",
        "x86_device.go",
        "x86_64_device.go",
        "x86_64_fuchsia_device.go",

        "x86_darwin_host.go",
        "x86_linux_host.go",
        "x86_linux_bionic_host.go",
        "x86_windows_host.go",
    ],
    testSrcs: [
        "tidy_test.go",
    ],
}