File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -351,7 +351,7 @@ def _run_kt_builder_action(
351
351
352
352
args .add_all ("--classpath" , compile_deps .compile_jars )
353
353
args .add_all ("--sources" , srcs .all_srcs , omit_if_empty = True )
354
- args .add_all ("--source_jars" , srcs .src_jars , omit_if_empty = True )
354
+ args .add_all ("--source_jars" , srcs .src_jars + generated_src_jars , omit_if_empty = True )
355
355
356
356
args .add_joined ("--kotlin_friend_paths" , friend .paths , join_with = "\n " )
357
357
@@ -450,7 +450,7 @@ def _run_kt_builder_action(
450
450
ctx .actions .run (
451
451
mnemonic = mnemonic ,
452
452
inputs = depset (
453
- srcs .all_srcs + srcs .src_jars ,
453
+ srcs .all_srcs + srcs .src_jars + generated_src_jars ,
454
454
transitive = [compile_deps .compile_jars , transitive_runtime_jars ] + [p .classpath for p in compiler_plugins ],
455
455
),
456
456
tools = tools ,
You can’t perform that action at this time.
0 commit comments