1 """Dummy rule to expose select() copts to aspects."""
3 UpbProtoLibraryCoptsInfo = provider(
4 "Provides copts for upb proto targets",
6 "copts": "copts for upb_proto_library()",
10 def upb_proto_library_copts_impl(ctx):
11 return UpbProtoLibraryCoptsInfo(copts = ctx.attr.copts)
13 upb_proto_library_copts = rule(
14 implementation = upb_proto_library_copts_impl,
15 attrs = {"copts": attr.string_list(default = [])},