From 9cf55a538b07d2e76b993bf3eb44b2e72f9ddcc3 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 5 Dec 2024 14:26:03 -0800 Subject: Convert WalkPayloadDeps from blueprint.Module to android.Module All modules in Soong are now android.Module, there is no need to use blueprint.Module. Test: builds Change-Id: I859cd6360732e3d195a634736ec515d240323f29 --- apex/apex.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apex/apex.go') diff --git a/apex/apex.go b/apex/apex.go index acf290365..e22cf9ea6 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -2694,7 +2694,7 @@ func (a *apexBundle) checkApexAvailability(ctx android.ModuleContext) { return } - a.WalkPayloadDeps(ctx, func(ctx android.BaseModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool { + a.WalkPayloadDeps(ctx, func(ctx android.BaseModuleContext, from android.Module, to android.ApexModule, externalDep bool) bool { // As soon as the dependency graph crosses the APEX boundary, don't go further. if externalDep { return false -- cgit v1.2.3-59-g8ed1b