1package { 2 default_applicable_licenses: ["Android-Apache-2.0"], 3} 4 5bootstrap_go_package { 6 name: "soong-cc-config", 7 pkgPath: "android/soong/cc/config", 8 deps: [ 9 "soong-android", 10 "soong-remoteexec", 11 "soong-starlark-format", 12 ], 13 srcs: [ 14 "clang.go", 15 "global.go", 16 "tidy.go", 17 "toolchain.go", 18 "vndk.go", 19 20 "bionic.go", 21 22 "arm_device.go", 23 "arm64_device.go", 24 "riscv64_device.go", 25 "x86_device.go", 26 "x86_64_device.go", 27 28 "arm_linux_host.go", 29 "darwin_host.go", 30 "x86_linux_host.go", 31 "x86_linux_bionic_host.go", 32 "x86_windows_host.go", 33 34 "arm64_linux_host.go", 35 ], 36 testSrcs: [ 37 "tidy_test.go", 38 ], 39} 40