summaryrefslogtreecommitdiff
path: root/android/container.go
diff options
context:
space:
mode:
author Makoto Onuki <omakoto@google.com> 2025-01-02 12:50:54 -0800
committer Makoto Onuki <omakoto@google.com> 2025-01-02 12:50:54 -0800
commitf3d66a3d5d14219f033b1265946fa5fe7685dd5f (patch)
tree28b74caba68f0b1561c9be842967c80abdb327b5 /android/container.go
parente72fd2b5b3cae1b53b43992c2eddf11b87e40445 (diff)
Remove framework-minus-apex_jarjar-sharded
This module was only for verifying the sharded version locally. Now that the sharding has been enabled on f-m-a for a while with no issues, we no longer need it. Fix: 383559945 Flag: EXEMPT The module in question isn't used. It was only for local testing. Test: Treehugger Change-Id: I68b743cb04a972884dad5b5e8f581f541a68ce73
Diffstat (limited to 'android/container.go')
-rw-r--r--android/container.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/android/container.go b/android/container.go
index 99e6a3075..830d474e9 100644
--- a/android/container.go
+++ b/android/container.go
@@ -198,9 +198,7 @@ var unstableInfoProvider = blueprint.NewProvider[unstableInfo]()
func determineUnstableModule(mctx ModuleContext) bool {
module := mctx.Module()
- // TODO(b/383559945) Remove "framework-minus-apex_jarjar-sharded" once
- // we remove this module.
- unstableModule := module.Name() == "framework-minus-apex" || module.Name() == "framework-minus-apex_jarjar-sharded"
+ unstableModule := module.Name() == "framework-minus-apex"
if installable, ok := module.(InstallableModule); ok {
for _, staticDepTag := range installable.StaticDependencyTags() {
mctx.VisitDirectDepsWithTag(staticDepTag, func(dep Module) {