Merge "Do not assume that boot image profile exists when building ART apex."
This commit is contained in:
commit
a672771df9
1 changed files with 2 additions and 1 deletions
|
@ -2508,7 +2508,8 @@ func apexBootclasspathFragmentFiles(ctx android.ModuleContext, module blueprint.
|
|||
filesToAdd = append(filesToAdd, *af)
|
||||
}
|
||||
|
||||
if pathInApex := bootclasspathFragmentInfo.ProfileInstallPathInApex(); pathInApex != "" {
|
||||
pathInApex := bootclasspathFragmentInfo.ProfileInstallPathInApex()
|
||||
if pathInApex != "" && !java.SkipDexpreoptBootJars(ctx) {
|
||||
pathOnHost := bootclasspathFragmentInfo.ProfilePathOnHost()
|
||||
tempPath := android.PathForModuleOut(ctx, "boot_image_profile", pathInApex)
|
||||
|
||||
|
|
Loading…
Reference in a new issue