diff options
author | 2023-11-01 15:29:09 -0700 | |
---|---|---|
committer | 2023-11-01 15:29:09 -0700 | |
commit | 9bef67488d1fabc0b8341a143eed599dfb80cc5d (patch) | |
tree | ad7db83d0c617ee3379724a50eacfd0c9e82b0cb /java/java_test.go | |
parent | eb852927d4b8579f1b395e5afb2cacf2c76a087e (diff) |
Remove sdkPreSingleton and overlaySingleton
These were the only 2 pre-singletons in soong. sdkPreSingleton is
totally unused. overlaySingleton can be done during
GenerateAndroidBuildActions instead.
Test: m nothing --no-skip-soong-tests
Change-Id: Ieb5ab92f18cb56be4049c0842f61df8aa02dc52c
Diffstat (limited to 'java/java_test.go')
-rw-r--r-- | java/java_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/java/java_test.go b/java/java_test.go index c54c0e68f..81119a79e 100644 --- a/java/java_test.go +++ b/java/java_test.go @@ -47,10 +47,6 @@ var prepareForJavaTest = android.GroupFixturePreparers( cc.PrepareForTestWithCcBuildComponents, // Include all the default java modules. PrepareForTestWithDexpreopt, - PrepareForTestWithOverlayBuildComponents, - android.FixtureRegisterWithContext(func(ctx android.RegistrationContext) { - ctx.RegisterPreSingletonType("sdk_versions", sdkPreSingletonFactory) - }), ) func TestMain(m *testing.M) { |