Merge "Differentiate between no dist tag and an empty dist tag" am: 4326e0e094 am: 982093faaf am: dd2b98baf4

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1511911

Change-Id: Iaeabd527ddd1c287be3a72209df15ad24f352894
This commit is contained in:
Paul Duffin
2020-11-30 13:54:36 +00:00
committed by Automerger Merge Worker
5 changed files with 111 additions and 28 deletions

View File

@@ -486,6 +486,8 @@ func (j *Module) OutputFiles(tag string) (android.Paths, error) {
switch tag {
case "":
return append(android.Paths{j.outputFile}, j.extraOutputFiles...), nil
case android.DefaultDistTag:
return android.Paths{j.outputFile}, nil
case ".jar":
return android.Paths{j.implementationAndResourcesJar}, nil
case ".proguard_map":