From d9d5f97f00ceee41d5098761240eb22114075b38 Mon Sep 17 00:00:00 2001 From: Pedro Loureiro Date: Fri, 16 Sep 2022 18:44:28 +0000 Subject: [PATCH] Remove special case for test-only module Test: m nothing Bug: 195732042 Change-Id: I401a7ec63c5c902255184b5861ead3e3322be373 --- java/bootclasspath_fragment.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/java/bootclasspath_fragment.go b/java/bootclasspath_fragment.go index 42a11fb75..8e1e56522 100644 --- a/java/bootclasspath_fragment.go +++ b/java/bootclasspath_fragment.go @@ -716,8 +716,6 @@ func (b *BootclasspathFragmentModule) configuredJars(ctx android.ModuleContext) // This is an exception to support end-to-end test for SdkExtensions, until such support exists. if android.InList("test_framework-sdkextensions", possibleUpdatableModules) { jars = jars.Append("com.android.sdkext", "test_framework-sdkextensions") - } else if android.InList("AddNewActivity", possibleUpdatableModules) { - jars = jars.Append("test_com.android.cts.frameworkresapkplits", "AddNewActivity") } else if android.InList("test_framework-apexd", possibleUpdatableModules) { jars = jars.Append("com.android.apex.test_package", "test_framework-apexd") } else if global.ApexBootJars.Len() != 0 && !android.IsModuleInVersionedSdk(ctx.Module()) {