• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        "vndk.go",
19
20        "bionic.go",
21
22        "arm_device.go",
23        "arm64_device.go",
24        "x86_device.go",
25        "x86_64_device.go",
26
27        "darwin_host.go",
28        "x86_linux_host.go",
29        "x86_linux_bionic_host.go",
30        "x86_windows_host.go",
31
32        "arm64_linux_host.go",
33    ],
34    testSrcs: [
35        "tidy_test.go",
36    ],
37}
38