aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apex/apex.go2
-rw-r--r--java/app_import.go4
2 files changed, 6 insertions, 0 deletions
diff --git a/apex/apex.go b/apex/apex.go
index bea54bccc..77854074b 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -1522,6 +1522,7 @@ type androidApp interface {
JacocoReportClassesFile() android.Path
Certificate() java.Certificate
BaseModuleName() string
+ LintDepSets() java.LintDepSets
}
var _ androidApp = (*java.AndroidApp)(nil)
@@ -1536,6 +1537,7 @@ func apexFileForAndroidApp(ctx android.BaseModuleContext, aapp androidApp) apexF
fileToCopy := aapp.OutputFile()
af := newApexFile(ctx, fileToCopy, aapp.BaseModuleName(), dirInApex, app, aapp)
af.jacocoReportClassesFile = aapp.JacocoReportClassesFile()
+ af.lintDepSets = aapp.LintDepSets()
af.certificate = aapp.Certificate()
if app, ok := aapp.(interface {
diff --git a/java/app_import.go b/java/app_import.go
index 839051ea8..3371e8e1f 100644
--- a/java/app_import.go
+++ b/java/app_import.go
@@ -402,6 +402,10 @@ func (a *AndroidAppImport) MinSdkVersion(ctx android.EarlyModuleContext) android
return android.SdkSpecPrivate
}
+func (a *AndroidAppImport) LintDepSets() LintDepSets {
+ return LintDepSets{}
+}
+
var _ android.ApexModule = (*AndroidAppImport)(nil)
// Implements android.ApexModule