blob: e1b06057b6efeb2eb36bd0a59a485cac57dea02c [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: [
Jingwen Chenbf61afb2021-05-06 13:31:18 +000014 "bp2build.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070015 "clang.go",
16 "global.go",
17 "tidy.go",
18 "toolchain.go",
19 "vndk.go",
20
Colin Crosse3fee342021-06-21 17:28:25 -070021 "bionic.go",
22
Jaewoong Jung4b79e982020-06-01 10:45:49 -070023 "arm_device.go",
24 "arm64_device.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070025 "x86_device.go",
26 "x86_64_device.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070027
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: [
Jingwen Chenbf61afb2021-05-06 13:31:18 +000036 "bp2build_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070037 "tidy_test.go",
38 ],
39}