From aa942b0e82b21d8feff8258bd0232842105f6faf Mon Sep 17 00:00:00 2001 From: Richard Belleville Date: Mon, 24 Aug 2020 21:13:40 -0700 Subject: [PATCH] Fix duplicated generated file --- examples/objective-c/BUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/objective-c/BUILD b/examples/objective-c/BUILD index e8d2184a0e1..6f2331028c0 100644 --- a/examples/objective-c/BUILD +++ b/examples/objective-c/BUILD @@ -27,12 +27,12 @@ objc_grpc_library( deps = ["//examples:helloworld_proto"], ) -# This one works with import "external/com_github_grpc_grpc/examples/protos/Helloworld.pbrpc.h" +# This one works with import "external/com_github_grpc_grpc/examples/protos/Keyvaluestore.pbrpc.h" objc_grpc_library( - name = "HelloWorld_grpc_proto_external", - srcs = ["//external/com_github_grpc_grpc/examples:protos/helloworld.proto"], + name = "Keyvaluestore_grpc_proto_external", + srcs = ["//external/com_github_grpc_grpc/examples:protos/keyvaluestore.proto"], tags = ["manual"], - deps = ["@com_github_grpc_grpc//examples:helloworld_proto"], + deps = ["@com_github_grpc_grpc//examples:keyvaluestore_proto"], ) objc_library(