From 71eef33ed01faed19e7ee812be9df66e4b45b520 Mon Sep 17 00:00:00 2001 From: Tobias Werth Date: Tue, 10 Feb 2026 01:51:49 -0800 Subject: [PATCH] Automated Code Change PiperOrigin-RevId: 868019237 --- editions/defaults.bzl | 2 ++ java/osgi/kotlin_osgi.bzl | 1 + 2 files changed, 3 insertions(+) diff --git a/editions/defaults.bzl b/editions/defaults.bzl index 7b14091975..955166e381 100644 --- a/editions/defaults.bzl +++ b/editions/defaults.bzl @@ -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])) diff --git a/java/osgi/kotlin_osgi.bzl b/java/osgi/kotlin_osgi.bzl index 2885287ec8..36c4cb65df 100644 --- a/java/osgi/kotlin_osgi.bzl +++ b/java/osgi/kotlin_osgi.bzl @@ -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,