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 ], 12 srcs: [ 13 "bp2build.go", 14 "clang.go", 15 "global.go", 16 "tidy.go", 17 "toolchain.go", 18 "vndk.go", 19 20 "arm_device.go", 21 "arm64_device.go", 22 "arm64_fuchsia_device.go", 23 "x86_device.go", 24 "x86_64_device.go", 25 "x86_64_fuchsia_device.go", 26 27 "x86_darwin_host.go", 28 "x86_linux_host.go", 29 "x86_linux_bionic_host.go", 30 "x86_windows_host.go", 31 32 "arm64_linux_host.go", 33 ], 34 testSrcs: [ 35 "bp2build_test.go", 36 "tidy_test.go", 37 ], 38} 39