Merge "Add docs.zip output tag to droiddoc"

am: 80f8d8cd2d

Change-Id: I0f3df78e99d937587a5050e2e92588374028f4af
This commit is contained in:
Colin Cross
2019-08-27 08:46:16 -07:00
committed by android-build-merger

View File

@@ -359,6 +359,8 @@ func (j *Javadoc) OutputFiles(tag string) (android.Paths, error) {
switch tag {
case "":
return android.Paths{j.stubsSrcJar}, nil
case ".docs.zip":
return android.Paths{j.docZip}, nil
default:
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
}