Merge "Add TARGET_FORCE_APEX_SYMLINK_OPTIMIZATION" am: 0d96ed8d5b am: 0ff3ac38cb

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1540045

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I3b21f04591e8babc9f79f88fad159304630900db
This commit is contained in:
Treehugger Robot
2021-01-06 04:51:13 +00:00
committed by Automerger Merge Worker
3 changed files with 12 additions and 5 deletions

View File

@@ -1272,6 +1272,10 @@ func (c *config) FlattenApex() bool {
return Bool(c.productVariables.Flatten_apex) return Bool(c.productVariables.Flatten_apex)
} }
func (c *config) ForceApexSymlinkOptimization() bool {
return Bool(c.productVariables.ForceApexSymlinkOptimization)
}
func (c *config) CompressedApex() bool { func (c *config) CompressedApex() bool {
return Bool(c.productVariables.CompressedApex) return Bool(c.productVariables.CompressedApex)
} }

View File

@@ -320,9 +320,10 @@ type productVariables struct {
Ndk_abis *bool `json:",omitempty"` Ndk_abis *bool `json:",omitempty"`
Exclude_draft_ndk_apis *bool `json:",omitempty"` Exclude_draft_ndk_apis *bool `json:",omitempty"`
Flatten_apex *bool `json:",omitempty"` Flatten_apex *bool `json:",omitempty"`
CompressedApex *bool `json:",omitempty"` ForceApexSymlinkOptimization *bool `json:",omitempty"`
Aml_abis *bool `json:",omitempty"` CompressedApex *bool `json:",omitempty"`
Aml_abis *bool `json:",omitempty"`
DexpreoptGlobalConfig *string `json:",omitempty"` DexpreoptGlobalConfig *string `json:",omitempty"`

View File

@@ -1913,9 +1913,11 @@ func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
a.linkToSystemLib = false a.linkToSystemLib = false
} }
forced := ctx.Config().ForceApexSymlinkOptimization()
// We don't need the optimization for updatable APEXes, as it might give false signal // We don't need the optimization for updatable APEXes, as it might give false signal
// to the system health when the APEXes are still bundled (b/149805758) // to the system health when the APEXes are still bundled (b/149805758).
if a.Updatable() && a.properties.ApexType == imageApex { if !forced && a.Updatable() && a.properties.ApexType == imageApex {
a.linkToSystemLib = false a.linkToSystemLib = false
} }