Automated Code Change

PiperOrigin-RevId: 617586334
pull/16243/head
Tiago Quelhas 1 year ago committed by Copybara-Service
parent 32fe5482a1
commit 774627235e
  1. 1
      bazel/py_proto_library.bzl
  2. 1
      bazel/upb_c_proto_library.bzl
  3. 1
      bazel/upb_minitable_proto_library.bzl
  4. 1
      bazel/upb_proto_reflection_library.bzl
  5. 1
      lua/lua_proto_library.bzl
  6. 1
      protos/bazel/upb_cc_proto_library.bzl
  7. 1
      python/dist/dist.bzl

@ -128,7 +128,6 @@ _py_proto_library_aspect = aspect(
)
py_proto_library = rule(
output_to_genfiles = True,
implementation = _py_proto_library_rule_impl,
attrs = {
"deps": attr.label_list(

@ -57,7 +57,6 @@ def _upb_c_proto_library_rule_impl(ctx):
return upb_proto_rule_impl(ctx, UpbWrappedCcInfo, _UpbWrappedGeneratedSrcsInfo)
upb_c_proto_library = rule(
output_to_genfiles = True,
implementation = _upb_c_proto_library_rule_impl,
attrs = {
"deps": attr.label_list(

@ -65,7 +65,6 @@ def _upb_minitable_proto_library_rule_impl(ctx):
return upb_proto_rule_impl(ctx, UpbMinitableCcInfo, _UpbWrappedGeneratedSrcsInfo)
upb_minitable_proto_library = rule(
output_to_genfiles = True,
implementation = _upb_minitable_proto_library_rule_impl,
attrs = {
"deps": attr.label_list(

@ -55,7 +55,6 @@ def _upb_proto_reflection_library_rule_impl(ctx):
return upb_proto_rule_impl(ctx, _UpbDefsWrappedCcInfo, _WrappedDefsGeneratedSrcsInfo)
upb_proto_reflection_library = rule(
output_to_genfiles = True,
implementation = _upb_proto_reflection_library_rule_impl,
attrs = {
"deps": attr.label_list(

@ -124,7 +124,6 @@ _lua_proto_library_aspect = aspect(
)
lua_proto_library = rule(
output_to_genfiles = True,
implementation = _lua_proto_rule_impl,
attrs = {
"deps": attr.label_list(

@ -289,7 +289,6 @@ _upb_cc_proto_library_aspect = aspect(
)
upb_cc_proto_library = rule(
output_to_genfiles = True,
implementation = _upb_cc_proto_rule_impl,
attrs = {
"deps": attr.label_list(

@ -113,7 +113,6 @@ def _py_dist_module_impl(ctx):
]
py_dist_module = rule(
output_to_genfiles = True,
implementation = _py_dist_module_impl,
attrs = {
"module_name": attr.string(mandatory = True),

Loading…
Cancel
Save