Make privileged java_library modules use uncompressed dex
Check java_library modules against ModulesLoadedByPrivilegedModules to determine whether to uncompress the dex files in them. Test: m checkbuild Change-Id: I77ee456d55bec65c8b4c82e9bd38f344212e6140
This commit is contained in:
@@ -1423,6 +1423,11 @@ func (j *Library) shouldUncompressDex(ctx android.ModuleContext) bool {
|
|||||||
android.DirectlyInAnyApex(ctx, ctx.ModuleName()) {
|
android.DirectlyInAnyApex(ctx, ctx.ModuleName()) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
if ctx.Config().UncompressPrivAppDex() &&
|
||||||
|
inList(ctx.ModuleName(), ctx.Config().ModulesLoadedByPrivilegedModules()) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user