File tree Expand file tree Collapse file tree
hilt-core/main/java/dagger/hilt Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,17 +38,27 @@ java_library(
3838 name = "entry_point" ,
3939 srcs = [
4040 "EntryPoint.java" ,
41- "EntryPoints.java" ,
4241 ],
4342 exported_plugins = [
4443 # This is required so that we can fail if @InstallIn is missing.
4544 # TODO(bcorso): Consider using a separate processor to validate @EntryPoint.
4645 "//hilt-compiler/main/java/dagger/hilt/processor/internal/aggregateddeps:plugin" ,
4746 ],
4847 proguard_specs = ["//hilt-core/main/resources:proguard" ],
48+ exports = [":entry_points" ],
4949 deps = [
5050 ":generates_root_input" ,
5151 ":package_info" ,
52+ ],
53+ )
54+
55+ java_library (
56+ name = "entry_points" ,
57+ srcs = [
58+ "EntryPoints.java" ,
59+ ],
60+ deps = [
61+ ":package_info" ,
5262 "//hilt-core/main/java/dagger/hilt/internal:component_manager" ,
5363 "//hilt-core/main/java/dagger/hilt/internal:generated_component" ,
5464 "//hilt-core/main/java/dagger/hilt/internal:preconditions" ,
You can’t perform that action at this time.
0 commit comments