From f261af34451ecf8c2a8764806af97dc84ba5c17f Mon Sep 17 00:00:00 2001 From: Ran Date: Fri, 19 Jul 2019 16:06:47 -0700 Subject: [PATCH] java_grpc_library.bzl: Migrate from 'proto' to ProtoInfo syntax (#5994) * Migrate the provider containing information about protocol buffers from the old-style 'dep.proto' pattern to the new-style 'dep[ProtoInfo]' one. --- java_grpc_library.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java_grpc_library.bzl b/java_grpc_library.bzl index edfee072d7..592b4b8e52 100644 --- a/java_grpc_library.bzl +++ b/java_grpc_library.bzl @@ -149,7 +149,7 @@ _java_lite_grpc_library = rule( "srcs": attr.label_list( mandatory = True, allow_empty = False, - providers = ["proto"], + providers = [ProtoInfo], ), "deps": attr.label_list( mandatory = True,