Skip to content

Commit

Permalink
Internal changes
Browse files Browse the repository at this point in the history
RELNOTES=N/A
PiperOrigin-RevId: 700397331
  • Loading branch information
bcorso authored and Dagger Team committed Nov 26, 2024
1 parent 4046f2c commit 2d75be9
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions java/dagger/hilt/android/testing/compile/HiltCompilerTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@
import dagger.hilt.processor.internal.aliasof.KspAliasOfProcessor;
import dagger.hilt.processor.internal.definecomponent.DefineComponentProcessor;
import dagger.hilt.processor.internal.definecomponent.KspDefineComponentProcessor;
import dagger.hilt.processor.internal.earlyentrypoint.EarlyEntryPointProcessor;
import dagger.hilt.processor.internal.earlyentrypoint.KspEarlyEntryPointProcessor;
import dagger.hilt.processor.internal.generatesrootinput.GeneratesRootInputProcessor;
import dagger.hilt.processor.internal.generatesrootinput.KspGeneratesRootInputProcessor;
import dagger.hilt.processor.internal.originatingelement.KspOriginatingElementProcessor;
Expand All @@ -52,6 +54,8 @@
import dagger.hilt.processor.internal.root.KspComponentTreeDepsProcessor;
import dagger.hilt.processor.internal.root.KspRootProcessor;
import dagger.hilt.processor.internal.root.RootProcessor;
import dagger.hilt.processor.internal.uninstallmodules.KspUninstallModulesProcessor;
import dagger.hilt.processor.internal.uninstallmodules.UninstallModulesProcessor;
import dagger.internal.codegen.ComponentProcessor;
import dagger.internal.codegen.KspComponentProcessor;
import dagger.testing.compile.CompilerTests;
Expand Down Expand Up @@ -178,8 +182,8 @@ static ImmutableList<Processor> defaultProcessors() {
new ComponentTreeDepsProcessor(),
new CustomTestApplicationProcessor(),
new DefineComponentProcessor(),
new dagger.hilt.processor.internal.earlyentrypoint.EarlyEntryPointProcessor(),
new dagger.hilt.processor.internal.uninstallmodules.UninstallModulesProcessor(),
new EarlyEntryPointProcessor(),
new UninstallModulesProcessor(),
new GeneratesRootInputProcessor(),
new OriginatingElementProcessor(),
new RootProcessor());
Expand All @@ -195,8 +199,8 @@ private static ImmutableList<SymbolProcessorProvider> kspDefaultProcessors() {
new KspComponentTreeDepsProcessor.Provider(),
new KspCustomTestApplicationProcessor.Provider(),
new KspDefineComponentProcessor.Provider(),
new dagger.hilt.processor.internal.earlyentrypoint.KspEarlyEntryPointProcessor.Provider(),
new dagger.hilt.processor.internal.uninstallmodules.KspUninstallModulesProcessor.Provider(),
new KspEarlyEntryPointProcessor.Provider(),
new KspUninstallModulesProcessor.Provider(),
new KspGeneratesRootInputProcessor.Provider(),
new KspOriginatingElementProcessor.Provider(),
new KspRootProcessor.Provider());
Expand Down

0 comments on commit 2d75be9

Please sign in to comment.