From 0a37d429bcbfdf5110bbfcf14f43764dc01585a4 Mon Sep 17 00:00:00 2001 From: Yu Liu Date: Thu, 13 Feb 2025 02:05:00 +0000 Subject: Change depVisitor to use providers instead of type-asserting to interfaces directly, the next step is to change it to use ModuleProxy once IsDepInSameApex is ready. Bug: 377723687 Test: Unit tests and compare the ninja and mk files generated. Change-Id: I13a4e256a26dbf7f9b3b746d628ac8f68b4e598e --- java/app_set.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'java/app_set.go') diff --git a/java/app_set.go b/java/app_set.go index 7997570aa..2e9d31410 100644 --- a/java/app_set.go +++ b/java/app_set.go @@ -192,6 +192,11 @@ func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) }, ) + android.SetProvider(ctx, AppInfoProvider, &AppInfo{ + AppSet: true, + Privileged: as.Privileged(), + OutputFile: as.OutputFile(), + }) } func (as *AndroidAppSet) InstallBypassMake() bool { return true } -- cgit v1.2.3-59-g8ed1b