Disallow platform_compat_config modules in apex prebuilts property am: 1bc21dc7e6 am: c6df3b278a

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1638280

Change-Id: I3994109c2acb934d2be6039d8fdbf556b4783774
This commit is contained in:
Paul Duffin 2021-03-16 14:45:17 +00:00 committed by Automerger Merge Worker
commit 3c54ef1e10
1 changed files with 1 additions and 3 deletions

View File

@ -1746,10 +1746,8 @@ func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
case prebuiltTag: case prebuiltTag:
if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok { if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName)) filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
} else if prebuilt, ok := child.(java.PlatformCompatConfigIntf); ok {
filesInfo = append(filesInfo, apexFileForCompatConfig(ctx, prebuilt, depName))
} else { } else {
ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc and not a platform_compat_config module", depName) ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc module", depName)
} }
case compatConfigsTag: case compatConfigsTag:
if compatConfig, ok := child.(java.PlatformCompatConfigIntf); ok { if compatConfig, ok := child.(java.PlatformCompatConfigIntf); ok {