Automated Code Change

PiperOrigin-RevId: 868019237
This commit is contained in:
Tobias Werth 2026-02-10 01:51:49 -08:00 committed by Copybara-Service
parent eedd206876
commit 71eef33ed0
2 changed files with 3 additions and 0 deletions

View file

@ -34,6 +34,7 @@ def _compile_edition_defaults_impl(ctx):
inputs = sources,
executable = ctx.executable.protoc or ctx.executable._protoc_minimal,
arguments = [args],
mnemonic = "ProtobufCompileEditionDefaults",
progress_message = "Generating edition defaults",
)
@ -76,6 +77,7 @@ def _embed_edition_defaults_impl(ctx):
arguments = [args],
outputs = [ctx.outputs.output],
inputs = [ctx.file.defaults, ctx.file.template],
mnemonic = "ProtobufEmbedEditionDefaults",
)
return DefaultInfo(files = depset([ctx.outputs.output]))

View file

@ -141,6 +141,7 @@ def _run_osgi_wrapper(ctx, input_jar, output_jar):
ctx.actions.run(
inputs = [input_jar],
executable = ctx.executable._osgi_wrapper_exe,
mnemonic = "ProtobufOsgiKotlinGen",
arguments = [args],
outputs = [output_jar],
progress_message = "Generating OSGi bundle Manifest for %s" % input_jar.path,