blob: c1d4f175596ee4b8e08c58a530b8084d1bd355b3 [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",
11 ],
12 srcs: [
Jingwen Chenbf61afb2021-05-06 13:31:18 +000013 "bp2build.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070014 "clang.go",
15 "global.go",
16 "tidy.go",
17 "toolchain.go",
18 "vndk.go",
19
Colin Crosse3fee342021-06-21 17:28:25 -070020 "bionic.go",
21
Jaewoong Jung4b79e982020-06-01 10:45:49 -070022 "arm_device.go",
23 "arm64_device.go",
24 "arm64_fuchsia_device.go",
25 "x86_device.go",
26 "x86_64_device.go",
27 "x86_64_fuchsia_device.go",
28
29 "x86_darwin_host.go",
30 "x86_linux_host.go",
31 "x86_linux_bionic_host.go",
32 "x86_windows_host.go",
Jiyong Park4afa2e22020-07-13 15:43:45 +090033
34 "arm64_linux_host.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070035 ],
36 testSrcs: [
Jingwen Chenbf61afb2021-05-06 13:31:18 +000037 "bp2build_test.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070038 "tidy_test.go",
39 ],
40}