summaryrefslogtreecommitdiff
path: root/android/apex.go
diff options
context:
space:
mode:
author Yu Liu <yudiliu@google.com> 2025-02-25 00:54:20 +0000
committer Yu Liu <yudiliu@google.com> 2025-02-25 19:05:48 +0000
commit95cef3a35a7dda90447e94b6bd1370043ee2cedb (patch)
tree3bd39af4a269da4cd68ec0328d999986be105748 /android/apex.go
parent2a815b6d8ea8f29b54f780b1219c28b0c8c977aa (diff)
Convert ndkSingleton, apexDepsInfoSingleton, allTeamsSingleton,
apexPrebuiltInfo to use ModuleProxy. Bug: 377723687 Test: Unit tests and compare the ninja and mk files generated. Change-Id: I77b05e8b54843bfa8b91376a6796c2b5c69be3c1
Diffstat (limited to 'android/apex.go')
-rw-r--r--android/apex.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/android/apex.go b/android/apex.go
index 91fa2c718..4e92f44f6 100644
--- a/android/apex.go
+++ b/android/apex.go
@@ -646,6 +646,13 @@ type ApexBundleDepsInfoIntf interface {
FullListPath() Path
}
+type ApexBundleDepsData struct {
+ Updatable bool
+ FlatListPath Path
+}
+
+var ApexBundleDepsDataProvider = blueprint.NewProvider[ApexBundleDepsData]()
+
func (d *ApexBundleDepsInfo) FlatListPath() Path {
return d.flatListPath
}