Skip to content

Commit 9fe4824

Browse files
bcorsoDagger Team
authored andcommitted
Internal changes
RELNOTES=N/A PiperOrigin-RevId: 700064660
1 parent fdbc63e commit 9fe4824

File tree

5 files changed

+7
-13
lines changed

5 files changed

+7
-13
lines changed

java/dagger/hilt/android/testing/compile/HiltCompilerTests.java

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@
4444
import dagger.hilt.processor.internal.aliasof.KspAliasOfProcessor;
4545
import dagger.hilt.processor.internal.definecomponent.DefineComponentProcessor;
4646
import dagger.hilt.processor.internal.definecomponent.KspDefineComponentProcessor;
47-
import dagger.hilt.processor.internal.earlyentrypoint.EarlyEntryPointProcessor;
48-
import dagger.hilt.processor.internal.earlyentrypoint.KspEarlyEntryPointProcessor;
4947
import dagger.hilt.processor.internal.generatesrootinput.GeneratesRootInputProcessor;
5048
import dagger.hilt.processor.internal.generatesrootinput.KspGeneratesRootInputProcessor;
5149
import dagger.hilt.processor.internal.originatingelement.KspOriginatingElementProcessor;
@@ -54,8 +52,6 @@
5452
import dagger.hilt.processor.internal.root.KspComponentTreeDepsProcessor;
5553
import dagger.hilt.processor.internal.root.KspRootProcessor;
5654
import dagger.hilt.processor.internal.root.RootProcessor;
57-
import dagger.hilt.processor.internal.uninstallmodules.KspUninstallModulesProcessor;
58-
import dagger.hilt.processor.internal.uninstallmodules.UninstallModulesProcessor;
5955
import dagger.internal.codegen.ComponentProcessor;
6056
import dagger.internal.codegen.KspComponentProcessor;
6157
import dagger.testing.compile.CompilerTests;
@@ -182,11 +178,11 @@ static ImmutableList<Processor> defaultProcessors() {
182178
new ComponentTreeDepsProcessor(),
183179
new CustomTestApplicationProcessor(),
184180
new DefineComponentProcessor(),
185-
new EarlyEntryPointProcessor(),
181+
new dagger.hilt.processor.internal.earlyentrypoint.EarlyEntryPointProcessor(),
182+
new dagger.hilt.processor.internal.uninstallmodules.UninstallModulesProcessor(),
186183
new GeneratesRootInputProcessor(),
187184
new OriginatingElementProcessor(),
188-
new RootProcessor(),
189-
new UninstallModulesProcessor());
185+
new RootProcessor());
190186
}
191187

192188
private static ImmutableList<SymbolProcessorProvider> kspDefaultProcessors() {
@@ -199,11 +195,11 @@ private static ImmutableList<SymbolProcessorProvider> kspDefaultProcessors() {
199195
new KspComponentTreeDepsProcessor.Provider(),
200196
new KspCustomTestApplicationProcessor.Provider(),
201197
new KspDefineComponentProcessor.Provider(),
202-
new KspEarlyEntryPointProcessor.Provider(),
198+
new dagger.hilt.processor.internal.earlyentrypoint.KspEarlyEntryPointProcessor.Provider(),
199+
new dagger.hilt.processor.internal.uninstallmodules.KspUninstallModulesProcessor.Provider(),
203200
new KspGeneratesRootInputProcessor.Provider(),
204201
new KspOriginatingElementProcessor.Provider(),
205-
new KspRootProcessor.Provider(),
206-
new KspUninstallModulesProcessor.Provider());
202+
new KspRootProcessor.Provider());
207203
}
208204

209205
/** Used to compile Hilt sources and inspect the compiled results. */

javatests/dagger/hilt/android/processor/internal/customtestapplication/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ compiler_test(
2727
"//java/dagger/hilt/android:hilt_android_app",
2828
"@androidsdk//:platforms/android-32/android.jar",
2929
],
30-
tags = ["notap"], # TODO(b/380279766): Re-enable once the bug is fixed.
3130
deps = [
3231
"//java/dagger/hilt/android/testing/compile",
3332
"//third_party/java/guava/collect",

javatests/dagger/hilt/processor/internal/aggregateddeps/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ compiler_test(
3434
"//java/dagger/hilt/android/components",
3535
"@androidsdk//:platforms/android-32/android.jar",
3636
],
37-
tags = ["notap"], # TODO(b/380279766): Re-enable once the bug is fixed.
3837
deps = [
3938
"//java/dagger/hilt/android/testing/compile",
4039
"//java/dagger/internal/codegen/xprocessing:xprocessing-testing",

javatests/dagger/hilt/processor/internal/root/BUILD

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ compiler_test(
4040
"@maven//:androidx_test_ext_junit",
4141
"@maven//:androidx_test_core",
4242
],
43-
tags = ["notap"], # TODO(b/380279766): Re-enable once the bug is fixed.
4443
deps = [
4544
"//java/dagger/hilt/android/testing/compile",
4645
"//java/dagger/internal/codegen/xprocessing:xprocessing-testing",

test_defs.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ def _GenTestsWithVariants(
241241

242242
for test_file in test_files:
243243
test_name = test_file.rsplit(".", 1)[0]
244+
244245
_GenTestWithVariant(
245246
library_rule_type = library_rule_type,
246247
test_rule_type = test_rule_type,

0 commit comments

Comments
 (0)