Merge "Allow bootjars in system_ext."

This commit is contained in:
Chris Gross 2020-05-05 21:12:39 +00:00 committed by Gerrit Code Review
commit 7097b0580c

View file

@ -89,6 +89,8 @@ func getDexLocation(ctx android.PathContext, target android.Target, module strin
// Special apex name "platform" denotes jars do not come from an apex, but are part
// of the platform. Such jars are installed on the /system partition on device.
subdir = "system/framework"
} else if apex == "system_ext" {
subdir = "system_ext/framework"
} else {
subdir = filepath.Join("apex", apex, "javalib")
}