diff options
author | Mark D. Roth <roth@google.com> | 2017-03-01 10:58:13 -0800 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2017-03-01 10:58:13 -0800 |
commit | 02612c163e949ed70a399cf9dd311457bb29c902 (patch) | |
tree | 7979cb4824a3190203c7c2bbe035bbdfa20bc5ac /BUILD | |
parent | 95039b57dc812dff2c0edfd80f6c09179afabc97 (diff) | |
parent | f1666d48244143ddaf463523030ee76cc0fe691c (diff) |
Merge remote-tracking branch 'upstream/master' into retry_throttle
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD | 24 |
1 files changed, 22 insertions, 2 deletions
@@ -127,7 +127,6 @@ grpc_cc_library( "src/cpp/server/secure_server_credentials.cc", ], hdrs = [ - "include/grpc++/impl/codegen/core_codegen.h", "src/cpp/client/secure_credentials.h", "src/cpp/common/secure_auth_context.h", "src/cpp/server/secure_server_credentials.h", @@ -359,6 +358,7 @@ grpc_cc_library( "src/core/lib/support/env.h", "src/core/lib/support/mpscq.h", "src/core/lib/support/murmur_hash.h", + "src/core/lib/support/spinlock.h", "src/core/lib/support/stack_lockfree.h", "src/core/lib/support/string.h", "src/core/lib/support/string_windows.h", @@ -1078,8 +1078,8 @@ grpc_cc_library( "src/core/ext/transport/cronet/transport/cronet_transport.c", ], hdrs = [ - "third_party/objective_c/Cronet/bidirectional_stream_c.h", "src/core/ext/transport/cronet/transport/cronet_transport.h", + "third_party/objective_c/Cronet/bidirectional_stream_c.h", ], language = "c", public_hdrs = [ @@ -1130,6 +1130,7 @@ grpc_cc_library( "src/cpp/common/channel_filter.cc", "src/cpp/common/completion_queue_cc.cc", "src/cpp/common/core_codegen.cc", + "src/cpp/common/resource_quota_cc.cc", "src/cpp/common/rpc_method.cc", "src/cpp/common/version_cc.cc", "src/cpp/server/async_generic_service.cc", @@ -1300,3 +1301,22 @@ grpc_cc_library( "grpc++_codegen_base", ], ) + +grpc_cc_library( + name = "grpc++_reflection", + srcs = [ + "src/cpp/ext/proto_server_reflection.cc", + "src/cpp/ext/proto_server_reflection_plugin.cc", + ], + hdrs = [ + "src/cpp/ext/proto_server_reflection.h", + ], + language = "c++", + public_hdrs = [ + "include/grpc++/ext/proto_server_reflection_plugin.h", + ], + deps = [ + ":grpc++", + "//src/proto/grpc/reflection/v1alpha:reflection_proto", + ], +) |