grpc 1.30.0 → 1.31.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (383) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +560 -619
  3. data/include/grpc/grpc_security.h +8 -0
  4. data/include/grpc/grpc_security_constants.h +3 -0
  5. data/include/grpc/impl/codegen/grpc_types.h +7 -5
  6. data/include/grpc/impl/codegen/port_platform.h +0 -32
  7. data/src/core/ext/filters/client_channel/backend_metric.cc +12 -9
  8. data/src/core/ext/filters/client_channel/client_channel.cc +406 -261
  9. data/src/core/ext/filters/client_channel/config_selector.cc +62 -0
  10. data/src/core/ext/filters/client_channel/config_selector.h +93 -0
  11. data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +24 -2
  12. data/src/core/ext/filters/client_channel/health/health_check_client.cc +2 -0
  13. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +6 -5
  14. data/src/core/ext/filters/client_channel/http_proxy.cc +6 -4
  15. data/src/core/ext/filters/client_channel/lb_policy.h +2 -0
  16. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +39 -23
  17. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +4 -6
  18. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +3 -4
  19. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc +381 -72
  20. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -5
  21. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +5 -2
  22. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +6 -5
  23. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +8 -6
  24. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +9 -7
  25. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +7 -5
  26. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +33 -48
  27. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +6 -2
  28. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +21 -18
  29. data/src/core/ext/filters/client_channel/resolver_registry.cc +13 -14
  30. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +6 -7
  31. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +33 -28
  32. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +39 -20
  33. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +142 -0
  34. data/src/core/ext/filters/client_channel/subchannel.cc +1 -1
  35. data/src/core/ext/filters/client_channel/xds/xds_api.cc +327 -123
  36. data/src/core/ext/filters/client_channel/xds/xds_api.h +72 -7
  37. data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +12 -23
  38. data/src/core/ext/filters/client_channel/xds/xds_client.cc +112 -33
  39. data/src/core/ext/filters/client_channel/xds/xds_client_stats.h +10 -10
  40. data/src/core/ext/filters/http/client/http_client_filter.cc +5 -5
  41. data/src/core/ext/filters/http/http_filters_plugin.cc +2 -1
  42. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +74 -33
  43. data/src/core/ext/filters/http/message_compress/message_decompress_filter.h +3 -1
  44. data/src/core/ext/filters/message_size/message_size_filter.cc +56 -80
  45. data/src/core/ext/filters/message_size/message_size_filter.h +6 -0
  46. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +383 -347
  47. data/src/core/ext/transport/chttp2/server/chttp2_server.h +6 -2
  48. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +1 -1
  49. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +7 -13
  50. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +7 -8
  51. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +19 -4
  52. data/src/core/ext/transport/chttp2/transport/flow_control.cc +22 -27
  53. data/src/core/ext/transport/chttp2/transport/flow_control.h +14 -16
  54. data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -12
  55. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +4 -6
  56. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +5 -6
  57. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +12 -13
  58. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +6 -7
  59. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +9 -12
  60. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +25 -29
  61. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +13 -17
  62. data/src/core/ext/transport/chttp2/transport/internal.h +13 -0
  63. data/src/core/ext/transport/chttp2/transport/parsing.cc +33 -43
  64. data/src/core/ext/transport/chttp2/transport/writing.cc +9 -14
  65. data/src/core/ext/transport/inproc/inproc_transport.cc +35 -15
  66. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +0 -1
  67. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +3 -4
  68. data/src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.h +0 -1
  69. data/src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.h +80 -69
  70. data/src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.h +24 -23
  71. data/src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.h +66 -56
  72. data/src/core/ext/upb-generated/envoy/api/v2/cds.upb.h +1 -2
  73. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c +2 -2
  74. data/src/core/ext/upb-generated/envoy/api/v2/cluster.upb.h +317 -311
  75. data/src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.h +42 -34
  76. data/src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.h +7 -7
  77. data/src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.h +79 -61
  78. data/src/core/ext/upb-generated/envoy/api/v2/core/address.upb.h +55 -49
  79. data/src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.h +9 -8
  80. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c +1 -1
  81. data/src/core/ext/upb-generated/envoy/api/v2/core/base.upb.h +163 -169
  82. data/src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.h +51 -45
  83. data/src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.h +4 -5
  84. data/src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.h +107 -100
  85. data/src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.h +137 -117
  86. data/src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.h +9 -9
  87. data/src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.h +105 -87
  88. data/src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.h +12 -13
  89. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c +1 -1
  90. data/src/core/ext/upb-generated/envoy/api/v2/discovery.upb.h +95 -101
  91. data/src/core/ext/upb-generated/envoy/api/v2/eds.upb.h +1 -2
  92. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c +1 -1
  93. data/src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.h +49 -65
  94. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.h +0 -1
  95. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.h +49 -42
  96. data/src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.h +70 -62
  97. data/src/core/ext/upb-generated/envoy/api/v2/lds.upb.h +1 -2
  98. data/src/core/ext/upb-generated/envoy/api/v2/listener.upb.h +81 -65
  99. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.h +0 -1
  100. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c +1 -1
  101. data/src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.h +91 -80
  102. data/src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.h +9 -10
  103. data/src/core/ext/upb-generated/envoy/api/v2/rds.upb.h +1 -2
  104. data/src/core/ext/upb-generated/envoy/api/v2/route.upb.h +36 -31
  105. data/src/core/ext/upb-generated/envoy/api/v2/route/route.upb.h +0 -1
  106. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c +7 -7
  107. data/src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.h +648 -696
  108. data/src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.h +16 -15
  109. data/src/core/ext/upb-generated/envoy/api/v2/srds.upb.h +1 -2
  110. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c +1 -1
  111. data/src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.h +95 -88
  112. data/src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.h +234 -199
  113. data/src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.h +5 -5
  114. data/src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.h +13 -13
  115. data/src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.h +1 -2
  116. data/src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.h +20 -18
  117. data/src/core/ext/upb-generated/envoy/type/http.upb.h +0 -1
  118. data/src/core/ext/upb-generated/envoy/type/matcher/regex.upb.h +18 -17
  119. data/src/core/ext/upb-generated/envoy/type/matcher/string.upb.h +14 -14
  120. data/src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.h +23 -23
  121. data/src/core/ext/upb-generated/envoy/type/percent.upb.h +8 -9
  122. data/src/core/ext/upb-generated/envoy/type/range.upb.h +15 -16
  123. data/src/core/ext/upb-generated/envoy/type/semantic_version.upb.h +7 -8
  124. data/src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.h +36 -35
  125. data/src/core/ext/upb-generated/gogoproto/gogo.upb.h +0 -1
  126. data/src/core/ext/upb-generated/google/api/annotations.upb.h +0 -1
  127. data/src/core/ext/upb-generated/google/api/http.upb.h +29 -28
  128. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +5 -6
  129. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +3 -3
  130. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +412 -386
  131. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +5 -6
  132. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +1 -2
  133. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +1 -1
  134. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +33 -54
  135. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +5 -6
  136. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +27 -28
  137. data/src/core/ext/upb-generated/google/rpc/status.upb.h +8 -8
  138. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +1 -1
  139. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +32 -45
  140. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +4 -4
  141. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +157 -178
  142. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +14 -13
  143. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +6 -7
  144. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +59 -56
  145. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +11 -12
  146. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +0 -1
  147. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +5 -6
  148. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c +6 -6
  149. data/src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.h +41 -68
  150. data/src/core/ext/upb-generated/validate/validate.upb.h +536 -535
  151. data/src/core/lib/channel/channel_trace.cc +2 -6
  152. data/src/core/lib/channel/channelz.cc +5 -15
  153. data/src/core/lib/gpr/log_linux.cc +6 -8
  154. data/src/core/lib/gpr/log_posix.cc +6 -8
  155. data/src/core/lib/gpr/string.cc +10 -9
  156. data/src/core/lib/gpr/string.h +4 -2
  157. data/src/core/lib/gprpp/global_config_env.cc +8 -6
  158. data/src/core/lib/http/httpcli.cc +13 -10
  159. data/src/core/lib/http/httpcli_security_connector.cc +5 -5
  160. data/src/core/lib/iomgr/cfstream_handle.cc +1 -0
  161. data/src/core/lib/iomgr/endpoint_pair_posix.cc +10 -10
  162. data/src/core/lib/iomgr/error_cfstream.cc +9 -8
  163. data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -6
  164. data/src/core/lib/iomgr/ev_epollex_linux.cc +15 -21
  165. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  166. data/src/core/lib/iomgr/ev_posix.cc +2 -0
  167. data/src/core/lib/iomgr/iomgr.cc +10 -0
  168. data/src/core/lib/iomgr/iomgr.h +10 -0
  169. data/src/core/lib/iomgr/is_epollexclusive_available.cc +14 -0
  170. data/src/core/lib/iomgr/port.h +1 -21
  171. data/src/core/lib/iomgr/resolve_address_custom.cc +13 -18
  172. data/src/core/lib/iomgr/resolve_address_windows.cc +8 -8
  173. data/src/core/lib/iomgr/resource_quota.cc +34 -31
  174. data/src/core/lib/iomgr/sockaddr_utils.cc +7 -5
  175. data/src/core/lib/iomgr/sockaddr_utils.h +1 -1
  176. data/src/core/lib/iomgr/socket_utils_common_posix.cc +95 -55
  177. data/src/core/lib/iomgr/socket_windows.cc +4 -5
  178. data/src/core/lib/iomgr/tcp_client_cfstream.cc +9 -11
  179. data/src/core/lib/iomgr/tcp_client_custom.cc +6 -9
  180. data/src/core/lib/iomgr/tcp_client_posix.cc +27 -36
  181. data/src/core/lib/iomgr/tcp_client_windows.cc +9 -9
  182. data/src/core/lib/iomgr/tcp_custom.cc +1 -1
  183. data/src/core/lib/iomgr/tcp_custom.h +1 -1
  184. data/src/core/lib/iomgr/tcp_server.cc +3 -4
  185. data/src/core/lib/iomgr/tcp_server.h +7 -5
  186. data/src/core/lib/iomgr/tcp_server_custom.cc +6 -14
  187. data/src/core/lib/iomgr/tcp_server_posix.cc +34 -41
  188. data/src/core/lib/iomgr/tcp_server_utils_posix.h +3 -4
  189. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +5 -7
  190. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +4 -9
  191. data/src/core/lib/iomgr/tcp_server_windows.cc +16 -16
  192. data/src/core/lib/iomgr/timer_generic.cc +13 -12
  193. data/src/core/lib/iomgr/udp_server.cc +24 -23
  194. data/src/core/lib/iomgr/udp_server.h +5 -2
  195. data/src/core/lib/iomgr/unix_sockets_posix.cc +9 -14
  196. data/src/core/lib/iomgr/unix_sockets_posix.h +3 -1
  197. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +5 -2
  198. data/src/core/lib/json/json_reader.cc +20 -21
  199. data/src/core/lib/security/credentials/credentials.h +5 -3
  200. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +8 -6
  201. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +12 -9
  202. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +7 -4
  203. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +19 -28
  204. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +6 -6
  205. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +20 -0
  206. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +10 -0
  207. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +10 -0
  208. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +10 -10
  209. data/src/core/lib/security/security_connector/security_connector.cc +2 -0
  210. data/src/core/lib/security/security_connector/security_connector.h +1 -1
  211. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +18 -11
  212. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +5 -0
  213. data/src/core/lib/security/security_connector/ssl_utils.cc +44 -23
  214. data/src/core/lib/security/security_connector/ssl_utils.h +6 -2
  215. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +27 -24
  216. data/src/core/lib/security/transport/auth_filters.h +0 -5
  217. data/src/core/lib/security/transport/client_auth_filter.cc +10 -9
  218. data/src/core/lib/security/util/json_util.cc +12 -13
  219. data/src/core/lib/slice/slice.cc +38 -1
  220. data/src/core/lib/slice/slice_internal.h +1 -0
  221. data/src/core/lib/surface/call.cc +40 -41
  222. data/src/core/lib/surface/completion_queue.cc +271 -14
  223. data/src/core/lib/surface/completion_queue.h +8 -0
  224. data/src/core/lib/surface/init.cc +2 -0
  225. data/src/core/lib/surface/server.cc +565 -632
  226. data/src/core/lib/surface/server.h +34 -12
  227. data/src/core/lib/surface/version.cc +2 -2
  228. data/src/core/lib/transport/transport.h +6 -0
  229. data/src/core/lib/uri/uri_parser.cc +8 -15
  230. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
  231. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +23 -13
  232. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +2 -0
  233. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +2 -0
  234. data/src/core/tsi/ssl_transport_security.cc +108 -11
  235. data/src/core/tsi/ssl_transport_security.h +14 -2
  236. data/src/core/tsi/transport_security_interface.h +5 -0
  237. data/src/ruby/bin/math_services_pb.rb +4 -4
  238. data/src/ruby/ext/grpc/extconf.rb +5 -2
  239. data/src/ruby/ext/grpc/rb_call.c +3 -2
  240. data/src/ruby/ext/grpc/rb_call.h +4 -0
  241. data/src/ruby/ext/grpc/rb_call_credentials.c +57 -12
  242. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +4 -0
  243. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +6 -0
  244. data/src/ruby/lib/grpc/generic/client_stub.rb +1 -1
  245. data/src/ruby/lib/grpc/generic/interceptors.rb +1 -1
  246. data/src/ruby/lib/grpc/version.rb +1 -1
  247. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +2 -2
  248. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +5 -0
  249. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +28 -12
  250. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_import2.proto +23 -0
  251. data/src/ruby/spec/pb/codegen/grpc/testing/package_options_ruby_style.proto +2 -0
  252. data/src/ruby/spec/pb/codegen/grpc/testing/same_package_service_name.proto +27 -0
  253. data/src/ruby/spec/pb/codegen/grpc/testing/same_ruby_package_service_name.proto +29 -0
  254. data/src/ruby/spec/pb/codegen/package_option_spec.rb +25 -1
  255. data/src/ruby/spec/support/services.rb +10 -4
  256. data/src/ruby/spec/user_agent_spec.rb +74 -0
  257. data/third_party/boringssl-with-bazel/err_data.c +89 -83
  258. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +3 -3
  259. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c +3 -3
  260. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +1 -1
  261. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +3 -3
  262. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +2 -2
  263. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +1 -1
  264. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -1
  265. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +1 -1
  266. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c +1 -1
  267. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +1 -1
  268. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +1 -1
  269. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +1 -0
  270. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +12 -52
  271. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +0 -22
  272. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +143 -0
  273. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +17 -1
  274. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +11 -1
  275. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +2 -1
  276. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +13 -11
  277. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-x86_64.c +24 -23
  278. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +20 -16
  279. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +2 -2
  280. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c +3 -3
  281. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +62 -0
  282. data/third_party/boringssl-with-bazel/src/crypto/mem.c +29 -15
  283. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +7 -0
  284. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +36 -5
  285. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +0 -29
  286. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +116 -363
  287. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +7 -45
  288. data/third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c +4 -4
  289. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +8 -0
  290. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +4 -4
  291. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +0 -67
  292. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +13 -6
  293. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +10 -0
  294. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +41 -0
  295. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +4 -1
  296. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +28 -9
  297. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +25 -0
  298. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +35 -13
  299. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +0 -154
  300. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +28 -6
  301. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +5 -0
  302. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +74 -35
  303. data/third_party/boringssl-with-bazel/src/include/openssl/aes.h +16 -4
  304. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +22 -22
  305. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +1 -1
  306. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +69 -0
  307. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +33 -16
  308. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +1 -10
  309. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +789 -715
  310. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +3 -3
  311. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +9 -2
  312. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +2 -2
  313. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +9 -0
  314. data/third_party/boringssl-with-bazel/src/ssl/internal.h +17 -14
  315. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +7 -7
  316. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +28 -0
  317. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +4 -24
  318. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +5 -5
  319. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +45 -24
  320. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +31 -21
  321. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +12 -9
  322. data/third_party/re2/re2/bitmap256.h +117 -0
  323. data/third_party/re2/re2/bitstate.cc +385 -0
  324. data/third_party/re2/re2/compile.cc +1279 -0
  325. data/third_party/re2/re2/dfa.cc +2130 -0
  326. data/third_party/re2/re2/filtered_re2.cc +121 -0
  327. data/third_party/re2/re2/filtered_re2.h +109 -0
  328. data/third_party/re2/re2/mimics_pcre.cc +197 -0
  329. data/third_party/re2/re2/nfa.cc +713 -0
  330. data/third_party/re2/re2/onepass.cc +623 -0
  331. data/third_party/re2/re2/parse.cc +2464 -0
  332. data/third_party/re2/re2/perl_groups.cc +119 -0
  333. data/third_party/re2/re2/pod_array.h +55 -0
  334. data/third_party/re2/re2/prefilter.cc +710 -0
  335. data/third_party/re2/re2/prefilter.h +108 -0
  336. data/third_party/re2/re2/prefilter_tree.cc +407 -0
  337. data/third_party/re2/re2/prefilter_tree.h +139 -0
  338. data/third_party/re2/re2/prog.cc +988 -0
  339. data/third_party/re2/re2/prog.h +436 -0
  340. data/third_party/re2/re2/re2.cc +1362 -0
  341. data/third_party/re2/re2/re2.h +1002 -0
  342. data/third_party/re2/re2/regexp.cc +980 -0
  343. data/third_party/re2/re2/regexp.h +659 -0
  344. data/third_party/re2/re2/set.cc +154 -0
  345. data/third_party/re2/re2/set.h +80 -0
  346. data/third_party/re2/re2/simplify.cc +657 -0
  347. data/third_party/re2/re2/sparse_array.h +392 -0
  348. data/third_party/re2/re2/sparse_set.h +264 -0
  349. data/third_party/re2/re2/stringpiece.cc +65 -0
  350. data/third_party/re2/re2/stringpiece.h +210 -0
  351. data/third_party/re2/re2/tostring.cc +351 -0
  352. data/third_party/re2/re2/unicode_casefold.cc +582 -0
  353. data/third_party/re2/re2/unicode_casefold.h +78 -0
  354. data/third_party/re2/re2/unicode_groups.cc +6269 -0
  355. data/third_party/re2/re2/unicode_groups.h +67 -0
  356. data/third_party/re2/re2/walker-inl.h +246 -0
  357. data/third_party/re2/util/benchmark.h +156 -0
  358. data/third_party/re2/util/flags.h +26 -0
  359. data/third_party/re2/util/logging.h +109 -0
  360. data/third_party/re2/util/malloc_counter.h +19 -0
  361. data/third_party/re2/util/mix.h +41 -0
  362. data/third_party/re2/util/mutex.h +148 -0
  363. data/third_party/re2/util/pcre.cc +1025 -0
  364. data/third_party/re2/util/pcre.h +681 -0
  365. data/third_party/re2/util/rune.cc +260 -0
  366. data/third_party/re2/util/strutil.cc +149 -0
  367. data/third_party/re2/util/strutil.h +21 -0
  368. data/third_party/re2/util/test.h +50 -0
  369. data/third_party/re2/util/utf.h +44 -0
  370. data/third_party/re2/util/util.h +42 -0
  371. data/third_party/upb/upb/decode.c +467 -504
  372. data/third_party/upb/upb/encode.c +163 -121
  373. data/third_party/upb/upb/msg.c +130 -64
  374. data/third_party/upb/upb/msg.h +418 -14
  375. data/third_party/upb/upb/port_def.inc +35 -6
  376. data/third_party/upb/upb/port_undef.inc +8 -1
  377. data/third_party/upb/upb/table.c +53 -75
  378. data/third_party/upb/upb/table.int.h +11 -43
  379. data/third_party/upb/upb/upb.c +148 -124
  380. data/third_party/upb/upb/upb.h +65 -147
  381. data/third_party/upb/upb/upb.hpp +86 -0
  382. metadata +90 -30
  383. data/third_party/upb/upb/generated_util.h +0 -105
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a626e5d9956360cf66dfa01ae83510163e51b0d4b1d9719fad76ff737a614a42
4
- data.tar.gz: 315005aad77b80976e3d761a0fb8ce27beae82e3e01a2ba3dd28ea1441d8c464
3
+ metadata.gz: 75ee4567615708f4d6389a7b38894392c9bb268f01e7b164afeff7b43e648258
4
+ data.tar.gz: 28353f6c57fc97a27c2c42ca3d179da939e5ce7a2b640df8be70f5a5b6634150
5
5
  SHA512:
6
- metadata.gz: 100ee4966c00faf05befefb6a8ef94d91e7a5acfc6bf521cdbef7a964ee11c66cd827c18d7e87356341e2a269aaba602fe2f9247796ab50a46e5f24c23c433e2
7
- data.tar.gz: 05230ac2839bd9a65cfa6119790a0688a7c2b69df9de1bd1b0e4ef40c3f32b6e589c3bb7bcbf55fff14100a7e87ebd5dc9ea7a653ae4a90bcf86ea54d4355bd2
6
+ metadata.gz: 8b58a476ad6942037983bda31ddd0eabb1c816d3e7b95e7764f3869c6aef3a051fcbc991855f58ddd5e318bdccccaad3e219b886bfd291edabab20550e1dc479
7
+ data.tar.gz: bdb737514759fe270684a3430f379a530e89870b413e9623d059cb056561f596f734dcd1270c869b84d1b05c62820d1cc19b90a942f3a7d9554f5590806097a6
data/Makefile CHANGED
@@ -270,26 +270,28 @@ ifeq ($(origin LD), default)
270
270
  LD = $(LD_$(CONFIG))
271
271
  endif
272
272
  LDXX ?= $(LDXX_$(CONFIG))
273
+ ARFLAGS ?= rcs
273
274
  ifeq ($(SYSTEM),Linux)
274
275
  ifeq ($(origin AR), default)
275
- AR = ar rcs
276
+ AR = ar
276
277
  endif
277
278
  STRIP ?= strip --strip-unneeded
278
279
  else
279
280
  ifeq ($(SYSTEM),Darwin)
280
281
  ifeq ($(origin AR), default)
281
- AR = libtool -no_warning_for_no_symbols -o
282
+ AR = libtool
283
+ ARFLAGS = -no_warning_for_no_symbols -o
282
284
  endif
283
285
  STRIP ?= strip -x
284
286
  else
285
287
  ifeq ($(SYSTEM),MINGW32)
286
288
  ifeq ($(origin AR), default)
287
- AR = ar rcs
289
+ AR = ar
288
290
  endif
289
291
  STRIP ?= strip --strip-unneeded
290
292
  else
291
293
  ifeq ($(origin AR), default)
292
- AR = ar rcs
294
+ AR = ar
293
295
  endif
294
296
  STRIP ?= strip
295
297
  endif
@@ -363,7 +365,7 @@ CXXFLAGS += -stdlib=libc++
363
365
  LDFLAGS += -framework CoreFoundation
364
366
  endif
365
367
  CFLAGS += -g
366
- CPPFLAGS += -g -Wall -Wextra -DOSATOMIC_USE_INLINED=1 -Ithird_party/abseil-cpp -Ithird_party/upb -Isrc/core/ext/upb-generated
368
+ CPPFLAGS += -g -Wall -Wextra -DOSATOMIC_USE_INLINED=1 -Ithird_party/abseil-cpp -Ithird_party/re2 -Ithird_party/upb -Isrc/core/ext/upb-generated
367
369
  COREFLAGS += -fno-exceptions
368
370
  LDFLAGS += -g
369
371
 
@@ -414,28 +416,6 @@ LIBS = m pthread ws2_32 dbghelp
414
416
  LDFLAGS += -pthread
415
417
  endif
416
418
 
417
- # If we are installing into a non-default prefix, both
418
- # the libraries we build, and the apps users build,
419
- # need to know how to find the libraries they depend on.
420
- # There is much gnashing of teeth about this subject.
421
- # It's tricky to do that without editing images during install,
422
- # as you don't want tests during build to find previously installed and
423
- # now stale libraries, etc.
424
- ifeq ($(SYSTEM),Linux)
425
- ifneq ($(prefix),/usr)
426
- # Linux best practice for rpath on installed files is probably:
427
- # 1) .pc file provides -Wl,-rpath,$(prefix)/lib
428
- # 2) binaries we install into $(prefix)/bin use -Wl,-rpath,$ORIGIN/../lib
429
- # 3) libraries we install into $(prefix)/lib use -Wl,-rpath,$ORIGIN
430
- # cf. https://www.akkadia.org/drepper/dsohowto.pdf
431
- # Doing all of that right is hard, but using -Wl,-rpath,$ORIGIN is always
432
- # safe, and solves problems seen in the wild. Note that $ORIGIN
433
- # is a literal string interpreted much later by ld.so. Escape it
434
- # here with a dollar sign so Make doesn't expand $O.
435
- LDFLAGS += '-Wl,-rpath,$$ORIGIN'
436
- endif
437
- endif
438
-
439
419
  #
440
420
  # The steps for cross-compiling are as follows:
441
421
  # First, clone and make install of grpc using the native compilers for the host.
@@ -455,7 +435,7 @@ endif
455
435
  #
456
436
  ifeq ($(GRPC_CROSS_COMPILE),true)
457
437
  LDFLAGS += $(GRPC_CROSS_LDOPTS) # e.g. -L/usr/local/lib -L/usr/local/cross/lib
458
- AROPTS = $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little
438
+ ARFLAGS += $(GRPC_CROSS_AROPTS) # e.g., rc --target=elf32-little
459
439
  USE_BUILT_PROTOC = false
460
440
  endif
461
441
 
@@ -469,9 +449,9 @@ E = @echo
469
449
  Q = @
470
450
  endif
471
451
 
472
- CORE_VERSION = 10.0.0
473
- CPP_VERSION = 1.30.0
474
- CSHARP_VERSION = 2.30.0
452
+ CORE_VERSION = 11.0.0
453
+ CPP_VERSION = 1.31.1
454
+ CSHARP_VERSION = 2.31.1
475
455
 
476
456
  CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
477
457
  CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
@@ -519,7 +499,7 @@ SHARED_EXT_CORE = dll
519
499
  SHARED_EXT_CPP = dll
520
500
  SHARED_EXT_CSHARP = dll
521
501
  SHARED_PREFIX =
522
- SHARED_VERSION_CORE = -10
502
+ SHARED_VERSION_CORE = -11
523
503
  SHARED_VERSION_CPP = -1
524
504
  SHARED_VERSION_CSHARP = -2
525
505
  else ifeq ($(SYSTEM),Darwin)
@@ -551,7 +531,7 @@ endif
551
531
  ifeq ($(HAS_PKG_CONFIG),true)
552
532
  OPENSSL_ALPN_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.0.2 openssl
553
533
  ZLIB_CHECK_CMD = $(PKG_CONFIG) --exists zlib
554
- PROTOBUF_CHECK_CMD = $(PKG_CONFIG) --atleast-version=3.5.0 protobuf
534
+ PROTOBUF_CHECK_CMD = $(PKG_CONFIG) --atleast-version=3.12.0 protobuf
555
535
  CARES_CHECK_CMD = $(PKG_CONFIG) --atleast-version=1.11.0 libcares
556
536
  else # HAS_PKG_CONFIG
557
537
 
@@ -723,6 +703,10 @@ CPPFLAGS := -Ithird_party/address_sorting/include $(CPPFLAGS)
723
703
  GRPC_ABSEIL_DEP = $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
724
704
  GRPC_ABSEIL_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
725
705
 
706
+ RE2_DEP = $(LIBDIR)/$(CONFIG)/libre2.a
707
+ RE2_MERGE_OBJS = $(LIBRE2_OBJS)
708
+ RE2_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libre2.a
709
+
726
710
  UPB_DEP = $(LIBDIR)/$(CONFIG)/libupb.a
727
711
  UPB_MERGE_OBJS = $(LIBUPB_OBJS)
728
712
  UPB_MERGE_LIBS = $(LIBDIR)/$(CONFIG)/libupb.a
@@ -957,7 +941,7 @@ openssl_dep_message:
957
941
  @echo "Your system doesn't have one, and either the third_party directory"
958
942
  @echo "doesn't have it, or your compiler can't build BoringSSL."
959
943
  @echo
960
- @echo "Please consult INSTALL to get more information."
944
+ @echo "Please consult BUILDING.md to get more information."
961
945
  @echo
962
946
  @echo "If you need information about why these tests failed, run:"
963
947
  @echo
@@ -968,10 +952,10 @@ protobuf_dep_message:
968
952
  @echo
969
953
  @echo "DEPENDENCY ERROR"
970
954
  @echo
971
- @echo "The target you are trying to run requires protobuf 3.5.0+"
955
+ @echo "The target you are trying to run requires protobuf 3.12.0+"
972
956
  @echo "Your system doesn't have it, and neither does the third_party directory."
973
957
  @echo
974
- @echo "Please consult INSTALL to get more information."
958
+ @echo "Please consult BUILDING.md to get more information."
975
959
  @echo
976
960
  @echo "If you need information about why these tests failed, run:"
977
961
  @echo
@@ -982,10 +966,10 @@ protoc_dep_message:
982
966
  @echo
983
967
  @echo "DEPENDENCY ERROR"
984
968
  @echo
985
- @echo "The target you are trying to run requires protobuf-compiler 3.5.0+"
969
+ @echo "The target you are trying to run requires protobuf-compiler 3.12.0+"
986
970
  @echo "Your system doesn't have it, and neither does the third_party directory."
987
971
  @echo
988
- @echo "Please consult INSTALL to get more information."
972
+ @echo "Please consult BUILDING.md to get more information."
989
973
  @echo
990
974
  @echo "If you need information about why these tests failed, run:"
991
975
  @echo
@@ -1000,9 +984,18 @@ systemtap_dep_error:
1000
984
  @echo "to build requires systemtap 2.7+ (on Linux) or dtrace (on other "
1001
985
  @echo "platforms such as Solaris and *BSD). "
1002
986
  @echo
1003
- @echo "Please consult INSTALL to get more information."
987
+ @echo "Please consult BUILDING.md to get more information."
1004
988
  @echo
1005
989
 
990
+ install_not_supported_message:
991
+ @echo
992
+ @echo "Installing via 'make' is no longer supported. Use cmake or bazel instead."
993
+ @echo
994
+ @echo "Please consult BUILDING.md to get more information."
995
+ @echo
996
+
997
+ install_not_supported_error: install_not_supported_message stop
998
+
1006
999
  stop:
1007
1000
  @false
1008
1001
 
@@ -1112,7 +1105,6 @@ secure_channel_create_test: $(BINDIR)/$(CONFIG)/secure_channel_create_test
1112
1105
  secure_endpoint_test: $(BINDIR)/$(CONFIG)/secure_endpoint_test
1113
1106
  security_connector_test: $(BINDIR)/$(CONFIG)/security_connector_test
1114
1107
  sequential_connectivity_test: $(BINDIR)/$(CONFIG)/sequential_connectivity_test
1115
- server_chttp2_test: $(BINDIR)/$(CONFIG)/server_chttp2_test
1116
1108
  server_ssl_test: $(BINDIR)/$(CONFIG)/server_ssl_test
1117
1109
  server_test: $(BINDIR)/$(CONFIG)/server_test
1118
1110
  slice_buffer_test: $(BINDIR)/$(CONFIG)/slice_buffer_test
@@ -1269,6 +1261,7 @@ secure_auth_context_test: $(BINDIR)/$(CONFIG)/secure_auth_context_test
1269
1261
  server_builder_plugin_test: $(BINDIR)/$(CONFIG)/server_builder_plugin_test
1270
1262
  server_builder_test: $(BINDIR)/$(CONFIG)/server_builder_test
1271
1263
  server_builder_with_socket_mutator_test: $(BINDIR)/$(CONFIG)/server_builder_with_socket_mutator_test
1264
+ server_chttp2_test: $(BINDIR)/$(CONFIG)/server_chttp2_test
1272
1265
  server_context_test_spouse_test: $(BINDIR)/$(CONFIG)/server_context_test_spouse_test
1273
1266
  server_early_return_test: $(BINDIR)/$(CONFIG)/server_early_return_test
1274
1267
  server_fuzzer: $(BINDIR)/$(CONFIG)/server_fuzzer
@@ -1287,6 +1280,7 @@ static_metadata_test: $(BINDIR)/$(CONFIG)/static_metadata_test
1287
1280
  stats_test: $(BINDIR)/$(CONFIG)/stats_test
1288
1281
  status_metadata_test: $(BINDIR)/$(CONFIG)/status_metadata_test
1289
1282
  status_util_test: $(BINDIR)/$(CONFIG)/status_util_test
1283
+ stranded_event_test: $(BINDIR)/$(CONFIG)/stranded_event_test
1290
1284
  streaming_throughput_test: $(BINDIR)/$(CONFIG)/streaming_throughput_test
1291
1285
  string_ref_test: $(BINDIR)/$(CONFIG)/string_ref_test
1292
1286
  test_cpp_client_credentials_test: $(BINDIR)/$(CONFIG)/test_cpp_client_credentials_test
@@ -1297,6 +1291,7 @@ thread_stress_test: $(BINDIR)/$(CONFIG)/thread_stress_test
1297
1291
  time_jump_test: $(BINDIR)/$(CONFIG)/time_jump_test
1298
1292
  timer_test: $(BINDIR)/$(CONFIG)/timer_test
1299
1293
  tls_security_connector_test: $(BINDIR)/$(CONFIG)/tls_security_connector_test
1294
+ too_many_pings_test: $(BINDIR)/$(CONFIG)/too_many_pings_test
1300
1295
  unknown_frame_bad_client_test: $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test
1301
1296
  uri_fuzzer_test: $(BINDIR)/$(CONFIG)/uri_fuzzer_test
1302
1297
  window_overflow_bad_client_test: $(BINDIR)/$(CONFIG)/window_overflow_bad_client_test
@@ -1347,7 +1342,7 @@ $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure
1347
1342
 
1348
1343
  static: static_c static_cxx
1349
1344
 
1350
- static_c: pc_c pc_c_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libupb.a
1345
+ static_c: pc_c pc_c_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libre2.a $(LIBDIR)/$(CONFIG)/libupb.a
1351
1346
 
1352
1347
  static_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
1353
1348
 
@@ -1355,7 +1350,7 @@ static_csharp: static_c
1355
1350
 
1356
1351
  shared: shared_c shared_cxx
1357
1352
 
1358
- shared_c: pc_c pc_c_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
1353
+ shared_c: pc_c pc_c_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
1359
1354
  shared_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
1360
1355
 
1361
1356
  shared_csharp: shared_c
@@ -1486,7 +1481,6 @@ buildtests_c: privatelibs_c \
1486
1481
  $(BINDIR)/$(CONFIG)/secure_endpoint_test \
1487
1482
  $(BINDIR)/$(CONFIG)/security_connector_test \
1488
1483
  $(BINDIR)/$(CONFIG)/sequential_connectivity_test \
1489
- $(BINDIR)/$(CONFIG)/server_chttp2_test \
1490
1484
  $(BINDIR)/$(CONFIG)/server_ssl_test \
1491
1485
  $(BINDIR)/$(CONFIG)/server_test \
1492
1486
  $(BINDIR)/$(CONFIG)/slice_buffer_test \
@@ -1630,6 +1624,7 @@ buildtests_cxx: privatelibs_cxx \
1630
1624
  $(BINDIR)/$(CONFIG)/server_builder_plugin_test \
1631
1625
  $(BINDIR)/$(CONFIG)/server_builder_test \
1632
1626
  $(BINDIR)/$(CONFIG)/server_builder_with_socket_mutator_test \
1627
+ $(BINDIR)/$(CONFIG)/server_chttp2_test \
1633
1628
  $(BINDIR)/$(CONFIG)/server_context_test_spouse_test \
1634
1629
  $(BINDIR)/$(CONFIG)/server_early_return_test \
1635
1630
  $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test \
@@ -1646,6 +1641,7 @@ buildtests_cxx: privatelibs_cxx \
1646
1641
  $(BINDIR)/$(CONFIG)/stats_test \
1647
1642
  $(BINDIR)/$(CONFIG)/status_metadata_test \
1648
1643
  $(BINDIR)/$(CONFIG)/status_util_test \
1644
+ $(BINDIR)/$(CONFIG)/stranded_event_test \
1649
1645
  $(BINDIR)/$(CONFIG)/streaming_throughput_test \
1650
1646
  $(BINDIR)/$(CONFIG)/string_ref_test \
1651
1647
  $(BINDIR)/$(CONFIG)/test_cpp_client_credentials_test \
@@ -1656,6 +1652,7 @@ buildtests_cxx: privatelibs_cxx \
1656
1652
  $(BINDIR)/$(CONFIG)/time_jump_test \
1657
1653
  $(BINDIR)/$(CONFIG)/timer_test \
1658
1654
  $(BINDIR)/$(CONFIG)/tls_security_connector_test \
1655
+ $(BINDIR)/$(CONFIG)/too_many_pings_test \
1659
1656
  $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test \
1660
1657
  $(BINDIR)/$(CONFIG)/window_overflow_bad_client_test \
1661
1658
  $(BINDIR)/$(CONFIG)/work_serializer_test \
@@ -1786,6 +1783,7 @@ buildtests_cxx: privatelibs_cxx \
1786
1783
  $(BINDIR)/$(CONFIG)/server_builder_plugin_test \
1787
1784
  $(BINDIR)/$(CONFIG)/server_builder_test \
1788
1785
  $(BINDIR)/$(CONFIG)/server_builder_with_socket_mutator_test \
1786
+ $(BINDIR)/$(CONFIG)/server_chttp2_test \
1789
1787
  $(BINDIR)/$(CONFIG)/server_context_test_spouse_test \
1790
1788
  $(BINDIR)/$(CONFIG)/server_early_return_test \
1791
1789
  $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test \
@@ -1802,6 +1800,7 @@ buildtests_cxx: privatelibs_cxx \
1802
1800
  $(BINDIR)/$(CONFIG)/stats_test \
1803
1801
  $(BINDIR)/$(CONFIG)/status_metadata_test \
1804
1802
  $(BINDIR)/$(CONFIG)/status_util_test \
1803
+ $(BINDIR)/$(CONFIG)/stranded_event_test \
1805
1804
  $(BINDIR)/$(CONFIG)/streaming_throughput_test \
1806
1805
  $(BINDIR)/$(CONFIG)/string_ref_test \
1807
1806
  $(BINDIR)/$(CONFIG)/test_cpp_client_credentials_test \
@@ -1812,6 +1811,7 @@ buildtests_cxx: privatelibs_cxx \
1812
1811
  $(BINDIR)/$(CONFIG)/time_jump_test \
1813
1812
  $(BINDIR)/$(CONFIG)/timer_test \
1814
1813
  $(BINDIR)/$(CONFIG)/tls_security_connector_test \
1814
+ $(BINDIR)/$(CONFIG)/too_many_pings_test \
1815
1815
  $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test \
1816
1816
  $(BINDIR)/$(CONFIG)/window_overflow_bad_client_test \
1817
1817
  $(BINDIR)/$(CONFIG)/work_serializer_test \
@@ -2040,8 +2040,6 @@ test_c: buildtests_c
2040
2040
  $(Q) $(BINDIR)/$(CONFIG)/secure_endpoint_test || ( echo test secure_endpoint_test failed ; exit 1 )
2041
2041
  $(E) "[RUN] Testing security_connector_test"
2042
2042
  $(Q) $(BINDIR)/$(CONFIG)/security_connector_test || ( echo test security_connector_test failed ; exit 1 )
2043
- $(E) "[RUN] Testing server_chttp2_test"
2044
- $(Q) $(BINDIR)/$(CONFIG)/server_chttp2_test || ( echo test server_chttp2_test failed ; exit 1 )
2045
2043
  $(E) "[RUN] Testing server_ssl_test"
2046
2044
  $(Q) $(BINDIR)/$(CONFIG)/server_ssl_test || ( echo test server_ssl_test failed ; exit 1 )
2047
2045
  $(E) "[RUN] Testing server_test"
@@ -2296,6 +2294,8 @@ test_cxx: buildtests_cxx
2296
2294
  $(Q) $(BINDIR)/$(CONFIG)/server_builder_test || ( echo test server_builder_test failed ; exit 1 )
2297
2295
  $(E) "[RUN] Testing server_builder_with_socket_mutator_test"
2298
2296
  $(Q) $(BINDIR)/$(CONFIG)/server_builder_with_socket_mutator_test || ( echo test server_builder_with_socket_mutator_test failed ; exit 1 )
2297
+ $(E) "[RUN] Testing server_chttp2_test"
2298
+ $(Q) $(BINDIR)/$(CONFIG)/server_chttp2_test || ( echo test server_chttp2_test failed ; exit 1 )
2299
2299
  $(E) "[RUN] Testing server_context_test_spouse_test"
2300
2300
  $(Q) $(BINDIR)/$(CONFIG)/server_context_test_spouse_test || ( echo test server_context_test_spouse_test failed ; exit 1 )
2301
2301
  $(E) "[RUN] Testing server_early_return_test"
@@ -2326,6 +2326,8 @@ test_cxx: buildtests_cxx
2326
2326
  $(Q) $(BINDIR)/$(CONFIG)/status_metadata_test || ( echo test status_metadata_test failed ; exit 1 )
2327
2327
  $(E) "[RUN] Testing status_util_test"
2328
2328
  $(Q) $(BINDIR)/$(CONFIG)/status_util_test || ( echo test status_util_test failed ; exit 1 )
2329
+ $(E) "[RUN] Testing stranded_event_test"
2330
+ $(Q) $(BINDIR)/$(CONFIG)/stranded_event_test || ( echo test stranded_event_test failed ; exit 1 )
2329
2331
  $(E) "[RUN] Testing streaming_throughput_test"
2330
2332
  $(Q) $(BINDIR)/$(CONFIG)/streaming_throughput_test || ( echo test streaming_throughput_test failed ; exit 1 )
2331
2333
  $(E) "[RUN] Testing string_ref_test"
@@ -2344,6 +2346,8 @@ test_cxx: buildtests_cxx
2344
2346
  $(Q) $(BINDIR)/$(CONFIG)/timer_test || ( echo test timer_test failed ; exit 1 )
2345
2347
  $(E) "[RUN] Testing tls_security_connector_test"
2346
2348
  $(Q) $(BINDIR)/$(CONFIG)/tls_security_connector_test || ( echo test tls_security_connector_test failed ; exit 1 )
2349
+ $(E) "[RUN] Testing too_many_pings_test"
2350
+ $(Q) $(BINDIR)/$(CONFIG)/too_many_pings_test || ( echo test too_many_pings_test failed ; exit 1 )
2347
2351
  $(E) "[RUN] Testing unknown_frame_bad_client_test"
2348
2352
  $(Q) $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test || ( echo test unknown_frame_bad_client_test failed ; exit 1 )
2349
2353
  $(E) "[RUN] Testing window_overflow_bad_client_test"
@@ -2398,6 +2402,8 @@ ifeq ($(CONFIG),opt)
2398
2402
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
2399
2403
  $(E) "[STRIP] Stripping libgrpc_unsecure.a"
2400
2404
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
2405
+ $(E) "[STRIP] Stripping libre2.a"
2406
+ $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libre2.a
2401
2407
  $(E) "[STRIP] Stripping libupb.a"
2402
2408
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libupb.a
2403
2409
  endif
@@ -2430,6 +2436,8 @@ ifeq ($(CONFIG),opt)
2430
2436
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
2431
2437
  $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
2432
2438
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
2439
+ $(E) "[STRIP] Stripping $(SHARED_PREFIX)re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
2440
+ $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
2433
2441
  $(E) "[STRIP] Stripping $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
2434
2442
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
2435
2443
  endif
@@ -2841,12 +2849,12 @@ $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc: protoc_dep_error
2841
2849
  $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.grpc.pb.cc: protoc_dep_error
2842
2850
  else
2843
2851
 
2844
- $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc: src/proto/grpc/testing/xds/lds_rds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc
2852
+ $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc: src/proto/grpc/testing/xds/lds_rds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc
2845
2853
  $(E) "[PROTOC] Generating protobuf CC file from $<"
2846
2854
  $(Q) mkdir -p `dirname $@`
2847
2855
  $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
2848
2856
 
2849
- $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/lds_rds_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.grpc.pb.cc
2857
+ $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/lds_rds_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/lds_rds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/cds_for_test.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc
2850
2858
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2851
2859
  $(Q) mkdir -p `dirname $@`
2852
2860
  $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
@@ -2964,243 +2972,17 @@ $(OBJDIR)/$(CONFIG)/%.o : %.cpp
2964
2972
  $(Q) mkdir -p `dirname $@`
2965
2973
  $(Q) $(CXX) $(CPPFLAGS) $(CXXFLAGS) -MMD -MF $(addsuffix .dep, $(basename $@)) -c -o $@ $<
2966
2974
 
2967
- install: install_c install_cxx install-plugins install-certs
2968
-
2969
- install_c: install-headers_c install-static_c install-shared_c
2970
-
2971
- install_cxx: install-headers_cxx install-static_cxx install-shared_cxx
2972
-
2973
- install_csharp: install-shared_csharp install_c
2974
-
2975
- install_grpc_csharp_ext: install_csharp
2976
-
2977
- install-headers: install-headers_c install-headers_cxx
2978
-
2979
- install-headers_c:
2980
- $(E) "[INSTALL] Installing public C headers"
2981
- $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
2982
- $(Q) $(foreach h, $(PUBLIC_HEADERS_C), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
2983
-
2984
- install-headers_cxx:
2985
- $(E) "[INSTALL] Installing public C++ headers"
2986
- $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) -d $(prefix)/$(dir $(h)) && ) exit 0 || exit 1
2987
- $(Q) $(foreach h, $(PUBLIC_HEADERS_CXX), $(INSTALL) $(h) $(prefix)/$(h) && ) exit 0 || exit 1
2988
-
2989
- install-static: install-static_c install-static_cxx
2990
-
2991
- install-static_c: static_c strip-static_c install-pkg-config_c
2992
- $(E) "[INSTALL] Installing libaddress_sorting.a"
2993
- $(Q) $(INSTALL) -d $(prefix)/lib
2994
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(prefix)/lib/libaddress_sorting.a
2995
- $(E) "[INSTALL] Installing libgpr.a"
2996
- $(Q) $(INSTALL) -d $(prefix)/lib
2997
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgpr.a $(prefix)/lib/libgpr.a
2998
- $(E) "[INSTALL] Installing libgrpc.a"
2999
- $(Q) $(INSTALL) -d $(prefix)/lib
3000
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc.a $(prefix)/lib/libgrpc.a
3001
- $(E) "[INSTALL] Installing libgrpc_csharp_ext.a"
3002
- $(Q) $(INSTALL) -d $(prefix)/lib
3003
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(prefix)/lib/libgrpc_csharp_ext.a
3004
- $(E) "[INSTALL] Installing libgrpc_unsecure.a"
3005
- $(Q) $(INSTALL) -d $(prefix)/lib
3006
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(prefix)/lib/libgrpc_unsecure.a
3007
- $(E) "[INSTALL] Installing libupb.a"
3008
- $(Q) $(INSTALL) -d $(prefix)/lib
3009
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libupb.a $(prefix)/lib/libupb.a
3010
-
3011
- install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx
3012
- $(E) "[INSTALL] Installing libgrpc++.a"
3013
- $(Q) $(INSTALL) -d $(prefix)/lib
3014
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(prefix)/lib/libgrpc++.a
3015
- $(E) "[INSTALL] Installing libgrpc++_alts.a"
3016
- $(Q) $(INSTALL) -d $(prefix)/lib
3017
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a $(prefix)/lib/libgrpc++_alts.a
3018
- $(E) "[INSTALL] Installing libgrpc++_error_details.a"
3019
- $(Q) $(INSTALL) -d $(prefix)/lib
3020
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(prefix)/lib/libgrpc++_error_details.a
3021
- $(E) "[INSTALL] Installing libgrpc++_reflection.a"
3022
- $(Q) $(INSTALL) -d $(prefix)/lib
3023
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(prefix)/lib/libgrpc++_reflection.a
3024
- $(E) "[INSTALL] Installing libgrpc++_unsecure.a"
3025
- $(Q) $(INSTALL) -d $(prefix)/lib
3026
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(prefix)/lib/libgrpc++_unsecure.a
3027
- $(E) "[INSTALL] Installing libgrpcpp_channelz.a"
3028
- $(Q) $(INSTALL) -d $(prefix)/lib
3029
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a $(prefix)/lib/libgrpcpp_channelz.a
3030
-
3031
-
3032
-
3033
- install-shared_c: shared_c strip-shared_c install-pkg-config_c
3034
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
3035
- $(Q) $(INSTALL) -d $(prefix)/lib
3036
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
3037
- ifeq ($(SYSTEM),MINGW32)
3038
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE)-dll.a $(prefix)/lib/libaddress_sorting.a
3039
- else ifneq ($(SYSTEM),Darwin)
3040
- $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libaddress_sorting.so.10
3041
- $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libaddress_sorting.so
3042
- endif
3043
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
3044
- $(Q) $(INSTALL) -d $(prefix)/lib
3045
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
3046
- ifeq ($(SYSTEM),MINGW32)
3047
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE)-dll.a $(prefix)/lib/libgpr.a
3048
- else ifneq ($(SYSTEM),Darwin)
3049
- $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgpr.so.10
3050
- $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgpr.so
3051
- endif
3052
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
3053
- $(Q) $(INSTALL) -d $(prefix)/lib
3054
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
3055
- ifeq ($(SYSTEM),MINGW32)
3056
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE)-dll.a $(prefix)/lib/libgrpc.a
3057
- else ifneq ($(SYSTEM),Darwin)
3058
- $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgrpc.so.10
3059
- $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgrpc.so
3060
- endif
3061
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
3062
- $(Q) $(INSTALL) -d $(prefix)/lib
3063
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
3064
- ifeq ($(SYSTEM),MINGW32)
3065
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE)-dll.a $(prefix)/lib/libgrpc_csharp_ext.a
3066
- else ifneq ($(SYSTEM),Darwin)
3067
- $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgrpc_csharp_ext.so.10
3068
- $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgrpc_csharp_ext.so
3069
- endif
3070
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
3071
- $(Q) $(INSTALL) -d $(prefix)/lib
3072
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
3073
- ifeq ($(SYSTEM),MINGW32)
3074
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE)-dll.a $(prefix)/lib/libgrpc_unsecure.a
3075
- else ifneq ($(SYSTEM),Darwin)
3076
- $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgrpc_unsecure.so.10
3077
- $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libgrpc_unsecure.so
3078
- endif
3079
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)"
3080
- $(Q) $(INSTALL) -d $(prefix)/lib
3081
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/$(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
3082
- ifeq ($(SYSTEM),MINGW32)
3083
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE)-dll.a $(prefix)/lib/libupb.a
3084
- else ifneq ($(SYSTEM),Darwin)
3085
- $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libupb.so.10
3086
- $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(prefix)/lib/libupb.so
3087
- endif
3088
- ifneq ($(SYSTEM),MINGW32)
3089
- ifneq ($(SYSTEM),Darwin)
3090
- $(Q) ldconfig || true
3091
- endif
3092
- endif
2975
+ install: install_not_supported_error
3093
2976
 
2977
+ install_c: install_not_supported_error
3094
2978
 
3095
- install-shared_cxx: shared_cxx strip-shared_cxx install-shared_c install-pkg-config_cxx
3096
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
3097
- $(Q) $(INSTALL) -d $(prefix)/lib
3098
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
3099
- ifeq ($(SYSTEM),MINGW32)
3100
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpc++.a
3101
- else ifneq ($(SYSTEM),Darwin)
3102
- $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++.so.1
3103
- $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++.so
3104
- endif
3105
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
3106
- $(Q) $(INSTALL) -d $(prefix)/lib
3107
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
3108
- ifeq ($(SYSTEM),MINGW32)
3109
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpc++_alts.a
3110
- else ifneq ($(SYSTEM),Darwin)
3111
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_alts.so.1
3112
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_alts.so
3113
- endif
3114
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
3115
- $(Q) $(INSTALL) -d $(prefix)/lib
3116
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
3117
- ifeq ($(SYSTEM),MINGW32)
3118
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpc++_error_details.a
3119
- else ifneq ($(SYSTEM),Darwin)
3120
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_error_details.so.1
3121
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_error_details.so
3122
- endif
3123
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
3124
- $(Q) $(INSTALL) -d $(prefix)/lib
3125
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
3126
- ifeq ($(SYSTEM),MINGW32)
3127
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpc++_reflection.a
3128
- else ifneq ($(SYSTEM),Darwin)
3129
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_reflection.so.1
3130
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_reflection.so
3131
- endif
3132
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
3133
- $(Q) $(INSTALL) -d $(prefix)/lib
3134
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
3135
- ifeq ($(SYSTEM),MINGW32)
3136
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpc++_unsecure.a
3137
- else ifneq ($(SYSTEM),Darwin)
3138
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_unsecure.so.1
3139
- $(Q) ln -sf $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_unsecure.so
3140
- endif
3141
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
3142
- $(Q) $(INSTALL) -d $(prefix)/lib
3143
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
3144
- ifeq ($(SYSTEM),MINGW32)
3145
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpcpp_channelz.a
3146
- else ifneq ($(SYSTEM),Darwin)
3147
- $(Q) ln -sf $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpcpp_channelz.so.1
3148
- $(Q) ln -sf $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpcpp_channelz.so
3149
- endif
3150
- ifneq ($(SYSTEM),MINGW32)
3151
- ifneq ($(SYSTEM),Darwin)
3152
- $(Q) ldconfig || true
3153
- endif
3154
- endif
2979
+ install_cxx: install_not_supported_error
3155
2980
 
2981
+ install_csharp: install_not_supported_error
3156
2982
 
3157
- install-shared_csharp: shared_csharp strip-shared_csharp
3158
- ifneq ($(SYSTEM),MINGW32)
3159
- ifneq ($(SYSTEM),Darwin)
3160
- $(Q) ldconfig || true
3161
- endif
3162
- endif
3163
-
3164
-
3165
- install-plugins: $(PROTOC_PLUGINS)
3166
- $(E) "[INSTALL] Installing grpc protoc plugins"
3167
- $(Q) $(INSTALL) -d $(prefix)/bin
3168
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_cpp_plugin $(prefix)/bin/grpc_cpp_plugin
3169
- $(Q) $(INSTALL) -d $(prefix)/bin
3170
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_csharp_plugin $(prefix)/bin/grpc_csharp_plugin
3171
- $(Q) $(INSTALL) -d $(prefix)/bin
3172
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_node_plugin $(prefix)/bin/grpc_node_plugin
3173
- $(Q) $(INSTALL) -d $(prefix)/bin
3174
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin $(prefix)/bin/grpc_objective_c_plugin
3175
- $(Q) $(INSTALL) -d $(prefix)/bin
3176
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_php_plugin $(prefix)/bin/grpc_php_plugin
3177
- $(Q) $(INSTALL) -d $(prefix)/bin
3178
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_python_plugin $(prefix)/bin/grpc_python_plugin
3179
- $(Q) $(INSTALL) -d $(prefix)/bin
3180
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_ruby_plugin $(prefix)/bin/grpc_ruby_plugin
3181
-
3182
- install-grpc-cli: grpc_cli
3183
- $(E) "[INSTALL] Installing grpc cli"
3184
- $(Q) $(INSTALL) -d $(prefix)/bin
3185
- $(Q) $(INSTALL) $(BINDIR)/$(CONFIG)/grpc_cli $(prefix)/bin/grpc_cli
3186
-
3187
- install-pkg-config_c: pc_c pc_c_unsecure
3188
- $(E) "[INSTALL] Installing C pkg-config files"
3189
- $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
3190
- $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc $(prefix)/lib/pkgconfig/gpr.pc
3191
- $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(prefix)/lib/pkgconfig/grpc.pc
3192
- $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(prefix)/lib/pkgconfig/grpc_unsecure.pc
3193
-
3194
- install-pkg-config_cxx: pc_cxx pc_cxx_unsecure
3195
- $(E) "[INSTALL] Installing C++ pkg-config files"
3196
- $(Q) $(INSTALL) -d $(prefix)/lib/pkgconfig
3197
- $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc $(prefix)/lib/pkgconfig/grpc++.pc
3198
- $(Q) $(INSTALL) -m 0644 $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc $(prefix)/lib/pkgconfig/grpc++_unsecure.pc
3199
-
3200
- install-certs: etc/roots.pem
3201
- $(E) "[INSTALL] Installing root certificates"
3202
- $(Q) $(INSTALL) -d $(prefix)/share/grpc
3203
- $(Q) $(INSTALL) etc/roots.pem $(prefix)/share/grpc/roots.pem
2983
+ install-static: install_not_supported_error
2984
+
2985
+ install-certs: install_not_supported_error
3204
2986
 
3205
2987
  clean:
3206
2988
  $(E) "[CLEAN] Cleaning build directories."
@@ -3224,7 +3006,7 @@ $(LIBDIR)/$(CONFIG)/libaddress_sorting.a: $(LIBADDRESS_SORTING_OBJS)
3224
3006
  $(E) "[AR] Creating $@"
3225
3007
  $(Q) mkdir -p `dirname $@`
3226
3008
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
3227
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBADDRESS_SORTING_OBJS)
3009
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBADDRESS_SORTING_OBJS)
3228
3010
  ifeq ($(SYSTEM),Darwin)
3229
3011
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libaddress_sorting.a
3230
3012
  endif
@@ -3232,19 +3014,19 @@ endif
3232
3014
 
3233
3015
 
3234
3016
  ifeq ($(SYSTEM),MINGW32)
3235
- $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBADDRESS_SORTING_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3017
+ $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBADDRESS_SORTING_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3236
3018
  $(E) "[LD] Linking $@"
3237
3019
  $(Q) mkdir -p `dirname $@`
3238
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3020
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3239
3021
  else
3240
- $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBADDRESS_SORTING_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3022
+ $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBADDRESS_SORTING_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3241
3023
  $(E) "[LD] Linking $@"
3242
3024
  $(Q) mkdir -p `dirname $@`
3243
3025
  ifeq ($(SYSTEM),Darwin)
3244
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3026
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3245
3027
  else
3246
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libaddress_sorting.so.10 -o $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3247
- $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).so.10
3028
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libaddress_sorting.so.11 -o $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBADDRESS_SORTING_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3029
+ $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).so.11
3248
3030
  $(Q) ln -sf $(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting$(SHARED_VERSION_CORE).so
3249
3031
  endif
3250
3032
  endif
@@ -3349,11 +3131,11 @@ PUBLIC_HEADERS_C += \
3349
3131
  LIBEND2END_NOSEC_TESTS_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBEND2END_NOSEC_TESTS_SRC))))
3350
3132
 
3351
3133
 
3352
- $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBEND2END_NOSEC_TESTS_OBJS)
3134
+ $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBEND2END_NOSEC_TESTS_OBJS)
3353
3135
  $(E) "[AR] Creating $@"
3354
3136
  $(Q) mkdir -p `dirname $@`
3355
3137
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a
3356
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBEND2END_NOSEC_TESTS_OBJS)
3138
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBEND2END_NOSEC_TESTS_OBJS)
3357
3139
  ifeq ($(SYSTEM),Darwin)
3358
3140
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a
3359
3141
  endif
@@ -3472,11 +3254,11 @@ $(LIBDIR)/$(CONFIG)/libend2end_tests.a: openssl_dep_error
3472
3254
  else
3473
3255
 
3474
3256
 
3475
- $(LIBDIR)/$(CONFIG)/libend2end_tests.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBEND2END_TESTS_OBJS)
3257
+ $(LIBDIR)/$(CONFIG)/libend2end_tests.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBEND2END_TESTS_OBJS)
3476
3258
  $(E) "[AR] Creating $@"
3477
3259
  $(Q) mkdir -p `dirname $@`
3478
3260
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libend2end_tests.a
3479
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBEND2END_TESTS_OBJS)
3261
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBEND2END_TESTS_OBJS)
3480
3262
  ifeq ($(SYSTEM),Darwin)
3481
3263
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libend2end_tests.a
3482
3264
  endif
@@ -3582,11 +3364,11 @@ PUBLIC_HEADERS_C += \
3582
3364
  LIBGPR_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGPR_SRC))))
3583
3365
 
3584
3366
 
3585
- $(LIBDIR)/$(CONFIG)/libgpr.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGPR_OBJS)
3367
+ $(LIBDIR)/$(CONFIG)/libgpr.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGPR_OBJS)
3586
3368
  $(E) "[AR] Creating $@"
3587
3369
  $(Q) mkdir -p `dirname $@`
3588
3370
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgpr.a
3589
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBGPR_OBJS)
3371
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBGPR_OBJS)
3590
3372
  ifeq ($(SYSTEM),Darwin)
3591
3373
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgpr.a
3592
3374
  endif
@@ -3594,19 +3376,19 @@ endif
3594
3376
 
3595
3377
 
3596
3378
  ifeq ($(SYSTEM),MINGW32)
3597
- $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGPR_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3379
+ $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGPR_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3598
3380
  $(E) "[LD] Linking $@"
3599
3381
  $(Q) mkdir -p `dirname $@`
3600
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3382
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3601
3383
  else
3602
- $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGPR_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3384
+ $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGPR_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
3603
3385
  $(E) "[LD] Linking $@"
3604
3386
  $(Q) mkdir -p `dirname $@`
3605
3387
  ifeq ($(SYSTEM),Darwin)
3606
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3388
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3607
3389
  else
3608
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgpr.so.10 -o $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3609
- $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).so.10
3390
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgpr.so.11 -o $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGPR_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3391
+ $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).so.11
3610
3392
  $(Q) ln -sf $(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr$(SHARED_VERSION_CORE).so
3611
3393
  endif
3612
3394
  endif
@@ -3625,6 +3407,7 @@ LIBGRPC_SRC = \
3625
3407
  src/core/ext/filters/client_channel/client_channel_channelz.cc \
3626
3408
  src/core/ext/filters/client_channel/client_channel_factory.cc \
3627
3409
  src/core/ext/filters/client_channel/client_channel_plugin.cc \
3410
+ src/core/ext/filters/client_channel/config_selector.cc \
3628
3411
  src/core/ext/filters/client_channel/global_subchannel_pool.cc \
3629
3412
  src/core/ext/filters/client_channel/health/health_check_client.cc \
3630
3413
  src/core/ext/filters/client_channel/http_connect_handshaker.cc \
@@ -3672,6 +3455,7 @@ LIBGRPC_SRC = \
3672
3455
  src/core/ext/filters/client_channel/retry_throttle.cc \
3673
3456
  src/core/ext/filters/client_channel/server_address.cc \
3674
3457
  src/core/ext/filters/client_channel/service_config.cc \
3458
+ src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc \
3675
3459
  src/core/ext/filters/client_channel/service_config_parser.cc \
3676
3460
  src/core/ext/filters/client_channel/subchannel.cc \
3677
3461
  src/core/ext/filters/client_channel/subchannel_pool_interface.cc \
@@ -4064,11 +3848,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE
4064
3848
  else
4065
3849
 
4066
3850
 
4067
- $(LIBDIR)/$(CONFIG)/libgrpc.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
3851
+ $(LIBDIR)/$(CONFIG)/libgrpc.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
4068
3852
  $(E) "[AR] Creating $@"
4069
3853
  $(Q) mkdir -p `dirname $@`
4070
3854
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc.a
4071
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBGRPC_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
3855
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBGRPC_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
4072
3856
  ifeq ($(SYSTEM),Darwin)
4073
3857
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc.a
4074
3858
  endif
@@ -4076,19 +3860,19 @@ endif
4076
3860
 
4077
3861
 
4078
3862
  ifeq ($(SYSTEM),MINGW32)
4079
- $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
3863
+ $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
4080
3864
  $(E) "[LD] Linking $@"
4081
3865
  $(Q) mkdir -p `dirname $@`
4082
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
3866
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4083
3867
  else
4084
- $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
3868
+ $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
4085
3869
  $(E) "[LD] Linking $@"
4086
3870
  $(Q) mkdir -p `dirname $@`
4087
3871
  ifeq ($(SYSTEM),Darwin)
4088
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgpr -laddress_sorting -lupb
3872
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4089
3873
  else
4090
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc.so.10 -o $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgpr -laddress_sorting -lupb
4091
- $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).so.10
3874
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc.so.11 -o $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3875
+ $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).so.11
4092
3876
  $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc$(SHARED_VERSION_CORE).so
4093
3877
  endif
4094
3878
  endif
@@ -4121,11 +3905,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHAR
4121
3905
  else
4122
3906
 
4123
3907
 
4124
- $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_CSHARP_EXT_OBJS)
3908
+ $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_CSHARP_EXT_OBJS)
4125
3909
  $(E) "[AR] Creating $@"
4126
3910
  $(Q) mkdir -p `dirname $@`
4127
3911
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
4128
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(LIBGRPC_CSHARP_EXT_OBJS)
3912
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a $(LIBGRPC_CSHARP_EXT_OBJS)
4129
3913
  ifeq ($(SYSTEM),Darwin)
4130
3914
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
4131
3915
  endif
@@ -4133,19 +3917,19 @@ endif
4133
3917
 
4134
3918
 
4135
3919
  ifeq ($(SYSTEM),MINGW32)
4136
- $(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
3920
+ $(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
4137
3921
  $(E) "[LD] Linking $@"
4138
3922
  $(Q) mkdir -p `dirname $@`
4139
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
3923
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4140
3924
  else
4141
- $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
3925
+ $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(OPENSSL_DEP)
4142
3926
  $(E) "[LD] Linking $@"
4143
3927
  $(Q) mkdir -p `dirname $@`
4144
3928
  ifeq ($(SYSTEM),Darwin)
4145
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
3929
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4146
3930
  else
4147
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_csharp_ext.so.10 -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
4148
- $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).so.10
3931
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_csharp_ext.so.11 -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
3932
+ $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).so.11
4149
3933
  $(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CORE).so
4150
3934
  endif
4151
3935
  endif
@@ -4196,11 +3980,11 @@ $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a: openssl_dep_error
4196
3980
  else
4197
3981
 
4198
3982
 
4199
- $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_TEST_UTIL_OBJS)
3983
+ $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_TEST_UTIL_OBJS)
4200
3984
  $(E) "[AR] Creating $@"
4201
3985
  $(Q) mkdir -p `dirname $@`
4202
3986
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a
4203
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBGRPC_TEST_UTIL_OBJS)
3987
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBGRPC_TEST_UTIL_OBJS)
4204
3988
  ifeq ($(SYSTEM),Darwin)
4205
3989
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a
4206
3990
  endif
@@ -4244,11 +4028,11 @@ PUBLIC_HEADERS_C += \
4244
4028
  LIBGRPC_TEST_UTIL_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_TEST_UTIL_UNSECURE_SRC))))
4245
4029
 
4246
4030
 
4247
- $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_TEST_UTIL_UNSECURE_OBJS)
4031
+ $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_TEST_UTIL_UNSECURE_OBJS)
4248
4032
  $(E) "[AR] Creating $@"
4249
4033
  $(Q) mkdir -p `dirname $@`
4250
4034
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a
4251
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBGRPC_TEST_UTIL_UNSECURE_OBJS)
4035
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBGRPC_TEST_UTIL_UNSECURE_OBJS)
4252
4036
  ifeq ($(SYSTEM),Darwin)
4253
4037
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a
4254
4038
  endif
@@ -4270,6 +4054,7 @@ LIBGRPC_UNSECURE_SRC = \
4270
4054
  src/core/ext/filters/client_channel/client_channel_channelz.cc \
4271
4055
  src/core/ext/filters/client_channel/client_channel_factory.cc \
4272
4056
  src/core/ext/filters/client_channel/client_channel_plugin.cc \
4057
+ src/core/ext/filters/client_channel/config_selector.cc \
4273
4058
  src/core/ext/filters/client_channel/global_subchannel_pool.cc \
4274
4059
  src/core/ext/filters/client_channel/health/health_check_client.cc \
4275
4060
  src/core/ext/filters/client_channel/http_connect_handshaker.cc \
@@ -4317,6 +4102,7 @@ LIBGRPC_UNSECURE_SRC = \
4317
4102
  src/core/ext/filters/client_channel/retry_throttle.cc \
4318
4103
  src/core/ext/filters/client_channel/server_address.cc \
4319
4104
  src/core/ext/filters/client_channel/service_config.cc \
4105
+ src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc \
4320
4106
  src/core/ext/filters/client_channel/service_config_parser.cc \
4321
4107
  src/core/ext/filters/client_channel/subchannel.cc \
4322
4108
  src/core/ext/filters/client_channel/subchannel_pool_interface.cc \
@@ -4622,11 +4408,11 @@ PUBLIC_HEADERS_C += \
4622
4408
  LIBGRPC_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_UNSECURE_SRC))))
4623
4409
 
4624
4410
 
4625
- $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
4411
+ $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBGRPC_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
4626
4412
  $(E) "[AR] Creating $@"
4627
4413
  $(Q) mkdir -p `dirname $@`
4628
4414
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
4629
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBGRPC_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
4415
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBGRPC_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
4630
4416
  ifeq ($(SYSTEM),Darwin)
4631
4417
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
4632
4418
  endif
@@ -4634,19 +4420,19 @@ endif
4634
4420
 
4635
4421
 
4636
4422
  ifeq ($(SYSTEM),MINGW32)
4637
- $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
4423
+ $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
4638
4424
  $(E) "[LD] Linking $@"
4639
4425
  $(Q) mkdir -p `dirname $@`
4640
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
4426
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4641
4427
  else
4642
- $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE)
4428
+ $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
4643
4429
  $(E) "[LD] Linking $@"
4644
4430
  $(Q) mkdir -p `dirname $@`
4645
4431
  ifeq ($(SYSTEM),Darwin)
4646
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgpr -laddress_sorting -lupb
4432
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4647
4433
  else
4648
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_unsecure.so.10 -o $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS) -lgpr -laddress_sorting -lupb
4649
- $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).so.10
4434
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_unsecure.so.11 -o $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBGRPC_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
4435
+ $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).so.11
4650
4436
  $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure$(SHARED_VERSION_CORE).so
4651
4437
  endif
4652
4438
  endif
@@ -4686,11 +4472,11 @@ $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a: protobuf_dep_error
4686
4472
 
4687
4473
  else
4688
4474
 
4689
- $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBBENCHMARK_HELPERS_OBJS)
4475
+ $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBBENCHMARK_HELPERS_OBJS)
4690
4476
  $(E) "[AR] Creating $@"
4691
4477
  $(Q) mkdir -p `dirname $@`
4692
4478
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a
4693
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a $(LIBBENCHMARK_HELPERS_OBJS)
4479
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a $(LIBBENCHMARK_HELPERS_OBJS)
4694
4480
  ifeq ($(SYSTEM),Darwin)
4695
4481
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libbenchmark_helpers.a
4696
4482
  endif
@@ -4712,6 +4498,7 @@ $(OBJDIR)/$(CONFIG)/test/cpp/microbenchmarks/helpers.o: $(GENDIR)/src/proto/grpc
4712
4498
 
4713
4499
  LIBGRPC++_SRC = \
4714
4500
  src/cpp/client/channel_cc.cc \
4501
+ src/cpp/client/client_callback.cc \
4715
4502
  src/cpp/client/client_context.cc \
4716
4503
  src/cpp/client/client_interceptor.cc \
4717
4504
  src/cpp/client/create_channel.cc \
@@ -4846,14 +4633,11 @@ PUBLIC_HEADERS_CXX += \
4846
4633
  include/grpcpp/create_channel.h \
4847
4634
  include/grpcpp/create_channel_impl.h \
4848
4635
  include/grpcpp/create_channel_posix.h \
4849
- include/grpcpp/create_channel_posix_impl.h \
4850
4636
  include/grpcpp/ext/health_check_service_server_builder_option.h \
4851
4637
  include/grpcpp/generic/async_generic_service.h \
4852
4638
  include/grpcpp/generic/generic_stub.h \
4853
- include/grpcpp/generic/generic_stub_impl.h \
4854
4639
  include/grpcpp/grpcpp.h \
4855
4640
  include/grpcpp/health_check_service_interface.h \
4856
- include/grpcpp/health_check_service_interface_impl.h \
4857
4641
  include/grpcpp/impl/call.h \
4858
4642
  include/grpcpp/impl/channel_argument_option.h \
4859
4643
  include/grpcpp/impl/client_unary_call.h \
@@ -4928,10 +4712,8 @@ PUBLIC_HEADERS_CXX += \
4928
4712
  include/grpcpp/impl/server_initializer_impl.h \
4929
4713
  include/grpcpp/impl/service_type.h \
4930
4714
  include/grpcpp/resource_quota.h \
4931
- include/grpcpp/resource_quota_impl.h \
4932
4715
  include/grpcpp/security/auth_context.h \
4933
4716
  include/grpcpp/security/auth_metadata_processor.h \
4934
- include/grpcpp/security/auth_metadata_processor_impl.h \
4935
4717
  include/grpcpp/security/credentials.h \
4936
4718
  include/grpcpp/security/credentials_impl.h \
4937
4719
  include/grpcpp/security/server_credentials.h \
@@ -4939,11 +4721,9 @@ PUBLIC_HEADERS_CXX += \
4939
4721
  include/grpcpp/security/tls_credentials_options.h \
4940
4722
  include/grpcpp/server.h \
4941
4723
  include/grpcpp/server_builder.h \
4942
- include/grpcpp/server_builder_impl.h \
4943
4724
  include/grpcpp/server_context.h \
4944
4725
  include/grpcpp/server_impl.h \
4945
4726
  include/grpcpp/server_posix.h \
4946
- include/grpcpp/server_posix_impl.h \
4947
4727
  include/grpcpp/support/async_stream.h \
4948
4728
  include/grpcpp/support/async_stream_impl.h \
4949
4729
  include/grpcpp/support/async_unary_call.h \
@@ -4996,11 +4776,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP
4996
4776
 
4997
4777
  else
4998
4778
 
4999
- $(LIBDIR)/$(CONFIG)/libgrpc++.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
4779
+ $(LIBDIR)/$(CONFIG)/libgrpc++.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
5000
4780
  $(E) "[AR] Creating $@"
5001
4781
  $(Q) mkdir -p `dirname $@`
5002
4782
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++.a
5003
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
4783
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
5004
4784
  ifeq ($(SYSTEM),Darwin)
5005
4785
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++.a
5006
4786
  endif
@@ -5008,18 +4788,18 @@ endif
5008
4788
 
5009
4789
 
5010
4790
  ifeq ($(SYSTEM),MINGW32)
5011
- $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
4791
+ $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5012
4792
  $(E) "[LD] Linking $@"
5013
4793
  $(Q) mkdir -p `dirname $@`
5014
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
4794
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5015
4795
  else
5016
- $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
4796
+ $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5017
4797
  $(E) "[LD] Linking $@"
5018
4798
  $(Q) mkdir -p `dirname $@`
5019
4799
  ifeq ($(SYSTEM),Darwin)
5020
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
4800
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
5021
4801
  else
5022
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
4802
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc -lgpr -laddress_sorting -lupb
5023
4803
  $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).so.1
5024
4804
  $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION_CPP).so
5025
4805
  endif
@@ -5067,11 +4847,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EX
5067
4847
 
5068
4848
  else
5069
4849
 
5070
- $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_ALTS_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
4850
+ $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_ALTS_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
5071
4851
  $(E) "[AR] Creating $@"
5072
4852
  $(Q) mkdir -p `dirname $@`
5073
4853
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a
5074
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a $(LIBGRPC++_ALTS_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
4854
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a $(LIBGRPC++_ALTS_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
5075
4855
  ifeq ($(SYSTEM),Darwin)
5076
4856
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_alts.a
5077
4857
  endif
@@ -5079,18 +4859,18 @@ endif
5079
4859
 
5080
4860
 
5081
4861
  ifeq ($(SYSTEM),MINGW32)
5082
- $(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ALTS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
4862
+ $(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ALTS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5083
4863
  $(E) "[LD] Linking $@"
5084
4864
  $(Q) mkdir -p `dirname $@`
5085
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
4865
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5086
4866
  else
5087
- $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ALTS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
4867
+ $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ALTS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5088
4868
  $(E) "[LD] Linking $@"
5089
4869
  $(Q) mkdir -p `dirname $@`
5090
4870
  ifeq ($(SYSTEM),Darwin)
5091
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
4871
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5092
4872
  else
5093
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_alts.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
4873
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_alts.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ALTS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5094
4874
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).so.1
5095
4875
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_alts$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_alts$(SHARED_VERSION_CPP).so
5096
4876
  endif
@@ -5139,11 +4919,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(
5139
4919
 
5140
4920
  else
5141
4921
 
5142
- $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_ERROR_DETAILS_OBJS)
4922
+ $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_ERROR_DETAILS_OBJS)
5143
4923
  $(E) "[AR] Creating $@"
5144
4924
  $(Q) mkdir -p `dirname $@`
5145
4925
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a
5146
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(LIBGRPC++_ERROR_DETAILS_OBJS)
4926
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(LIBGRPC++_ERROR_DETAILS_OBJS)
5147
4927
  ifeq ($(SYSTEM),Darwin)
5148
4928
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a
5149
4929
  endif
@@ -5151,18 +4931,18 @@ endif
5151
4931
 
5152
4932
 
5153
4933
  ifeq ($(SYSTEM),MINGW32)
5154
- $(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
4934
+ $(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5155
4935
  $(E) "[LD] Linking $@"
5156
4936
  $(Q) mkdir -p `dirname $@`
5157
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
4937
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5158
4938
  else
5159
- $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
4939
+ $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5160
4940
  $(E) "[LD] Linking $@"
5161
4941
  $(Q) mkdir -p `dirname $@`
5162
4942
  ifeq ($(SYSTEM),Darwin)
5163
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
4943
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5164
4944
  else
5165
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_error_details.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
4945
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_error_details.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_ERROR_DETAILS_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5166
4946
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).so.1
5167
4947
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details$(SHARED_VERSION_CPP).so
5168
4948
  endif
@@ -5188,7 +4968,6 @@ LIBGRPC++_REFLECTION_SRC = \
5188
4968
  PUBLIC_HEADERS_CXX += \
5189
4969
  include/grpc++/ext/proto_server_reflection_plugin.h \
5190
4970
  include/grpcpp/ext/proto_server_reflection_plugin.h \
5191
- include/grpcpp/ext/proto_server_reflection_plugin_impl.h \
5192
4971
 
5193
4972
  LIBGRPC++_REFLECTION_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_REFLECTION_SRC))))
5194
4973
 
@@ -5213,11 +4992,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHA
5213
4992
 
5214
4993
  else
5215
4994
 
5216
- $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_REFLECTION_OBJS)
4995
+ $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_REFLECTION_OBJS)
5217
4996
  $(E) "[AR] Creating $@"
5218
4997
  $(Q) mkdir -p `dirname $@`
5219
4998
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
5220
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBGRPC++_REFLECTION_OBJS)
4999
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBGRPC++_REFLECTION_OBJS)
5221
5000
  ifeq ($(SYSTEM),Darwin)
5222
5001
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
5223
5002
  endif
@@ -5225,18 +5004,18 @@ endif
5225
5004
 
5226
5005
 
5227
5006
  ifeq ($(SYSTEM),MINGW32)
5228
- $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5007
+ $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5229
5008
  $(E) "[LD] Linking $@"
5230
5009
  $(Q) mkdir -p `dirname $@`
5231
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5010
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5232
5011
  else
5233
- $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5012
+ $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5234
5013
  $(E) "[LD] Linking $@"
5235
5014
  $(Q) mkdir -p `dirname $@`
5236
5015
  ifeq ($(SYSTEM),Darwin)
5237
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5016
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5238
5017
  else
5239
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_reflection.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5018
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_reflection.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5240
5019
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).so.1
5241
5020
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION_CPP).so
5242
5021
  endif
@@ -5287,11 +5066,11 @@ $(LIBDIR)/$(CONFIG)/libgrpc++_test.a: protobuf_dep_error
5287
5066
 
5288
5067
  else
5289
5068
 
5290
- $(LIBDIR)/$(CONFIG)/libgrpc++_test.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_TEST_OBJS)
5069
+ $(LIBDIR)/$(CONFIG)/libgrpc++_test.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_TEST_OBJS)
5291
5070
  $(E) "[AR] Creating $@"
5292
5071
  $(Q) mkdir -p `dirname $@`
5293
5072
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_test.a
5294
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_test.a $(LIBGRPC++_TEST_OBJS)
5073
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_test.a $(LIBGRPC++_TEST_OBJS)
5295
5074
  ifeq ($(SYSTEM),Darwin)
5296
5075
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_test.a
5297
5076
  endif
@@ -5336,11 +5115,11 @@ $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a: protobuf_dep_error
5336
5115
 
5337
5116
  else
5338
5117
 
5339
- $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_TEST_CONFIG_OBJS)
5118
+ $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_TEST_CONFIG_OBJS)
5340
5119
  $(E) "[AR] Creating $@"
5341
5120
  $(Q) mkdir -p `dirname $@`
5342
5121
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
5343
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBGRPC++_TEST_CONFIG_OBJS)
5122
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBGRPC++_TEST_CONFIG_OBJS)
5344
5123
  ifeq ($(SYSTEM),Darwin)
5345
5124
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
5346
5125
  endif
@@ -5393,11 +5172,11 @@ $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a: protobuf_dep_error
5393
5172
 
5394
5173
  else
5395
5174
 
5396
- $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_TEST_UTIL_OBJS)
5175
+ $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_TEST_UTIL_OBJS)
5397
5176
  $(E) "[AR] Creating $@"
5398
5177
  $(Q) mkdir -p `dirname $@`
5399
5178
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a
5400
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBGRPC++_TEST_UTIL_OBJS)
5179
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBGRPC++_TEST_UTIL_OBJS)
5401
5180
  ifeq ($(SYSTEM),Darwin)
5402
5181
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a
5403
5182
  endif
@@ -5418,6 +5197,7 @@ endif
5418
5197
 
5419
5198
  LIBGRPC++_UNSECURE_SRC = \
5420
5199
  src/cpp/client/channel_cc.cc \
5200
+ src/cpp/client/client_callback.cc \
5421
5201
  src/cpp/client/client_context.cc \
5422
5202
  src/cpp/client/client_interceptor.cc \
5423
5203
  src/cpp/client/create_channel.cc \
@@ -5545,14 +5325,11 @@ PUBLIC_HEADERS_CXX += \
5545
5325
  include/grpcpp/create_channel.h \
5546
5326
  include/grpcpp/create_channel_impl.h \
5547
5327
  include/grpcpp/create_channel_posix.h \
5548
- include/grpcpp/create_channel_posix_impl.h \
5549
5328
  include/grpcpp/ext/health_check_service_server_builder_option.h \
5550
5329
  include/grpcpp/generic/async_generic_service.h \
5551
5330
  include/grpcpp/generic/generic_stub.h \
5552
- include/grpcpp/generic/generic_stub_impl.h \
5553
5331
  include/grpcpp/grpcpp.h \
5554
5332
  include/grpcpp/health_check_service_interface.h \
5555
- include/grpcpp/health_check_service_interface_impl.h \
5556
5333
  include/grpcpp/impl/call.h \
5557
5334
  include/grpcpp/impl/channel_argument_option.h \
5558
5335
  include/grpcpp/impl/client_unary_call.h \
@@ -5627,10 +5404,8 @@ PUBLIC_HEADERS_CXX += \
5627
5404
  include/grpcpp/impl/server_initializer_impl.h \
5628
5405
  include/grpcpp/impl/service_type.h \
5629
5406
  include/grpcpp/resource_quota.h \
5630
- include/grpcpp/resource_quota_impl.h \
5631
5407
  include/grpcpp/security/auth_context.h \
5632
5408
  include/grpcpp/security/auth_metadata_processor.h \
5633
- include/grpcpp/security/auth_metadata_processor_impl.h \
5634
5409
  include/grpcpp/security/credentials.h \
5635
5410
  include/grpcpp/security/credentials_impl.h \
5636
5411
  include/grpcpp/security/server_credentials.h \
@@ -5638,11 +5413,9 @@ PUBLIC_HEADERS_CXX += \
5638
5413
  include/grpcpp/security/tls_credentials_options.h \
5639
5414
  include/grpcpp/server.h \
5640
5415
  include/grpcpp/server_builder.h \
5641
- include/grpcpp/server_builder_impl.h \
5642
5416
  include/grpcpp/server_context.h \
5643
5417
  include/grpcpp/server_impl.h \
5644
5418
  include/grpcpp/server_posix.h \
5645
- include/grpcpp/server_posix_impl.h \
5646
5419
  include/grpcpp/support/async_stream.h \
5647
5420
  include/grpcpp/support/async_stream_impl.h \
5648
5421
  include/grpcpp/support/async_unary_call.h \
@@ -5685,11 +5458,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARE
5685
5458
 
5686
5459
  else
5687
5460
 
5688
- $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
5461
+ $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
5689
5462
  $(E) "[AR] Creating $@"
5690
5463
  $(Q) mkdir -p `dirname $@`
5691
5464
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
5692
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBGRPC++_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(UPB_MERGE_OBJS)
5465
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBGRPC++_UNSECURE_OBJS) $(LIBGPR_OBJS) $(LIBGRPC_ABSEIL_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(RE2_MERGE_OBJS) $(UPB_MERGE_OBJS)
5693
5466
  ifeq ($(SYSTEM),Darwin)
5694
5467
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
5695
5468
  endif
@@ -5697,18 +5470,18 @@ endif
5697
5470
 
5698
5471
 
5699
5472
  ifeq ($(SYSTEM),MINGW32)
5700
- $(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
5473
+ $(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
5701
5474
  $(E) "[LD] Linking $@"
5702
5475
  $(Q) mkdir -p `dirname $@`
5703
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5476
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5704
5477
  else
5705
- $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE)
5478
+ $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE)
5706
5479
  $(E) "[LD] Linking $@"
5707
5480
  $(Q) mkdir -p `dirname $@`
5708
5481
  ifeq ($(SYSTEM),Darwin)
5709
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure -lgpr -laddress_sorting -lupb
5482
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure -lgpr -laddress_sorting -lupb
5710
5483
  else
5711
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_unsecure.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure -lgpr -laddress_sorting -lupb
5484
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_unsecure.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_UNSECURE_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc_unsecure -lgpr -laddress_sorting -lupb
5712
5485
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).so.1
5713
5486
  $(Q) ln -sf $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure$(SHARED_VERSION_CPP).so
5714
5487
  endif
@@ -5746,11 +5519,11 @@ $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a: protobuf_dep_error
5746
5519
 
5747
5520
  else
5748
5521
 
5749
- $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC_PLUGIN_SUPPORT_OBJS)
5522
+ $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPC_PLUGIN_SUPPORT_OBJS)
5750
5523
  $(E) "[AR] Creating $@"
5751
5524
  $(Q) mkdir -p `dirname $@`
5752
5525
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
5753
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(LIBGRPC_PLUGIN_SUPPORT_OBJS)
5526
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a $(LIBGRPC_PLUGIN_SUPPORT_OBJS)
5754
5527
  ifeq ($(SYSTEM),Darwin)
5755
5528
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_plugin_support.a
5756
5529
  endif
@@ -5797,11 +5570,11 @@ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARE
5797
5570
 
5798
5571
  else
5799
5572
 
5800
- $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPCPP_CHANNELZ_OBJS)
5573
+ $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBGRPCPP_CHANNELZ_OBJS)
5801
5574
  $(E) "[AR] Creating $@"
5802
5575
  $(Q) mkdir -p `dirname $@`
5803
5576
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
5804
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a $(LIBGRPCPP_CHANNELZ_OBJS)
5577
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a $(LIBGRPCPP_CHANNELZ_OBJS)
5805
5578
  ifeq ($(SYSTEM),Darwin)
5806
5579
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
5807
5580
  endif
@@ -5809,18 +5582,18 @@ endif
5809
5582
 
5810
5583
 
5811
5584
  ifeq ($(SYSTEM),MINGW32)
5812
- $(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5585
+ $(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5813
5586
  $(E) "[LD] Linking $@"
5814
5587
  $(Q) mkdir -p `dirname $@`
5815
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5588
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++$(SHARED_VERSION_CPP)-dll -lgrpc$(SHARED_VERSION_CORE)-dll -lgpr$(SHARED_VERSION_CORE)-dll -laddress_sorting$(SHARED_VERSION_CORE)-dll -lupb$(SHARED_VERSION_CORE)-dll
5816
5589
  else
5817
- $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5590
+ $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libaddress_sorting.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
5818
5591
  $(E) "[LD] Linking $@"
5819
5592
  $(Q) mkdir -p `dirname $@`
5820
5593
  ifeq ($(SYSTEM),Darwin)
5821
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5594
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5822
5595
  else
5823
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpcpp_channelz.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5596
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpcpp_channelz.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPCPP_CHANNELZ_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgrpc++ -lgrpc -lgpr -laddress_sorting -lupb
5824
5597
  $(Q) ln -sf $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).so.1
5825
5598
  $(Q) ln -sf $(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz$(SHARED_VERSION_CPP).so
5826
5599
  endif
@@ -6116,11 +5889,11 @@ $(LIBBORINGSSL_OBJS): CPPFLAGS += -Ithird_party/boringssl-with-bazel/src/include
6116
5889
  $(LIBBORINGSSL_OBJS): CXXFLAGS += -fno-exceptions
6117
5890
  $(LIBBORINGSSL_OBJS): CFLAGS += -g
6118
5891
 
6119
- $(LIBDIR)/$(CONFIG)/libboringssl.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBBORINGSSL_OBJS)
5892
+ $(LIBDIR)/$(CONFIG)/libboringssl.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(LIBBORINGSSL_OBJS)
6120
5893
  $(E) "[AR] Creating $@"
6121
5894
  $(Q) mkdir -p `dirname $@`
6122
5895
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libboringssl.a
6123
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libboringssl.a $(LIBBORINGSSL_OBJS)
5896
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libboringssl.a $(LIBBORINGSSL_OBJS)
6124
5897
  ifeq ($(SYSTEM),Darwin)
6125
5898
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libboringssl.a
6126
5899
  endif
@@ -6156,11 +5929,11 @@ $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a: protobuf_dep_error
6156
5929
 
6157
5930
  else
6158
5931
 
6159
- $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBBORINGSSL_TEST_UTIL_OBJS)
5932
+ $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBBORINGSSL_TEST_UTIL_OBJS)
6160
5933
  $(E) "[AR] Creating $@"
6161
5934
  $(Q) mkdir -p `dirname $@`
6162
5935
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a
6163
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBBORINGSSL_TEST_UTIL_OBJS)
5936
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBBORINGSSL_TEST_UTIL_OBJS)
6164
5937
  ifeq ($(SYSTEM),Darwin)
6165
5938
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a
6166
5939
  endif
@@ -6211,11 +5984,11 @@ $(LIBDIR)/$(CONFIG)/libbenchmark.a: protobuf_dep_error
6211
5984
 
6212
5985
  else
6213
5986
 
6214
- $(LIBDIR)/$(CONFIG)/libbenchmark.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBBENCHMARK_OBJS)
5987
+ $(LIBDIR)/$(CONFIG)/libbenchmark.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP) $(PROTOBUF_DEP) $(LIBBENCHMARK_OBJS)
6215
5988
  $(E) "[AR] Creating $@"
6216
5989
  $(Q) mkdir -p `dirname $@`
6217
5990
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libbenchmark.a
6218
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libbenchmark.a $(LIBBENCHMARK_OBJS)
5991
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libbenchmark.a $(LIBBENCHMARK_OBJS)
6219
5992
  ifeq ($(SYSTEM),Darwin)
6220
5993
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libbenchmark.a
6221
5994
  endif
@@ -6230,6 +6003,70 @@ ifneq ($(NO_DEPS),true)
6230
6003
  endif
6231
6004
 
6232
6005
 
6006
+ LIBRE2_SRC = \
6007
+ third_party/re2/re2/bitstate.cc \
6008
+ third_party/re2/re2/compile.cc \
6009
+ third_party/re2/re2/dfa.cc \
6010
+ third_party/re2/re2/filtered_re2.cc \
6011
+ third_party/re2/re2/mimics_pcre.cc \
6012
+ third_party/re2/re2/nfa.cc \
6013
+ third_party/re2/re2/onepass.cc \
6014
+ third_party/re2/re2/parse.cc \
6015
+ third_party/re2/re2/perl_groups.cc \
6016
+ third_party/re2/re2/prefilter.cc \
6017
+ third_party/re2/re2/prefilter_tree.cc \
6018
+ third_party/re2/re2/prog.cc \
6019
+ third_party/re2/re2/re2.cc \
6020
+ third_party/re2/re2/regexp.cc \
6021
+ third_party/re2/re2/set.cc \
6022
+ third_party/re2/re2/simplify.cc \
6023
+ third_party/re2/re2/stringpiece.cc \
6024
+ third_party/re2/re2/tostring.cc \
6025
+ third_party/re2/re2/unicode_casefold.cc \
6026
+ third_party/re2/re2/unicode_groups.cc \
6027
+ third_party/re2/util/pcre.cc \
6028
+ third_party/re2/util/rune.cc \
6029
+ third_party/re2/util/strutil.cc \
6030
+
6031
+ PUBLIC_HEADERS_C += \
6032
+
6033
+ LIBRE2_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBRE2_SRC))))
6034
+
6035
+
6036
+ $(LIBDIR)/$(CONFIG)/libre2.a: $(LIBRE2_OBJS)
6037
+ $(E) "[AR] Creating $@"
6038
+ $(Q) mkdir -p `dirname $@`
6039
+ $(Q) rm -f $(LIBDIR)/$(CONFIG)/libre2.a
6040
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libre2.a $(LIBRE2_OBJS)
6041
+ ifeq ($(SYSTEM),Darwin)
6042
+ $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libre2.a
6043
+ endif
6044
+
6045
+
6046
+
6047
+ ifeq ($(SYSTEM),MINGW32)
6048
+ $(LIBDIR)/$(CONFIG)/re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBRE2_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
6049
+ $(E) "[LD] Linking $@"
6050
+ $(Q) mkdir -p `dirname $@`
6051
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/re2$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libre2$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBRE2_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6052
+ else
6053
+ $(LIBDIR)/$(CONFIG)/libre2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBRE2_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
6054
+ $(E) "[LD] Linking $@"
6055
+ $(Q) mkdir -p `dirname $@`
6056
+ ifeq ($(SYSTEM),Darwin)
6057
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libre2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBRE2_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6058
+ else
6059
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libre2.so.11 -o $(LIBDIR)/$(CONFIG)/libre2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBRE2_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6060
+ $(Q) ln -sf $(SHARED_PREFIX)re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libre2$(SHARED_VERSION_CORE).so.11
6061
+ $(Q) ln -sf $(SHARED_PREFIX)re2$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libre2$(SHARED_VERSION_CORE).so
6062
+ endif
6063
+ endif
6064
+
6065
+ ifneq ($(NO_DEPS),true)
6066
+ -include $(LIBRE2_OBJS:.o=.dep)
6067
+ endif
6068
+
6069
+
6233
6070
  LIBUPB_SRC = \
6234
6071
  third_party/upb/upb/decode.c \
6235
6072
  third_party/upb/upb/encode.c \
@@ -6247,7 +6084,7 @@ $(LIBDIR)/$(CONFIG)/libupb.a: $(LIBUPB_OBJS)
6247
6084
  $(E) "[AR] Creating $@"
6248
6085
  $(Q) mkdir -p `dirname $@`
6249
6086
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libupb.a
6250
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libupb.a $(LIBUPB_OBJS)
6087
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libupb.a $(LIBUPB_OBJS)
6251
6088
  ifeq ($(SYSTEM),Darwin)
6252
6089
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libupb.a
6253
6090
  endif
@@ -6255,19 +6092,19 @@ endif
6255
6092
 
6256
6093
 
6257
6094
  ifeq ($(SYSTEM),MINGW32)
6258
- $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBUPB_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
6095
+ $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBUPB_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
6259
6096
  $(E) "[LD] Linking $@"
6260
6097
  $(Q) mkdir -p `dirname $@`
6261
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6098
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE)-dll.a -o $(LIBDIR)/$(CONFIG)/upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6262
6099
  else
6263
- $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBUPB_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
6100
+ $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE): $(LIBUPB_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(RE2_DEP) $(UPB_DEP) $(GRPC_ABSEIL_DEP)
6264
6101
  $(E) "[LD] Linking $@"
6265
6102
  $(Q) mkdir -p `dirname $@`
6266
6103
  ifeq ($(SYSTEM),Darwin)
6267
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6104
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6268
6105
  else
6269
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libupb.so.10 -o $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6270
- $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).so.10
6106
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libupb.so.11 -o $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBUPB_OBJS) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(RE2_MERGE_LIBS) $(UPB_MERGE_LIBS) $(GRPC_ABSEIL_MERGE_LIBS) $(LDLIBS)
6107
+ $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).so.11
6271
6108
  $(Q) ln -sf $(SHARED_PREFIX)upb$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libupb$(SHARED_VERSION_CORE).so
6272
6109
  endif
6273
6110
  endif
@@ -6304,7 +6141,7 @@ $(LIBDIR)/$(CONFIG)/libz.a: $(LIBZ_OBJS)
6304
6141
  $(E) "[AR] Creating $@"
6305
6142
  $(Q) mkdir -p `dirname $@`
6306
6143
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libz.a
6307
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libz.a $(LIBZ_OBJS)
6144
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libz.a $(LIBZ_OBJS)
6308
6145
  ifeq ($(SYSTEM),Darwin)
6309
6146
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libz.a
6310
6147
  endif
@@ -6380,7 +6217,7 @@ $(LIBDIR)/$(CONFIG)/libares.a: $(LIBARES_OBJS)
6380
6217
  $(E) "[AR] Creating $@"
6381
6218
  $(Q) mkdir -p `dirname $@`
6382
6219
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libares.a
6383
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libares.a $(LIBARES_OBJS)
6220
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libares.a $(LIBARES_OBJS)
6384
6221
  ifeq ($(SYSTEM),Darwin)
6385
6222
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libares.a
6386
6223
  endif
@@ -6450,12 +6287,13 @@ LIBGRPC_ABSEIL_SRC = \
6450
6287
 
6451
6288
  LIBGRPC_ABSEIL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_ABSEIL_SRC))))
6452
6289
 
6290
+ $(LIBGRPC_ABSEIL_OBJS): CPPFLAGS += -g -maes -msse4 -Ithird_party/abseil-cpp
6453
6291
 
6454
6292
  $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a: $(LIBGRPC_ABSEIL_OBJS)
6455
6293
  $(E) "[AR] Creating $@"
6456
6294
  $(Q) mkdir -p `dirname $@`
6457
6295
  $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
6458
- $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a $(LIBGRPC_ABSEIL_OBJS)
6296
+ $(Q) $(AR) $(ARFLAGS) $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a $(LIBGRPC_ABSEIL_OBJS)
6459
6297
  ifeq ($(SYSTEM),Darwin)
6460
6298
  $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_abseil.a
6461
6299
  endif
@@ -6520,7 +6358,7 @@ else
6520
6358
 
6521
6359
  ifeq ($(NO_PROTOBUF),true)
6522
6360
 
6523
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
6361
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
6524
6362
 
6525
6363
  $(BINDIR)/$(CONFIG)/gen_hpack_tables: protobuf_dep_error
6526
6364
 
@@ -6563,7 +6401,7 @@ else
6563
6401
 
6564
6402
  ifeq ($(NO_PROTOBUF),true)
6565
6403
 
6566
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
6404
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
6567
6405
 
6568
6406
  $(BINDIR)/$(CONFIG)/gen_legal_metadata_characters: protobuf_dep_error
6569
6407
 
@@ -6606,7 +6444,7 @@ else
6606
6444
 
6607
6445
  ifeq ($(NO_PROTOBUF),true)
6608
6446
 
6609
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
6447
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
6610
6448
 
6611
6449
  $(BINDIR)/$(CONFIG)/gen_percent_encoding_tables: protobuf_dep_error
6612
6450
 
@@ -10049,38 +9887,6 @@ endif
10049
9887
  endif
10050
9888
 
10051
9889
 
10052
- SERVER_CHTTP2_TEST_SRC = \
10053
- test/core/surface/server_chttp2_test.cc \
10054
-
10055
- SERVER_CHTTP2_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SERVER_CHTTP2_TEST_SRC))))
10056
- ifeq ($(NO_SECURE),true)
10057
-
10058
- # You can't build secure targets if you don't have OpenSSL.
10059
-
10060
- $(BINDIR)/$(CONFIG)/server_chttp2_test: openssl_dep_error
10061
-
10062
- else
10063
-
10064
-
10065
-
10066
- $(BINDIR)/$(CONFIG)/server_chttp2_test: $(SERVER_CHTTP2_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
10067
- $(E) "[LD] Linking $@"
10068
- $(Q) mkdir -p `dirname $@`
10069
- $(Q) $(LDXX) $(LDFLAGS) $(SERVER_CHTTP2_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/server_chttp2_test
10070
-
10071
- endif
10072
-
10073
- $(OBJDIR)/$(CONFIG)/test/core/surface/server_chttp2_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
10074
-
10075
- deps_server_chttp2_test: $(SERVER_CHTTP2_TEST_OBJS:.o=.dep)
10076
-
10077
- ifneq ($(NO_SECURE),true)
10078
- ifneq ($(NO_DEPS),true)
10079
- -include $(SERVER_CHTTP2_TEST_OBJS:.o=.dep)
10080
- endif
10081
- endif
10082
-
10083
-
10084
9890
  SERVER_SSL_TEST_SRC = \
10085
9891
  test/core/handshake/server_ssl.cc \
10086
9892
  test/core/handshake/server_ssl_common.cc \
@@ -11227,7 +11033,7 @@ else
11227
11033
 
11228
11034
  ifeq ($(NO_PROTOBUF),true)
11229
11035
 
11230
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11036
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11231
11037
 
11232
11038
  $(BINDIR)/$(CONFIG)/address_sorting_test: protobuf_dep_error
11233
11039
 
@@ -11273,7 +11079,7 @@ else
11273
11079
 
11274
11080
  ifeq ($(NO_PROTOBUF),true)
11275
11081
 
11276
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11082
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11277
11083
 
11278
11084
  $(BINDIR)/$(CONFIG)/address_sorting_test_unsecure: protobuf_dep_error
11279
11085
 
@@ -11322,7 +11128,7 @@ else
11322
11128
 
11323
11129
  ifeq ($(NO_PROTOBUF),true)
11324
11130
 
11325
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11131
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11326
11132
 
11327
11133
  $(BINDIR)/$(CONFIG)/alarm_test: protobuf_dep_error
11328
11134
 
@@ -11369,7 +11175,7 @@ else
11369
11175
 
11370
11176
  ifeq ($(NO_PROTOBUF),true)
11371
11177
 
11372
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11178
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11373
11179
 
11374
11180
  $(BINDIR)/$(CONFIG)/alts_concurrent_connectivity_test: protobuf_dep_error
11375
11181
 
@@ -11424,7 +11230,7 @@ else
11424
11230
 
11425
11231
  ifeq ($(NO_PROTOBUF),true)
11426
11232
 
11427
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11233
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11428
11234
 
11429
11235
  $(BINDIR)/$(CONFIG)/alts_credentials_fuzzer: protobuf_dep_error
11430
11236
 
@@ -11469,7 +11275,7 @@ else
11469
11275
 
11470
11276
  ifeq ($(NO_PROTOBUF),true)
11471
11277
 
11472
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11278
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11473
11279
 
11474
11280
  $(BINDIR)/$(CONFIG)/alts_util_test: protobuf_dep_error
11475
11281
 
@@ -11517,7 +11323,7 @@ else
11517
11323
 
11518
11324
  ifeq ($(NO_PROTOBUF),true)
11519
11325
 
11520
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11326
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11521
11327
 
11522
11328
  $(BINDIR)/$(CONFIG)/async_end2end_test: protobuf_dep_error
11523
11329
 
@@ -11571,7 +11377,7 @@ else
11571
11377
 
11572
11378
  ifeq ($(NO_PROTOBUF),true)
11573
11379
 
11574
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11380
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11575
11381
 
11576
11382
  $(BINDIR)/$(CONFIG)/auth_property_iterator_test: protobuf_dep_error
11577
11383
 
@@ -11614,7 +11420,7 @@ else
11614
11420
 
11615
11421
  ifeq ($(NO_PROTOBUF),true)
11616
11422
 
11617
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11423
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11618
11424
 
11619
11425
  $(BINDIR)/$(CONFIG)/backoff_test: protobuf_dep_error
11620
11426
 
@@ -11659,7 +11465,7 @@ else
11659
11465
 
11660
11466
  ifeq ($(NO_PROTOBUF),true)
11661
11467
 
11662
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11468
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11663
11469
 
11664
11470
  $(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test: protobuf_dep_error
11665
11471
 
@@ -11708,7 +11514,7 @@ else
11708
11514
 
11709
11515
  ifeq ($(NO_PROTOBUF),true)
11710
11516
 
11711
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11517
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11712
11518
 
11713
11519
  $(BINDIR)/$(CONFIG)/badreq_bad_client_test: protobuf_dep_error
11714
11520
 
@@ -11755,7 +11561,7 @@ else
11755
11561
 
11756
11562
  ifeq ($(NO_PROTOBUF),true)
11757
11563
 
11758
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11564
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11759
11565
 
11760
11566
  $(BINDIR)/$(CONFIG)/bdp_estimator_test: protobuf_dep_error
11761
11567
 
@@ -11798,7 +11604,7 @@ else
11798
11604
 
11799
11605
  ifeq ($(NO_PROTOBUF),true)
11800
11606
 
11801
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11607
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11802
11608
 
11803
11609
  $(BINDIR)/$(CONFIG)/bm_alarm: protobuf_dep_error
11804
11610
 
@@ -11842,7 +11648,7 @@ else
11842
11648
 
11843
11649
  ifeq ($(NO_PROTOBUF),true)
11844
11650
 
11845
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11651
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11846
11652
 
11847
11653
  $(BINDIR)/$(CONFIG)/bm_arena: protobuf_dep_error
11848
11654
 
@@ -11886,7 +11692,7 @@ else
11886
11692
 
11887
11693
  ifeq ($(NO_PROTOBUF),true)
11888
11694
 
11889
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11695
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11890
11696
 
11891
11697
  $(BINDIR)/$(CONFIG)/bm_byte_buffer: protobuf_dep_error
11892
11698
 
@@ -11930,7 +11736,7 @@ else
11930
11736
 
11931
11737
  ifeq ($(NO_PROTOBUF),true)
11932
11738
 
11933
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11739
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11934
11740
 
11935
11741
  $(BINDIR)/$(CONFIG)/bm_call_create: protobuf_dep_error
11936
11742
 
@@ -11978,7 +11784,7 @@ else
11978
11784
 
11979
11785
  ifeq ($(NO_PROTOBUF),true)
11980
11786
 
11981
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11787
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
11982
11788
 
11983
11789
  $(BINDIR)/$(CONFIG)/bm_callback_streaming_ping_pong: protobuf_dep_error
11984
11790
 
@@ -12034,7 +11840,7 @@ else
12034
11840
 
12035
11841
  ifeq ($(NO_PROTOBUF),true)
12036
11842
 
12037
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11843
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12038
11844
 
12039
11845
  $(BINDIR)/$(CONFIG)/bm_callback_unary_ping_pong: protobuf_dep_error
12040
11846
 
@@ -12086,7 +11892,7 @@ else
12086
11892
 
12087
11893
  ifeq ($(NO_PROTOBUF),true)
12088
11894
 
12089
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11895
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12090
11896
 
12091
11897
  $(BINDIR)/$(CONFIG)/bm_channel: protobuf_dep_error
12092
11898
 
@@ -12130,7 +11936,7 @@ else
12130
11936
 
12131
11937
  ifeq ($(NO_PROTOBUF),true)
12132
11938
 
12133
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11939
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12134
11940
 
12135
11941
  $(BINDIR)/$(CONFIG)/bm_chttp2_hpack: protobuf_dep_error
12136
11942
 
@@ -12174,7 +11980,7 @@ else
12174
11980
 
12175
11981
  ifeq ($(NO_PROTOBUF),true)
12176
11982
 
12177
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
11983
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12178
11984
 
12179
11985
  $(BINDIR)/$(CONFIG)/bm_chttp2_transport: protobuf_dep_error
12180
11986
 
@@ -12218,7 +12024,7 @@ else
12218
12024
 
12219
12025
  ifeq ($(NO_PROTOBUF),true)
12220
12026
 
12221
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12027
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12222
12028
 
12223
12029
  $(BINDIR)/$(CONFIG)/bm_closure: protobuf_dep_error
12224
12030
 
@@ -12262,7 +12068,7 @@ else
12262
12068
 
12263
12069
  ifeq ($(NO_PROTOBUF),true)
12264
12070
 
12265
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12071
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12266
12072
 
12267
12073
  $(BINDIR)/$(CONFIG)/bm_cq: protobuf_dep_error
12268
12074
 
@@ -12306,7 +12112,7 @@ else
12306
12112
 
12307
12113
  ifeq ($(NO_PROTOBUF),true)
12308
12114
 
12309
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12115
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12310
12116
 
12311
12117
  $(BINDIR)/$(CONFIG)/bm_cq_multiple_threads: protobuf_dep_error
12312
12118
 
@@ -12350,7 +12156,7 @@ else
12350
12156
 
12351
12157
  ifeq ($(NO_PROTOBUF),true)
12352
12158
 
12353
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12159
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12354
12160
 
12355
12161
  $(BINDIR)/$(CONFIG)/bm_error: protobuf_dep_error
12356
12162
 
@@ -12394,7 +12200,7 @@ else
12394
12200
 
12395
12201
  ifeq ($(NO_PROTOBUF),true)
12396
12202
 
12397
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12203
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12398
12204
 
12399
12205
  $(BINDIR)/$(CONFIG)/bm_fullstack_streaming_ping_pong: protobuf_dep_error
12400
12206
 
@@ -12438,7 +12244,7 @@ else
12438
12244
 
12439
12245
  ifeq ($(NO_PROTOBUF),true)
12440
12246
 
12441
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12247
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12442
12248
 
12443
12249
  $(BINDIR)/$(CONFIG)/bm_fullstack_streaming_pump: protobuf_dep_error
12444
12250
 
@@ -12482,7 +12288,7 @@ else
12482
12288
 
12483
12289
  ifeq ($(NO_PROTOBUF),true)
12484
12290
 
12485
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12291
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12486
12292
 
12487
12293
  $(BINDIR)/$(CONFIG)/bm_fullstack_trickle: protobuf_dep_error
12488
12294
 
@@ -12526,7 +12332,7 @@ else
12526
12332
 
12527
12333
  ifeq ($(NO_PROTOBUF),true)
12528
12334
 
12529
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12335
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12530
12336
 
12531
12337
  $(BINDIR)/$(CONFIG)/bm_fullstack_unary_ping_pong: protobuf_dep_error
12532
12338
 
@@ -12570,7 +12376,7 @@ else
12570
12376
 
12571
12377
  ifeq ($(NO_PROTOBUF),true)
12572
12378
 
12573
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12379
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12574
12380
 
12575
12381
  $(BINDIR)/$(CONFIG)/bm_metadata: protobuf_dep_error
12576
12382
 
@@ -12614,7 +12420,7 @@ else
12614
12420
 
12615
12421
  ifeq ($(NO_PROTOBUF),true)
12616
12422
 
12617
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12423
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12618
12424
 
12619
12425
  $(BINDIR)/$(CONFIG)/bm_pollset: protobuf_dep_error
12620
12426
 
@@ -12658,7 +12464,7 @@ else
12658
12464
 
12659
12465
  ifeq ($(NO_PROTOBUF),true)
12660
12466
 
12661
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12467
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12662
12468
 
12663
12469
  $(BINDIR)/$(CONFIG)/bm_threadpool: protobuf_dep_error
12664
12470
 
@@ -12702,7 +12508,7 @@ else
12702
12508
 
12703
12509
  ifeq ($(NO_PROTOBUF),true)
12704
12510
 
12705
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12511
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12706
12512
 
12707
12513
  $(BINDIR)/$(CONFIG)/bm_timer: protobuf_dep_error
12708
12514
 
@@ -12746,7 +12552,7 @@ else
12746
12552
 
12747
12553
  ifeq ($(NO_PROTOBUF),true)
12748
12554
 
12749
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12555
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12750
12556
 
12751
12557
  $(BINDIR)/$(CONFIG)/byte_buffer_test: protobuf_dep_error
12752
12558
 
@@ -12789,7 +12595,7 @@ else
12789
12595
 
12790
12596
  ifeq ($(NO_PROTOBUF),true)
12791
12597
 
12792
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12598
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12793
12599
 
12794
12600
  $(BINDIR)/$(CONFIG)/byte_stream_test: protobuf_dep_error
12795
12601
 
@@ -12834,7 +12640,7 @@ else
12834
12640
 
12835
12641
  ifeq ($(NO_PROTOBUF),true)
12836
12642
 
12837
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12643
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12838
12644
 
12839
12645
  $(BINDIR)/$(CONFIG)/cancel_ares_query_test: protobuf_dep_error
12840
12646
 
@@ -12885,7 +12691,7 @@ else
12885
12691
 
12886
12692
  ifeq ($(NO_PROTOBUF),true)
12887
12693
 
12888
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12694
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12889
12695
 
12890
12696
  $(BINDIR)/$(CONFIG)/cfstream_test: protobuf_dep_error
12891
12697
 
@@ -12938,7 +12744,7 @@ else
12938
12744
 
12939
12745
  ifeq ($(NO_PROTOBUF),true)
12940
12746
 
12941
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12747
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12942
12748
 
12943
12749
  $(BINDIR)/$(CONFIG)/channel_arguments_test: protobuf_dep_error
12944
12750
 
@@ -12981,7 +12787,7 @@ else
12981
12787
 
12982
12788
  ifeq ($(NO_PROTOBUF),true)
12983
12789
 
12984
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12790
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
12985
12791
 
12986
12792
  $(BINDIR)/$(CONFIG)/channel_filter_test: protobuf_dep_error
12987
12793
 
@@ -13026,7 +12832,7 @@ else
13026
12832
 
13027
12833
  ifeq ($(NO_PROTOBUF),true)
13028
12834
 
13029
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12835
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13030
12836
 
13031
12837
  $(BINDIR)/$(CONFIG)/channel_trace_test: protobuf_dep_error
13032
12838
 
@@ -13075,7 +12881,7 @@ else
13075
12881
 
13076
12882
  ifeq ($(NO_PROTOBUF),true)
13077
12883
 
13078
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12884
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13079
12885
 
13080
12886
  $(BINDIR)/$(CONFIG)/channelz_registry_test: protobuf_dep_error
13081
12887
 
@@ -13122,7 +12928,7 @@ else
13122
12928
 
13123
12929
  ifeq ($(NO_PROTOBUF),true)
13124
12930
 
13125
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12931
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13126
12932
 
13127
12933
  $(BINDIR)/$(CONFIG)/channelz_service_test: protobuf_dep_error
13128
12934
 
@@ -13177,7 +12983,7 @@ else
13177
12983
 
13178
12984
  ifeq ($(NO_PROTOBUF),true)
13179
12985
 
13180
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
12986
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13181
12987
 
13182
12988
  $(BINDIR)/$(CONFIG)/channelz_test: protobuf_dep_error
13183
12989
 
@@ -13236,7 +13042,7 @@ else
13236
13042
 
13237
13043
  ifeq ($(NO_PROTOBUF),true)
13238
13044
 
13239
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13045
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13240
13046
 
13241
13047
  $(BINDIR)/$(CONFIG)/cli_call_test: protobuf_dep_error
13242
13048
 
@@ -13311,7 +13117,7 @@ else
13311
13117
 
13312
13118
  ifeq ($(NO_PROTOBUF),true)
13313
13119
 
13314
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13120
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13315
13121
 
13316
13122
  $(BINDIR)/$(CONFIG)/client_callback_end2end_test: protobuf_dep_error
13317
13123
 
@@ -13373,7 +13179,7 @@ else
13373
13179
 
13374
13180
  ifeq ($(NO_PROTOBUF),true)
13375
13181
 
13376
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13182
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13377
13183
 
13378
13184
  $(BINDIR)/$(CONFIG)/client_channel_stress_test: protobuf_dep_error
13379
13185
 
@@ -13431,7 +13237,7 @@ else
13431
13237
 
13432
13238
  ifeq ($(NO_PROTOBUF),true)
13433
13239
 
13434
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13240
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13435
13241
 
13436
13242
  $(BINDIR)/$(CONFIG)/client_fuzzer: protobuf_dep_error
13437
13243
 
@@ -13481,7 +13287,7 @@ else
13481
13287
 
13482
13288
  ifeq ($(NO_PROTOBUF),true)
13483
13289
 
13484
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13290
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13485
13291
 
13486
13292
  $(BINDIR)/$(CONFIG)/client_interceptors_end2end_test: protobuf_dep_error
13487
13293
 
@@ -13544,7 +13350,7 @@ else
13544
13350
 
13545
13351
  ifeq ($(NO_PROTOBUF),true)
13546
13352
 
13547
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13353
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13548
13354
 
13549
13355
  $(BINDIR)/$(CONFIG)/client_lb_end2end_test: protobuf_dep_error
13550
13356
 
@@ -13604,7 +13410,7 @@ else
13604
13410
 
13605
13411
  ifeq ($(NO_PROTOBUF),true)
13606
13412
 
13607
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13413
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13608
13414
 
13609
13415
  $(BINDIR)/$(CONFIG)/codegen_test_full: protobuf_dep_error
13610
13416
 
@@ -13647,7 +13453,7 @@ else
13647
13453
 
13648
13454
  ifeq ($(NO_PROTOBUF),true)
13649
13455
 
13650
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13456
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13651
13457
 
13652
13458
  $(BINDIR)/$(CONFIG)/codegen_test_minimal: protobuf_dep_error
13653
13459
 
@@ -13692,7 +13498,7 @@ else
13692
13498
 
13693
13499
  ifeq ($(NO_PROTOBUF),true)
13694
13500
 
13695
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13501
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13696
13502
 
13697
13503
  $(BINDIR)/$(CONFIG)/connection_prefix_bad_client_test: protobuf_dep_error
13698
13504
 
@@ -13739,7 +13545,7 @@ else
13739
13545
 
13740
13546
  ifeq ($(NO_PROTOBUF),true)
13741
13547
 
13742
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13548
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13743
13549
 
13744
13550
  $(BINDIR)/$(CONFIG)/connectivity_state_test: protobuf_dep_error
13745
13551
 
@@ -13782,7 +13588,7 @@ else
13782
13588
 
13783
13589
  ifeq ($(NO_PROTOBUF),true)
13784
13590
 
13785
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13591
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13786
13592
 
13787
13593
  $(BINDIR)/$(CONFIG)/context_list_test: protobuf_dep_error
13788
13594
 
@@ -13829,7 +13635,7 @@ else
13829
13635
 
13830
13636
  ifeq ($(NO_PROTOBUF),true)
13831
13637
 
13832
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13638
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13833
13639
 
13834
13640
  $(BINDIR)/$(CONFIG)/delegating_channel_test: protobuf_dep_error
13835
13641
 
@@ -13882,7 +13688,7 @@ else
13882
13688
 
13883
13689
  ifeq ($(NO_PROTOBUF),true)
13884
13690
 
13885
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13691
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13886
13692
 
13887
13693
  $(BINDIR)/$(CONFIG)/destroy_grpclb_channel_with_active_connect_stress_test: protobuf_dep_error
13888
13694
 
@@ -13927,7 +13733,7 @@ else
13927
13733
 
13928
13734
  ifeq ($(NO_PROTOBUF),true)
13929
13735
 
13930
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13736
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13931
13737
 
13932
13738
  $(BINDIR)/$(CONFIG)/duplicate_header_bad_client_test: protobuf_dep_error
13933
13739
 
@@ -13980,7 +13786,7 @@ else
13980
13786
 
13981
13787
  ifeq ($(NO_PROTOBUF),true)
13982
13788
 
13983
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13789
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
13984
13790
 
13985
13791
  $(BINDIR)/$(CONFIG)/end2end_test: protobuf_dep_error
13986
13792
 
@@ -14039,7 +13845,7 @@ else
14039
13845
 
14040
13846
  ifeq ($(NO_PROTOBUF),true)
14041
13847
 
14042
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13848
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14043
13849
 
14044
13850
  $(BINDIR)/$(CONFIG)/error_details_test: protobuf_dep_error
14045
13851
 
@@ -14085,7 +13891,7 @@ else
14085
13891
 
14086
13892
  ifeq ($(NO_PROTOBUF),true)
14087
13893
 
14088
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13894
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14089
13895
 
14090
13896
  $(BINDIR)/$(CONFIG)/eventmanager_libuv_test: protobuf_dep_error
14091
13897
 
@@ -14131,7 +13937,7 @@ else
14131
13937
 
14132
13938
  ifeq ($(NO_PROTOBUF),true)
14133
13939
 
14134
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13940
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14135
13941
 
14136
13942
  $(BINDIR)/$(CONFIG)/exception_test: protobuf_dep_error
14137
13943
 
@@ -14185,7 +13991,7 @@ else
14185
13991
 
14186
13992
  ifeq ($(NO_PROTOBUF),true)
14187
13993
 
14188
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
13994
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14189
13995
 
14190
13996
  $(BINDIR)/$(CONFIG)/filter_end2end_test: protobuf_dep_error
14191
13997
 
@@ -14241,7 +14047,7 @@ else
14241
14047
 
14242
14048
  ifeq ($(NO_PROTOBUF),true)
14243
14049
 
14244
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14050
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14245
14051
 
14246
14052
  $(BINDIR)/$(CONFIG)/flaky_network_test: protobuf_dep_error
14247
14053
 
@@ -14298,7 +14104,7 @@ else
14298
14104
 
14299
14105
  ifeq ($(NO_PROTOBUF),true)
14300
14106
 
14301
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14107
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14302
14108
 
14303
14109
  $(BINDIR)/$(CONFIG)/generic_end2end_test: protobuf_dep_error
14304
14110
 
@@ -14350,7 +14156,7 @@ else
14350
14156
 
14351
14157
  ifeq ($(NO_PROTOBUF),true)
14352
14158
 
14353
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14159
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14354
14160
 
14355
14161
  $(BINDIR)/$(CONFIG)/global_config_env_test: protobuf_dep_error
14356
14162
 
@@ -14393,7 +14199,7 @@ else
14393
14199
 
14394
14200
  ifeq ($(NO_PROTOBUF),true)
14395
14201
 
14396
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14202
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14397
14203
 
14398
14204
  $(BINDIR)/$(CONFIG)/global_config_test: protobuf_dep_error
14399
14205
 
@@ -14443,7 +14249,7 @@ else
14443
14249
 
14444
14250
  ifeq ($(NO_PROTOBUF),true)
14445
14251
 
14446
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14252
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14447
14253
 
14448
14254
  $(BINDIR)/$(CONFIG)/grpc_cli: protobuf_dep_error
14449
14255
 
@@ -14499,7 +14305,7 @@ GRPC_CPP_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basen
14499
14305
 
14500
14306
  ifeq ($(NO_PROTOBUF),true)
14501
14307
 
14502
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14308
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14503
14309
 
14504
14310
  $(BINDIR)/$(CONFIG)/grpc_cpp_plugin: protobuf_dep_error
14505
14311
 
@@ -14530,7 +14336,7 @@ GRPC_CSHARP_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(ba
14530
14336
 
14531
14337
  ifeq ($(NO_PROTOBUF),true)
14532
14338
 
14533
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14339
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14534
14340
 
14535
14341
  $(BINDIR)/$(CONFIG)/grpc_csharp_plugin: protobuf_dep_error
14536
14342
 
@@ -14561,7 +14367,7 @@ GRPC_NODE_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(base
14561
14367
 
14562
14368
  ifeq ($(NO_PROTOBUF),true)
14563
14369
 
14564
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14370
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14565
14371
 
14566
14372
  $(BINDIR)/$(CONFIG)/grpc_node_plugin: protobuf_dep_error
14567
14373
 
@@ -14592,7 +14398,7 @@ GRPC_OBJECTIVE_C_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o,
14592
14398
 
14593
14399
  ifeq ($(NO_PROTOBUF),true)
14594
14400
 
14595
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14401
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14596
14402
 
14597
14403
  $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin: protobuf_dep_error
14598
14404
 
@@ -14623,7 +14429,7 @@ GRPC_PHP_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basen
14623
14429
 
14624
14430
  ifeq ($(NO_PROTOBUF),true)
14625
14431
 
14626
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14432
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14627
14433
 
14628
14434
  $(BINDIR)/$(CONFIG)/grpc_php_plugin: protobuf_dep_error
14629
14435
 
@@ -14654,7 +14460,7 @@ GRPC_PYTHON_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(ba
14654
14460
 
14655
14461
  ifeq ($(NO_PROTOBUF),true)
14656
14462
 
14657
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14463
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14658
14464
 
14659
14465
  $(BINDIR)/$(CONFIG)/grpc_python_plugin: protobuf_dep_error
14660
14466
 
@@ -14685,7 +14491,7 @@ GRPC_RUBY_PLUGIN_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(base
14685
14491
 
14686
14492
  ifeq ($(NO_PROTOBUF),true)
14687
14493
 
14688
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14494
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14689
14495
 
14690
14496
  $(BINDIR)/$(CONFIG)/grpc_ruby_plugin: protobuf_dep_error
14691
14497
 
@@ -14724,7 +14530,7 @@ else
14724
14530
 
14725
14531
  ifeq ($(NO_PROTOBUF),true)
14726
14532
 
14727
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14533
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14728
14534
 
14729
14535
  $(BINDIR)/$(CONFIG)/grpc_tls_credentials_options_test: protobuf_dep_error
14730
14536
 
@@ -14776,7 +14582,7 @@ else
14776
14582
 
14777
14583
  ifeq ($(NO_PROTOBUF),true)
14778
14584
 
14779
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14585
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14780
14586
 
14781
14587
  $(BINDIR)/$(CONFIG)/grpc_tool_test: protobuf_dep_error
14782
14588
 
@@ -14845,7 +14651,7 @@ else
14845
14651
 
14846
14652
  ifeq ($(NO_PROTOBUF),true)
14847
14653
 
14848
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14654
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14849
14655
 
14850
14656
  $(BINDIR)/$(CONFIG)/grpclb_api_test: protobuf_dep_error
14851
14657
 
@@ -14897,7 +14703,7 @@ else
14897
14703
 
14898
14704
  ifeq ($(NO_PROTOBUF),true)
14899
14705
 
14900
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14706
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14901
14707
 
14902
14708
  $(BINDIR)/$(CONFIG)/grpclb_end2end_test: protobuf_dep_error
14903
14709
 
@@ -14954,7 +14760,7 @@ else
14954
14760
 
14955
14761
  ifeq ($(NO_PROTOBUF),true)
14956
14762
 
14957
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14763
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
14958
14764
 
14959
14765
  $(BINDIR)/$(CONFIG)/h2_ssl_session_reuse_test: protobuf_dep_error
14960
14766
 
@@ -14999,7 +14805,7 @@ else
14999
14805
 
15000
14806
  ifeq ($(NO_PROTOBUF),true)
15001
14807
 
15002
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14808
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15003
14809
 
15004
14810
  $(BINDIR)/$(CONFIG)/head_of_line_blocking_bad_client_test: protobuf_dep_error
15005
14811
 
@@ -15048,7 +14854,7 @@ else
15048
14854
 
15049
14855
  ifeq ($(NO_PROTOBUF),true)
15050
14856
 
15051
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14857
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15052
14858
 
15053
14859
  $(BINDIR)/$(CONFIG)/headers_bad_client_test: protobuf_dep_error
15054
14860
 
@@ -15102,7 +14908,7 @@ else
15102
14908
 
15103
14909
  ifeq ($(NO_PROTOBUF),true)
15104
14910
 
15105
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14911
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15106
14912
 
15107
14913
  $(BINDIR)/$(CONFIG)/health_service_end2end_test: protobuf_dep_error
15108
14914
 
@@ -15163,7 +14969,7 @@ else
15163
14969
 
15164
14970
  ifeq ($(NO_PROTOBUF),true)
15165
14971
 
15166
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
14972
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15167
14973
 
15168
14974
  $(BINDIR)/$(CONFIG)/hpack_parser_fuzzer_test: protobuf_dep_error
15169
14975
 
@@ -15211,7 +15017,7 @@ else
15211
15017
 
15212
15018
  ifeq ($(NO_PROTOBUF),true)
15213
15019
 
15214
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15020
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15215
15021
 
15216
15022
  $(BINDIR)/$(CONFIG)/http2_client: protobuf_dep_error
15217
15023
 
@@ -15262,7 +15068,7 @@ else
15262
15068
 
15263
15069
  ifeq ($(NO_PROTOBUF),true)
15264
15070
 
15265
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15071
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15266
15072
 
15267
15073
  $(BINDIR)/$(CONFIG)/http_request_fuzzer_test: protobuf_dep_error
15268
15074
 
@@ -15308,7 +15114,7 @@ else
15308
15114
 
15309
15115
  ifeq ($(NO_PROTOBUF),true)
15310
15116
 
15311
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15117
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15312
15118
 
15313
15119
  $(BINDIR)/$(CONFIG)/http_response_fuzzer_test: protobuf_dep_error
15314
15120
 
@@ -15358,7 +15164,7 @@ else
15358
15164
 
15359
15165
  ifeq ($(NO_PROTOBUF),true)
15360
15166
 
15361
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15167
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15362
15168
 
15363
15169
  $(BINDIR)/$(CONFIG)/hybrid_end2end_test: protobuf_dep_error
15364
15170
 
@@ -15415,7 +15221,7 @@ else
15415
15221
 
15416
15222
  ifeq ($(NO_PROTOBUF),true)
15417
15223
 
15418
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15224
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15419
15225
 
15420
15226
  $(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test: protobuf_dep_error
15421
15227
 
@@ -15468,7 +15274,7 @@ else
15468
15274
 
15469
15275
  ifeq ($(NO_PROTOBUF),true)
15470
15276
 
15471
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15277
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15472
15278
 
15473
15279
  $(BINDIR)/$(CONFIG)/interop_client: protobuf_dep_error
15474
15280
 
@@ -15532,7 +15338,7 @@ else
15532
15338
 
15533
15339
  ifeq ($(NO_PROTOBUF),true)
15534
15340
 
15535
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15341
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15536
15342
 
15537
15343
  $(BINDIR)/$(CONFIG)/interop_server: protobuf_dep_error
15538
15344
 
@@ -15588,7 +15394,7 @@ else
15588
15394
 
15589
15395
  ifeq ($(NO_PROTOBUF),true)
15590
15396
 
15591
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15397
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15592
15398
 
15593
15399
  $(BINDIR)/$(CONFIG)/interop_test: protobuf_dep_error
15594
15400
 
@@ -15632,7 +15438,7 @@ else
15632
15438
 
15633
15439
  ifeq ($(NO_PROTOBUF),true)
15634
15440
 
15635
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15441
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15636
15442
 
15637
15443
  $(BINDIR)/$(CONFIG)/json_fuzzer_test: protobuf_dep_error
15638
15444
 
@@ -15677,7 +15483,7 @@ else
15677
15483
 
15678
15484
  ifeq ($(NO_PROTOBUF),true)
15679
15485
 
15680
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15486
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15681
15487
 
15682
15488
  $(BINDIR)/$(CONFIG)/json_test: protobuf_dep_error
15683
15489
 
@@ -15722,7 +15528,7 @@ else
15722
15528
 
15723
15529
  ifeq ($(NO_PROTOBUF),true)
15724
15530
 
15725
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15531
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15726
15532
 
15727
15533
  $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test: protobuf_dep_error
15728
15534
 
@@ -15773,7 +15579,7 @@ else
15773
15579
 
15774
15580
  ifeq ($(NO_PROTOBUF),true)
15775
15581
 
15776
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15582
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15777
15583
 
15778
15584
  $(BINDIR)/$(CONFIG)/lb_get_cpu_stats_test: protobuf_dep_error
15779
15585
 
@@ -15825,7 +15631,7 @@ else
15825
15631
 
15826
15632
  ifeq ($(NO_PROTOBUF),true)
15827
15633
 
15828
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15634
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15829
15635
 
15830
15636
  $(BINDIR)/$(CONFIG)/lb_load_data_store_test: protobuf_dep_error
15831
15637
 
@@ -15870,7 +15676,7 @@ else
15870
15676
 
15871
15677
  ifeq ($(NO_PROTOBUF),true)
15872
15678
 
15873
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15679
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15874
15680
 
15875
15681
  $(BINDIR)/$(CONFIG)/linux_system_roots_test: protobuf_dep_error
15876
15682
 
@@ -15917,7 +15723,7 @@ else
15917
15723
 
15918
15724
  ifeq ($(NO_PROTOBUF),true)
15919
15725
 
15920
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15726
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15921
15727
 
15922
15728
  $(BINDIR)/$(CONFIG)/message_allocator_end2end_test: protobuf_dep_error
15923
15729
 
@@ -15974,7 +15780,7 @@ else
15974
15780
 
15975
15781
  ifeq ($(NO_PROTOBUF),true)
15976
15782
 
15977
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15783
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
15978
15784
 
15979
15785
  $(BINDIR)/$(CONFIG)/mock_test: protobuf_dep_error
15980
15786
 
@@ -16027,7 +15833,7 @@ else
16027
15833
 
16028
15834
  ifeq ($(NO_PROTOBUF),true)
16029
15835
 
16030
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15836
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16031
15837
 
16032
15838
  $(BINDIR)/$(CONFIG)/nanopb_fuzzer_response_test: protobuf_dep_error
16033
15839
 
@@ -16073,7 +15879,7 @@ else
16073
15879
 
16074
15880
  ifeq ($(NO_PROTOBUF),true)
16075
15881
 
16076
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15882
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16077
15883
 
16078
15884
  $(BINDIR)/$(CONFIG)/nanopb_fuzzer_serverlist_test: protobuf_dep_error
16079
15885
 
@@ -16121,7 +15927,7 @@ else
16121
15927
 
16122
15928
  ifeq ($(NO_PROTOBUF),true)
16123
15929
 
16124
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15930
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16125
15931
 
16126
15932
  $(BINDIR)/$(CONFIG)/nonblocking_test: protobuf_dep_error
16127
15933
 
@@ -16171,7 +15977,7 @@ else
16171
15977
 
16172
15978
  ifeq ($(NO_PROTOBUF),true)
16173
15979
 
16174
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
15980
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16175
15981
 
16176
15982
  $(BINDIR)/$(CONFIG)/noop-benchmark: protobuf_dep_error
16177
15983
 
@@ -16215,7 +16021,7 @@ else
16215
16021
 
16216
16022
  ifeq ($(NO_PROTOBUF),true)
16217
16023
 
16218
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16024
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16219
16025
 
16220
16026
  $(BINDIR)/$(CONFIG)/orphanable_test: protobuf_dep_error
16221
16027
 
@@ -16260,7 +16066,7 @@ else
16260
16066
 
16261
16067
  ifeq ($(NO_PROTOBUF),true)
16262
16068
 
16263
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16069
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16264
16070
 
16265
16071
  $(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test: protobuf_dep_error
16266
16072
 
@@ -16308,7 +16114,7 @@ else
16308
16114
 
16309
16115
  ifeq ($(NO_PROTOBUF),true)
16310
16116
 
16311
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16117
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16312
16118
 
16313
16119
  $(BINDIR)/$(CONFIG)/percent_decode_fuzzer: protobuf_dep_error
16314
16120
 
@@ -16354,7 +16160,7 @@ else
16354
16160
 
16355
16161
  ifeq ($(NO_PROTOBUF),true)
16356
16162
 
16357
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16163
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16358
16164
 
16359
16165
  $(BINDIR)/$(CONFIG)/percent_encode_fuzzer: protobuf_dep_error
16360
16166
 
@@ -16399,7 +16205,7 @@ else
16399
16205
 
16400
16206
  ifeq ($(NO_PROTOBUF),true)
16401
16207
 
16402
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16208
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16403
16209
 
16404
16210
  $(BINDIR)/$(CONFIG)/pid_controller_test: protobuf_dep_error
16405
16211
 
@@ -16446,7 +16252,7 @@ else
16446
16252
 
16447
16253
  ifeq ($(NO_PROTOBUF),true)
16448
16254
 
16449
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16255
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16450
16256
 
16451
16257
  $(BINDIR)/$(CONFIG)/port_sharing_end2end_test: protobuf_dep_error
16452
16258
 
@@ -16505,7 +16311,7 @@ else
16505
16311
 
16506
16312
  ifeq ($(NO_PROTOBUF),true)
16507
16313
 
16508
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16314
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16509
16315
 
16510
16316
  $(BINDIR)/$(CONFIG)/proto_server_reflection_test: protobuf_dep_error
16511
16317
 
@@ -16563,7 +16369,7 @@ else
16563
16369
 
16564
16370
  ifeq ($(NO_PROTOBUF),true)
16565
16371
 
16566
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16372
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16567
16373
 
16568
16374
  $(BINDIR)/$(CONFIG)/proto_utils_test: protobuf_dep_error
16569
16375
 
@@ -16628,7 +16434,7 @@ else
16628
16434
 
16629
16435
  ifeq ($(NO_PROTOBUF),true)
16630
16436
 
16631
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16437
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16632
16438
 
16633
16439
  $(BINDIR)/$(CONFIG)/qps_json_driver: protobuf_dep_error
16634
16440
 
@@ -16747,7 +16553,7 @@ else
16747
16553
 
16748
16554
  ifeq ($(NO_PROTOBUF),true)
16749
16555
 
16750
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16556
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16751
16557
 
16752
16558
  $(BINDIR)/$(CONFIG)/qps_worker: protobuf_dep_error
16753
16559
 
@@ -16840,7 +16646,7 @@ else
16840
16646
 
16841
16647
  ifeq ($(NO_PROTOBUF),true)
16842
16648
 
16843
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16649
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16844
16650
 
16845
16651
  $(BINDIR)/$(CONFIG)/raw_end2end_test: protobuf_dep_error
16846
16652
 
@@ -16895,7 +16701,7 @@ else
16895
16701
 
16896
16702
  ifeq ($(NO_PROTOBUF),true)
16897
16703
 
16898
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16704
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16899
16705
 
16900
16706
  $(BINDIR)/$(CONFIG)/ref_counted_ptr_test: protobuf_dep_error
16901
16707
 
@@ -16938,7 +16744,7 @@ else
16938
16744
 
16939
16745
  ifeq ($(NO_PROTOBUF),true)
16940
16746
 
16941
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16747
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16942
16748
 
16943
16749
  $(BINDIR)/$(CONFIG)/ref_counted_test: protobuf_dep_error
16944
16750
 
@@ -16981,7 +16787,7 @@ else
16981
16787
 
16982
16788
  ifeq ($(NO_PROTOBUF),true)
16983
16789
 
16984
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16790
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
16985
16791
 
16986
16792
  $(BINDIR)/$(CONFIG)/retry_throttle_test: protobuf_dep_error
16987
16793
 
@@ -17024,7 +16830,7 @@ else
17024
16830
 
17025
16831
  ifeq ($(NO_PROTOBUF),true)
17026
16832
 
17027
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16833
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17028
16834
 
17029
16835
  $(BINDIR)/$(CONFIG)/secure_auth_context_test: protobuf_dep_error
17030
16836
 
@@ -17072,7 +16878,7 @@ else
17072
16878
 
17073
16879
  ifeq ($(NO_PROTOBUF),true)
17074
16880
 
17075
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16881
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17076
16882
 
17077
16883
  $(BINDIR)/$(CONFIG)/server_builder_plugin_test: protobuf_dep_error
17078
16884
 
@@ -17130,7 +16936,7 @@ else
17130
16936
 
17131
16937
  ifeq ($(NO_PROTOBUF),true)
17132
16938
 
17133
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16939
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17134
16940
 
17135
16941
  $(BINDIR)/$(CONFIG)/server_builder_test: protobuf_dep_error
17136
16942
 
@@ -17183,7 +16989,7 @@ else
17183
16989
 
17184
16990
  ifeq ($(NO_PROTOBUF),true)
17185
16991
 
17186
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16992
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17187
16993
 
17188
16994
  $(BINDIR)/$(CONFIG)/server_builder_with_socket_mutator_test: protobuf_dep_error
17189
16995
 
@@ -17216,6 +17022,49 @@ endif
17216
17022
  $(OBJDIR)/$(CONFIG)/test/cpp/server/server_builder_with_socket_mutator_test.o: $(GENDIR)/src/proto/grpc/testing/echo.pb.cc $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/simple_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/simple_messages.grpc.pb.cc
17217
17023
 
17218
17024
 
17025
+ SERVER_CHTTP2_TEST_SRC = \
17026
+ test/core/surface/server_chttp2_test.cc \
17027
+
17028
+ SERVER_CHTTP2_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SERVER_CHTTP2_TEST_SRC))))
17029
+ ifeq ($(NO_SECURE),true)
17030
+
17031
+ # You can't build secure targets if you don't have OpenSSL.
17032
+
17033
+ $(BINDIR)/$(CONFIG)/server_chttp2_test: openssl_dep_error
17034
+
17035
+ else
17036
+
17037
+
17038
+
17039
+
17040
+ ifeq ($(NO_PROTOBUF),true)
17041
+
17042
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17043
+
17044
+ $(BINDIR)/$(CONFIG)/server_chttp2_test: protobuf_dep_error
17045
+
17046
+ else
17047
+
17048
+ $(BINDIR)/$(CONFIG)/server_chttp2_test: $(PROTOBUF_DEP) $(SERVER_CHTTP2_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
17049
+ $(E) "[LD] Linking $@"
17050
+ $(Q) mkdir -p `dirname $@`
17051
+ $(Q) $(LDXX) $(LDFLAGS) $(SERVER_CHTTP2_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/server_chttp2_test
17052
+
17053
+ endif
17054
+
17055
+ endif
17056
+
17057
+ $(OBJDIR)/$(CONFIG)/test/core/surface/server_chttp2_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
17058
+
17059
+ deps_server_chttp2_test: $(SERVER_CHTTP2_TEST_OBJS:.o=.dep)
17060
+
17061
+ ifneq ($(NO_SECURE),true)
17062
+ ifneq ($(NO_DEPS),true)
17063
+ -include $(SERVER_CHTTP2_TEST_OBJS:.o=.dep)
17064
+ endif
17065
+ endif
17066
+
17067
+
17219
17068
  SERVER_CONTEXT_TEST_SPOUSE_TEST_SRC = \
17220
17069
  test/cpp/test/server_context_test_spouse_test.cc \
17221
17070
 
@@ -17233,7 +17082,7 @@ else
17233
17082
 
17234
17083
  ifeq ($(NO_PROTOBUF),true)
17235
17084
 
17236
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17085
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17237
17086
 
17238
17087
  $(BINDIR)/$(CONFIG)/server_context_test_spouse_test: protobuf_dep_error
17239
17088
 
@@ -17279,7 +17128,7 @@ else
17279
17128
 
17280
17129
  ifeq ($(NO_PROTOBUF),true)
17281
17130
 
17282
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17131
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17283
17132
 
17284
17133
  $(BINDIR)/$(CONFIG)/server_early_return_test: protobuf_dep_error
17285
17134
 
@@ -17330,7 +17179,7 @@ else
17330
17179
 
17331
17180
  ifeq ($(NO_PROTOBUF),true)
17332
17181
 
17333
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17182
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17334
17183
 
17335
17184
  $(BINDIR)/$(CONFIG)/server_fuzzer: protobuf_dep_error
17336
17185
 
@@ -17380,7 +17229,7 @@ else
17380
17229
 
17381
17230
  ifeq ($(NO_PROTOBUF),true)
17382
17231
 
17383
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17232
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17384
17233
 
17385
17234
  $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test: protobuf_dep_error
17386
17235
 
@@ -17438,7 +17287,7 @@ else
17438
17287
 
17439
17288
  ifeq ($(NO_PROTOBUF),true)
17440
17289
 
17441
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17290
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17442
17291
 
17443
17292
  $(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test: protobuf_dep_error
17444
17293
 
@@ -17488,7 +17337,7 @@ else
17488
17337
 
17489
17338
  ifeq ($(NO_PROTOBUF),true)
17490
17339
 
17491
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17340
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17492
17341
 
17493
17342
  $(BINDIR)/$(CONFIG)/server_request_call_test: protobuf_dep_error
17494
17343
 
@@ -17543,7 +17392,7 @@ else
17543
17392
 
17544
17393
  ifeq ($(NO_PROTOBUF),true)
17545
17394
 
17546
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17395
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17547
17396
 
17548
17397
  $(BINDIR)/$(CONFIG)/service_config_end2end_test: protobuf_dep_error
17549
17398
 
@@ -17598,7 +17447,7 @@ else
17598
17447
 
17599
17448
  ifeq ($(NO_PROTOBUF),true)
17600
17449
 
17601
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17450
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17602
17451
 
17603
17452
  $(BINDIR)/$(CONFIG)/service_config_test: protobuf_dep_error
17604
17453
 
@@ -17641,7 +17490,7 @@ else
17641
17490
 
17642
17491
  ifeq ($(NO_PROTOBUF),true)
17643
17492
 
17644
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17493
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17645
17494
 
17646
17495
  $(BINDIR)/$(CONFIG)/settings_timeout_test: protobuf_dep_error
17647
17496
 
@@ -17688,7 +17537,7 @@ else
17688
17537
 
17689
17538
  ifeq ($(NO_PROTOBUF),true)
17690
17539
 
17691
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17540
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17692
17541
 
17693
17542
  $(BINDIR)/$(CONFIG)/shutdown_test: protobuf_dep_error
17694
17543
 
@@ -17742,7 +17591,7 @@ else
17742
17591
 
17743
17592
  ifeq ($(NO_PROTOBUF),true)
17744
17593
 
17745
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17594
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17746
17595
 
17747
17596
  $(BINDIR)/$(CONFIG)/simple_request_bad_client_test: protobuf_dep_error
17748
17597
 
@@ -17789,7 +17638,7 @@ else
17789
17638
 
17790
17639
  ifeq ($(NO_PROTOBUF),true)
17791
17640
 
17792
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17641
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17793
17642
 
17794
17643
  $(BINDIR)/$(CONFIG)/slice_hash_table_test: protobuf_dep_error
17795
17644
 
@@ -17832,7 +17681,7 @@ else
17832
17681
 
17833
17682
  ifeq ($(NO_PROTOBUF),true)
17834
17683
 
17835
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17684
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17836
17685
 
17837
17686
  $(BINDIR)/$(CONFIG)/slice_weak_hash_table_test: protobuf_dep_error
17838
17687
 
@@ -17876,7 +17725,7 @@ else
17876
17725
 
17877
17726
  ifeq ($(NO_PROTOBUF),true)
17878
17727
 
17879
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17728
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17880
17729
 
17881
17730
  $(BINDIR)/$(CONFIG)/ssl_server_fuzzer: protobuf_dep_error
17882
17731
 
@@ -17921,7 +17770,7 @@ else
17921
17770
 
17922
17771
  ifeq ($(NO_PROTOBUF),true)
17923
17772
 
17924
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17773
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17925
17774
 
17926
17775
  $(BINDIR)/$(CONFIG)/static_metadata_test: protobuf_dep_error
17927
17776
 
@@ -17964,7 +17813,7 @@ else
17964
17813
 
17965
17814
  ifeq ($(NO_PROTOBUF),true)
17966
17815
 
17967
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17816
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17968
17817
 
17969
17818
  $(BINDIR)/$(CONFIG)/stats_test: protobuf_dep_error
17970
17819
 
@@ -18007,7 +17856,7 @@ else
18007
17856
 
18008
17857
  ifeq ($(NO_PROTOBUF),true)
18009
17858
 
18010
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17859
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18011
17860
 
18012
17861
  $(BINDIR)/$(CONFIG)/status_metadata_test: protobuf_dep_error
18013
17862
 
@@ -18050,7 +17899,7 @@ else
18050
17899
 
18051
17900
  ifeq ($(NO_PROTOBUF),true)
18052
17901
 
18053
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17902
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18054
17903
 
18055
17904
  $(BINDIR)/$(CONFIG)/status_util_test: protobuf_dep_error
18056
17905
 
@@ -18076,6 +17925,52 @@ endif
18076
17925
  endif
18077
17926
 
18078
17927
 
17928
+ STRANDED_EVENT_TEST_SRC = \
17929
+ test/core/end2end/cq_verifier.cc \
17930
+ test/core/iomgr/stranded_event_test.cc \
17931
+
17932
+ STRANDED_EVENT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(STRANDED_EVENT_TEST_SRC))))
17933
+ ifeq ($(NO_SECURE),true)
17934
+
17935
+ # You can't build secure targets if you don't have OpenSSL.
17936
+
17937
+ $(BINDIR)/$(CONFIG)/stranded_event_test: openssl_dep_error
17938
+
17939
+ else
17940
+
17941
+
17942
+
17943
+
17944
+ ifeq ($(NO_PROTOBUF),true)
17945
+
17946
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
17947
+
17948
+ $(BINDIR)/$(CONFIG)/stranded_event_test: protobuf_dep_error
17949
+
17950
+ else
17951
+
17952
+ $(BINDIR)/$(CONFIG)/stranded_event_test: $(PROTOBUF_DEP) $(STRANDED_EVENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
17953
+ $(E) "[LD] Linking $@"
17954
+ $(Q) mkdir -p `dirname $@`
17955
+ $(Q) $(LDXX) $(LDFLAGS) $(STRANDED_EVENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/stranded_event_test
17956
+
17957
+ endif
17958
+
17959
+ endif
17960
+
17961
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/cq_verifier.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
17962
+
17963
+ $(OBJDIR)/$(CONFIG)/test/core/iomgr/stranded_event_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
17964
+
17965
+ deps_stranded_event_test: $(STRANDED_EVENT_TEST_OBJS:.o=.dep)
17966
+
17967
+ ifneq ($(NO_SECURE),true)
17968
+ ifneq ($(NO_DEPS),true)
17969
+ -include $(STRANDED_EVENT_TEST_OBJS:.o=.dep)
17970
+ endif
17971
+ endif
17972
+
17973
+
18079
17974
  STREAMING_THROUGHPUT_TEST_SRC = \
18080
17975
  $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc \
18081
17976
  $(GENDIR)/src/proto/grpc/testing/echo.pb.cc $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc \
@@ -18097,7 +17992,7 @@ else
18097
17992
 
18098
17993
  ifeq ($(NO_PROTOBUF),true)
18099
17994
 
18100
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17995
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18101
17996
 
18102
17997
  $(BINDIR)/$(CONFIG)/streaming_throughput_test: protobuf_dep_error
18103
17998
 
@@ -18149,7 +18044,7 @@ else
18149
18044
 
18150
18045
  ifeq ($(NO_PROTOBUF),true)
18151
18046
 
18152
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18047
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18153
18048
 
18154
18049
  $(BINDIR)/$(CONFIG)/string_ref_test: protobuf_dep_error
18155
18050
 
@@ -18192,7 +18087,7 @@ else
18192
18087
 
18193
18088
  ifeq ($(NO_PROTOBUF),true)
18194
18089
 
18195
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18090
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18196
18091
 
18197
18092
  $(BINDIR)/$(CONFIG)/test_cpp_client_credentials_test: protobuf_dep_error
18198
18093
 
@@ -18235,7 +18130,7 @@ else
18235
18130
 
18236
18131
  ifeq ($(NO_PROTOBUF),true)
18237
18132
 
18238
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18133
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18239
18134
 
18240
18135
  $(BINDIR)/$(CONFIG)/test_cpp_util_slice_test: protobuf_dep_error
18241
18136
 
@@ -18278,7 +18173,7 @@ else
18278
18173
 
18279
18174
  ifeq ($(NO_PROTOBUF),true)
18280
18175
 
18281
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18176
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18282
18177
 
18283
18178
  $(BINDIR)/$(CONFIG)/test_cpp_util_time_test: protobuf_dep_error
18284
18179
 
@@ -18321,7 +18216,7 @@ else
18321
18216
 
18322
18217
  ifeq ($(NO_PROTOBUF),true)
18323
18218
 
18324
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18219
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18325
18220
 
18326
18221
  $(BINDIR)/$(CONFIG)/thread_manager_test: protobuf_dep_error
18327
18222
 
@@ -18368,7 +18263,7 @@ else
18368
18263
 
18369
18264
  ifeq ($(NO_PROTOBUF),true)
18370
18265
 
18371
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18266
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18372
18267
 
18373
18268
  $(BINDIR)/$(CONFIG)/thread_stress_test: protobuf_dep_error
18374
18269
 
@@ -18420,7 +18315,7 @@ else
18420
18315
 
18421
18316
  ifeq ($(NO_PROTOBUF),true)
18422
18317
 
18423
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18318
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18424
18319
 
18425
18320
  $(BINDIR)/$(CONFIG)/time_jump_test: protobuf_dep_error
18426
18321
 
@@ -18463,7 +18358,7 @@ else
18463
18358
 
18464
18359
  ifeq ($(NO_PROTOBUF),true)
18465
18360
 
18466
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18361
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18467
18362
 
18468
18363
  $(BINDIR)/$(CONFIG)/timer_test: protobuf_dep_error
18469
18364
 
@@ -18506,7 +18401,7 @@ else
18506
18401
 
18507
18402
  ifeq ($(NO_PROTOBUF),true)
18508
18403
 
18509
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18404
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18510
18405
 
18511
18406
  $(BINDIR)/$(CONFIG)/tls_security_connector_test: protobuf_dep_error
18512
18407
 
@@ -18532,6 +18427,52 @@ endif
18532
18427
  endif
18533
18428
 
18534
18429
 
18430
+ TOO_MANY_PINGS_TEST_SRC = \
18431
+ test/core/end2end/cq_verifier.cc \
18432
+ test/core/transport/chttp2/too_many_pings_test.cc \
18433
+
18434
+ TOO_MANY_PINGS_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(TOO_MANY_PINGS_TEST_SRC))))
18435
+ ifeq ($(NO_SECURE),true)
18436
+
18437
+ # You can't build secure targets if you don't have OpenSSL.
18438
+
18439
+ $(BINDIR)/$(CONFIG)/too_many_pings_test: openssl_dep_error
18440
+
18441
+ else
18442
+
18443
+
18444
+
18445
+
18446
+ ifeq ($(NO_PROTOBUF),true)
18447
+
18448
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18449
+
18450
+ $(BINDIR)/$(CONFIG)/too_many_pings_test: protobuf_dep_error
18451
+
18452
+ else
18453
+
18454
+ $(BINDIR)/$(CONFIG)/too_many_pings_test: $(PROTOBUF_DEP) $(TOO_MANY_PINGS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
18455
+ $(E) "[LD] Linking $@"
18456
+ $(Q) mkdir -p `dirname $@`
18457
+ $(Q) $(LDXX) $(LDFLAGS) $(TOO_MANY_PINGS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/too_many_pings_test
18458
+
18459
+ endif
18460
+
18461
+ endif
18462
+
18463
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/cq_verifier.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
18464
+
18465
+ $(OBJDIR)/$(CONFIG)/test/core/transport/chttp2/too_many_pings_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libupb.a
18466
+
18467
+ deps_too_many_pings_test: $(TOO_MANY_PINGS_TEST_OBJS:.o=.dep)
18468
+
18469
+ ifneq ($(NO_SECURE),true)
18470
+ ifneq ($(NO_DEPS),true)
18471
+ -include $(TOO_MANY_PINGS_TEST_OBJS:.o=.dep)
18472
+ endif
18473
+ endif
18474
+
18475
+
18535
18476
  UNKNOWN_FRAME_BAD_CLIENT_TEST_SRC = \
18536
18477
  test/core/bad_client/bad_client.cc \
18537
18478
  test/core/bad_client/tests/unknown_frame.cc \
@@ -18551,7 +18492,7 @@ else
18551
18492
 
18552
18493
  ifeq ($(NO_PROTOBUF),true)
18553
18494
 
18554
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18495
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18555
18496
 
18556
18497
  $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test: protobuf_dep_error
18557
18498
 
@@ -18599,7 +18540,7 @@ else
18599
18540
 
18600
18541
  ifeq ($(NO_PROTOBUF),true)
18601
18542
 
18602
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18543
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18603
18544
 
18604
18545
  $(BINDIR)/$(CONFIG)/uri_fuzzer_test: protobuf_dep_error
18605
18546
 
@@ -18646,7 +18587,7 @@ else
18646
18587
 
18647
18588
  ifeq ($(NO_PROTOBUF),true)
18648
18589
 
18649
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18590
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18650
18591
 
18651
18592
  $(BINDIR)/$(CONFIG)/window_overflow_bad_client_test: protobuf_dep_error
18652
18593
 
@@ -18693,7 +18634,7 @@ else
18693
18634
 
18694
18635
  ifeq ($(NO_PROTOBUF),true)
18695
18636
 
18696
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18637
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18697
18638
 
18698
18639
  $(BINDIR)/$(CONFIG)/work_serializer_test: protobuf_dep_error
18699
18640
 
@@ -18759,7 +18700,7 @@ else
18759
18700
 
18760
18701
  ifeq ($(NO_PROTOBUF),true)
18761
18702
 
18762
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18703
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18763
18704
 
18764
18705
  $(BINDIR)/$(CONFIG)/writes_per_rpc_test: protobuf_dep_error
18765
18706
 
@@ -18869,7 +18810,7 @@ else
18869
18810
 
18870
18811
  ifeq ($(NO_PROTOBUF),true)
18871
18812
 
18872
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18813
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18873
18814
 
18874
18815
  $(BINDIR)/$(CONFIG)/xds_bootstrap_test: protobuf_dep_error
18875
18816
 
@@ -18922,7 +18863,7 @@ else
18922
18863
 
18923
18864
  ifeq ($(NO_PROTOBUF),true)
18924
18865
 
18925
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18866
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18926
18867
 
18927
18868
  $(BINDIR)/$(CONFIG)/xds_end2end_test: protobuf_dep_error
18928
18869
 
@@ -18990,7 +18931,7 @@ else
18990
18931
 
18991
18932
  ifeq ($(NO_PROTOBUF),true)
18992
18933
 
18993
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18934
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
18994
18935
 
18995
18936
  $(BINDIR)/$(CONFIG)/xds_interop_client: protobuf_dep_error
18996
18937
 
@@ -19043,7 +18984,7 @@ else
19043
18984
 
19044
18985
  ifeq ($(NO_PROTOBUF),true)
19045
18986
 
19046
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18987
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19047
18988
 
19048
18989
  $(BINDIR)/$(CONFIG)/xds_interop_server: protobuf_dep_error
19049
18990
 
@@ -19095,7 +19036,7 @@ $(BORINGSSL_SSL_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
19095
19036
 
19096
19037
  ifeq ($(NO_PROTOBUF),true)
19097
19038
 
19098
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19039
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19099
19040
 
19100
19041
  $(BINDIR)/$(CONFIG)/boringssl_ssl_test: protobuf_dep_error
19101
19042
 
@@ -19205,7 +19146,7 @@ $(BORINGSSL_CRYPTO_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
19205
19146
 
19206
19147
  ifeq ($(NO_PROTOBUF),true)
19207
19148
 
19208
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19149
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19209
19150
 
19210
19151
  $(BINDIR)/$(CONFIG)/boringssl_crypto_test: protobuf_dep_error
19211
19152
 
@@ -19372,7 +19313,7 @@ else
19372
19313
 
19373
19314
  ifeq ($(NO_PROTOBUF),true)
19374
19315
 
19375
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19316
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19376
19317
 
19377
19318
  $(BINDIR)/$(CONFIG)/alts_credentials_fuzzer_one_entry: protobuf_dep_error
19378
19319
 
@@ -19418,7 +19359,7 @@ else
19418
19359
 
19419
19360
  ifeq ($(NO_PROTOBUF),true)
19420
19361
 
19421
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19362
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19422
19363
 
19423
19364
  $(BINDIR)/$(CONFIG)/client_fuzzer_one_entry: protobuf_dep_error
19424
19365
 
@@ -19464,7 +19405,7 @@ else
19464
19405
 
19465
19406
  ifeq ($(NO_PROTOBUF),true)
19466
19407
 
19467
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19408
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19468
19409
 
19469
19410
  $(BINDIR)/$(CONFIG)/hpack_parser_fuzzer_test_one_entry: protobuf_dep_error
19470
19411
 
@@ -19510,7 +19451,7 @@ else
19510
19451
 
19511
19452
  ifeq ($(NO_PROTOBUF),true)
19512
19453
 
19513
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19454
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19514
19455
 
19515
19456
  $(BINDIR)/$(CONFIG)/http_request_fuzzer_test_one_entry: protobuf_dep_error
19516
19457
 
@@ -19556,7 +19497,7 @@ else
19556
19497
 
19557
19498
  ifeq ($(NO_PROTOBUF),true)
19558
19499
 
19559
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19500
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19560
19501
 
19561
19502
  $(BINDIR)/$(CONFIG)/http_response_fuzzer_test_one_entry: protobuf_dep_error
19562
19503
 
@@ -19602,7 +19543,7 @@ else
19602
19543
 
19603
19544
  ifeq ($(NO_PROTOBUF),true)
19604
19545
 
19605
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19546
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19606
19547
 
19607
19548
  $(BINDIR)/$(CONFIG)/json_fuzzer_test_one_entry: protobuf_dep_error
19608
19549
 
@@ -19648,7 +19589,7 @@ else
19648
19589
 
19649
19590
  ifeq ($(NO_PROTOBUF),true)
19650
19591
 
19651
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19592
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19652
19593
 
19653
19594
  $(BINDIR)/$(CONFIG)/nanopb_fuzzer_response_test_one_entry: protobuf_dep_error
19654
19595
 
@@ -19694,7 +19635,7 @@ else
19694
19635
 
19695
19636
  ifeq ($(NO_PROTOBUF),true)
19696
19637
 
19697
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19638
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19698
19639
 
19699
19640
  $(BINDIR)/$(CONFIG)/nanopb_fuzzer_serverlist_test_one_entry: protobuf_dep_error
19700
19641
 
@@ -19740,7 +19681,7 @@ else
19740
19681
 
19741
19682
  ifeq ($(NO_PROTOBUF),true)
19742
19683
 
19743
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19684
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19744
19685
 
19745
19686
  $(BINDIR)/$(CONFIG)/percent_decode_fuzzer_one_entry: protobuf_dep_error
19746
19687
 
@@ -19786,7 +19727,7 @@ else
19786
19727
 
19787
19728
  ifeq ($(NO_PROTOBUF),true)
19788
19729
 
19789
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19730
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19790
19731
 
19791
19732
  $(BINDIR)/$(CONFIG)/percent_encode_fuzzer_one_entry: protobuf_dep_error
19792
19733
 
@@ -19832,7 +19773,7 @@ else
19832
19773
 
19833
19774
  ifeq ($(NO_PROTOBUF),true)
19834
19775
 
19835
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19776
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19836
19777
 
19837
19778
  $(BINDIR)/$(CONFIG)/server_fuzzer_one_entry: protobuf_dep_error
19838
19779
 
@@ -19878,7 +19819,7 @@ else
19878
19819
 
19879
19820
  ifeq ($(NO_PROTOBUF),true)
19880
19821
 
19881
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19822
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19882
19823
 
19883
19824
  $(BINDIR)/$(CONFIG)/ssl_server_fuzzer_one_entry: protobuf_dep_error
19884
19825
 
@@ -19924,7 +19865,7 @@ else
19924
19865
 
19925
19866
  ifeq ($(NO_PROTOBUF),true)
19926
19867
 
19927
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19868
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.12.0+.
19928
19869
 
19929
19870
  $(BINDIR)/$(CONFIG)/uri_fuzzer_test_one_entry: protobuf_dep_error
19930
19871
 
@@ -20067,7 +20008,7 @@ test/cpp/util/test_config_cc.cc: $(OPENSSL_DEP)
20067
20008
  test/cpp/util/test_credentials_provider.cc: $(OPENSSL_DEP)
20068
20009
  endif
20069
20010
 
20070
- .PHONY: all strip tools dep_error openssl_dep_error openssl_dep_message git_update stop buildtests buildtests_c buildtests_cxx test test_c test_cxx install install_c install_cxx install-headers install-headers_c install-headers_cxx install-shared install-shared_c install-shared_cxx install-static install-static_c install-static_cxx strip strip-shared strip-static strip_c strip-shared_c strip-static_c strip_cxx strip-shared_cxx strip-static_cxx dep_c dep_cxx bins_dep_c bins_dep_cxx clean
20011
+ .PHONY: all strip tools dep_error openssl_dep_error openssl_dep_message git_update stop buildtests buildtests_c buildtests_cxx test test_c test_cxx install install_c install_cxx install_csharp install-static install-certs strip strip-shared strip-static strip_c strip-shared_c strip-static_c strip_cxx strip-shared_cxx strip-static_cxx dep_c dep_cxx bins_dep_c bins_dep_cxx clean
20071
20012
 
20072
20013
  .PHONY: printvars
20073
20014
  printvars: