diff options
Diffstat (limited to 'java/aar.go')
-rw-r--r-- | java/aar.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/aar.go b/java/aar.go index 6261f2974..0fdde0362 100644 --- a/java/aar.go +++ b/java/aar.go @@ -1046,7 +1046,8 @@ func (a *AARImport) ConvertWithBp2build(ctx android.TopDownMutatorContext) { } func (a *AndroidLibrary) ConvertWithBp2build(ctx android.TopDownMutatorContext) { - commonAttrs, depLabels := a.convertLibraryAttrsBp2Build(ctx) + commonAttrs, bp2buildInfo := a.convertLibraryAttrsBp2Build(ctx) + depLabels := bp2buildInfo.DepLabels deps := depLabels.Deps if !commonAttrs.Srcs.IsEmpty() { |