You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
993 B
45 lines
993 B
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
bootstrap_go_package {
|
|
name: "soong-cc-config",
|
|
pkgPath: "android/soong/cc/config",
|
|
deps: [
|
|
"soong-android",
|
|
"soong-remoteexec",
|
|
],
|
|
srcs: [
|
|
"bp2build.go",
|
|
"clang.go",
|
|
"global.go",
|
|
"tidy.go",
|
|
"toolchain.go",
|
|
"vndk.go",
|
|
|
|
"arm_device.go",
|
|
"arm64_device.go",
|
|
"arm64_fuchsia_device.go",
|
|
"x86_device.go",
|
|
"x86_64_device.go",
|
|
"x86_64_fuchsia_device.go",
|
|
|
|
"x86_darwin_host.go",
|
|
"x86_linux_host.go",
|
|
"x86_linux_bionic_host.go",
|
|
"x86_windows_host.go",
|
|
|
|
"arm64_linux_host.go",
|
|
//HUANGLONG begin
|
|
// Strictly control the compilation options
|
|
"strict_controlpaths.go",
|
|
"strict_clangflags.go",
|
|
"strict_globalflags.go",
|
|
//HUANGLONG end
|
|
],
|
|
testSrcs: [
|
|
"bp2build_test.go",
|
|
"tidy_test.go",
|
|
],
|
|
}
|