blob: 7edb0c9885a821427df5d40848dd78ec6f50d962 [file] [log] [blame]
Jaewoong Jungfccad6b2020-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 "mips_device.go",
19 "mips64_device.go",
20 "x86_device.go",
21 "x86_64_device.go",
22 "x86_64_fuchsia_device.go",
23
24 "x86_darwin_host.go",
25 "x86_linux_host.go",
26 "x86_linux_bionic_host.go",
27 "x86_windows_host.go",
28 ],
29 testSrcs: [
30 "tidy_test.go",
31 ],
32}