summaryrefslogtreecommitdiff
path: root/apex/apex.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2024-12-19 10:09:17 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-12-19 10:09:17 -0800
commite1eea696a7c28e8eb0e0e0e40008ac13db5642a3 (patch)
treecf0246472843b365364cd2d5efe196c405de97b8 /apex/apex.go
parent5c46a81548858493cbd026553307e223f77ce9aa (diff)
parentaf4c8562a29e152cd473f64e938638b44d57078b (diff)
Merge "Remove TestApexes from ApexInfo" into main
Diffstat (limited to 'apex/apex.go')
-rw-r--r--apex/apex.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/apex/apex.go b/apex/apex.go
index b0d2b54a7..375d5af17 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -988,17 +988,12 @@ func (a *apexBundle) ApexInfoMutator(mctx android.TopDownMutatorContext) {
}
a.properties.ApexVariationName = apexVariationName
- testApexes := []string{}
- if a.testApex {
- testApexes = []string{apexVariationName}
- }
apexInfo := android.ApexInfo{
ApexVariationName: apexVariationName,
MinSdkVersion: minSdkVersion,
Updatable: a.Updatable(),
UsePlatformApis: a.UsePlatformApis(),
InApexVariants: []string{apexVariationName},
- TestApexes: testApexes,
BaseApexName: mctx.ModuleName(),
ApexAvailableName: proptools.String(a.properties.Apex_available_name),
}