Merge "Add .jar tag to java modules" am: ac1d267368

am: edff7ed8da

Change-Id: I19059e05178a72ef07e205e97e528fe9f74c41b2
This commit is contained in:
Colin Cross
2019-06-05 12:58:50 -07:00
committed by android-build-merger

View File

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