Merge changes I918b4878,I85238d93,Iefee8a91

am: a48f8c8070

Change-Id: Icaea636b21c37c1017d11f104b100805c77459ab
This commit is contained in:
Colin Cross
2019-08-08 17:50:47 -07:00
committed by android-build-merger
6 changed files with 44 additions and 5 deletions

View File

@@ -370,6 +370,8 @@ func (j *Module) OutputFiles(tag string) (android.Paths, error) {
return append(android.Paths{j.outputFile}, j.extraOutputFiles...), nil
case ".jar":
return android.Paths{j.implementationAndResourcesJar}, nil
case ".proguard_map":
return android.Paths{j.proguardDictionary}, nil
default:
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
}