@@ -177,16 +177,12 @@ DiagnosticsFile: {diagnostics_output}
177177 content = scalac_args + optional_scalac_args ,
178178 )
179179
180- scalac_inputs , _ , scalac_input_manifests = ctx .resolve_command (
181- tools = [scalac ],
182- )
183-
184180 outs = [output , statsfile , diagnosticsfile ]
185181
186182 ins = (
187183 compiler_classpath_jars .to_list () + all_srcjars .to_list () + list (sources ) +
188184 plugins_list + internal_plugin_jars + classpath_resources + resources +
189- resource_jars + [manifest , argfile ] + scalac_inputs
185+ resource_jars + [manifest , argfile ]
190186 )
191187
192188 # scalac_jvm_flags passed in on the target override scalac_jvm_flags passed in on the
@@ -199,8 +195,7 @@ DiagnosticsFile: {diagnostics_output}
199195 ctx .actions .run (
200196 inputs = ins ,
201197 outputs = outs ,
202- executable = scalac .files_to_run .executable ,
203- input_manifests = scalac_input_manifests ,
198+ executable = scalac ,
204199 mnemonic = "Scalac" ,
205200 progress_message = "scala %s" % target_label ,
206201 execution_requirements = {"supports-workers" : "1" },
@@ -222,8 +217,7 @@ DiagnosticsFile: {diagnostics_output}
222217 ctx .actions .run (
223218 inputs = ins ,
224219 outputs = outs ,
225- executable = scalac .files_to_run .executable ,
226- input_manifests = scalac_input_manifests ,
220+ executable = scalac ,
227221 mnemonic = "Scalac" ,
228222 progress_message = "scala %s" % target_label ,
229223 execution_requirements = {"supports-workers" : "1" },
0 commit comments