Skip to content

Commit

Permalink
Remove returning struct in cc_grpc_library (grpc#32360)
Browse files Browse the repository at this point in the history
Struct providers were deprecated
bazelbuild/bazel#7347

release notes: no
  • Loading branch information
comius authored and XuanWang-Amos committed May 1, 2023
1 parent 36c79cf commit b8082f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazel/generate_cc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def generate_cc_impl(ctx):
use_default_shell_env = True,
)

return struct(files = depset(out_files)) # buildifier: disable=rule-impl-return
return DefaultInfo(files = depset(out_files))

_generate_cc = rule(
attrs = {
Expand Down

0 comments on commit b8082f0

Please sign in to comment.