From d11fcda940055074f9ceb932883ea31dfe0c11d9 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Mon, 23 Oct 2017 17:59:01 -0700 Subject: Convert Visit*Deps from blueprint.Module to android.Module Also adds checks that the dependencies are android.Modules and are not disabled. Test: m checkbuild Change-Id: I05e945f38915d49cd3c0ab72a86576949bc7eff2 --- python/binary.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'python/binary.go') diff --git a/python/binary.go b/python/binary.go index b7b505613..c2e38bf39 100644 --- a/python/binary.go +++ b/python/binary.go @@ -21,8 +21,6 @@ import ( "path/filepath" "strings" - "github.com/google/blueprint" - "android/soong/android" ) @@ -135,7 +133,7 @@ func (binary *binaryDecorator) bootstrap(ctx android.ModuleContext, actual_versi var launcher_path android.Path if embedded_launcher { - ctx.VisitDirectDeps(func(m blueprint.Module) { + ctx.VisitDirectDeps(func(m android.Module) { if ctx.OtherModuleDependencyTag(m) != launcherTag { return } -- cgit v1.2.3-59-g8ed1b