blob: ce4bdfb50086008697fe643e2eef1bd93d670825 [file] [log] [blame]
Jaewoong Jung4b79e982020-06-01 10:45:49 -07001bootstrap_go_package {
2 name: "soong-cc-config",
3 pkgPath: "android/soong/cc/config",
4 deps: [
5 "soong-android",
6 "soong-remoteexec",
7 ],
8 srcs: [
9 "clang.go",
10 "global.go",
11 "tidy.go",
12 "toolchain.go",
13 "vndk.go",
14
15 "arm_device.go",
16 "arm64_device.go",
17 "arm64_fuchsia_device.go",
18 "x86_device.go",
19 "x86_64_device.go",
20 "x86_64_fuchsia_device.go",
21
22 "x86_darwin_host.go",
23 "x86_linux_host.go",
24 "x86_linux_bionic_host.go",
25 "x86_windows_host.go",
Jiyong Park4afa2e22020-07-13 15:43:45 +090026
27 "arm64_linux_host.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070028 ],
29 testSrcs: [
30 "tidy_test.go",
31 ],
32}