diff options
Diffstat (limited to 'java/droidstubs.go')
-rw-r--r-- | java/droidstubs.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/droidstubs.go b/java/droidstubs.go index 5fbf6c063..bdbaf9281 100644 --- a/java/droidstubs.go +++ b/java/droidstubs.go @@ -1329,7 +1329,9 @@ type PrebuiltStubsSources struct { func (p *PrebuiltStubsSources) OutputFiles(tag string) (android.Paths, error) { switch tag { - case "": + // prebuilt droidstubs does not output "exportable" stubs. + // Output the "everything" stubs srcjar file if the tag is ".exportable". + case "", ".exportable": return android.Paths{p.stubsSrcJar}, nil default: return nil, fmt.Errorf("unsupported module reference tag %q", tag) |