blob: 5ef247df93cc96490cf949a3e2e075768126935b [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: [
13 "clang.go",
14 "global.go",
15 "tidy.go",
16 "toolchain.go",
17 "vndk.go",
18
19 "arm_device.go",
20 "arm64_device.go",
21 "arm64_fuchsia_device.go",
22 "x86_device.go",
23 "x86_64_device.go",
24 "x86_64_fuchsia_device.go",
25
26 "x86_darwin_host.go",
27 "x86_linux_host.go",
28 "x86_linux_bionic_host.go",
29 "x86_windows_host.go",
Jiyong Park4afa2e22020-07-13 15:43:45 +090030
31 "arm64_linux_host.go",
Jaewoong Jung4b79e982020-06-01 10:45:49 -070032 ],
33 testSrcs: [
34 "tidy_test.go",
35 ],
36}