Avoid modifying Compile_dex property am: e7b1f5b0a5
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2139572 Change-Id: I23e617156f22bc8ca4c44e419cf6430f75633b5f Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -1418,17 +1418,18 @@ func (j *Module) compile(ctx android.ModuleContext, aaptSrcJar android.Path) {
|
||||
j.implementationAndResourcesJar = implementationAndResourcesJar
|
||||
|
||||
// Enable dex compilation for the APEX variants, unless it is disabled explicitly
|
||||
compileDex := j.dexProperties.Compile_dex
|
||||
apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo)
|
||||
if j.DirectlyInAnyApex() && !apexInfo.IsForPlatform() {
|
||||
if j.dexProperties.Compile_dex == nil {
|
||||
j.dexProperties.Compile_dex = proptools.BoolPtr(true)
|
||||
if compileDex == nil {
|
||||
compileDex = proptools.BoolPtr(true)
|
||||
}
|
||||
if j.deviceProperties.Hostdex == nil {
|
||||
j.deviceProperties.Hostdex = proptools.BoolPtr(true)
|
||||
}
|
||||
}
|
||||
|
||||
if ctx.Device() && (Bool(j.properties.Installable) || Bool(j.dexProperties.Compile_dex)) {
|
||||
if ctx.Device() && (Bool(j.properties.Installable) || Bool(compileDex)) {
|
||||
if j.hasCode(ctx) {
|
||||
if j.shouldInstrumentStatic(ctx) {
|
||||
j.dexer.extraProguardFlagFiles = append(j.dexer.extraProguardFlagFiles,
|
||||
|
Reference in New Issue
Block a user