Add UpsideDownCake to releases that need snapshots to be built

Bug: 249769908
Test: packages/modules/common/mainline_modules_sdks.sh
Change-Id: I2b945f9db628c90b3823972787713dce39b9df75
Merged-In: I39804d89ad15109da47b5caa4a20ca2ef74b0e37
This commit is contained in:
Paul Duffin
2022-09-29 13:12:44 +01:00
parent 2d23b0efb8
commit 5fc8511dff

View File

@@ -728,7 +728,7 @@ R = BuildRelease(
)
S = BuildRelease(
name="S",
# Generate a snapshot for S using Soong.
# Generate a snapshot for this build release using Soong.
creator=create_sdk_snapshots_in_soong,
# This requires the SoongConfigBoilerplateInserter transformation to be
# applied.
@@ -736,9 +736,16 @@ S = BuildRelease(
)
Tiramisu = BuildRelease(
name="Tiramisu",
# Generate a snapshot for Tiramisu using Soong.
# Generate a snapshot for this build release using Soong.
creator=create_sdk_snapshots_in_soong,
# This supports the use_source_config_var property.
# This build release supports the use_source_config_var property.
preferHandling=PreferHandling.USE_SOURCE_CONFIG_VAR_PROPERTY,
)
UpsideDownCake = BuildRelease(
name="UpsideDownCake",
# Generate a snapshot for this build release using Soong.
creator=create_sdk_snapshots_in_soong,
# This build release supports the use_source_config_var property.
preferHandling=PreferHandling.USE_SOURCE_CONFIG_VAR_PROPERTY,
)