diff options
Diffstat (limited to 'java/plugin.go')
-rw-r--r-- | java/plugin.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/plugin.go b/java/plugin.go index 123dbd4c0..731dfda00 100644 --- a/java/plugin.go +++ b/java/plugin.go @@ -66,7 +66,8 @@ type pluginAttributes struct { // ConvertWithBp2build is used to convert android_app to Bazel. func (p *Plugin) ConvertWithBp2build(ctx android.TopDownMutatorContext) { pluginName := p.Name() - commonAttrs, depLabels := p.convertLibraryAttrsBp2Build(ctx) + commonAttrs, bp2BuildInfo := p.convertLibraryAttrsBp2Build(ctx) + depLabels := bp2BuildInfo.DepLabels deps := depLabels.Deps deps.Append(depLabels.StaticDeps) |