Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide action mnemonics for kt_jvm_proto_library implementation. #368

Merged
merged 1 commit into from
Nov 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions kt_jvm_grpc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ def _kt_jvm_proto_library_helper_impl(ctx):
outputs = [gen_src_dir],
executable = ctx.executable._protoc,
arguments = [protoc_args],
mnemonic = "KtProtoGenerator",
progress_message = "Generating kotlin proto extensions for " +
", ".join([
str(dep.label)
Expand All @@ -216,6 +217,7 @@ def _kt_jvm_proto_library_helper_impl(ctx):
arguments = [args],
executable = ctx.executable._zip,
inputs = [gen_src_dir],
mnemonic = "KtProtoSrcJar",
outputs = [ctx.outputs.srcjar],
)

Expand Down