diff options
author | nnoble <nnoble@google.com> | 2014-12-12 11:42:26 -0800 |
---|---|---|
committer | Nicolas Noble <nnoble@google.com> | 2014-12-12 16:24:32 -0800 |
commit | 72309c6c5d7c4fdfffb502b373a2971b1412fa6f (patch) | |
tree | 597478414cc6bf22af50bab4c0f764ec7d63719d /test/cpp/interop/test.proto | |
parent | 3656f94978422017cb9ab9334f2f8dfeb6cdd0f9 (diff) |
Getting the generated Makefile to support .proto files.
-) Compiling the proto plugin using the HOSTCC compiler.
-) Set up proper rules to invoke the plugin from protoc.
-) Few various renaming hacks to fully get out of [].
Change on 2014/12/12 by nnoble <nnoble@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=82000361
Diffstat (limited to 'test/cpp/interop/test.proto')
-rw-r--r-- | test/cpp/interop/test.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/interop/test.proto b/test/cpp/interop/test.proto index e9c1381b41..e358f3bea5 100644 --- a/test/cpp/interop/test.proto +++ b/test/cpp/interop/test.proto @@ -11,7 +11,7 @@ package grpc.testing; // performance with various types of payload. service TestService { // One empty request followed by one empty response. - rpc EmptyCall(proto2.Empty) returns (proto2.Empty); + rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); // One request followed by one response. // The server returns the client payload as-is. |