diff options
author | 2025-03-14 18:48:59 +0000 | |
---|---|---|
committer | 2025-03-14 18:48:59 +0000 | |
commit | e8dfa3b121be49352dc2dab2103bb83c6be6915c (patch) | |
tree | bd19b80b243272fd63f51ea97f0d25933b9d42a8 | |
parent | dd60426ac3804964a9c682f5ca0e6c282d11eacb (diff) |
Deprecate Always_use_prebuilt_sdks.Enabled
This property is not evaluated in Soong's prebuilt mutators, which can
cause duplicate installation errors.
Please use `build/soong/docs/selects.md` for `Enabled` property.
Test: m nothing --no-skip-soong-tests
Bug: 403514488
Change-Id: I7fbdc8db8d72543a3e31169bb9fb4b77c3d5c108
-rw-r--r-- | android/variable.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/android/variable.go b/android/variable.go index c59857ad9..3d5a6ae12 100644 --- a/android/variable.go +++ b/android/variable.go @@ -65,12 +65,6 @@ type variableProperties struct { Enabled proptools.Configurable[bool] `android:"arch_variant,replace_instead_of_append"` } `android:"arch_variant"` - // similar to `Unbundled_build`, but `Always_use_prebuilt_sdks` means that it uses prebuilt - // sdk specifically. - Always_use_prebuilt_sdks struct { - Enabled proptools.Configurable[bool] `android:"arch_variant,replace_instead_of_append"` - } `android:"arch_variant"` - Malloc_low_memory struct { Cflags []string `android:"arch_variant"` Shared_libs []string `android:"arch_variant"` |