Add empty tag support for java_import
Test: manual Change-Id: I53d7c6bb620fa8fe7f5c3ec0a12f723eb62fca16
This commit is contained in:
parent
38fa0f5a77
commit
128fe5c1f5
|
@ -2731,7 +2731,7 @@ func (j *Import) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|||
|
||||
func (j *Import) OutputFiles(tag string) (android.Paths, error) {
|
||||
switch tag {
|
||||
case ".jar":
|
||||
case "", ".jar":
|
||||
return android.Paths{j.combinedClasspathFile}, nil
|
||||
default:
|
||||
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
|
||||
|
|
Loading…
Reference in New Issue