grpc 1.20.0 → 1.21.0

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 (209) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +500 -29
  3. data/etc/roots.pem +146 -0
  4. data/include/grpc/grpc_security.h +1 -1
  5. data/include/grpc/impl/codegen/grpc_types.h +10 -7
  6. data/include/grpc/impl/codegen/port_platform.h +11 -1
  7. data/include/grpc/impl/codegen/slice.h +1 -21
  8. data/include/grpc/impl/codegen/status.h +2 -1
  9. data/include/grpc/slice.h +1 -1
  10. data/src/core/ext/filters/client_channel/backup_poller.cc +19 -13
  11. data/src/core/ext/filters/client_channel/backup_poller.h +3 -0
  12. data/src/core/ext/filters/client_channel/channel_connectivity.cc +1 -1
  13. data/src/core/ext/filters/client_channel/client_channel.cc +2084 -1673
  14. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +2 -3
  15. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +4 -0
  16. data/src/core/ext/filters/client_channel/health/health_check_client.cc +54 -49
  17. data/src/core/ext/filters/client_channel/health/health_check_client.h +20 -9
  18. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -2
  19. data/src/core/ext/filters/client_channel/http_connect_handshaker.h +1 -1
  20. data/src/core/ext/filters/client_channel/lb_policy.cc +3 -30
  21. data/src/core/ext/filters/client_channel/lb_policy.h +16 -25
  22. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +106 -81
  23. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +6 -2
  24. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +8 -12
  25. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +2 -2
  26. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +1 -1
  27. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +57 -49
  28. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +47 -41
  29. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +24 -20
  30. data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +989 -284
  31. data/src/core/ext/filters/client_channel/lb_policy_factory.h +4 -1
  32. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +105 -2
  33. data/src/core/ext/filters/client_channel/lb_policy_registry.h +9 -2
  34. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +79 -36
  35. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +84 -2
  36. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -0
  37. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +179 -0
  38. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +15 -3
  39. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +80 -4
  40. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +7 -13
  41. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +2 -2
  42. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +39 -0
  43. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +0 -6
  44. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -64
  45. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +28 -0
  46. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +29 -0
  47. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +4 -4
  48. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +367 -232
  49. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +55 -76
  50. data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +50 -39
  51. data/src/core/ext/filters/client_channel/resolving_lb_policy.h +18 -12
  52. data/src/core/ext/filters/client_channel/service_config.cc +247 -27
  53. data/src/core/ext/filters/client_channel/service_config.h +119 -166
  54. data/src/core/ext/filters/client_channel/subchannel.cc +46 -84
  55. data/src/core/ext/filters/client_channel/subchannel.h +7 -7
  56. data/src/core/ext/filters/deadline/deadline_filter.cc +3 -4
  57. data/src/core/ext/filters/deadline/deadline_filter.h +3 -2
  58. data/src/core/ext/filters/http/client/http_client_filter.cc +7 -5
  59. data/src/core/ext/filters/http/client/http_client_filter.h +1 -1
  60. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  61. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +4 -3
  62. data/src/core/ext/filters/http/server/http_server_filter.cc +18 -12
  63. data/src/core/ext/filters/message_size/message_size_filter.cc +118 -76
  64. data/src/core/ext/filters/message_size/message_size_filter.h +33 -0
  65. data/src/core/ext/transport/chttp2/alpn/alpn.h +1 -1
  66. data/src/core/ext/transport/chttp2/transport/chttp2_plugin.cc +9 -7
  67. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +93 -60
  68. data/src/core/ext/transport/chttp2/transport/flow_control.h +1 -1
  69. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +4 -3
  70. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +3 -3
  71. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +8 -2
  72. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +2 -2
  73. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +1 -1
  74. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +3 -2
  75. data/src/core/ext/transport/chttp2/transport/internal.h +35 -23
  76. data/src/core/ext/transport/chttp2/transport/parsing.cc +4 -4
  77. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +3 -3
  78. data/src/core/ext/transport/chttp2/transport/writing.cc +61 -27
  79. data/src/core/ext/transport/inproc/inproc_transport.cc +18 -18
  80. data/src/core/lib/channel/channel_args.cc +0 -101
  81. data/src/core/lib/channel/channel_args.h +0 -37
  82. data/src/core/lib/channel/channel_stack.h +9 -5
  83. data/src/core/lib/channel/channelz_registry.cc +1 -1
  84. data/src/core/lib/channel/connected_channel.cc +2 -2
  85. data/src/core/lib/channel/context.h +3 -0
  86. data/src/core/lib/channel/handshaker.cc +4 -4
  87. data/src/core/lib/channel/handshaker.h +1 -1
  88. data/src/core/lib/compression/compression_args.cc +127 -0
  89. data/src/core/lib/compression/compression_args.h +55 -0
  90. data/src/core/lib/debug/trace.cc +13 -7
  91. data/src/core/lib/debug/trace.h +12 -0
  92. data/src/core/lib/gpr/arena.h +13 -9
  93. data/src/core/lib/gpr/env.h +2 -5
  94. data/src/core/lib/gpr/env_linux.cc +6 -1
  95. data/src/core/lib/gpr/env_posix.cc +5 -0
  96. data/src/core/lib/gpr/env_windows.cc +7 -5
  97. data/src/core/lib/gpr/log.cc +9 -13
  98. data/src/core/lib/gpr/string.cc +12 -6
  99. data/src/core/lib/gpr/string.h +4 -2
  100. data/src/core/lib/gpr/time_posix.cc +13 -0
  101. data/src/core/lib/gprpp/arena.cc +103 -0
  102. data/src/core/lib/gprpp/arena.h +121 -0
  103. data/src/core/lib/gprpp/fork.cc +12 -29
  104. data/src/core/lib/gprpp/global_config.h +87 -0
  105. data/src/core/lib/gprpp/global_config_custom.h +29 -0
  106. data/src/core/lib/gprpp/global_config_env.cc +135 -0
  107. data/src/core/lib/gprpp/global_config_env.h +131 -0
  108. data/src/core/lib/gprpp/global_config_generic.h +44 -0
  109. data/src/core/lib/gprpp/map.h +419 -0
  110. data/src/core/lib/gprpp/optional.h +1 -0
  111. data/src/core/lib/gprpp/orphanable.h +2 -2
  112. data/src/core/lib/gprpp/{mutex_lock.h → pair.h} +15 -19
  113. data/src/core/lib/gprpp/ref_counted.h +18 -2
  114. data/src/core/lib/gprpp/sync.h +126 -0
  115. data/src/core/lib/http/parser.cc +1 -1
  116. data/src/core/lib/iomgr/call_combiner.cc +84 -90
  117. data/src/core/lib/iomgr/call_combiner.h +75 -82
  118. data/src/core/lib/iomgr/cfstream_handle.cc +202 -0
  119. data/src/core/lib/iomgr/cfstream_handle.h +82 -0
  120. data/src/core/lib/iomgr/combiner.h +1 -1
  121. data/src/core/lib/iomgr/endpoint_cfstream.cc +375 -0
  122. data/src/core/lib/iomgr/endpoint_cfstream.h +49 -0
  123. data/src/core/lib/iomgr/endpoint_pair_windows.cc +2 -2
  124. data/src/core/lib/iomgr/error.h +23 -0
  125. data/src/core/lib/iomgr/error_cfstream.cc +52 -0
  126. data/src/core/lib/iomgr/error_cfstream.h +31 -0
  127. data/src/core/lib/iomgr/ev_epoll1_linux.cc +34 -27
  128. data/src/core/lib/iomgr/ev_epollex_linux.cc +33 -33
  129. data/src/core/lib/iomgr/ev_poll_posix.cc +7 -7
  130. data/src/core/lib/iomgr/ev_posix.cc +15 -13
  131. data/src/core/lib/iomgr/ev_posix.h +4 -1
  132. data/src/core/lib/iomgr/executor.cc +13 -9
  133. data/src/core/lib/iomgr/fork_posix.cc +0 -1
  134. data/src/core/lib/iomgr/internal_errqueue.cc +1 -1
  135. data/src/core/lib/iomgr/iomgr.cc +6 -5
  136. data/src/core/lib/iomgr/iomgr_custom.cc +3 -0
  137. data/src/core/lib/iomgr/iomgr_custom.h +2 -0
  138. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +93 -0
  139. data/src/core/lib/iomgr/iomgr_windows.cc +1 -0
  140. data/src/core/lib/iomgr/lockfree_event.cc +3 -3
  141. data/src/core/lib/iomgr/port.h +11 -0
  142. data/src/core/lib/iomgr/resource_quota.cc +40 -37
  143. data/src/core/lib/iomgr/socket_utils_common_posix.cc +6 -2
  144. data/src/core/lib/iomgr/socket_windows.cc +19 -0
  145. data/src/core/lib/iomgr/socket_windows.h +8 -0
  146. data/src/core/lib/iomgr/tcp_client_cfstream.cc +216 -0
  147. data/src/core/lib/iomgr/tcp_client_custom.cc +2 -2
  148. data/src/core/lib/iomgr/tcp_client_posix.cc +3 -3
  149. data/src/core/lib/iomgr/tcp_client_windows.cc +1 -1
  150. data/src/core/lib/iomgr/tcp_custom.cc +9 -9
  151. data/src/core/lib/iomgr/tcp_posix.cc +41 -41
  152. data/src/core/lib/iomgr/tcp_server_custom.cc +3 -3
  153. data/src/core/lib/iomgr/tcp_server_posix.cc +14 -1
  154. data/src/core/lib/iomgr/tcp_server_windows.cc +2 -2
  155. data/src/core/lib/iomgr/tcp_windows.cc +7 -9
  156. data/src/core/lib/iomgr/timer_generic.cc +16 -16
  157. data/src/core/lib/iomgr/timer_manager.cc +12 -11
  158. data/src/core/lib/profiling/basic_timers.cc +10 -4
  159. data/src/core/lib/security/context/security_context.cc +6 -7
  160. data/src/core/lib/security/context/security_context.h +3 -4
  161. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +1 -1
  162. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +2 -3
  163. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +1 -1
  164. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +7 -7
  165. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +7 -5
  166. data/src/core/lib/security/security_connector/security_connector.cc +0 -1
  167. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +3 -2
  168. data/src/core/lib/security/security_connector/ssl_utils.cc +30 -26
  169. data/src/core/lib/security/security_connector/ssl_utils.h +5 -1
  170. data/src/core/lib/security/transport/client_auth_filter.cc +7 -11
  171. data/src/core/lib/security/transport/secure_endpoint.cc +4 -4
  172. data/src/core/lib/security/transport/server_auth_filter.cc +2 -3
  173. data/src/core/lib/slice/slice.cc +99 -116
  174. data/src/core/lib/slice/slice_buffer.cc +5 -0
  175. data/src/core/lib/slice/slice_intern.cc +38 -95
  176. data/src/core/lib/slice/slice_internal.h +200 -2
  177. data/src/core/lib/surface/api_trace.h +1 -1
  178. data/src/core/lib/surface/call.cc +41 -35
  179. data/src/core/lib/surface/call.h +7 -2
  180. data/src/core/lib/surface/call_details.cc +0 -1
  181. data/src/core/lib/surface/completion_queue.cc +36 -27
  182. data/src/core/lib/surface/init.cc +3 -4
  183. data/src/core/lib/surface/lame_client.cc +1 -1
  184. data/src/core/lib/surface/server.cc +18 -25
  185. data/src/core/lib/surface/version.cc +1 -1
  186. data/src/core/lib/transport/bdp_estimator.cc +3 -3
  187. data/src/core/lib/transport/bdp_estimator.h +2 -2
  188. data/src/core/lib/transport/connectivity_state.cc +10 -40
  189. data/src/core/lib/transport/connectivity_state.h +0 -8
  190. data/src/core/lib/transport/error_utils.cc +12 -0
  191. data/src/core/lib/transport/metadata.cc +206 -278
  192. data/src/core/lib/transport/metadata.h +205 -10
  193. data/src/core/lib/transport/static_metadata.cc +108 -116
  194. data/src/core/lib/transport/static_metadata.h +1 -2
  195. data/src/core/lib/transport/status_metadata.cc +3 -3
  196. data/src/core/lib/transport/transport.cc +29 -66
  197. data/src/core/lib/transport/transport.h +36 -8
  198. data/src/core/lib/transport/transport_impl.h +1 -1
  199. data/src/core/tsi/fake_transport_security.cc +4 -4
  200. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +1 -1
  201. data/src/core/tsi/ssl_transport_security.cc +1 -1
  202. data/src/ruby/ext/grpc/rb_grpc.c +1 -1
  203. data/src/ruby/lib/grpc/errors.rb +22 -3
  204. data/src/ruby/lib/grpc/generic/bidi_call.rb +1 -1
  205. data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
  206. data/src/ruby/lib/grpc/version.rb +1 -1
  207. data/src/ruby/spec/errors_spec.rb +141 -0
  208. metadata +57 -33
  209. data/src/core/lib/gpr/arena.cc +0 -192
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63b1384fd0d9000c7824719ce8c26de9a34411ea0e83f84a788d6934987328b0
4
- data.tar.gz: 42960ee54e14592a653bbf07d638b456927695e04a8d76f99afd26c2c88f35dc
3
+ metadata.gz: 8f912293c78e5a29d2477565cc9f5047f08096bf7359a2ce3bdbd8d9806a3ca2
4
+ data.tar.gz: 69d3ae47781426fde883337219d1d6c7d328ab3aaa22e3d2ae2c022f5e300162
5
5
  SHA512:
6
- metadata.gz: 4265b5f33870c79271750b0e346beaef6400271ff4d95aacead82405b8007c35070267ad5ed55e02183e54c4c9bc866917f760752b0782d9d1f545c53e6548b6
7
- data.tar.gz: 83598cdcd097ded46d048b3b352ede8e5304e9f4209512f463d0914ec3b2fac3cf98bca4484da243d72b77f3448d69bd3b3d6467fb684a28e5a96d9fe8bb1bb8
6
+ metadata.gz: 6ea1bd23e9ae7390b81a6a9282e451a149e52076ce1009d2b7cc3ee7b7b8c3a6c6610991afe211c5f78777dfad22a0bfffaf307ebfba9360eed10b4f528fa4a6
7
+ data.tar.gz: 6408dc010db6b05214c91f471986b3eaa34c78e248b4bed0b2ea84570526f89b39537b5596da298b1e90a78c4a9360e52b38d2e221a6e08c59e4020ef04a6b5b
data/Makefile CHANGED
@@ -460,8 +460,8 @@ Q = @
460
460
  endif
461
461
 
462
462
  CORE_VERSION = 7.0.0
463
- CPP_VERSION = 1.20.0
464
- CSHARP_VERSION = 1.20.0
463
+ CPP_VERSION = 1.21.0
464
+ CSHARP_VERSION = 1.21.0
465
465
 
466
466
  CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
467
467
  CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
@@ -478,11 +478,11 @@ LDFLAGS += $(EXTRA_LDFLAGS)
478
478
  DEFINES += $(EXTRA_DEFINES)
479
479
  LDLIBS += $(EXTRA_LDLIBS)
480
480
 
481
- HOST_CPPFLAGS = $(CPPFLAGS)
482
- HOST_CFLAGS = $(CFLAGS)
483
- HOST_CXXFLAGS = $(CXXFLAGS)
484
- HOST_LDFLAGS = $(LDFLAGS)
485
- HOST_LDLIBS = $(LDLIBS)
481
+ HOST_CPPFLAGS += $(CPPFLAGS)
482
+ HOST_CFLAGS += $(CFLAGS)
483
+ HOST_CXXFLAGS += $(CXXFLAGS)
484
+ HOST_LDFLAGS += $(LDFLAGS)
485
+ HOST_LDLIBS += $(LDLIBS)
486
486
 
487
487
  # These are automatically computed variables.
488
488
  # There shouldn't be any need to change anything from now on.
@@ -1206,9 +1206,12 @@ error_details_test: $(BINDIR)/$(CONFIG)/error_details_test
1206
1206
  exception_test: $(BINDIR)/$(CONFIG)/exception_test
1207
1207
  filter_end2end_test: $(BINDIR)/$(CONFIG)/filter_end2end_test
1208
1208
  generic_end2end_test: $(BINDIR)/$(CONFIG)/generic_end2end_test
1209
+ global_config_env_test: $(BINDIR)/$(CONFIG)/global_config_env_test
1210
+ global_config_test: $(BINDIR)/$(CONFIG)/global_config_test
1209
1211
  golden_file_test: $(BINDIR)/$(CONFIG)/golden_file_test
1210
1212
  grpc_alts_credentials_options_test: $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test
1211
1213
  grpc_cli: $(BINDIR)/$(CONFIG)/grpc_cli
1214
+ grpc_core_map_test: $(BINDIR)/$(CONFIG)/grpc_core_map_test
1212
1215
  grpc_cpp_plugin: $(BINDIR)/$(CONFIG)/grpc_cpp_plugin
1213
1216
  grpc_csharp_plugin: $(BINDIR)/$(CONFIG)/grpc_csharp_plugin
1214
1217
  grpc_linux_system_roots_test: $(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test
@@ -1232,6 +1235,7 @@ interop_server: $(BINDIR)/$(CONFIG)/interop_server
1232
1235
  interop_test: $(BINDIR)/$(CONFIG)/interop_test
1233
1236
  json_run_localhost: $(BINDIR)/$(CONFIG)/json_run_localhost
1234
1237
  memory_test: $(BINDIR)/$(CONFIG)/memory_test
1238
+ message_allocator_end2end_test: $(BINDIR)/$(CONFIG)/message_allocator_end2end_test
1235
1239
  metrics_client: $(BINDIR)/$(CONFIG)/metrics_client
1236
1240
  mock_test: $(BINDIR)/$(CONFIG)/mock_test
1237
1241
  nonblocking_test: $(BINDIR)/$(CONFIG)/nonblocking_test
@@ -1261,6 +1265,8 @@ server_crash_test_client: $(BINDIR)/$(CONFIG)/server_crash_test_client
1261
1265
  server_early_return_test: $(BINDIR)/$(CONFIG)/server_early_return_test
1262
1266
  server_interceptors_end2end_test: $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test
1263
1267
  server_request_call_test: $(BINDIR)/$(CONFIG)/server_request_call_test
1268
+ service_config_end2end_test: $(BINDIR)/$(CONFIG)/service_config_end2end_test
1269
+ service_config_test: $(BINDIR)/$(CONFIG)/service_config_test
1264
1270
  shutdown_test: $(BINDIR)/$(CONFIG)/shutdown_test
1265
1271
  slice_hash_table_test: $(BINDIR)/$(CONFIG)/slice_hash_table_test
1266
1272
  slice_weak_hash_table_test: $(BINDIR)/$(CONFIG)/slice_weak_hash_table_test
@@ -1314,6 +1320,7 @@ h2_sockpair+trace_test: $(BINDIR)/$(CONFIG)/h2_sockpair+trace_test
1314
1320
  h2_sockpair_1byte_test: $(BINDIR)/$(CONFIG)/h2_sockpair_1byte_test
1315
1321
  h2_spiffe_test: $(BINDIR)/$(CONFIG)/h2_spiffe_test
1316
1322
  h2_ssl_test: $(BINDIR)/$(CONFIG)/h2_ssl_test
1323
+ h2_ssl_cred_reload_test: $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test
1317
1324
  h2_ssl_proxy_test: $(BINDIR)/$(CONFIG)/h2_ssl_proxy_test
1318
1325
  h2_uds_test: $(BINDIR)/$(CONFIG)/h2_uds_test
1319
1326
  inproc_test: $(BINDIR)/$(CONFIG)/inproc_test
@@ -1405,9 +1412,9 @@ pc_cxx: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc
1405
1412
  pc_cxx_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc
1406
1413
 
1407
1414
  ifeq ($(EMBED_OPENSSL),true)
1408
- privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libgrpc++_core_stats.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libhttp2_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_lib.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libbenchmark.a
1415
+ privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_core_stats.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libhttp2_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_lib.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libbenchmark.a
1409
1416
  else
1410
- privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libgrpc++_core_stats.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libhttp2_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_lib.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libbenchmark.a
1417
+ privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_core_stats.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libhttp2_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_lib.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libbenchmark.a
1411
1418
  endif
1412
1419
 
1413
1420
 
@@ -1577,6 +1584,7 @@ buildtests_c: privatelibs_c \
1577
1584
  $(BINDIR)/$(CONFIG)/h2_sockpair_1byte_test \
1578
1585
  $(BINDIR)/$(CONFIG)/h2_spiffe_test \
1579
1586
  $(BINDIR)/$(CONFIG)/h2_ssl_test \
1587
+ $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test \
1580
1588
  $(BINDIR)/$(CONFIG)/h2_ssl_proxy_test \
1581
1589
  $(BINDIR)/$(CONFIG)/h2_uds_test \
1582
1590
  $(BINDIR)/$(CONFIG)/inproc_test \
@@ -1677,9 +1685,12 @@ buildtests_cxx: privatelibs_cxx \
1677
1685
  $(BINDIR)/$(CONFIG)/exception_test \
1678
1686
  $(BINDIR)/$(CONFIG)/filter_end2end_test \
1679
1687
  $(BINDIR)/$(CONFIG)/generic_end2end_test \
1688
+ $(BINDIR)/$(CONFIG)/global_config_env_test \
1689
+ $(BINDIR)/$(CONFIG)/global_config_test \
1680
1690
  $(BINDIR)/$(CONFIG)/golden_file_test \
1681
1691
  $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test \
1682
1692
  $(BINDIR)/$(CONFIG)/grpc_cli \
1693
+ $(BINDIR)/$(CONFIG)/grpc_core_map_test \
1683
1694
  $(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test \
1684
1695
  $(BINDIR)/$(CONFIG)/grpc_tool_test \
1685
1696
  $(BINDIR)/$(CONFIG)/grpclb_api_test \
@@ -1696,6 +1707,7 @@ buildtests_cxx: privatelibs_cxx \
1696
1707
  $(BINDIR)/$(CONFIG)/interop_test \
1697
1708
  $(BINDIR)/$(CONFIG)/json_run_localhost \
1698
1709
  $(BINDIR)/$(CONFIG)/memory_test \
1710
+ $(BINDIR)/$(CONFIG)/message_allocator_end2end_test \
1699
1711
  $(BINDIR)/$(CONFIG)/metrics_client \
1700
1712
  $(BINDIR)/$(CONFIG)/mock_test \
1701
1713
  $(BINDIR)/$(CONFIG)/nonblocking_test \
@@ -1725,6 +1737,8 @@ buildtests_cxx: privatelibs_cxx \
1725
1737
  $(BINDIR)/$(CONFIG)/server_early_return_test \
1726
1738
  $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test \
1727
1739
  $(BINDIR)/$(CONFIG)/server_request_call_test \
1740
+ $(BINDIR)/$(CONFIG)/service_config_end2end_test \
1741
+ $(BINDIR)/$(CONFIG)/service_config_test \
1728
1742
  $(BINDIR)/$(CONFIG)/shutdown_test \
1729
1743
  $(BINDIR)/$(CONFIG)/slice_hash_table_test \
1730
1744
  $(BINDIR)/$(CONFIG)/slice_weak_hash_table_test \
@@ -1818,9 +1832,12 @@ buildtests_cxx: privatelibs_cxx \
1818
1832
  $(BINDIR)/$(CONFIG)/exception_test \
1819
1833
  $(BINDIR)/$(CONFIG)/filter_end2end_test \
1820
1834
  $(BINDIR)/$(CONFIG)/generic_end2end_test \
1835
+ $(BINDIR)/$(CONFIG)/global_config_env_test \
1836
+ $(BINDIR)/$(CONFIG)/global_config_test \
1821
1837
  $(BINDIR)/$(CONFIG)/golden_file_test \
1822
1838
  $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test \
1823
1839
  $(BINDIR)/$(CONFIG)/grpc_cli \
1840
+ $(BINDIR)/$(CONFIG)/grpc_core_map_test \
1824
1841
  $(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test \
1825
1842
  $(BINDIR)/$(CONFIG)/grpc_tool_test \
1826
1843
  $(BINDIR)/$(CONFIG)/grpclb_api_test \
@@ -1837,6 +1854,7 @@ buildtests_cxx: privatelibs_cxx \
1837
1854
  $(BINDIR)/$(CONFIG)/interop_test \
1838
1855
  $(BINDIR)/$(CONFIG)/json_run_localhost \
1839
1856
  $(BINDIR)/$(CONFIG)/memory_test \
1857
+ $(BINDIR)/$(CONFIG)/message_allocator_end2end_test \
1840
1858
  $(BINDIR)/$(CONFIG)/metrics_client \
1841
1859
  $(BINDIR)/$(CONFIG)/mock_test \
1842
1860
  $(BINDIR)/$(CONFIG)/nonblocking_test \
@@ -1866,6 +1884,8 @@ buildtests_cxx: privatelibs_cxx \
1866
1884
  $(BINDIR)/$(CONFIG)/server_early_return_test \
1867
1885
  $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test \
1868
1886
  $(BINDIR)/$(CONFIG)/server_request_call_test \
1887
+ $(BINDIR)/$(CONFIG)/service_config_end2end_test \
1888
+ $(BINDIR)/$(CONFIG)/service_config_test \
1869
1889
  $(BINDIR)/$(CONFIG)/shutdown_test \
1870
1890
  $(BINDIR)/$(CONFIG)/slice_hash_table_test \
1871
1891
  $(BINDIR)/$(CONFIG)/slice_weak_hash_table_test \
@@ -2307,10 +2327,16 @@ test_cxx: buildtests_cxx
2307
2327
  $(Q) $(BINDIR)/$(CONFIG)/filter_end2end_test || ( echo test filter_end2end_test failed ; exit 1 )
2308
2328
  $(E) "[RUN] Testing generic_end2end_test"
2309
2329
  $(Q) $(BINDIR)/$(CONFIG)/generic_end2end_test || ( echo test generic_end2end_test failed ; exit 1 )
2330
+ $(E) "[RUN] Testing global_config_env_test"
2331
+ $(Q) $(BINDIR)/$(CONFIG)/global_config_env_test || ( echo test global_config_env_test failed ; exit 1 )
2332
+ $(E) "[RUN] Testing global_config_test"
2333
+ $(Q) $(BINDIR)/$(CONFIG)/global_config_test || ( echo test global_config_test failed ; exit 1 )
2310
2334
  $(E) "[RUN] Testing golden_file_test"
2311
2335
  $(Q) $(BINDIR)/$(CONFIG)/golden_file_test || ( echo test golden_file_test failed ; exit 1 )
2312
2336
  $(E) "[RUN] Testing grpc_alts_credentials_options_test"
2313
2337
  $(Q) $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test || ( echo test grpc_alts_credentials_options_test failed ; exit 1 )
2338
+ $(E) "[RUN] Testing grpc_core_map_test"
2339
+ $(Q) $(BINDIR)/$(CONFIG)/grpc_core_map_test || ( echo test grpc_core_map_test failed ; exit 1 )
2314
2340
  $(E) "[RUN] Testing grpc_linux_system_roots_test"
2315
2341
  $(Q) $(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test || ( echo test grpc_linux_system_roots_test failed ; exit 1 )
2316
2342
  $(E) "[RUN] Testing grpc_tool_test"
@@ -2333,6 +2359,8 @@ test_cxx: buildtests_cxx
2333
2359
  $(Q) $(BINDIR)/$(CONFIG)/interop_test || ( echo test interop_test failed ; exit 1 )
2334
2360
  $(E) "[RUN] Testing memory_test"
2335
2361
  $(Q) $(BINDIR)/$(CONFIG)/memory_test || ( echo test memory_test failed ; exit 1 )
2362
+ $(E) "[RUN] Testing message_allocator_end2end_test"
2363
+ $(Q) $(BINDIR)/$(CONFIG)/message_allocator_end2end_test || ( echo test message_allocator_end2end_test failed ; exit 1 )
2336
2364
  $(E) "[RUN] Testing mock_test"
2337
2365
  $(Q) $(BINDIR)/$(CONFIG)/mock_test || ( echo test mock_test failed ; exit 1 )
2338
2366
  $(E) "[RUN] Testing nonblocking_test"
@@ -2377,6 +2405,10 @@ test_cxx: buildtests_cxx
2377
2405
  $(Q) $(BINDIR)/$(CONFIG)/server_interceptors_end2end_test || ( echo test server_interceptors_end2end_test failed ; exit 1 )
2378
2406
  $(E) "[RUN] Testing server_request_call_test"
2379
2407
  $(Q) $(BINDIR)/$(CONFIG)/server_request_call_test || ( echo test server_request_call_test failed ; exit 1 )
2408
+ $(E) "[RUN] Testing service_config_end2end_test"
2409
+ $(Q) $(BINDIR)/$(CONFIG)/service_config_end2end_test || ( echo test service_config_end2end_test failed ; exit 1 )
2410
+ $(E) "[RUN] Testing service_config_test"
2411
+ $(Q) $(BINDIR)/$(CONFIG)/service_config_test || ( echo test service_config_test failed ; exit 1 )
2380
2412
  $(E) "[RUN] Testing shutdown_test"
2381
2413
  $(Q) $(BINDIR)/$(CONFIG)/shutdown_test || ( echo test shutdown_test failed ; exit 1 )
2382
2414
  $(E) "[RUN] Testing slice_hash_table_test"
@@ -3303,7 +3335,6 @@ endif
3303
3335
 
3304
3336
  LIBGPR_SRC = \
3305
3337
  src/core/lib/gpr/alloc.cc \
3306
- src/core/lib/gpr/arena.cc \
3307
3338
  src/core/lib/gpr/atm.cc \
3308
3339
  src/core/lib/gpr/cpu_iphone.cc \
3309
3340
  src/core/lib/gpr/cpu_linux.cc \
@@ -3336,7 +3367,9 @@ LIBGPR_SRC = \
3336
3367
  src/core/lib/gpr/tmpfile_posix.cc \
3337
3368
  src/core/lib/gpr/tmpfile_windows.cc \
3338
3369
  src/core/lib/gpr/wrap_memcpy.cc \
3370
+ src/core/lib/gprpp/arena.cc \
3339
3371
  src/core/lib/gprpp/fork.cc \
3372
+ src/core/lib/gprpp/global_config_env.cc \
3340
3373
  src/core/lib/gprpp/thd_posix.cc \
3341
3374
  src/core/lib/gprpp/thd_windows.cc \
3342
3375
  src/core/lib/profiling/basic_timers.cc \
@@ -3427,6 +3460,7 @@ LIBGRPC_SRC = \
3427
3460
  src/core/lib/channel/handshaker_registry.cc \
3428
3461
  src/core/lib/channel/status_util.cc \
3429
3462
  src/core/lib/compression/compression.cc \
3463
+ src/core/lib/compression/compression_args.cc \
3430
3464
  src/core/lib/compression/compression_internal.cc \
3431
3465
  src/core/lib/compression/message_compress.cc \
3432
3466
  src/core/lib/compression/stream_compression.cc \
@@ -3439,12 +3473,15 @@ LIBGRPC_SRC = \
3439
3473
  src/core/lib/http/parser.cc \
3440
3474
  src/core/lib/iomgr/buffer_list.cc \
3441
3475
  src/core/lib/iomgr/call_combiner.cc \
3476
+ src/core/lib/iomgr/cfstream_handle.cc \
3442
3477
  src/core/lib/iomgr/combiner.cc \
3443
3478
  src/core/lib/iomgr/endpoint.cc \
3479
+ src/core/lib/iomgr/endpoint_cfstream.cc \
3444
3480
  src/core/lib/iomgr/endpoint_pair_posix.cc \
3445
3481
  src/core/lib/iomgr/endpoint_pair_uv.cc \
3446
3482
  src/core/lib/iomgr/endpoint_pair_windows.cc \
3447
3483
  src/core/lib/iomgr/error.cc \
3484
+ src/core/lib/iomgr/error_cfstream.cc \
3448
3485
  src/core/lib/iomgr/ev_epoll1_linux.cc \
3449
3486
  src/core/lib/iomgr/ev_epollex_linux.cc \
3450
3487
  src/core/lib/iomgr/ev_poll_posix.cc \
@@ -3465,6 +3502,7 @@ LIBGRPC_SRC = \
3465
3502
  src/core/lib/iomgr/iomgr_custom.cc \
3466
3503
  src/core/lib/iomgr/iomgr_internal.cc \
3467
3504
  src/core/lib/iomgr/iomgr_posix.cc \
3505
+ src/core/lib/iomgr/iomgr_posix_cfstream.cc \
3468
3506
  src/core/lib/iomgr/iomgr_uv.cc \
3469
3507
  src/core/lib/iomgr/iomgr_windows.cc \
3470
3508
  src/core/lib/iomgr/is_epollexclusive_available.cc \
@@ -3493,6 +3531,7 @@ LIBGRPC_SRC = \
3493
3531
  src/core/lib/iomgr/socket_utils_windows.cc \
3494
3532
  src/core/lib/iomgr/socket_windows.cc \
3495
3533
  src/core/lib/iomgr/tcp_client.cc \
3534
+ src/core/lib/iomgr/tcp_client_cfstream.cc \
3496
3535
  src/core/lib/iomgr/tcp_client_custom.cc \
3497
3536
  src/core/lib/iomgr/tcp_client_posix.cc \
3498
3537
  src/core/lib/iomgr/tcp_client_windows.cc \
@@ -3726,12 +3765,15 @@ LIBGRPC_SRC = \
3726
3765
  src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \
3727
3766
  src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc \
3728
3767
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc \
3768
+ src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc \
3729
3769
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc \
3730
3770
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc \
3731
3771
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc \
3732
3772
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc \
3773
+ src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc \
3733
3774
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc \
3734
3775
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc \
3776
+ src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc \
3735
3777
  src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \
3736
3778
  src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
3737
3779
  src/core/ext/filters/census/grpc_context.cc \
@@ -3847,6 +3889,7 @@ LIBGRPC_CRONET_SRC = \
3847
3889
  src/core/lib/channel/handshaker_registry.cc \
3848
3890
  src/core/lib/channel/status_util.cc \
3849
3891
  src/core/lib/compression/compression.cc \
3892
+ src/core/lib/compression/compression_args.cc \
3850
3893
  src/core/lib/compression/compression_internal.cc \
3851
3894
  src/core/lib/compression/message_compress.cc \
3852
3895
  src/core/lib/compression/stream_compression.cc \
@@ -3859,12 +3902,15 @@ LIBGRPC_CRONET_SRC = \
3859
3902
  src/core/lib/http/parser.cc \
3860
3903
  src/core/lib/iomgr/buffer_list.cc \
3861
3904
  src/core/lib/iomgr/call_combiner.cc \
3905
+ src/core/lib/iomgr/cfstream_handle.cc \
3862
3906
  src/core/lib/iomgr/combiner.cc \
3863
3907
  src/core/lib/iomgr/endpoint.cc \
3908
+ src/core/lib/iomgr/endpoint_cfstream.cc \
3864
3909
  src/core/lib/iomgr/endpoint_pair_posix.cc \
3865
3910
  src/core/lib/iomgr/endpoint_pair_uv.cc \
3866
3911
  src/core/lib/iomgr/endpoint_pair_windows.cc \
3867
3912
  src/core/lib/iomgr/error.cc \
3913
+ src/core/lib/iomgr/error_cfstream.cc \
3868
3914
  src/core/lib/iomgr/ev_epoll1_linux.cc \
3869
3915
  src/core/lib/iomgr/ev_epollex_linux.cc \
3870
3916
  src/core/lib/iomgr/ev_poll_posix.cc \
@@ -3885,6 +3931,7 @@ LIBGRPC_CRONET_SRC = \
3885
3931
  src/core/lib/iomgr/iomgr_custom.cc \
3886
3932
  src/core/lib/iomgr/iomgr_internal.cc \
3887
3933
  src/core/lib/iomgr/iomgr_posix.cc \
3934
+ src/core/lib/iomgr/iomgr_posix_cfstream.cc \
3888
3935
  src/core/lib/iomgr/iomgr_uv.cc \
3889
3936
  src/core/lib/iomgr/iomgr_windows.cc \
3890
3937
  src/core/lib/iomgr/is_epollexclusive_available.cc \
@@ -3913,6 +3960,7 @@ LIBGRPC_CRONET_SRC = \
3913
3960
  src/core/lib/iomgr/socket_utils_windows.cc \
3914
3961
  src/core/lib/iomgr/socket_windows.cc \
3915
3962
  src/core/lib/iomgr/tcp_client.cc \
3963
+ src/core/lib/iomgr/tcp_client_cfstream.cc \
3916
3964
  src/core/lib/iomgr/tcp_client_custom.cc \
3917
3965
  src/core/lib/iomgr/tcp_client_posix.cc \
3918
3966
  src/core/lib/iomgr/tcp_client_windows.cc \
@@ -4251,6 +4299,7 @@ LIBGRPC_TEST_UTIL_SRC = \
4251
4299
  src/core/lib/channel/handshaker_registry.cc \
4252
4300
  src/core/lib/channel/status_util.cc \
4253
4301
  src/core/lib/compression/compression.cc \
4302
+ src/core/lib/compression/compression_args.cc \
4254
4303
  src/core/lib/compression/compression_internal.cc \
4255
4304
  src/core/lib/compression/message_compress.cc \
4256
4305
  src/core/lib/compression/stream_compression.cc \
@@ -4263,12 +4312,15 @@ LIBGRPC_TEST_UTIL_SRC = \
4263
4312
  src/core/lib/http/parser.cc \
4264
4313
  src/core/lib/iomgr/buffer_list.cc \
4265
4314
  src/core/lib/iomgr/call_combiner.cc \
4315
+ src/core/lib/iomgr/cfstream_handle.cc \
4266
4316
  src/core/lib/iomgr/combiner.cc \
4267
4317
  src/core/lib/iomgr/endpoint.cc \
4318
+ src/core/lib/iomgr/endpoint_cfstream.cc \
4268
4319
  src/core/lib/iomgr/endpoint_pair_posix.cc \
4269
4320
  src/core/lib/iomgr/endpoint_pair_uv.cc \
4270
4321
  src/core/lib/iomgr/endpoint_pair_windows.cc \
4271
4322
  src/core/lib/iomgr/error.cc \
4323
+ src/core/lib/iomgr/error_cfstream.cc \
4272
4324
  src/core/lib/iomgr/ev_epoll1_linux.cc \
4273
4325
  src/core/lib/iomgr/ev_epollex_linux.cc \
4274
4326
  src/core/lib/iomgr/ev_poll_posix.cc \
@@ -4289,6 +4341,7 @@ LIBGRPC_TEST_UTIL_SRC = \
4289
4341
  src/core/lib/iomgr/iomgr_custom.cc \
4290
4342
  src/core/lib/iomgr/iomgr_internal.cc \
4291
4343
  src/core/lib/iomgr/iomgr_posix.cc \
4344
+ src/core/lib/iomgr/iomgr_posix_cfstream.cc \
4292
4345
  src/core/lib/iomgr/iomgr_uv.cc \
4293
4346
  src/core/lib/iomgr/iomgr_windows.cc \
4294
4347
  src/core/lib/iomgr/is_epollexclusive_available.cc \
@@ -4317,6 +4370,7 @@ LIBGRPC_TEST_UTIL_SRC = \
4317
4370
  src/core/lib/iomgr/socket_utils_windows.cc \
4318
4371
  src/core/lib/iomgr/socket_windows.cc \
4319
4372
  src/core/lib/iomgr/tcp_client.cc \
4373
+ src/core/lib/iomgr/tcp_client_cfstream.cc \
4320
4374
  src/core/lib/iomgr/tcp_client_custom.cc \
4321
4375
  src/core/lib/iomgr/tcp_client_posix.cc \
4322
4376
  src/core/lib/iomgr/tcp_client_windows.cc \
@@ -4562,6 +4616,7 @@ LIBGRPC_TEST_UTIL_UNSECURE_SRC = \
4562
4616
  src/core/lib/channel/handshaker_registry.cc \
4563
4617
  src/core/lib/channel/status_util.cc \
4564
4618
  src/core/lib/compression/compression.cc \
4619
+ src/core/lib/compression/compression_args.cc \
4565
4620
  src/core/lib/compression/compression_internal.cc \
4566
4621
  src/core/lib/compression/message_compress.cc \
4567
4622
  src/core/lib/compression/stream_compression.cc \
@@ -4574,12 +4629,15 @@ LIBGRPC_TEST_UTIL_UNSECURE_SRC = \
4574
4629
  src/core/lib/http/parser.cc \
4575
4630
  src/core/lib/iomgr/buffer_list.cc \
4576
4631
  src/core/lib/iomgr/call_combiner.cc \
4632
+ src/core/lib/iomgr/cfstream_handle.cc \
4577
4633
  src/core/lib/iomgr/combiner.cc \
4578
4634
  src/core/lib/iomgr/endpoint.cc \
4635
+ src/core/lib/iomgr/endpoint_cfstream.cc \
4579
4636
  src/core/lib/iomgr/endpoint_pair_posix.cc \
4580
4637
  src/core/lib/iomgr/endpoint_pair_uv.cc \
4581
4638
  src/core/lib/iomgr/endpoint_pair_windows.cc \
4582
4639
  src/core/lib/iomgr/error.cc \
4640
+ src/core/lib/iomgr/error_cfstream.cc \
4583
4641
  src/core/lib/iomgr/ev_epoll1_linux.cc \
4584
4642
  src/core/lib/iomgr/ev_epollex_linux.cc \
4585
4643
  src/core/lib/iomgr/ev_poll_posix.cc \
@@ -4600,6 +4658,7 @@ LIBGRPC_TEST_UTIL_UNSECURE_SRC = \
4600
4658
  src/core/lib/iomgr/iomgr_custom.cc \
4601
4659
  src/core/lib/iomgr/iomgr_internal.cc \
4602
4660
  src/core/lib/iomgr/iomgr_posix.cc \
4661
+ src/core/lib/iomgr/iomgr_posix_cfstream.cc \
4603
4662
  src/core/lib/iomgr/iomgr_uv.cc \
4604
4663
  src/core/lib/iomgr/iomgr_windows.cc \
4605
4664
  src/core/lib/iomgr/is_epollexclusive_available.cc \
@@ -4628,6 +4687,7 @@ LIBGRPC_TEST_UTIL_UNSECURE_SRC = \
4628
4687
  src/core/lib/iomgr/socket_utils_windows.cc \
4629
4688
  src/core/lib/iomgr/socket_windows.cc \
4630
4689
  src/core/lib/iomgr/tcp_client.cc \
4690
+ src/core/lib/iomgr/tcp_client_cfstream.cc \
4631
4691
  src/core/lib/iomgr/tcp_client_custom.cc \
4632
4692
  src/core/lib/iomgr/tcp_client_posix.cc \
4633
4693
  src/core/lib/iomgr/tcp_client_windows.cc \
@@ -4836,6 +4896,7 @@ LIBGRPC_UNSECURE_SRC = \
4836
4896
  src/core/lib/channel/handshaker_registry.cc \
4837
4897
  src/core/lib/channel/status_util.cc \
4838
4898
  src/core/lib/compression/compression.cc \
4899
+ src/core/lib/compression/compression_args.cc \
4839
4900
  src/core/lib/compression/compression_internal.cc \
4840
4901
  src/core/lib/compression/message_compress.cc \
4841
4902
  src/core/lib/compression/stream_compression.cc \
@@ -4848,12 +4909,15 @@ LIBGRPC_UNSECURE_SRC = \
4848
4909
  src/core/lib/http/parser.cc \
4849
4910
  src/core/lib/iomgr/buffer_list.cc \
4850
4911
  src/core/lib/iomgr/call_combiner.cc \
4912
+ src/core/lib/iomgr/cfstream_handle.cc \
4851
4913
  src/core/lib/iomgr/combiner.cc \
4852
4914
  src/core/lib/iomgr/endpoint.cc \
4915
+ src/core/lib/iomgr/endpoint_cfstream.cc \
4853
4916
  src/core/lib/iomgr/endpoint_pair_posix.cc \
4854
4917
  src/core/lib/iomgr/endpoint_pair_uv.cc \
4855
4918
  src/core/lib/iomgr/endpoint_pair_windows.cc \
4856
4919
  src/core/lib/iomgr/error.cc \
4920
+ src/core/lib/iomgr/error_cfstream.cc \
4857
4921
  src/core/lib/iomgr/ev_epoll1_linux.cc \
4858
4922
  src/core/lib/iomgr/ev_epollex_linux.cc \
4859
4923
  src/core/lib/iomgr/ev_poll_posix.cc \
@@ -4874,6 +4938,7 @@ LIBGRPC_UNSECURE_SRC = \
4874
4938
  src/core/lib/iomgr/iomgr_custom.cc \
4875
4939
  src/core/lib/iomgr/iomgr_internal.cc \
4876
4940
  src/core/lib/iomgr/iomgr_posix.cc \
4941
+ src/core/lib/iomgr/iomgr_posix_cfstream.cc \
4877
4942
  src/core/lib/iomgr/iomgr_uv.cc \
4878
4943
  src/core/lib/iomgr/iomgr_windows.cc \
4879
4944
  src/core/lib/iomgr/is_epollexclusive_available.cc \
@@ -4902,6 +4967,7 @@ LIBGRPC_UNSECURE_SRC = \
4902
4967
  src/core/lib/iomgr/socket_utils_windows.cc \
4903
4968
  src/core/lib/iomgr/socket_windows.cc \
4904
4969
  src/core/lib/iomgr/tcp_client.cc \
4970
+ src/core/lib/iomgr/tcp_client_cfstream.cc \
4905
4971
  src/core/lib/iomgr/tcp_client_custom.cc \
4906
4972
  src/core/lib/iomgr/tcp_client_posix.cc \
4907
4973
  src/core/lib/iomgr/tcp_client_windows.cc \
@@ -5043,12 +5109,15 @@ LIBGRPC_UNSECURE_SRC = \
5043
5109
  src/core/ext/transport/inproc/inproc_transport.cc \
5044
5110
  src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc \
5045
5111
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc \
5112
+ src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc \
5046
5113
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc \
5047
5114
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc \
5048
5115
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc \
5049
5116
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc \
5117
+ src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc \
5050
5118
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc \
5051
5119
  src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc \
5120
+ src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc \
5052
5121
  src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \
5053
5122
  src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
5054
5123
  src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \
@@ -5226,6 +5295,55 @@ endif
5226
5295
  endif
5227
5296
 
5228
5297
 
5298
+ LIBDNS_TEST_UTIL_SRC = \
5299
+ test/cpp/naming/dns_test_util.cc \
5300
+
5301
+ PUBLIC_HEADERS_CXX += \
5302
+
5303
+ LIBDNS_TEST_UTIL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBDNS_TEST_UTIL_SRC))))
5304
+
5305
+
5306
+ ifeq ($(NO_SECURE),true)
5307
+
5308
+ # You can't build secure libraries if you don't have OpenSSL.
5309
+
5310
+ $(LIBDIR)/$(CONFIG)/libdns_test_util.a: openssl_dep_error
5311
+
5312
+
5313
+ else
5314
+
5315
+ ifeq ($(NO_PROTOBUF),true)
5316
+
5317
+ # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
5318
+
5319
+ $(LIBDIR)/$(CONFIG)/libdns_test_util.a: protobuf_dep_error
5320
+
5321
+
5322
+ else
5323
+
5324
+ $(LIBDIR)/$(CONFIG)/libdns_test_util.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(PROTOBUF_DEP) $(LIBDNS_TEST_UTIL_OBJS)
5325
+ $(E) "[AR] Creating $@"
5326
+ $(Q) mkdir -p `dirname $@`
5327
+ $(Q) rm -f $(LIBDIR)/$(CONFIG)/libdns_test_util.a
5328
+ $(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDNS_TEST_UTIL_OBJS)
5329
+ ifeq ($(SYSTEM),Darwin)
5330
+ $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libdns_test_util.a
5331
+ endif
5332
+
5333
+
5334
+
5335
+
5336
+ endif
5337
+
5338
+ endif
5339
+
5340
+ ifneq ($(NO_SECURE),true)
5341
+ ifneq ($(NO_DEPS),true)
5342
+ -include $(LIBDNS_TEST_UTIL_OBJS:.o=.dep)
5343
+ endif
5344
+ endif
5345
+
5346
+
5229
5347
  LIBGRPC++_SRC = \
5230
5348
  src/cpp/client/insecure_credentials.cc \
5231
5349
  src/cpp/client/secure_credentials.cc \
@@ -5323,16 +5441,20 @@ PUBLIC_HEADERS_CXX += \
5323
5441
  include/grpcpp/alarm.h \
5324
5442
  include/grpcpp/alarm_impl.h \
5325
5443
  include/grpcpp/channel.h \
5444
+ include/grpcpp/channel_impl.h \
5326
5445
  include/grpcpp/client_context.h \
5327
5446
  include/grpcpp/completion_queue.h \
5328
5447
  include/grpcpp/create_channel.h \
5448
+ include/grpcpp/create_channel_impl.h \
5329
5449
  include/grpcpp/create_channel_posix.h \
5330
5450
  include/grpcpp/create_channel_posix_impl.h \
5331
5451
  include/grpcpp/ext/health_check_service_server_builder_option.h \
5332
5452
  include/grpcpp/generic/async_generic_service.h \
5333
5453
  include/grpcpp/generic/generic_stub.h \
5454
+ include/grpcpp/generic/generic_stub_impl.h \
5334
5455
  include/grpcpp/grpcpp.h \
5335
5456
  include/grpcpp/health_check_service_interface.h \
5457
+ include/grpcpp/health_check_service_interface_impl.h \
5336
5458
  include/grpcpp/impl/call.h \
5337
5459
  include/grpcpp/impl/channel_argument_option.h \
5338
5460
  include/grpcpp/impl/client_unary_call.h \
@@ -5346,25 +5468,34 @@ PUBLIC_HEADERS_CXX += \
5346
5468
  include/grpcpp/impl/server_builder_option_impl.h \
5347
5469
  include/grpcpp/impl/server_builder_plugin.h \
5348
5470
  include/grpcpp/impl/server_initializer.h \
5471
+ include/grpcpp/impl/server_initializer_impl.h \
5349
5472
  include/grpcpp/impl/service_type.h \
5350
5473
  include/grpcpp/resource_quota.h \
5474
+ include/grpcpp/resource_quota_impl.h \
5351
5475
  include/grpcpp/security/auth_context.h \
5352
5476
  include/grpcpp/security/auth_metadata_processor.h \
5477
+ include/grpcpp/security/auth_metadata_processor_impl.h \
5353
5478
  include/grpcpp/security/credentials.h \
5479
+ include/grpcpp/security/credentials_impl.h \
5354
5480
  include/grpcpp/security/server_credentials.h \
5481
+ include/grpcpp/security/server_credentials_impl.h \
5355
5482
  include/grpcpp/server.h \
5356
5483
  include/grpcpp/server_builder.h \
5484
+ include/grpcpp/server_builder_impl.h \
5357
5485
  include/grpcpp/server_context.h \
5486
+ include/grpcpp/server_impl.h \
5358
5487
  include/grpcpp/server_posix.h \
5359
5488
  include/grpcpp/server_posix_impl.h \
5360
5489
  include/grpcpp/support/async_stream.h \
5361
5490
  include/grpcpp/support/async_unary_call.h \
5362
5491
  include/grpcpp/support/byte_buffer.h \
5363
5492
  include/grpcpp/support/channel_arguments.h \
5493
+ include/grpcpp/support/channel_arguments_impl.h \
5364
5494
  include/grpcpp/support/client_callback.h \
5365
5495
  include/grpcpp/support/client_interceptor.h \
5366
5496
  include/grpcpp/support/config.h \
5367
5497
  include/grpcpp/support/interceptor.h \
5498
+ include/grpcpp/support/message_allocator.h \
5368
5499
  include/grpcpp/support/proto_buffer_reader.h \
5369
5500
  include/grpcpp/support/proto_buffer_writer.h \
5370
5501
  include/grpcpp/support/server_callback.h \
@@ -5472,6 +5603,7 @@ PUBLIC_HEADERS_CXX += \
5472
5603
  include/grpcpp/impl/codegen/client_interceptor.h \
5473
5604
  include/grpcpp/impl/codegen/client_unary_call.h \
5474
5605
  include/grpcpp/impl/codegen/completion_queue.h \
5606
+ include/grpcpp/impl/codegen/completion_queue_impl.h \
5475
5607
  include/grpcpp/impl/codegen/completion_queue_tag.h \
5476
5608
  include/grpcpp/impl/codegen/config.h \
5477
5609
  include/grpcpp/impl/codegen/core_codegen_interface.h \
@@ -5480,6 +5612,7 @@ PUBLIC_HEADERS_CXX += \
5480
5612
  include/grpcpp/impl/codegen/intercepted_channel.h \
5481
5613
  include/grpcpp/impl/codegen/interceptor.h \
5482
5614
  include/grpcpp/impl/codegen/interceptor_common.h \
5615
+ include/grpcpp/impl/codegen/message_allocator.h \
5483
5616
  include/grpcpp/impl/codegen/metadata_map.h \
5484
5617
  include/grpcpp/impl/codegen/method_handler_impl.h \
5485
5618
  include/grpcpp/impl/codegen/rpc_method.h \
@@ -5498,6 +5631,7 @@ PUBLIC_HEADERS_CXX += \
5498
5631
  include/grpcpp/impl/codegen/stub_options.h \
5499
5632
  include/grpcpp/impl/codegen/sync_stream.h \
5500
5633
  include/grpcpp/impl/codegen/time.h \
5634
+ include/grpcpp/impl/codegen/sync.h \
5501
5635
  include/grpc++/impl/codegen/proto_utils.h \
5502
5636
  include/grpcpp/impl/codegen/proto_buffer_reader.h \
5503
5637
  include/grpcpp/impl/codegen/proto_buffer_writer.h \
@@ -5702,6 +5836,7 @@ LIBGRPC++_CRONET_SRC = \
5702
5836
  src/core/lib/channel/handshaker_registry.cc \
5703
5837
  src/core/lib/channel/status_util.cc \
5704
5838
  src/core/lib/compression/compression.cc \
5839
+ src/core/lib/compression/compression_args.cc \
5705
5840
  src/core/lib/compression/compression_internal.cc \
5706
5841
  src/core/lib/compression/message_compress.cc \
5707
5842
  src/core/lib/compression/stream_compression.cc \
@@ -5714,12 +5849,15 @@ LIBGRPC++_CRONET_SRC = \
5714
5849
  src/core/lib/http/parser.cc \
5715
5850
  src/core/lib/iomgr/buffer_list.cc \
5716
5851
  src/core/lib/iomgr/call_combiner.cc \
5852
+ src/core/lib/iomgr/cfstream_handle.cc \
5717
5853
  src/core/lib/iomgr/combiner.cc \
5718
5854
  src/core/lib/iomgr/endpoint.cc \
5855
+ src/core/lib/iomgr/endpoint_cfstream.cc \
5719
5856
  src/core/lib/iomgr/endpoint_pair_posix.cc \
5720
5857
  src/core/lib/iomgr/endpoint_pair_uv.cc \
5721
5858
  src/core/lib/iomgr/endpoint_pair_windows.cc \
5722
5859
  src/core/lib/iomgr/error.cc \
5860
+ src/core/lib/iomgr/error_cfstream.cc \
5723
5861
  src/core/lib/iomgr/ev_epoll1_linux.cc \
5724
5862
  src/core/lib/iomgr/ev_epollex_linux.cc \
5725
5863
  src/core/lib/iomgr/ev_poll_posix.cc \
@@ -5740,6 +5878,7 @@ LIBGRPC++_CRONET_SRC = \
5740
5878
  src/core/lib/iomgr/iomgr_custom.cc \
5741
5879
  src/core/lib/iomgr/iomgr_internal.cc \
5742
5880
  src/core/lib/iomgr/iomgr_posix.cc \
5881
+ src/core/lib/iomgr/iomgr_posix_cfstream.cc \
5743
5882
  src/core/lib/iomgr/iomgr_uv.cc \
5744
5883
  src/core/lib/iomgr/iomgr_windows.cc \
5745
5884
  src/core/lib/iomgr/is_epollexclusive_available.cc \
@@ -5768,6 +5907,7 @@ LIBGRPC++_CRONET_SRC = \
5768
5907
  src/core/lib/iomgr/socket_utils_windows.cc \
5769
5908
  src/core/lib/iomgr/socket_windows.cc \
5770
5909
  src/core/lib/iomgr/tcp_client.cc \
5910
+ src/core/lib/iomgr/tcp_client_cfstream.cc \
5771
5911
  src/core/lib/iomgr/tcp_client_custom.cc \
5772
5912
  src/core/lib/iomgr/tcp_client_posix.cc \
5773
5913
  src/core/lib/iomgr/tcp_client_windows.cc \
@@ -5925,16 +6065,20 @@ PUBLIC_HEADERS_CXX += \
5925
6065
  include/grpcpp/alarm.h \
5926
6066
  include/grpcpp/alarm_impl.h \
5927
6067
  include/grpcpp/channel.h \
6068
+ include/grpcpp/channel_impl.h \
5928
6069
  include/grpcpp/client_context.h \
5929
6070
  include/grpcpp/completion_queue.h \
5930
6071
  include/grpcpp/create_channel.h \
6072
+ include/grpcpp/create_channel_impl.h \
5931
6073
  include/grpcpp/create_channel_posix.h \
5932
6074
  include/grpcpp/create_channel_posix_impl.h \
5933
6075
  include/grpcpp/ext/health_check_service_server_builder_option.h \
5934
6076
  include/grpcpp/generic/async_generic_service.h \
5935
6077
  include/grpcpp/generic/generic_stub.h \
6078
+ include/grpcpp/generic/generic_stub_impl.h \
5936
6079
  include/grpcpp/grpcpp.h \
5937
6080
  include/grpcpp/health_check_service_interface.h \
6081
+ include/grpcpp/health_check_service_interface_impl.h \
5938
6082
  include/grpcpp/impl/call.h \
5939
6083
  include/grpcpp/impl/channel_argument_option.h \
5940
6084
  include/grpcpp/impl/client_unary_call.h \
@@ -5948,25 +6092,34 @@ PUBLIC_HEADERS_CXX += \
5948
6092
  include/grpcpp/impl/server_builder_option_impl.h \
5949
6093
  include/grpcpp/impl/server_builder_plugin.h \
5950
6094
  include/grpcpp/impl/server_initializer.h \
6095
+ include/grpcpp/impl/server_initializer_impl.h \
5951
6096
  include/grpcpp/impl/service_type.h \
5952
6097
  include/grpcpp/resource_quota.h \
6098
+ include/grpcpp/resource_quota_impl.h \
5953
6099
  include/grpcpp/security/auth_context.h \
5954
6100
  include/grpcpp/security/auth_metadata_processor.h \
6101
+ include/grpcpp/security/auth_metadata_processor_impl.h \
5955
6102
  include/grpcpp/security/credentials.h \
6103
+ include/grpcpp/security/credentials_impl.h \
5956
6104
  include/grpcpp/security/server_credentials.h \
6105
+ include/grpcpp/security/server_credentials_impl.h \
5957
6106
  include/grpcpp/server.h \
5958
6107
  include/grpcpp/server_builder.h \
6108
+ include/grpcpp/server_builder_impl.h \
5959
6109
  include/grpcpp/server_context.h \
6110
+ include/grpcpp/server_impl.h \
5960
6111
  include/grpcpp/server_posix.h \
5961
6112
  include/grpcpp/server_posix_impl.h \
5962
6113
  include/grpcpp/support/async_stream.h \
5963
6114
  include/grpcpp/support/async_unary_call.h \
5964
6115
  include/grpcpp/support/byte_buffer.h \
5965
6116
  include/grpcpp/support/channel_arguments.h \
6117
+ include/grpcpp/support/channel_arguments_impl.h \
5966
6118
  include/grpcpp/support/client_callback.h \
5967
6119
  include/grpcpp/support/client_interceptor.h \
5968
6120
  include/grpcpp/support/config.h \
5969
6121
  include/grpcpp/support/interceptor.h \
6122
+ include/grpcpp/support/message_allocator.h \
5970
6123
  include/grpcpp/support/proto_buffer_reader.h \
5971
6124
  include/grpcpp/support/proto_buffer_writer.h \
5972
6125
  include/grpcpp/support/server_callback.h \
@@ -6074,6 +6227,7 @@ PUBLIC_HEADERS_CXX += \
6074
6227
  include/grpcpp/impl/codegen/client_interceptor.h \
6075
6228
  include/grpcpp/impl/codegen/client_unary_call.h \
6076
6229
  include/grpcpp/impl/codegen/completion_queue.h \
6230
+ include/grpcpp/impl/codegen/completion_queue_impl.h \
6077
6231
  include/grpcpp/impl/codegen/completion_queue_tag.h \
6078
6232
  include/grpcpp/impl/codegen/config.h \
6079
6233
  include/grpcpp/impl/codegen/core_codegen_interface.h \
@@ -6082,6 +6236,7 @@ PUBLIC_HEADERS_CXX += \
6082
6236
  include/grpcpp/impl/codegen/intercepted_channel.h \
6083
6237
  include/grpcpp/impl/codegen/interceptor.h \
6084
6238
  include/grpcpp/impl/codegen/interceptor_common.h \
6239
+ include/grpcpp/impl/codegen/message_allocator.h \
6085
6240
  include/grpcpp/impl/codegen/metadata_map.h \
6086
6241
  include/grpcpp/impl/codegen/method_handler_impl.h \
6087
6242
  include/grpcpp/impl/codegen/rpc_method.h \
@@ -6100,6 +6255,7 @@ PUBLIC_HEADERS_CXX += \
6100
6255
  include/grpcpp/impl/codegen/stub_options.h \
6101
6256
  include/grpcpp/impl/codegen/sync_stream.h \
6102
6257
  include/grpcpp/impl/codegen/time.h \
6258
+ include/grpcpp/impl/codegen/sync.h \
6103
6259
  include/grpc/census.h \
6104
6260
 
6105
6261
  LIBGRPC++_CRONET_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_CRONET_SRC))))
@@ -6172,6 +6328,7 @@ LIBGRPC++_ERROR_DETAILS_SRC = \
6172
6328
  PUBLIC_HEADERS_CXX += \
6173
6329
  include/grpc++/support/error_details.h \
6174
6330
  include/grpcpp/support/error_details.h \
6331
+ include/grpcpp/support/error_details_impl.h \
6175
6332
 
6176
6333
  LIBGRPC++_ERROR_DETAILS_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_ERROR_DETAILS_SRC))))
6177
6334
 
@@ -6298,6 +6455,7 @@ LIBGRPC++_REFLECTION_SRC = \
6298
6455
  PUBLIC_HEADERS_CXX += \
6299
6456
  include/grpc++/ext/proto_server_reflection_plugin.h \
6300
6457
  include/grpcpp/ext/proto_server_reflection_plugin.h \
6458
+ include/grpcpp/ext/proto_server_reflection_plugin_impl.h \
6301
6459
 
6302
6460
  LIBGRPC++_REFLECTION_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_REFLECTION_SRC))))
6303
6461
 
@@ -6476,6 +6634,7 @@ PUBLIC_HEADERS_CXX += \
6476
6634
  include/grpcpp/impl/codegen/client_interceptor.h \
6477
6635
  include/grpcpp/impl/codegen/client_unary_call.h \
6478
6636
  include/grpcpp/impl/codegen/completion_queue.h \
6637
+ include/grpcpp/impl/codegen/completion_queue_impl.h \
6479
6638
  include/grpcpp/impl/codegen/completion_queue_tag.h \
6480
6639
  include/grpcpp/impl/codegen/config.h \
6481
6640
  include/grpcpp/impl/codegen/core_codegen_interface.h \
@@ -6484,6 +6643,7 @@ PUBLIC_HEADERS_CXX += \
6484
6643
  include/grpcpp/impl/codegen/intercepted_channel.h \
6485
6644
  include/grpcpp/impl/codegen/interceptor.h \
6486
6645
  include/grpcpp/impl/codegen/interceptor_common.h \
6646
+ include/grpcpp/impl/codegen/message_allocator.h \
6487
6647
  include/grpcpp/impl/codegen/metadata_map.h \
6488
6648
  include/grpcpp/impl/codegen/method_handler_impl.h \
6489
6649
  include/grpcpp/impl/codegen/rpc_method.h \
@@ -6524,6 +6684,7 @@ PUBLIC_HEADERS_CXX += \
6524
6684
  include/grpc/impl/codegen/sync_generic.h \
6525
6685
  include/grpc/impl/codegen/sync_posix.h \
6526
6686
  include/grpc/impl/codegen/sync_windows.h \
6687
+ include/grpcpp/impl/codegen/sync.h \
6527
6688
  include/grpc++/impl/codegen/proto_utils.h \
6528
6689
  include/grpcpp/impl/codegen/proto_buffer_reader.h \
6529
6690
  include/grpcpp/impl/codegen/proto_buffer_writer.h \
@@ -6643,6 +6804,7 @@ PUBLIC_HEADERS_CXX += \
6643
6804
  include/grpcpp/impl/codegen/client_interceptor.h \
6644
6805
  include/grpcpp/impl/codegen/client_unary_call.h \
6645
6806
  include/grpcpp/impl/codegen/completion_queue.h \
6807
+ include/grpcpp/impl/codegen/completion_queue_impl.h \
6646
6808
  include/grpcpp/impl/codegen/completion_queue_tag.h \
6647
6809
  include/grpcpp/impl/codegen/config.h \
6648
6810
  include/grpcpp/impl/codegen/core_codegen_interface.h \
@@ -6651,6 +6813,7 @@ PUBLIC_HEADERS_CXX += \
6651
6813
  include/grpcpp/impl/codegen/intercepted_channel.h \
6652
6814
  include/grpcpp/impl/codegen/interceptor.h \
6653
6815
  include/grpcpp/impl/codegen/interceptor_common.h \
6816
+ include/grpcpp/impl/codegen/message_allocator.h \
6654
6817
  include/grpcpp/impl/codegen/metadata_map.h \
6655
6818
  include/grpcpp/impl/codegen/method_handler_impl.h \
6656
6819
  include/grpcpp/impl/codegen/rpc_method.h \
@@ -6691,6 +6854,7 @@ PUBLIC_HEADERS_CXX += \
6691
6854
  include/grpc/impl/codegen/sync_generic.h \
6692
6855
  include/grpc/impl/codegen/sync_posix.h \
6693
6856
  include/grpc/impl/codegen/sync_windows.h \
6857
+ include/grpcpp/impl/codegen/sync.h \
6694
6858
  include/grpc++/impl/codegen/proto_utils.h \
6695
6859
  include/grpcpp/impl/codegen/proto_buffer_reader.h \
6696
6860
  include/grpcpp/impl/codegen/proto_buffer_writer.h \
@@ -6840,16 +7004,20 @@ PUBLIC_HEADERS_CXX += \
6840
7004
  include/grpcpp/alarm.h \
6841
7005
  include/grpcpp/alarm_impl.h \
6842
7006
  include/grpcpp/channel.h \
7007
+ include/grpcpp/channel_impl.h \
6843
7008
  include/grpcpp/client_context.h \
6844
7009
  include/grpcpp/completion_queue.h \
6845
7010
  include/grpcpp/create_channel.h \
7011
+ include/grpcpp/create_channel_impl.h \
6846
7012
  include/grpcpp/create_channel_posix.h \
6847
7013
  include/grpcpp/create_channel_posix_impl.h \
6848
7014
  include/grpcpp/ext/health_check_service_server_builder_option.h \
6849
7015
  include/grpcpp/generic/async_generic_service.h \
6850
7016
  include/grpcpp/generic/generic_stub.h \
7017
+ include/grpcpp/generic/generic_stub_impl.h \
6851
7018
  include/grpcpp/grpcpp.h \
6852
7019
  include/grpcpp/health_check_service_interface.h \
7020
+ include/grpcpp/health_check_service_interface_impl.h \
6853
7021
  include/grpcpp/impl/call.h \
6854
7022
  include/grpcpp/impl/channel_argument_option.h \
6855
7023
  include/grpcpp/impl/client_unary_call.h \
@@ -6863,25 +7031,34 @@ PUBLIC_HEADERS_CXX += \
6863
7031
  include/grpcpp/impl/server_builder_option_impl.h \
6864
7032
  include/grpcpp/impl/server_builder_plugin.h \
6865
7033
  include/grpcpp/impl/server_initializer.h \
7034
+ include/grpcpp/impl/server_initializer_impl.h \
6866
7035
  include/grpcpp/impl/service_type.h \
6867
7036
  include/grpcpp/resource_quota.h \
7037
+ include/grpcpp/resource_quota_impl.h \
6868
7038
  include/grpcpp/security/auth_context.h \
6869
7039
  include/grpcpp/security/auth_metadata_processor.h \
7040
+ include/grpcpp/security/auth_metadata_processor_impl.h \
6870
7041
  include/grpcpp/security/credentials.h \
7042
+ include/grpcpp/security/credentials_impl.h \
6871
7043
  include/grpcpp/security/server_credentials.h \
7044
+ include/grpcpp/security/server_credentials_impl.h \
6872
7045
  include/grpcpp/server.h \
6873
7046
  include/grpcpp/server_builder.h \
7047
+ include/grpcpp/server_builder_impl.h \
6874
7048
  include/grpcpp/server_context.h \
7049
+ include/grpcpp/server_impl.h \
6875
7050
  include/grpcpp/server_posix.h \
6876
7051
  include/grpcpp/server_posix_impl.h \
6877
7052
  include/grpcpp/support/async_stream.h \
6878
7053
  include/grpcpp/support/async_unary_call.h \
6879
7054
  include/grpcpp/support/byte_buffer.h \
6880
7055
  include/grpcpp/support/channel_arguments.h \
7056
+ include/grpcpp/support/channel_arguments_impl.h \
6881
7057
  include/grpcpp/support/client_callback.h \
6882
7058
  include/grpcpp/support/client_interceptor.h \
6883
7059
  include/grpcpp/support/config.h \
6884
7060
  include/grpcpp/support/interceptor.h \
7061
+ include/grpcpp/support/message_allocator.h \
6885
7062
  include/grpcpp/support/proto_buffer_reader.h \
6886
7063
  include/grpcpp/support/proto_buffer_writer.h \
6887
7064
  include/grpcpp/support/server_callback.h \
@@ -6989,6 +7166,7 @@ PUBLIC_HEADERS_CXX += \
6989
7166
  include/grpcpp/impl/codegen/client_interceptor.h \
6990
7167
  include/grpcpp/impl/codegen/client_unary_call.h \
6991
7168
  include/grpcpp/impl/codegen/completion_queue.h \
7169
+ include/grpcpp/impl/codegen/completion_queue_impl.h \
6992
7170
  include/grpcpp/impl/codegen/completion_queue_tag.h \
6993
7171
  include/grpcpp/impl/codegen/config.h \
6994
7172
  include/grpcpp/impl/codegen/core_codegen_interface.h \
@@ -6997,6 +7175,7 @@ PUBLIC_HEADERS_CXX += \
6997
7175
  include/grpcpp/impl/codegen/intercepted_channel.h \
6998
7176
  include/grpcpp/impl/codegen/interceptor.h \
6999
7177
  include/grpcpp/impl/codegen/interceptor_common.h \
7178
+ include/grpcpp/impl/codegen/message_allocator.h \
7000
7179
  include/grpcpp/impl/codegen/metadata_map.h \
7001
7180
  include/grpcpp/impl/codegen/method_handler_impl.h \
7002
7181
  include/grpcpp/impl/codegen/rpc_method.h \
@@ -7015,6 +7194,7 @@ PUBLIC_HEADERS_CXX += \
7015
7194
  include/grpcpp/impl/codegen/stub_options.h \
7016
7195
  include/grpcpp/impl/codegen/sync_stream.h \
7017
7196
  include/grpcpp/impl/codegen/time.h \
7197
+ include/grpcpp/impl/codegen/sync.h \
7018
7198
 
7019
7199
  LIBGRPC++_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_UNSECURE_SRC))))
7020
7200
 
@@ -15575,16 +15755,16 @@ $(BINDIR)/$(CONFIG)/client_crash_test_server: protobuf_dep_error
15575
15755
 
15576
15756
  else
15577
15757
 
15578
- $(BINDIR)/$(CONFIG)/client_crash_test_server: $(PROTOBUF_DEP) $(CLIENT_CRASH_TEST_SERVER_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
15758
+ $(BINDIR)/$(CONFIG)/client_crash_test_server: $(PROTOBUF_DEP) $(CLIENT_CRASH_TEST_SERVER_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
15579
15759
  $(E) "[LD] Linking $@"
15580
15760
  $(Q) mkdir -p `dirname $@`
15581
- $(Q) $(LDXX) $(LDFLAGS) $(CLIENT_CRASH_TEST_SERVER_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/client_crash_test_server
15761
+ $(Q) $(LDXX) $(LDFLAGS) $(CLIENT_CRASH_TEST_SERVER_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/client_crash_test_server
15582
15762
 
15583
15763
  endif
15584
15764
 
15585
15765
  endif
15586
15766
 
15587
- $(OBJDIR)/$(CONFIG)/test/cpp/end2end/client_crash_test_server.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
15767
+ $(OBJDIR)/$(CONFIG)/test/cpp/end2end/client_crash_test_server.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
15588
15768
 
15589
15769
  deps_client_crash_test_server: $(CLIENT_CRASH_TEST_SERVER_OBJS:.o=.dep)
15590
15770
 
@@ -16298,6 +16478,92 @@ endif
16298
16478
  endif
16299
16479
 
16300
16480
 
16481
+ GLOBAL_CONFIG_ENV_TEST_SRC = \
16482
+ test/core/gprpp/global_config_env_test.cc \
16483
+
16484
+ GLOBAL_CONFIG_ENV_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GLOBAL_CONFIG_ENV_TEST_SRC))))
16485
+ ifeq ($(NO_SECURE),true)
16486
+
16487
+ # You can't build secure targets if you don't have OpenSSL.
16488
+
16489
+ $(BINDIR)/$(CONFIG)/global_config_env_test: openssl_dep_error
16490
+
16491
+ else
16492
+
16493
+
16494
+
16495
+
16496
+ ifeq ($(NO_PROTOBUF),true)
16497
+
16498
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16499
+
16500
+ $(BINDIR)/$(CONFIG)/global_config_env_test: protobuf_dep_error
16501
+
16502
+ else
16503
+
16504
+ $(BINDIR)/$(CONFIG)/global_config_env_test: $(PROTOBUF_DEP) $(GLOBAL_CONFIG_ENV_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a
16505
+ $(E) "[LD] Linking $@"
16506
+ $(Q) mkdir -p `dirname $@`
16507
+ $(Q) $(LDXX) $(LDFLAGS) $(GLOBAL_CONFIG_ENV_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/global_config_env_test
16508
+
16509
+ endif
16510
+
16511
+ endif
16512
+
16513
+ $(OBJDIR)/$(CONFIG)/test/core/gprpp/global_config_env_test.o: $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a
16514
+
16515
+ deps_global_config_env_test: $(GLOBAL_CONFIG_ENV_TEST_OBJS:.o=.dep)
16516
+
16517
+ ifneq ($(NO_SECURE),true)
16518
+ ifneq ($(NO_DEPS),true)
16519
+ -include $(GLOBAL_CONFIG_ENV_TEST_OBJS:.o=.dep)
16520
+ endif
16521
+ endif
16522
+
16523
+
16524
+ GLOBAL_CONFIG_TEST_SRC = \
16525
+ test/core/gprpp/global_config_test.cc \
16526
+
16527
+ GLOBAL_CONFIG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GLOBAL_CONFIG_TEST_SRC))))
16528
+ ifeq ($(NO_SECURE),true)
16529
+
16530
+ # You can't build secure targets if you don't have OpenSSL.
16531
+
16532
+ $(BINDIR)/$(CONFIG)/global_config_test: openssl_dep_error
16533
+
16534
+ else
16535
+
16536
+
16537
+
16538
+
16539
+ ifeq ($(NO_PROTOBUF),true)
16540
+
16541
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16542
+
16543
+ $(BINDIR)/$(CONFIG)/global_config_test: protobuf_dep_error
16544
+
16545
+ else
16546
+
16547
+ $(BINDIR)/$(CONFIG)/global_config_test: $(PROTOBUF_DEP) $(GLOBAL_CONFIG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a
16548
+ $(E) "[LD] Linking $@"
16549
+ $(Q) mkdir -p `dirname $@`
16550
+ $(Q) $(LDXX) $(LDFLAGS) $(GLOBAL_CONFIG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/global_config_test
16551
+
16552
+ endif
16553
+
16554
+ endif
16555
+
16556
+ $(OBJDIR)/$(CONFIG)/test/core/gprpp/global_config_test.o: $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a
16557
+
16558
+ deps_global_config_test: $(GLOBAL_CONFIG_TEST_OBJS:.o=.dep)
16559
+
16560
+ ifneq ($(NO_SECURE),true)
16561
+ ifneq ($(NO_DEPS),true)
16562
+ -include $(GLOBAL_CONFIG_TEST_OBJS:.o=.dep)
16563
+ endif
16564
+ endif
16565
+
16566
+
16301
16567
  GOLDEN_FILE_TEST_SRC = \
16302
16568
  $(GENDIR)/src/proto/grpc/testing/compiler_test.pb.cc $(GENDIR)/src/proto/grpc/testing/compiler_test.grpc.pb.cc \
16303
16569
  test/cpp/codegen/golden_file_test.cc \
@@ -16322,18 +16588,18 @@ $(BINDIR)/$(CONFIG)/golden_file_test: protobuf_dep_error
16322
16588
 
16323
16589
  else
16324
16590
 
16325
- $(BINDIR)/$(CONFIG)/golden_file_test: $(PROTOBUF_DEP) $(GOLDEN_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16591
+ $(BINDIR)/$(CONFIG)/golden_file_test: $(PROTOBUF_DEP) $(GOLDEN_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16326
16592
  $(E) "[LD] Linking $@"
16327
16593
  $(Q) mkdir -p `dirname $@`
16328
- $(Q) $(LDXX) $(LDFLAGS) $(GOLDEN_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/golden_file_test
16594
+ $(Q) $(LDXX) $(LDFLAGS) $(GOLDEN_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/golden_file_test
16329
16595
 
16330
16596
  endif
16331
16597
 
16332
16598
  endif
16333
16599
 
16334
- $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/compiler_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16600
+ $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/compiler_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16335
16601
 
16336
- $(OBJDIR)/$(CONFIG)/test/cpp/codegen/golden_file_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16602
+ $(OBJDIR)/$(CONFIG)/test/cpp/codegen/golden_file_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16337
16603
 
16338
16604
  deps_golden_file_test: $(GOLDEN_FILE_TEST_OBJS:.o=.dep)
16339
16605
 
@@ -16431,6 +16697,49 @@ endif
16431
16697
  endif
16432
16698
 
16433
16699
 
16700
+ GRPC_CORE_MAP_TEST_SRC = \
16701
+ test/core/gprpp/map_test.cc \
16702
+
16703
+ GRPC_CORE_MAP_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CORE_MAP_TEST_SRC))))
16704
+ ifeq ($(NO_SECURE),true)
16705
+
16706
+ # You can't build secure targets if you don't have OpenSSL.
16707
+
16708
+ $(BINDIR)/$(CONFIG)/grpc_core_map_test: openssl_dep_error
16709
+
16710
+ else
16711
+
16712
+
16713
+
16714
+
16715
+ ifeq ($(NO_PROTOBUF),true)
16716
+
16717
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
16718
+
16719
+ $(BINDIR)/$(CONFIG)/grpc_core_map_test: protobuf_dep_error
16720
+
16721
+ else
16722
+
16723
+ $(BINDIR)/$(CONFIG)/grpc_core_map_test: $(PROTOBUF_DEP) $(GRPC_CORE_MAP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16724
+ $(E) "[LD] Linking $@"
16725
+ $(Q) mkdir -p `dirname $@`
16726
+ $(Q) $(LDXX) $(LDFLAGS) $(GRPC_CORE_MAP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/grpc_core_map_test
16727
+
16728
+ endif
16729
+
16730
+ endif
16731
+
16732
+ $(OBJDIR)/$(CONFIG)/test/core/gprpp/map_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
16733
+
16734
+ deps_grpc_core_map_test: $(GRPC_CORE_MAP_TEST_OBJS:.o=.dep)
16735
+
16736
+ ifneq ($(NO_SECURE),true)
16737
+ ifneq ($(NO_DEPS),true)
16738
+ -include $(GRPC_CORE_MAP_TEST_OBJS:.o=.dep)
16739
+ endif
16740
+ endif
16741
+
16742
+
16434
16743
  GRPC_CPP_PLUGIN_SRC = \
16435
16744
  src/compiler/cpp_plugin.cc \
16436
16745
 
@@ -17315,6 +17624,49 @@ endif
17315
17624
  endif
17316
17625
 
17317
17626
 
17627
+ MESSAGE_ALLOCATOR_END2END_TEST_SRC = \
17628
+ test/cpp/end2end/message_allocator_end2end_test.cc \
17629
+
17630
+ MESSAGE_ALLOCATOR_END2END_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(MESSAGE_ALLOCATOR_END2END_TEST_SRC))))
17631
+ ifeq ($(NO_SECURE),true)
17632
+
17633
+ # You can't build secure targets if you don't have OpenSSL.
17634
+
17635
+ $(BINDIR)/$(CONFIG)/message_allocator_end2end_test: openssl_dep_error
17636
+
17637
+ else
17638
+
17639
+
17640
+
17641
+
17642
+ ifeq ($(NO_PROTOBUF),true)
17643
+
17644
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
17645
+
17646
+ $(BINDIR)/$(CONFIG)/message_allocator_end2end_test: protobuf_dep_error
17647
+
17648
+ else
17649
+
17650
+ $(BINDIR)/$(CONFIG)/message_allocator_end2end_test: $(PROTOBUF_DEP) $(MESSAGE_ALLOCATOR_END2END_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
17651
+ $(E) "[LD] Linking $@"
17652
+ $(Q) mkdir -p `dirname $@`
17653
+ $(Q) $(LDXX) $(LDFLAGS) $(MESSAGE_ALLOCATOR_END2END_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/message_allocator_end2end_test
17654
+
17655
+ endif
17656
+
17657
+ endif
17658
+
17659
+ $(OBJDIR)/$(CONFIG)/test/cpp/end2end/message_allocator_end2end_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
17660
+
17661
+ deps_message_allocator_end2end_test: $(MESSAGE_ALLOCATOR_END2END_TEST_OBJS:.o=.dep)
17662
+
17663
+ ifneq ($(NO_SECURE),true)
17664
+ ifneq ($(NO_DEPS),true)
17665
+ -include $(MESSAGE_ALLOCATOR_END2END_TEST_OBJS:.o=.dep)
17666
+ endif
17667
+ endif
17668
+
17669
+
17318
17670
  METRICS_CLIENT_SRC = \
17319
17671
  $(GENDIR)/src/proto/grpc/testing/metrics.pb.cc $(GENDIR)/src/proto/grpc/testing/metrics.grpc.pb.cc \
17320
17672
  test/cpp/interop/metrics_client.cc \
@@ -18452,16 +18804,16 @@ $(BINDIR)/$(CONFIG)/server_crash_test_client: protobuf_dep_error
18452
18804
 
18453
18805
  else
18454
18806
 
18455
- $(BINDIR)/$(CONFIG)/server_crash_test_client: $(PROTOBUF_DEP) $(SERVER_CRASH_TEST_CLIENT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
18807
+ $(BINDIR)/$(CONFIG)/server_crash_test_client: $(PROTOBUF_DEP) $(SERVER_CRASH_TEST_CLIENT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
18456
18808
  $(E) "[LD] Linking $@"
18457
18809
  $(Q) mkdir -p `dirname $@`
18458
- $(Q) $(LDXX) $(LDFLAGS) $(SERVER_CRASH_TEST_CLIENT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/server_crash_test_client
18810
+ $(Q) $(LDXX) $(LDFLAGS) $(SERVER_CRASH_TEST_CLIENT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/server_crash_test_client
18459
18811
 
18460
18812
  endif
18461
18813
 
18462
18814
  endif
18463
18815
 
18464
- $(OBJDIR)/$(CONFIG)/test/cpp/end2end/server_crash_test_client.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
18816
+ $(OBJDIR)/$(CONFIG)/test/cpp/end2end/server_crash_test_client.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
18465
18817
 
18466
18818
  deps_server_crash_test_client: $(SERVER_CRASH_TEST_CLIENT_OBJS:.o=.dep)
18467
18819
 
@@ -18611,6 +18963,92 @@ endif
18611
18963
  $(OBJDIR)/$(CONFIG)/test/cpp/server/server_request_call_test.o: $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/echo.pb.cc $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc
18612
18964
 
18613
18965
 
18966
+ SERVICE_CONFIG_END2END_TEST_SRC = \
18967
+ test/cpp/end2end/service_config_end2end_test.cc \
18968
+
18969
+ SERVICE_CONFIG_END2END_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SERVICE_CONFIG_END2END_TEST_SRC))))
18970
+ ifeq ($(NO_SECURE),true)
18971
+
18972
+ # You can't build secure targets if you don't have OpenSSL.
18973
+
18974
+ $(BINDIR)/$(CONFIG)/service_config_end2end_test: openssl_dep_error
18975
+
18976
+ else
18977
+
18978
+
18979
+
18980
+
18981
+ ifeq ($(NO_PROTOBUF),true)
18982
+
18983
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
18984
+
18985
+ $(BINDIR)/$(CONFIG)/service_config_end2end_test: protobuf_dep_error
18986
+
18987
+ else
18988
+
18989
+ $(BINDIR)/$(CONFIG)/service_config_end2end_test: $(PROTOBUF_DEP) $(SERVICE_CONFIG_END2END_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
18990
+ $(E) "[LD] Linking $@"
18991
+ $(Q) mkdir -p `dirname $@`
18992
+ $(Q) $(LDXX) $(LDFLAGS) $(SERVICE_CONFIG_END2END_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/service_config_end2end_test
18993
+
18994
+ endif
18995
+
18996
+ endif
18997
+
18998
+ $(OBJDIR)/$(CONFIG)/test/cpp/end2end/service_config_end2end_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
18999
+
19000
+ deps_service_config_end2end_test: $(SERVICE_CONFIG_END2END_TEST_OBJS:.o=.dep)
19001
+
19002
+ ifneq ($(NO_SECURE),true)
19003
+ ifneq ($(NO_DEPS),true)
19004
+ -include $(SERVICE_CONFIG_END2END_TEST_OBJS:.o=.dep)
19005
+ endif
19006
+ endif
19007
+
19008
+
19009
+ SERVICE_CONFIG_TEST_SRC = \
19010
+ test/core/client_channel/service_config_test.cc \
19011
+
19012
+ SERVICE_CONFIG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SERVICE_CONFIG_TEST_SRC))))
19013
+ ifeq ($(NO_SECURE),true)
19014
+
19015
+ # You can't build secure targets if you don't have OpenSSL.
19016
+
19017
+ $(BINDIR)/$(CONFIG)/service_config_test: openssl_dep_error
19018
+
19019
+ else
19020
+
19021
+
19022
+
19023
+
19024
+ ifeq ($(NO_PROTOBUF),true)
19025
+
19026
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
19027
+
19028
+ $(BINDIR)/$(CONFIG)/service_config_test: protobuf_dep_error
19029
+
19030
+ else
19031
+
19032
+ $(BINDIR)/$(CONFIG)/service_config_test: $(PROTOBUF_DEP) $(SERVICE_CONFIG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
19033
+ $(E) "[LD] Linking $@"
19034
+ $(Q) mkdir -p `dirname $@`
19035
+ $(Q) $(LDXX) $(LDFLAGS) $(SERVICE_CONFIG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/service_config_test
19036
+
19037
+ endif
19038
+
19039
+ endif
19040
+
19041
+ $(OBJDIR)/$(CONFIG)/test/core/client_channel/service_config_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
19042
+
19043
+ deps_service_config_test: $(SERVICE_CONFIG_TEST_OBJS:.o=.dep)
19044
+
19045
+ ifneq ($(NO_SECURE),true)
19046
+ ifneq ($(NO_DEPS),true)
19047
+ -include $(SERVICE_CONFIG_TEST_OBJS:.o=.dep)
19048
+ endif
19049
+ endif
19050
+
19051
+
18614
19052
  SHUTDOWN_TEST_SRC = \
18615
19053
  test/cpp/end2end/shutdown_test.cc \
18616
19054
 
@@ -20539,6 +20977,38 @@ endif
20539
20977
  endif
20540
20978
 
20541
20979
 
20980
+ H2_SSL_CRED_RELOAD_TEST_SRC = \
20981
+ test/core/end2end/fixtures/h2_ssl_cred_reload.cc \
20982
+
20983
+ H2_SSL_CRED_RELOAD_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_SSL_CRED_RELOAD_TEST_SRC))))
20984
+ ifeq ($(NO_SECURE),true)
20985
+
20986
+ # You can't build secure targets if you don't have OpenSSL.
20987
+
20988
+ $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test: openssl_dep_error
20989
+
20990
+ else
20991
+
20992
+
20993
+
20994
+ $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test: $(H2_SSL_CRED_RELOAD_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
20995
+ $(E) "[LD] Linking $@"
20996
+ $(Q) mkdir -p `dirname $@`
20997
+ $(Q) $(LD) $(LDFLAGS) $(H2_SSL_CRED_RELOAD_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/h2_ssl_cred_reload_test
20998
+
20999
+ endif
21000
+
21001
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_ssl_cred_reload.o: $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
21002
+
21003
+ deps_h2_ssl_cred_reload_test: $(H2_SSL_CRED_RELOAD_TEST_OBJS:.o=.dep)
21004
+
21005
+ ifneq ($(NO_SECURE),true)
21006
+ ifneq ($(NO_DEPS),true)
21007
+ -include $(H2_SSL_CRED_RELOAD_TEST_OBJS:.o=.dep)
21008
+ endif
21009
+ endif
21010
+
21011
+
20542
21012
  H2_SSL_PROXY_TEST_SRC = \
20543
21013
  test/core/end2end/fixtures/h2_ssl_proxy.cc \
20544
21014
 
@@ -20918,16 +21388,16 @@ $(BINDIR)/$(CONFIG)/resolver_component_test_unsecure: protobuf_dep_error
20918
21388
 
20919
21389
  else
20920
21390
 
20921
- $(BINDIR)/$(CONFIG)/resolver_component_test_unsecure: $(PROTOBUF_DEP) $(RESOLVER_COMPONENT_TEST_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21391
+ $(BINDIR)/$(CONFIG)/resolver_component_test_unsecure: $(PROTOBUF_DEP) $(RESOLVER_COMPONENT_TEST_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
20922
21392
  $(E) "[LD] Linking $@"
20923
21393
  $(Q) mkdir -p `dirname $@`
20924
- $(Q) $(LDXX) $(LDFLAGS) $(RESOLVER_COMPONENT_TEST_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/resolver_component_test_unsecure
21394
+ $(Q) $(LDXX) $(LDFLAGS) $(RESOLVER_COMPONENT_TEST_UNSECURE_OBJS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/resolver_component_test_unsecure
20925
21395
 
20926
21396
  endif
20927
21397
 
20928
21398
  endif
20929
21399
 
20930
- $(OBJDIR)/$(CONFIG)/test/cpp/naming/resolver_component_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21400
+ $(OBJDIR)/$(CONFIG)/test/cpp/naming/resolver_component_test.o: $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
20931
21401
 
20932
21402
  deps_resolver_component_test_unsecure: $(RESOLVER_COMPONENT_TEST_UNSECURE_OBJS:.o=.dep)
20933
21403
 
@@ -20961,16 +21431,16 @@ $(BINDIR)/$(CONFIG)/resolver_component_test: protobuf_dep_error
20961
21431
 
20962
21432
  else
20963
21433
 
20964
- $(BINDIR)/$(CONFIG)/resolver_component_test: $(PROTOBUF_DEP) $(RESOLVER_COMPONENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21434
+ $(BINDIR)/$(CONFIG)/resolver_component_test: $(PROTOBUF_DEP) $(RESOLVER_COMPONENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
20965
21435
  $(E) "[LD] Linking $@"
20966
21436
  $(Q) mkdir -p `dirname $@`
20967
- $(Q) $(LDXX) $(LDFLAGS) $(RESOLVER_COMPONENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/resolver_component_test
21437
+ $(Q) $(LDXX) $(LDFLAGS) $(RESOLVER_COMPONENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/resolver_component_test
20968
21438
 
20969
21439
  endif
20970
21440
 
20971
21441
  endif
20972
21442
 
20973
- $(OBJDIR)/$(CONFIG)/test/cpp/naming/resolver_component_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21443
+ $(OBJDIR)/$(CONFIG)/test/cpp/naming/resolver_component_test.o: $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
20974
21444
 
20975
21445
  deps_resolver_component_test: $(RESOLVER_COMPONENT_TEST_OBJS:.o=.dep)
20976
21446
 
@@ -21176,16 +21646,16 @@ $(BINDIR)/$(CONFIG)/cancel_ares_query_test: protobuf_dep_error
21176
21646
 
21177
21647
  else
21178
21648
 
21179
- $(BINDIR)/$(CONFIG)/cancel_ares_query_test: $(PROTOBUF_DEP) $(CANCEL_ARES_QUERY_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21649
+ $(BINDIR)/$(CONFIG)/cancel_ares_query_test: $(PROTOBUF_DEP) $(CANCEL_ARES_QUERY_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21180
21650
  $(E) "[LD] Linking $@"
21181
21651
  $(Q) mkdir -p `dirname $@`
21182
- $(Q) $(LDXX) $(LDFLAGS) $(CANCEL_ARES_QUERY_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/cancel_ares_query_test
21652
+ $(Q) $(LDXX) $(LDFLAGS) $(CANCEL_ARES_QUERY_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/cancel_ares_query_test
21183
21653
 
21184
21654
  endif
21185
21655
 
21186
21656
  endif
21187
21657
 
21188
- $(OBJDIR)/$(CONFIG)/test/cpp/naming/cancel_ares_query_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21658
+ $(OBJDIR)/$(CONFIG)/test/cpp/naming/cancel_ares_query_test.o: $(LIBDIR)/$(CONFIG)/libdns_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
21189
21659
 
21190
21660
  deps_cancel_ares_query_test: $(CANCEL_ARES_QUERY_TEST_OBJS:.o=.dep)
21191
21661
 
@@ -21815,6 +22285,7 @@ test/cpp/interop/interop_server.cc: $(OPENSSL_DEP)
21815
22285
  test/cpp/interop/interop_server_bootstrap.cc: $(OPENSSL_DEP)
21816
22286
  test/cpp/interop/server_helper.cc: $(OPENSSL_DEP)
21817
22287
  test/cpp/microbenchmarks/helpers.cc: $(OPENSSL_DEP)
22288
+ test/cpp/naming/dns_test_util.cc: $(OPENSSL_DEP)
21818
22289
  test/cpp/qps/benchmark_config.cc: $(OPENSSL_DEP)
21819
22290
  test/cpp/qps/client_async.cc: $(OPENSSL_DEP)
21820
22291
  test/cpp/qps/client_callback.cc: $(OPENSSL_DEP)