diff options
author | 2025-03-14 18:27:33 +0000 | |
---|---|---|
committer | 2025-03-14 18:33:36 +0000 | |
commit | dd60426ac3804964a9c682f5ca0e6c282d11eacb (patch) | |
tree | 448e9f7a2543afa15e8733e6c2a5be63fbd288d3 /android/module.go | |
parent | f6138662ae92cbeebaae8588279ed281c4737cd5 (diff) |
Add always_use_prebuilt_sdks for soong selects
Test: presubmits
Bug: 403514488
Change-Id: I3606d9cf1e958fd89f2804e0a40515092854f574
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 2 |
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)) |