Do not build lsdump for APEX variants am: fa478c0234

am: e500da9ba6

Change-Id: If18fe0a061fea7e23b59b6ce261b70ae278b2122
This commit is contained in:
Logan Chien
2019-01-04 00:40:27 -08:00
committed by android-build-merger

View File

@@ -634,6 +634,10 @@ func (ctx *moduleContextImpl) shouldCreateVndkSourceAbiDump() bool {
// Host modules do not need ABI dumps.
return false
}
if !ctx.mod.IsForPlatform() {
// APEX variants do not need ABI dumps.
return false
}
if inList(ctx.baseModuleName(), llndkLibraries) {
return true
}