Merge "Add docs.zip output tag to droiddoc"

This commit is contained in:
Treehugger Robot 2019-08-27 15:28:26 +00:00 committed by Gerrit Code Review
commit 80f8d8cd2d

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)
}