blob: f514db68d1b4979d313ad8b566da182345b30da5 [file] [log] [blame]
Bob Badour02040de2021-02-03 18:08:28 -08001package {
2 default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
Jaewoong Jung4b79e982020-06-01 10:45:49 -07005bootstrap_go_package {
6 name: "soong-cc-config",
7 pkgPath: "android/soong/cc/config",
8 deps: [
9 "soong-android",
10 "soong-remoteexec",
Liz Kammer72beb342022-02-03 08:42:10 -050011 "soong-starlark-format",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070012 ],
13 srcs: [
14 "clang.go",
15 "global.go",
16 "tidy.go",
17 "toolchain.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070018
Colin Crosse3fee342021-06-21 17:28:25 -070019 "bionic.go",
20
Jaewoong Jung4b79e982020-06-01 10:45:49 -070021 "arm_device.go",
22 "arm64_device.go",
Colin Crossf05b0d32022-07-14 18:10:34 -070023 "riscv64_device.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070024 "x86_device.go",
25 "x86_64_device.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070026
Colin Crossa9b2aac2022-06-15 17:25:51 -070027 "arm_linux_host.go",
Dan Willemsen8528f4e2021-10-19 00:22:06 -070028 "darwin_host.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070029 "x86_linux_host.go",
30 "x86_linux_bionic_host.go",
31 "x86_windows_host.go",
Jiyong Park4afa2e22020-07-13 15:43:45 +090032
33 "arm64_linux_host.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070034 ],
35 testSrcs: [
Jaewoong Jung4b79e982020-06-01 10:45:49 -070036 "tidy_test.go",
37 ],
Cole Faust16d227a2024-09-18 16:42:01 -070038 visibility: [
39 "//build/soong:__subpackages__",
40 "//prebuilts/clang/host/linux-x86/soong",
41 ],
Jaewoong Jung4b79e982020-06-01 10:45:49 -070042}