Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d66684bd authored by Jayant Chowdhary's avatar Jayant Chowdhary Committed by android-build-merger
Browse files

Merge "No abi diffing for vndk libraries which are not vendor available." am:...

Merge "No abi diffing for vndk libraries which are not vendor available." am: 72ce0643 am: 21e5d301
am: 12e02683

Change-Id: I3fbea7eaedfd3fbbdc41ba56fe32afacf10fd842
parents 45accbc9 12e02683
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -535,7 +535,8 @@ func (ctx *moduleContextImpl) createVndkSourceAbiDump() bool {
	if sanitize != nil {
		isUnsanitizedVariant = sanitize.isUnsanitizedVariant()
	}
	return isUnsanitizedVariant && ctx.ctx.Device() && ((ctx.useVndk() && ctx.isVndk()) || inList(ctx.baseModuleName(), llndkLibraries))
	vendorAvailable := Bool(ctx.mod.VendorProperties.Vendor_available)
	return vendorAvailable && isUnsanitizedVariant && ctx.ctx.Device() && ((ctx.useVndk() && ctx.isVndk()) || inList(ctx.baseModuleName(), llndkLibraries))
}

func (ctx *moduleContextImpl) selectedStl() string {