Merge "Build transitive lint reports for apex modules" am: 13aa44fc15 am: 5388d97b37

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

Change-Id: I08069e90ec451f09aa7bbea3e8b4834d6cb7ef67
This commit is contained in:
Treehugger Robot
2020-07-24 12:16:40 +00:00
committed by Automerger Merge Worker
8 changed files with 157 additions and 42 deletions

View File

@@ -2005,6 +2005,15 @@ func (module *SdkLibraryImport) JacocoReportClassesFile() android.Path {
}
}
// to satisfy apex.javaDependency interface
func (module *SdkLibraryImport) LintDepSets() LintDepSets {
if module.implLibraryModule == nil {
return LintDepSets{}
} else {
return module.implLibraryModule.LintDepSets()
}
}
// to satisfy apex.javaDependency interface
func (module *SdkLibraryImport) Stem() string {
return module.BaseModuleName()