Merge "Use the full dexpreopt boot classpath when preopting with other images."
am: ce93e3c672
Change-Id: I74e0e616c550fe3d3cbbfd40cd7679644b814352
This commit is contained in:
commit
9ca94c7872
1 changed files with 6 additions and 2 deletions
|
@ -98,6 +98,7 @@ func (d *dexpreopter) dexpreopt(ctx android.ModuleContext, dexJarFile android.Mo
|
||||||
|
|
||||||
global := dexpreoptGlobalConfig(ctx)
|
global := dexpreoptGlobalConfig(ctx)
|
||||||
bootImage := defaultBootImageConfig(ctx)
|
bootImage := defaultBootImageConfig(ctx)
|
||||||
|
defaultBootImage := bootImage
|
||||||
if global.UseApexImage {
|
if global.UseApexImage {
|
||||||
bootImage = apexBootImageConfig(ctx)
|
bootImage = apexBootImageConfig(ctx)
|
||||||
}
|
}
|
||||||
|
@ -165,8 +166,11 @@ func (d *dexpreopter) dexpreopt(ctx android.ModuleContext, dexJarFile android.Mo
|
||||||
Archs: archs,
|
Archs: archs,
|
||||||
DexPreoptImages: images,
|
DexPreoptImages: images,
|
||||||
|
|
||||||
PreoptBootClassPathDexFiles: bootImage.dexPaths.Paths(),
|
// We use the dex paths and dex locations of the default boot image, as it
|
||||||
PreoptBootClassPathDexLocations: bootImage.dexLocations,
|
// contains the full dexpreopt boot classpath. Other images may just contain a subset of
|
||||||
|
// the dexpreopt boot classpath.
|
||||||
|
PreoptBootClassPathDexFiles: defaultBootImage.dexPaths.Paths(),
|
||||||
|
PreoptBootClassPathDexLocations: defaultBootImage.dexLocations,
|
||||||
|
|
||||||
PreoptExtractedApk: false,
|
PreoptExtractedApk: false,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue