Check ABI stability of all NDK libs
am: f4b79c684a
Change-Id: I04b790128b034373625ec47ecf1b51a929a7063a
This commit is contained in:
3
cc/cc.go
3
cc/cc.go
@@ -585,6 +585,9 @@ func (ctx *moduleContextImpl) shouldCreateVndkSourceAbiDump() bool {
|
||||
if inList(ctx.baseModuleName(), llndkLibraries) {
|
||||
return true
|
||||
}
|
||||
if inList(ctx.baseModuleName(), ndkMigratedLibs) {
|
||||
return true
|
||||
}
|
||||
if ctx.useVndk() && ctx.isVndk() {
|
||||
// Return true if this is VNDK-core, VNDK-SP, or VNDK-Ext and this is not
|
||||
// VNDK-private.
|
||||
|
@@ -604,7 +604,7 @@ func (library *libraryDecorator) linkShared(ctx ModuleContext,
|
||||
}
|
||||
|
||||
func getRefAbiDumpFile(ctx ModuleContext, vndkVersion, fileName string) android.Path {
|
||||
isLlndk := inList(ctx.baseModuleName(), llndkLibraries)
|
||||
isLlndk := inList(ctx.baseModuleName(), llndkLibraries) || inList(ctx.baseModuleName(), ndkMigratedLibs)
|
||||
|
||||
refAbiDumpTextFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndk, false)
|
||||
refAbiDumpGzipFile := android.PathForVndkRefAbiDump(ctx, vndkVersion, fileName, isLlndk, true)
|
||||
|
Reference in New Issue
Block a user