22152f6cda
VndkUseCoreVariant feature is deprecated along with VNDK. This change removes related code from Soong. Bug: 330100430 Test: AOSP CF build succeeded Change-Id: Ie182c9e4dc9cf0a4fe9d5fddf5b36754ddb53d18
38 lines
760 B
Text
38 lines
760 B
Text
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",
|
|
"soong-starlark-format",
|
|
],
|
|
srcs: [
|
|
"clang.go",
|
|
"global.go",
|
|
"tidy.go",
|
|
"toolchain.go",
|
|
|
|
"bionic.go",
|
|
|
|
"arm_device.go",
|
|
"arm64_device.go",
|
|
"riscv64_device.go",
|
|
"x86_device.go",
|
|
"x86_64_device.go",
|
|
|
|
"arm_linux_host.go",
|
|
"darwin_host.go",
|
|
"x86_linux_host.go",
|
|
"x86_linux_bionic_host.go",
|
|
"x86_windows_host.go",
|
|
|
|
"arm64_linux_host.go",
|
|
],
|
|
testSrcs: [
|
|
"tidy_test.go",
|
|
],
|
|
}
|