diff options
author | Colin Cross <ccross@android.com> | 2017-10-23 17:59:01 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2017-10-24 13:01:03 -0700 |
commit | d11fcda940055074f9ceb932883ea31dfe0c11d9 (patch) | |
tree | c9226e0580eaecd68b531532119f72ddc31da565 /java/system_modules.go | |
parent | b6715449737261c64d3408418754185da8624204 (diff) | |
download | android_build_soong-d11fcda940055074f9ceb932883ea31dfe0c11d9.tar.gz android_build_soong-d11fcda940055074f9ceb932883ea31dfe0c11d9.tar.bz2 android_build_soong-d11fcda940055074f9ceb932883ea31dfe0c11d9.zip |
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
Diffstat (limited to 'java/system_modules.go')
-rw-r--r-- | java/system_modules.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/system_modules.go b/java/system_modules.go index f6f572b6..a459b7a0 100644 --- a/java/system_modules.go +++ b/java/system_modules.go @@ -112,7 +112,7 @@ type SystemModulesProperties struct { func (system *SystemModules) GenerateAndroidBuildActions(ctx android.ModuleContext) { var jars android.Paths - ctx.VisitDirectDeps(func(module blueprint.Module) { + ctx.VisitDirectDeps(func(module android.Module) { if ctx.OtherModuleDependencyTag(module) == libTag { dep, _ := module.(Dependency) jars = append(jars, dep.HeaderJars()...) |