Fix corner case where 'GeneratedSrcsInfo' value has no field or method 'thunks'

PiperOrigin-RevId: 520181237
pull/13171/head
Protobuf Team Bot 2 years ago committed by Copybara-Service
parent 73489a9339
commit 6fa4c96684
  1. 2
      bazel/upb_proto_library.bzl

@ -207,7 +207,7 @@ _WrappedDefsGeneratedSrcsInfo = provider(
def _compile_upb_protos(ctx, generator, proto_info, proto_sources):
if len(proto_sources) == 0:
return GeneratedSrcsInfo(srcs = [], hdrs = [], includes = [])
return GeneratedSrcsInfo(srcs = [], hdrs = [], thunks = [], includes = [])
ext = "." + generator
tool = getattr(ctx.executable, "_gen_" + generator)

Loading…
Cancel
Save