Merge "Change OnlyPreoptBootImageAndSystemServer to OnlyPreoptArtBootImage." into main
This commit is contained in:
@@ -1584,7 +1584,7 @@ func (u *usesLibrary) verifyUsesLibraries(ctx android.ModuleContext, inputFile a
|
||||
// non-linux build platforms where dexpreopt is generally disabled (the check may fail due to
|
||||
// various unrelated reasons, such as a failure to get manifest from an APK).
|
||||
global := dexpreopt.GetGlobalConfig(ctx)
|
||||
if global.DisablePreopt || global.OnlyPreoptBootImageAndSystemServer {
|
||||
if global.DisablePreopt || global.OnlyPreoptArtBootImage {
|
||||
return inputFile
|
||||
}
|
||||
|
||||
|
@@ -610,7 +610,8 @@ func generateBootImage(ctx android.ModuleContext, imageConfig *bootImageConfig)
|
||||
profile := bootImageProfileRule(ctx, imageConfig)
|
||||
|
||||
// If dexpreopt of boot image jars should be skipped, stop after generating a profile.
|
||||
if SkipDexpreoptBootJars(ctx) {
|
||||
global := dexpreopt.GetGlobalConfig(ctx)
|
||||
if SkipDexpreoptBootJars(ctx) || (global.OnlyPreoptArtBootImage && imageConfig.name != "art") {
|
||||
return
|
||||
}
|
||||
|
||||
|
@@ -68,7 +68,7 @@ func (m *dexpreoptSystemserverCheck) GenerateAndroidBuildActions(ctx android.Mod
|
||||
|
||||
// The check should be skipped on unbundled builds because system server jars are not preopted on
|
||||
// unbundled builds since the artifacts are installed into the system image, not the APEXes.
|
||||
if global.DisablePreopt || len(targets) == 0 || ctx.Config().UnbundledBuild() {
|
||||
if global.DisablePreopt || global.OnlyPreoptArtBootImage || len(targets) == 0 || ctx.Config().UnbundledBuild() {
|
||||
return
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user