summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Spandan Das <spandandas@google.com> 2025-03-14 13:55:42 -0700
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-03-14 13:55:42 -0700
commit5fe9b839b0b67218bcdfdbeec06b6813f040939e (patch)
tree427256b973b31cc57fc472b093574dc779164f3b
parent208a9a2d527e427392004af961632b1335f00077 (diff)
parentdd60426ac3804964a9c682f5ca0e6c282d11eacb (diff)
Merge "Add always_use_prebuilt_sdks for soong selects" into main
-rw-r--r--android/module.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/android/module.go b/android/module.go
index c6c4fd838..334e5b722 100644
--- a/android/module.go
+++ b/android/module.go
@@ -2654,6 +2654,8 @@ func (e configurationEvalutor) EvaluateConfiguration(condition proptools.Configu
return proptools.ConfigurableValueBool(ctx.Config().UseDebugArt())
case "selinux_ignore_neverallows":
return proptools.ConfigurableValueBool(ctx.Config().SelinuxIgnoreNeverallows())
+ case "always_use_prebuilt_sdks":
+ return proptools.ConfigurableValueBool(ctx.Config().AlwaysUsePrebuiltSdks())
default:
// TODO(b/323382414): Might add these on a case-by-case basis
ctx.OtherModulePropertyErrorf(m, property, fmt.Sprintf("TODO(b/323382414): Product variable %q is not yet supported in selects", variable))