Merge "Add riscv64 support for apex prebuilt" am: edc294aff2
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2252453 Change-Id: Iac1b28b848431ea8e38e7e468138449ca17bcf4a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -500,6 +500,9 @@ type ApexFileProperties struct {
|
||||
Arm64 struct {
|
||||
Src *string `android:"path"`
|
||||
}
|
||||
Riscv64 struct {
|
||||
Src *string `android:"path"`
|
||||
}
|
||||
X86 struct {
|
||||
Src *string `android:"path"`
|
||||
}
|
||||
@@ -527,6 +530,8 @@ func (p *ApexFileProperties) prebuiltApexSelector(ctx android.BaseModuleContext,
|
||||
src = String(p.Arch.Arm.Src)
|
||||
case android.Arm64:
|
||||
src = String(p.Arch.Arm64.Src)
|
||||
case android.Riscv64:
|
||||
src = String(p.Arch.Riscv64.Src)
|
||||
case android.X86:
|
||||
src = String(p.Arch.X86.Src)
|
||||
case android.X86_64:
|
||||
|
Reference in New Issue
Block a user