diff options
Diffstat (limited to 'java/droidstubs.go')
| -rw-r--r-- | java/droidstubs.go | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/java/droidstubs.go b/java/droidstubs.go index ec1b04a06..7fd88fceb 100644 --- a/java/droidstubs.go +++ b/java/droidstubs.go @@ -156,6 +156,7 @@ type ApiStubsSrcProvider interface {  // Provider of information about API stubs, used by java_sdk_library.  type ApiStubsProvider interface { +	AnnotationsZip() android.Path  	ApiFilePath  	RemovedApiFilePath() android.Path @@ -210,6 +211,10 @@ func (d *Droidstubs) OutputFiles(tag string) (android.Paths, error) {  	}  } +func (d *Droidstubs) AnnotationsZip() android.Path { +	return d.annotationsZip +} +  func (d *Droidstubs) ApiFilePath() android.Path {  	return d.apiFilePath  }  |