From 7f375869ab19dacb2ee3e189d90ed3f94e4f4faf Mon Sep 17 00:00:00 2001 From: Liz Kammer Date: Fri, 4 Aug 2023 16:37:42 -0400 Subject: Add unconverted reason for jarjar incompatibility. Test: m bp2build Change-Id: I112b84fa53f57b9df2bd1e1616012fe55b48001e --- java/aar.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'java/aar.go') diff --git a/java/aar.go b/java/aar.go index 180e1d726..20972b2d8 100644 --- a/java/aar.go +++ b/java/aar.go @@ -1305,7 +1305,11 @@ func AndroidLibraryBazelTargetModuleProperties() bazel.BazelTargetModuleProperti } func (a *AndroidLibrary) ConvertWithBp2build(ctx android.TopDownMutatorContext) { - commonAttrs, bp2buildInfo := a.convertLibraryAttrsBp2Build(ctx) + commonAttrs, bp2buildInfo, supported := a.convertLibraryAttrsBp2Build(ctx) + if !supported { + return + } + depLabels := bp2buildInfo.DepLabels deps := depLabels.Deps -- cgit v1.2.3-59-g8ed1b