Merge "Move vendor and product variant generation logic from cc package to android package" into main

This commit is contained in:
Jihoon Kang
2024-06-21 18:16:31 +00:00
committed by Gerrit Code Review
12 changed files with 137 additions and 92 deletions

View File

@@ -748,9 +748,9 @@ func (a *apexBundle) getImageVariationPair() (string, string) {
prefix := android.CoreVariation
if a.SocSpecific() || a.DeviceSpecific() {
prefix = cc.VendorVariation
prefix = android.VendorVariation
} else if a.ProductSpecific() {
prefix = cc.ProductVariation
prefix = android.ProductVariation
}
return prefix, ""