diff options
author | 2023-08-04 16:37:42 -0400 | |
---|---|---|
committer | 2023-08-04 16:39:57 -0400 | |
commit | 7f375869ab19dacb2ee3e189d90ed3f94e4f4faf (patch) | |
tree | ef876acbbea2a30e1827c7fd1fcf41a9179bb40e /java/aar.go | |
parent | 4d293f3dd61bc2d51889001204b43aa7d79c5665 (diff) |
Add unconverted reason for jarjar incompatibility.
Test: m bp2build
Change-Id: I112b84fa53f57b9df2bd1e1616012fe55b48001e
Diffstat (limited to 'java/aar.go')
-rw-r--r-- | java/aar.go | 6 |
1 files changed, 5 insertions, 1 deletions
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 |