grpc 0.14.1 → 0.15.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 (277) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +1398 -817
  3. data/include/grpc/compression.h +2 -1
  4. data/include/grpc/grpc.h +10 -1
  5. data/include/grpc/grpc_cronet.h +51 -0
  6. data/include/grpc/grpc_posix.h +70 -0
  7. data/include/grpc/impl/codegen/atm.h +2 -2
  8. data/include/grpc/impl/codegen/{atm_win32.h → atm_windows.h} +3 -3
  9. data/include/grpc/impl/codegen/compression_types.h +39 -5
  10. data/include/grpc/impl/codegen/connectivity_state.h +1 -1
  11. data/include/grpc/impl/codegen/grpc_types.h +10 -0
  12. data/include/grpc/impl/codegen/log.h +2 -1
  13. data/include/grpc/impl/codegen/port_platform.h +30 -12
  14. data/include/grpc/impl/codegen/slice_buffer.h +2 -3
  15. data/include/grpc/impl/codegen/sync.h +2 -2
  16. data/include/grpc/impl/codegen/{sync_win32.h → sync_windows.h} +3 -3
  17. data/include/grpc/support/{sync_win32.h → atm_windows.h} +4 -4
  18. data/include/grpc/support/avl.h +5 -0
  19. data/include/grpc/support/{log_win32.h → log_windows.h} +3 -3
  20. data/include/grpc/support/string_util.h +2 -1
  21. data/include/grpc/support/{atm_win32.h → sync_windows.h} +4 -4
  22. data/src/core/ext/census/gen/census.pb.c +179 -0
  23. data/src/core/ext/census/gen/census.pb.h +294 -0
  24. data/src/core/ext/census/grpc_filter.c +11 -7
  25. data/src/core/ext/client_config/channel_connectivity.c +28 -14
  26. data/src/core/ext/client_config/client_channel.c +77 -53
  27. data/src/core/ext/client_config/connector.h +1 -1
  28. data/src/core/ext/client_config/lb_policy.c +9 -6
  29. data/src/core/ext/client_config/lb_policy.h +9 -5
  30. data/src/core/ext/client_config/subchannel.c +58 -39
  31. data/src/core/ext/client_config/subchannel.h +3 -2
  32. data/src/core/ext/client_config/subchannel_call_holder.c +34 -19
  33. data/src/core/ext/client_config/subchannel_call_holder.h +2 -1
  34. data/src/core/ext/client_config/subchannel_index.c +20 -9
  35. data/src/core/ext/lb_policy/grpclb/load_balancer_api.c +7 -7
  36. data/src/core/ext/lb_policy/grpclb/load_balancer_api.h +5 -5
  37. data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/{v0 → v1}/load_balancer.pb.c +29 -30
  38. data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h +178 -0
  39. data/src/core/ext/lb_policy/pick_first/pick_first.c +65 -45
  40. data/src/core/ext/lb_policy/round_robin/round_robin.c +84 -43
  41. data/src/core/ext/load_reporting/load_reporting.c +133 -0
  42. data/src/core/ext/load_reporting/load_reporting.h +75 -0
  43. data/src/core/ext/load_reporting/load_reporting_filter.c +151 -0
  44. data/src/core/ext/load_reporting/load_reporting_filter.h +41 -0
  45. data/src/core/ext/resolver/dns/native/dns_resolver.c +22 -8
  46. data/src/core/ext/resolver/sockaddr/sockaddr_resolver.c +2 -2
  47. data/src/core/ext/transport/chttp2/client/insecure/channel_create.c +4 -4
  48. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c +95 -0
  49. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.c +14 -18
  50. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.c +49 -24
  51. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c +82 -0
  52. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c +104 -60
  53. data/src/core/ext/transport/chttp2/transport/bin_decoder.c +232 -0
  54. data/src/{ruby/ext/grpc/rb_signal.c → core/ext/transport/chttp2/transport/bin_decoder.h} +27 -31
  55. data/src/core/ext/transport/chttp2/transport/chttp2_transport.c +481 -260
  56. data/src/core/ext/transport/chttp2/transport/frame.h +1 -7
  57. data/src/core/ext/transport/chttp2/transport/frame_data.c +44 -27
  58. data/src/core/ext/transport/chttp2/transport/frame_data.h +6 -5
  59. data/src/core/ext/transport/chttp2/transport/frame_goaway.c +23 -17
  60. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +2 -2
  61. data/src/core/ext/transport/chttp2/transport/frame_ping.c +12 -7
  62. data/src/core/ext/transport/chttp2/transport/frame_ping.h +3 -3
  63. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.c +25 -12
  64. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +2 -2
  65. data/src/core/ext/transport/chttp2/transport/frame_settings.c +23 -21
  66. data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -2
  67. data/src/core/ext/transport/chttp2/transport/frame_window_update.c +17 -9
  68. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +2 -2
  69. data/src/core/ext/transport/chttp2/transport/hpack_parser.c +365 -287
  70. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +8 -6
  71. data/src/core/ext/transport/chttp2/transport/hpack_table.c +24 -20
  72. data/src/core/ext/transport/chttp2/transport/hpack_table.h +5 -4
  73. data/src/core/ext/transport/chttp2/transport/incoming_metadata.c +1 -0
  74. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +1 -0
  75. data/src/core/ext/transport/chttp2/transport/internal.h +34 -32
  76. data/src/core/ext/transport/chttp2/transport/parsing.c +296 -212
  77. data/src/core/ext/transport/chttp2/transport/writing.c +12 -9
  78. data/src/core/lib/channel/channel_args.c +26 -12
  79. data/src/core/lib/channel/channel_args.h +1 -1
  80. data/src/core/lib/channel/channel_stack.c +12 -8
  81. data/src/core/lib/channel/channel_stack.h +27 -11
  82. data/src/core/lib/channel/channel_stack_builder.c +2 -2
  83. data/src/core/lib/channel/compress_filter.c +26 -31
  84. data/src/core/lib/channel/compress_filter.h +4 -4
  85. data/src/core/lib/channel/connected_channel.c +7 -5
  86. data/src/core/lib/channel/http_client_filter.c +34 -8
  87. data/src/core/lib/channel/http_client_filter.h +1 -1
  88. data/src/core/lib/channel/http_server_filter.c +21 -12
  89. data/src/core/lib/compression/{compression_algorithm.c → compression.c} +22 -21
  90. data/src/core/lib/http/httpcli.c +81 -59
  91. data/src/core/lib/http/httpcli.h +11 -15
  92. data/src/core/lib/http/httpcli_security_connector.c +5 -3
  93. data/src/core/lib/http/parser.c +127 -118
  94. data/src/core/lib/http/parser.h +11 -6
  95. data/src/core/lib/iomgr/closure.c +20 -16
  96. data/src/core/lib/iomgr/closure.h +19 -15
  97. data/src/core/lib/iomgr/endpoint.h +1 -1
  98. data/src/core/lib/iomgr/endpoint_pair_posix.c +2 -2
  99. data/src/core/lib/iomgr/error.c +535 -0
  100. data/src/core/lib/iomgr/error.h +192 -0
  101. data/src/core/lib/iomgr/ev_poll_and_epoll_posix.c +190 -83
  102. data/src/core/lib/iomgr/ev_poll_posix.c +1267 -0
  103. data/src/{ruby/ext/grpc/rb_signal.h → core/lib/iomgr/ev_poll_posix.h} +7 -5
  104. data/src/core/lib/iomgr/ev_posix.c +104 -14
  105. data/src/core/lib/iomgr/ev_posix.h +17 -7
  106. data/src/core/lib/iomgr/exec_ctx.c +25 -7
  107. data/src/core/lib/iomgr/exec_ctx.h +27 -8
  108. data/src/core/lib/iomgr/executor.c +2 -2
  109. data/src/core/lib/iomgr/executor.h +1 -1
  110. data/src/core/lib/iomgr/iocp_windows.c +2 -41
  111. data/src/core/lib/iomgr/iocp_windows.h +0 -8
  112. data/src/core/lib/iomgr/iomgr.c +5 -4
  113. data/src/core/lib/iomgr/iomgr_posix.c +5 -1
  114. data/src/core/lib/iomgr/iomgr_windows.c +1 -1
  115. data/src/core/lib/{support → iomgr}/load_file.c +15 -17
  116. data/src/core/lib/{support → iomgr}/load_file.h +8 -7
  117. data/src/core/lib/iomgr/polling_entity.c +104 -0
  118. data/src/core/lib/iomgr/polling_entity.h +81 -0
  119. data/src/core/lib/iomgr/pollset.h +6 -5
  120. data/src/core/lib/iomgr/pollset_set_windows.c +4 -1
  121. data/src/core/lib/iomgr/pollset_windows.c +10 -6
  122. data/src/core/lib/iomgr/resolve_address.h +5 -9
  123. data/src/core/lib/iomgr/resolve_address_posix.c +55 -38
  124. data/src/core/lib/iomgr/resolve_address_windows.c +51 -37
  125. data/src/core/lib/iomgr/sockaddr.h +2 -2
  126. data/src/core/lib/iomgr/{sockaddr_win32.h → sockaddr_windows.h} +3 -3
  127. data/src/core/lib/iomgr/socket_utils_common_posix.c +92 -45
  128. data/src/core/lib/iomgr/socket_utils_posix.h +19 -12
  129. data/src/core/lib/iomgr/socket_windows.c +61 -2
  130. data/src/core/lib/iomgr/socket_windows.h +13 -0
  131. data/src/core/lib/iomgr/tcp_client_posix.c +54 -39
  132. data/src/core/lib/iomgr/tcp_client_windows.c +34 -34
  133. data/src/core/lib/iomgr/tcp_posix.c +43 -39
  134. data/src/core/lib/iomgr/tcp_server.h +5 -3
  135. data/src/core/lib/iomgr/tcp_server_posix.c +103 -64
  136. data/src/core/lib/iomgr/tcp_server_windows.c +114 -101
  137. data/src/core/lib/iomgr/tcp_windows.c +45 -50
  138. data/src/core/lib/iomgr/tcp_windows.h +1 -1
  139. data/src/core/lib/iomgr/timer.c +26 -13
  140. data/src/core/lib/iomgr/udp_server.c +28 -4
  141. data/src/core/lib/iomgr/udp_server.h +5 -1
  142. data/src/core/lib/iomgr/unix_sockets_posix.c +8 -7
  143. data/src/core/lib/iomgr/unix_sockets_posix.h +2 -1
  144. data/src/core/lib/iomgr/unix_sockets_posix_noop.c +4 -2
  145. data/src/core/lib/iomgr/wakeup_fd_eventfd.c +15 -5
  146. data/src/core/lib/iomgr/wakeup_fd_pipe.c +13 -9
  147. data/src/core/lib/iomgr/wakeup_fd_posix.c +6 -6
  148. data/src/core/lib/iomgr/wakeup_fd_posix.h +9 -6
  149. data/src/core/lib/iomgr/workqueue.h +5 -4
  150. data/src/core/lib/iomgr/workqueue_posix.c +40 -26
  151. data/src/core/lib/iomgr/workqueue_windows.c +2 -2
  152. data/src/core/lib/profiling/basic_timers.c +2 -2
  153. data/src/core/lib/security/{security_context.c → context/security_context.c} +1 -1
  154. data/src/core/lib/security/{security_context.h → context/security_context.h} +4 -4
  155. data/src/core/lib/security/credentials/composite/composite_credentials.c +263 -0
  156. data/src/core/lib/security/credentials/composite/composite_credentials.h +72 -0
  157. data/src/core/lib/security/credentials/credentials.c +233 -0
  158. data/src/core/lib/security/{credentials.h → credentials/credentials.h} +19 -157
  159. data/src/core/lib/security/{credentials_metadata.c → credentials/credentials_metadata.c} +1 -1
  160. data/src/core/lib/security/credentials/fake/fake_credentials.c +139 -0
  161. data/src/core/lib/security/credentials/fake/fake_credentials.h +56 -0
  162. data/src/core/lib/security/{credentials_posix.c → credentials/google_default/credentials_posix.c} +1 -1
  163. data/src/core/lib/security/{credentials_win32.c → credentials/google_default/credentials_windows.c} +3 -3
  164. data/src/core/lib/security/{google_default_credentials.c → credentials/google_default/google_default_credentials.c} +93 -35
  165. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +46 -0
  166. data/src/core/lib/security/credentials/iam/iam_credentials.c +85 -0
  167. data/src/core/lib/security/credentials/iam/iam_credentials.h +44 -0
  168. data/src/core/lib/security/{json_token.c → credentials/jwt/json_token.c} +10 -101
  169. data/src/core/lib/security/{json_token.h → credentials/jwt/json_token.h} +3 -33
  170. data/src/core/lib/security/credentials/jwt/jwt_credentials.c +160 -0
  171. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +62 -0
  172. data/src/core/lib/security/{jwt_verifier.c → credentials/jwt/jwt_verifier.c} +35 -15
  173. data/src/core/lib/security/{jwt_verifier.h → credentials/jwt/jwt_verifier.h} +3 -3
  174. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.c +433 -0
  175. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +109 -0
  176. data/src/core/lib/security/credentials/plugin/plugin_credentials.c +129 -0
  177. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +45 -0
  178. data/src/core/lib/security/credentials/ssl/ssl_credentials.c +240 -0
  179. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +48 -0
  180. data/src/core/lib/security/{auth_filters.h → transport/auth_filters.h} +3 -3
  181. data/src/core/lib/security/{client_auth_filter.c → transport/client_auth_filter.c} +27 -20
  182. data/src/core/lib/security/{handshake.c → transport/handshake.c} +77 -45
  183. data/src/core/lib/security/{handshake.h → transport/handshake.h} +9 -11
  184. data/src/core/lib/security/{secure_endpoint.c → transport/secure_endpoint.c} +19 -12
  185. data/src/core/lib/security/{secure_endpoint.h → transport/secure_endpoint.h} +3 -3
  186. data/src/core/lib/security/{security_connector.c → transport/security_connector.c} +26 -17
  187. data/src/core/lib/security/{security_connector.h → transport/security_connector.h} +8 -8
  188. data/src/core/lib/security/{server_auth_filter.c → transport/server_auth_filter.c} +24 -16
  189. data/src/core/lib/security/transport/tsi_error.c +40 -0
  190. data/src/core/lib/security/transport/tsi_error.h +42 -0
  191. data/src/core/lib/security/{b64.c → util/b64.c} +1 -1
  192. data/src/core/lib/security/{b64.h → util/b64.h} +3 -3
  193. data/src/core/lib/security/util/json_util.c +61 -0
  194. data/src/core/lib/security/util/json_util.h +55 -0
  195. data/src/core/lib/support/avl.c +11 -0
  196. data/src/core/lib/support/cpu_windows.c +2 -2
  197. data/src/core/lib/support/{env_win32.c → env_windows.c} +3 -3
  198. data/src/core/lib/support/log.c +3 -1
  199. data/src/core/lib/support/log_linux.c +2 -2
  200. data/src/core/lib/support/{log_win32.c → log_windows.c} +4 -4
  201. data/src/core/lib/support/murmur_hash.c +3 -5
  202. data/src/core/lib/support/string.c +10 -0
  203. data/src/core/lib/support/string.h +4 -0
  204. data/src/core/lib/support/{string_util_win32.c → string_util_windows.c} +3 -3
  205. data/src/core/lib/support/{string_win32.c → string_windows.c} +2 -2
  206. data/src/core/lib/support/{string_win32.h → string_windows.h} +5 -5
  207. data/src/core/lib/support/subprocess_windows.c +1 -1
  208. data/src/core/lib/support/{sync_win32.c → sync_windows.c} +2 -2
  209. data/src/core/lib/support/{thd_win32.c → thd_windows.c} +2 -2
  210. data/src/core/lib/support/{time_win32.c → time_windows.c} +2 -2
  211. data/src/core/lib/support/tmpfile_msys.c +1 -1
  212. data/src/core/lib/support/{tmpfile_win32.c → tmpfile_windows.c} +3 -3
  213. data/src/core/lib/surface/alarm.c +2 -2
  214. data/src/core/lib/surface/byte_buffer_reader.c +13 -6
  215. data/src/core/lib/surface/call.c +323 -123
  216. data/src/core/lib/surface/call.h +2 -0
  217. data/src/core/lib/surface/call_log_batch.c +1 -1
  218. data/src/core/lib/surface/channel.c +64 -15
  219. data/src/core/lib/surface/channel.h +9 -0
  220. data/src/core/lib/surface/channel_ping.c +3 -3
  221. data/src/core/lib/surface/completion_queue.c +75 -19
  222. data/src/core/lib/surface/completion_queue.h +7 -2
  223. data/src/core/lib/surface/init.c +2 -1
  224. data/src/core/lib/surface/init_secure.c +4 -4
  225. data/src/core/lib/surface/lame_client.c +12 -8
  226. data/src/core/lib/surface/server.c +213 -120
  227. data/src/core/lib/surface/server.h +1 -0
  228. data/src/core/lib/surface/version.c +1 -1
  229. data/src/core/lib/transport/connectivity_state.c +40 -18
  230. data/src/core/lib/transport/connectivity_state.h +4 -1
  231. data/src/core/lib/transport/metadata.c +23 -23
  232. data/src/core/lib/transport/metadata.h +4 -0
  233. data/src/core/lib/transport/metadata_batch.c +9 -0
  234. data/src/core/lib/transport/metadata_batch.h +3 -0
  235. data/src/core/lib/transport/static_metadata.c +6 -5
  236. data/src/core/lib/transport/static_metadata.h +64 -60
  237. data/src/core/lib/transport/transport.c +24 -12
  238. data/src/core/lib/transport/transport.h +6 -5
  239. data/src/core/lib/transport/transport_impl.h +4 -0
  240. data/src/core/lib/transport/transport_op_string.c +2 -2
  241. data/src/core/plugin_registry/grpc_plugin_registry.c +4 -0
  242. data/src/ruby/bin/math_services.rb +41 -2
  243. data/src/ruby/ext/grpc/rb_call.c +42 -40
  244. data/src/ruby/ext/grpc/rb_channel.c +1 -1
  245. data/src/ruby/ext/grpc/rb_completion_queue.c +59 -6
  246. data/src/ruby/ext/grpc/rb_completion_queue.h +1 -1
  247. data/src/ruby/ext/grpc/rb_grpc.c +1 -3
  248. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +12 -2
  249. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +21 -5
  250. data/src/ruby/ext/grpc/rb_loader.c +1 -1
  251. data/src/ruby/ext/grpc/rb_server.c +5 -3
  252. data/src/ruby/lib/grpc.rb +0 -3
  253. data/src/ruby/lib/grpc/errors.rb +3 -2
  254. data/src/ruby/lib/grpc/generic/active_call.rb +32 -42
  255. data/src/ruby/lib/grpc/generic/bidi_call.rb +20 -0
  256. data/src/ruby/lib/grpc/generic/client_stub.rb +31 -54
  257. data/src/ruby/lib/grpc/generic/rpc_desc.rb +4 -4
  258. data/src/ruby/lib/grpc/generic/rpc_server.rb +12 -23
  259. data/src/ruby/lib/grpc/generic/service.rb +8 -8
  260. data/src/ruby/lib/grpc/version.rb +1 -1
  261. data/src/ruby/pb/grpc/health/v1/health_services.rb +30 -2
  262. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services.rb +34 -4
  263. data/src/ruby/pb/grpc/testing/metrics_services.rb +39 -2
  264. data/src/ruby/pb/src/proto/grpc/testing/empty.rb +15 -0
  265. data/src/ruby/pb/src/proto/grpc/testing/messages.rb +84 -0
  266. data/src/ruby/pb/src/proto/grpc/testing/test.rb +14 -0
  267. data/src/ruby/pb/src/proto/grpc/testing/test_services.rb +110 -0
  268. data/src/ruby/pb/test/client.rb +5 -2
  269. data/src/ruby/spec/generic/active_call_spec.rb +3 -2
  270. data/src/ruby/spec/generic/client_stub_spec.rb +27 -24
  271. data/src/ruby/spec/generic/rpc_desc_spec.rb +11 -11
  272. data/src/ruby/spec/generic/rpc_server_spec.rb +42 -61
  273. data/src/ruby/spec/pb/health/checker_spec.rb +3 -5
  274. metadata +86 -48
  275. data/src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h +0 -182
  276. data/src/core/lib/security/credentials.c +0 -1296
  277. data/src/ruby/lib/grpc/signals.rb +0 -69
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bfe6db74b88bae5443b6ac695972259b66b14d9d
4
- data.tar.gz: 020a44c5967e024e507d08b235b2ecf242673e15
3
+ metadata.gz: 3c78b37e003dfa044620aa633453f4f3bb20958c
4
+ data.tar.gz: 019c6f50ed2a5ac19230270ce2ab90a087680469
5
5
  SHA512:
6
- metadata.gz: f603806da85ebe8ac91109b1d8b5fc656d87e666815a8b94aab707cdc40f3c5e98ed87a4b3af5d8cff5a4b75afff82f0cb9fe9e9470add242b9f3d9a8e2720fa
7
- data.tar.gz: dfbd694436a060d6fb714139b40d8d3095406c81086fac6ed008f34dab4f1d1cbbdcdc85a7af09cf9f412202753903b8a9da6885e906ec2828265d7cfcbb14d9
6
+ metadata.gz: f10f675ac6b9f7a398683949381b3f4b24913196c599570f1e0ae590c8abb334f00e8f1142a17cbbb0d9279b3f33ca71bb375260c69e1b7a9b5fffd62c5cbb9a
7
+ data.tar.gz: b7adb0ccfd48a19cc6303172666b754a83b35991c67ff437c16bc835f65abf462424b7e519fd4e4e0a997f3f9d71c4915ce03fbe0b0d9a76e3ebf05d9ab755dd
data/Makefile CHANGED
@@ -187,8 +187,8 @@ CC_ubsan = clang
187
187
  CXX_ubsan = clang++
188
188
  LD_ubsan = clang
189
189
  LDXX_ubsan = clang++
190
- CPPFLAGS_ubsan = -O1 -fsanitize-coverage=edge -fsanitize=undefined -fno-omit-frame-pointer -Wno-unused-command-line-argument
191
- LDFLAGS_ubsan = -fsanitize=undefined
190
+ CPPFLAGS_ubsan = -O0 -fsanitize-coverage=edge -fsanitize=undefined,unsigned-integer-overflow -fno-omit-frame-pointer -Wno-unused-command-line-argument -Wvarargs
191
+ LDFLAGS_ubsan = -fsanitize=undefined,unsigned-integer-overflow
192
192
  DEFINES_ubsan = NDEBUG
193
193
  DEFINES_ubsan += GRPC_TEST_SLOWDOWN_BUILD_FACTOR=1.5
194
194
 
@@ -215,9 +215,9 @@ CC_mutrace = $(DEFAULT_CC)
215
215
  CXX_mutrace = $(DEFAULT_CXX)
216
216
  LD_mutrace = $(DEFAULT_CC)
217
217
  LDXX_mutrace = $(DEFAULT_CXX)
218
- CPPFLAGS_mutrace = -O0
218
+ CPPFLAGS_mutrace = -O3 -fno-omit-frame-pointer
219
219
  LDFLAGS_mutrace = -rdynamic
220
- DEFINES_mutrace = _DEBUG DEBUG
220
+ DEFINES_mutrace = NDEBUG
221
221
 
222
222
  VALID_CONFIG_memcheck = 1
223
223
  CC_memcheck = $(DEFAULT_CC)
@@ -319,12 +319,19 @@ CHECK_SHADOW_WORKS_CMD = $(CC) -std=c99 -Werror -Wshadow -o $(TMPOUT) -c test/bu
319
319
  HAS_WORKING_SHADOW = $(shell $(CHECK_SHADOW_WORKS_CMD) 2> /dev/null && echo true || echo false)
320
320
  ifeq ($(HAS_WORKING_SHADOW),true)
321
321
  W_SHADOW=-Wshadow
322
+ NO_W_SHADOW=-Wno-shadow
322
323
  endif
323
-
324
- CHECK_NO_SHIFT_NEGATIVE_VALUE_CMD = $(CC) -std=c99 -Werror -Wno-shift-negative-value -o $(TMPOUT) -c test/build/empty.c
325
- HAS_NO_SHIFT_NEGATIVE_VALUE = $(shell $(CHECK_NO_SHIFT_NEGATIVE_VALUE_CMD) 2> /dev/null && echo true || echo false)
326
- ifeq ($(HAS_NO_SHIFT_NEGATIVE_VALUE),true)
324
+ CHECK_EXTRA_SEMI_WORKS_CMD = $(CC) -std=c99 -Werror -Wextra-semi -o $(TMPOUT) -c test/build/extra-semi.c
325
+ HAS_WORKING_EXTRA_SEMI = $(shell $(CHECK_EXTRA_SEMI_WORKS_CMD) 2> /dev/null && echo true || echo false)
326
+ ifeq ($(HAS_WORKING_EXTRA_SEMI),true)
327
+ W_EXTRA_SEMI=-Wextra-semi
328
+ NO_W_EXTRA_SEMI=-Wno-extra-semi
329
+ endif
330
+ CHECK_NO_SHIFT_NEGATIVE_VALUE_WORKS_CMD = $(CC) -std=c99 -Werror -Wno-shift-negative-value -o $(TMPOUT) -c test/build/no-shift-negative-value.c
331
+ HAS_WORKING_NO_SHIFT_NEGATIVE_VALUE = $(shell $(CHECK_NO_SHIFT_NEGATIVE_VALUE_WORKS_CMD) 2> /dev/null && echo true || echo false)
332
+ ifeq ($(HAS_WORKING_NO_SHIFT_NEGATIVE_VALUE),true)
327
333
  W_NO_SHIFT_NEGATIVE_VALUE=-Wno-shift-negative-value
334
+ NO_W_NO_SHIFT_NEGATIVE_VALUE=-Wshift-negative-value
328
335
  endif
329
336
 
330
337
  # The HOST compiler settings are used to compile the protoc plugins.
@@ -341,7 +348,7 @@ ifdef EXTRA_DEFINES
341
348
  DEFINES += $(EXTRA_DEFINES)
342
349
  endif
343
350
 
344
- CFLAGS += -std=c99 -Wsign-conversion -Wconversion $(W_SHADOW)
351
+ CFLAGS += -std=c99 -Wsign-conversion -Wconversion $(W_SHADOW) $(W_EXTRA_SEMI)
345
352
  ifeq ($(HAS_CXX11),true)
346
353
  CXXFLAGS += -std=c++11
347
354
  else
@@ -407,7 +414,7 @@ E = @echo
407
414
  Q = @
408
415
  endif
409
416
 
410
- VERSION = 0.14.1
417
+ VERSION = 0.15.0
411
418
 
412
419
  CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
413
420
  CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
@@ -472,7 +479,7 @@ endif
472
479
 
473
480
  OPENSSL_ALPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-alpn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS)
474
481
  OPENSSL_NPN_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/openssl-npn.c $(addprefix -l, $(OPENSSL_LIBS)) $(LDFLAGS)
475
- BORINGSSL_COMPILE_CHECK_CMD = $(CC) $(CPPFLAGS) -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare -o $(TMPOUT) test/build/boringssl.c $(LDFLAGS)
482
+ BORINGSSL_COMPILE_CHECK_CMD = $(CC) $(CPPFLAGS) -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI) -o $(TMPOUT) test/build/boringssl.c $(LDFLAGS)
476
483
  ZLIB_CHECK_CMD = $(CC) $(CPPFLAGS) $(CFLAGS) -o $(TMPOUT) test/build/zlib.c -lz $(LDFLAGS)
477
484
  PROTOBUF_CHECK_CMD = $(CXX) $(CPPFLAGS) $(CXXFLAGS) -o $(TMPOUT) test/build/protobuf.cc -lprotobuf $(LDFLAGS)
478
485
 
@@ -882,6 +889,7 @@ algorithm_test: $(BINDIR)/$(CONFIG)/algorithm_test
882
889
  alloc_test: $(BINDIR)/$(CONFIG)/alloc_test
883
890
  alpn_test: $(BINDIR)/$(CONFIG)/alpn_test
884
891
  api_fuzzer: $(BINDIR)/$(CONFIG)/api_fuzzer
892
+ bin_decoder_test: $(BINDIR)/$(CONFIG)/bin_decoder_test
885
893
  bin_encoder_test: $(BINDIR)/$(CONFIG)/bin_encoder_test
886
894
  census_context_test: $(BINDIR)/$(CONFIG)/census_context_test
887
895
  channel_create_test: $(BINDIR)/$(CONFIG)/channel_create_test
@@ -912,7 +920,6 @@ gpr_cpu_test: $(BINDIR)/$(CONFIG)/gpr_cpu_test
912
920
  gpr_env_test: $(BINDIR)/$(CONFIG)/gpr_env_test
913
921
  gpr_histogram_test: $(BINDIR)/$(CONFIG)/gpr_histogram_test
914
922
  gpr_host_port_test: $(BINDIR)/$(CONFIG)/gpr_host_port_test
915
- gpr_load_file_test: $(BINDIR)/$(CONFIG)/gpr_load_file_test
916
923
  gpr_log_test: $(BINDIR)/$(CONFIG)/gpr_log_test
917
924
  gpr_slice_buffer_test: $(BINDIR)/$(CONFIG)/gpr_slice_buffer_test
918
925
  gpr_slice_test: $(BINDIR)/$(CONFIG)/gpr_slice_test
@@ -941,8 +948,9 @@ grpc_verify_jwt: $(BINDIR)/$(CONFIG)/grpc_verify_jwt
941
948
  hpack_parser_fuzzer_test: $(BINDIR)/$(CONFIG)/hpack_parser_fuzzer_test
942
949
  hpack_parser_test: $(BINDIR)/$(CONFIG)/hpack_parser_test
943
950
  hpack_table_test: $(BINDIR)/$(CONFIG)/hpack_table_test
944
- http_fuzzer_test: $(BINDIR)/$(CONFIG)/http_fuzzer_test
945
951
  http_parser_test: $(BINDIR)/$(CONFIG)/http_parser_test
952
+ http_request_fuzzer_test: $(BINDIR)/$(CONFIG)/http_request_fuzzer_test
953
+ http_response_fuzzer_test: $(BINDIR)/$(CONFIG)/http_response_fuzzer_test
946
954
  httpcli_format_request_test: $(BINDIR)/$(CONFIG)/httpcli_format_request_test
947
955
  httpcli_test: $(BINDIR)/$(CONFIG)/httpcli_test
948
956
  httpscli_test: $(BINDIR)/$(CONFIG)/httpscli_test
@@ -958,6 +966,7 @@ json_stream_error_test: $(BINDIR)/$(CONFIG)/json_stream_error_test
958
966
  json_test: $(BINDIR)/$(CONFIG)/json_test
959
967
  lame_client_test: $(BINDIR)/$(CONFIG)/lame_client_test
960
968
  lb_policies_test: $(BINDIR)/$(CONFIG)/lb_policies_test
969
+ load_file_test: $(BINDIR)/$(CONFIG)/load_file_test
961
970
  low_level_ping_pong_benchmark: $(BINDIR)/$(CONFIG)/low_level_ping_pong_benchmark
962
971
  message_compress_test: $(BINDIR)/$(CONFIG)/message_compress_test
963
972
  mlog_test: $(BINDIR)/$(CONFIG)/mlog_test
@@ -969,6 +978,7 @@ no_server_test: $(BINDIR)/$(CONFIG)/no_server_test
969
978
  resolve_address_test: $(BINDIR)/$(CONFIG)/resolve_address_test
970
979
  secure_channel_create_test: $(BINDIR)/$(CONFIG)/secure_channel_create_test
971
980
  secure_endpoint_test: $(BINDIR)/$(CONFIG)/secure_endpoint_test
981
+ sequential_connectivity_test: $(BINDIR)/$(CONFIG)/sequential_connectivity_test
972
982
  server_chttp2_test: $(BINDIR)/$(CONFIG)/server_chttp2_test
973
983
  server_fuzzer: $(BINDIR)/$(CONFIG)/server_fuzzer
974
984
  server_test: $(BINDIR)/$(CONFIG)/server_test
@@ -993,8 +1003,6 @@ uri_parser_test: $(BINDIR)/$(CONFIG)/uri_parser_test
993
1003
  workqueue_test: $(BINDIR)/$(CONFIG)/workqueue_test
994
1004
  alarm_cpp_test: $(BINDIR)/$(CONFIG)/alarm_cpp_test
995
1005
  async_end2end_test: $(BINDIR)/$(CONFIG)/async_end2end_test
996
- async_streaming_ping_pong_test: $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test
997
- async_unary_ping_pong_test: $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test
998
1006
  auth_property_iterator_test: $(BINDIR)/$(CONFIG)/auth_property_iterator_test
999
1007
  channel_arguments_test: $(BINDIR)/$(CONFIG)/channel_arguments_test
1000
1008
  cli_call_test: $(BINDIR)/$(CONFIG)/cli_call_test
@@ -1008,7 +1016,6 @@ cxx_slice_test: $(BINDIR)/$(CONFIG)/cxx_slice_test
1008
1016
  cxx_string_ref_test: $(BINDIR)/$(CONFIG)/cxx_string_ref_test
1009
1017
  cxx_time_test: $(BINDIR)/$(CONFIG)/cxx_time_test
1010
1018
  end2end_test: $(BINDIR)/$(CONFIG)/end2end_test
1011
- generic_async_streaming_ping_pong_test: $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test
1012
1019
  generic_end2end_test: $(BINDIR)/$(CONFIG)/generic_end2end_test
1013
1020
  golden_file_test: $(BINDIR)/$(CONFIG)/golden_file_test
1014
1021
  grpc_cli: $(BINDIR)/$(CONFIG)/grpc_cli
@@ -1026,25 +1033,23 @@ interop_test: $(BINDIR)/$(CONFIG)/interop_test
1026
1033
  json_run_localhost: $(BINDIR)/$(CONFIG)/json_run_localhost
1027
1034
  metrics_client: $(BINDIR)/$(CONFIG)/metrics_client
1028
1035
  mock_test: $(BINDIR)/$(CONFIG)/mock_test
1036
+ proto_server_reflection_test: $(BINDIR)/$(CONFIG)/proto_server_reflection_test
1029
1037
  qps_interarrival_test: $(BINDIR)/$(CONFIG)/qps_interarrival_test
1030
1038
  qps_json_driver: $(BINDIR)/$(CONFIG)/qps_json_driver
1031
1039
  qps_openloop_test: $(BINDIR)/$(CONFIG)/qps_openloop_test
1032
- qps_test: $(BINDIR)/$(CONFIG)/qps_test
1033
1040
  qps_worker: $(BINDIR)/$(CONFIG)/qps_worker
1034
1041
  reconnect_interop_client: $(BINDIR)/$(CONFIG)/reconnect_interop_client
1035
1042
  reconnect_interop_server: $(BINDIR)/$(CONFIG)/reconnect_interop_server
1036
1043
  secure_auth_context_test: $(BINDIR)/$(CONFIG)/secure_auth_context_test
1037
1044
  secure_sync_unary_ping_pong_test: $(BINDIR)/$(CONFIG)/secure_sync_unary_ping_pong_test
1045
+ server_builder_plugin_test: $(BINDIR)/$(CONFIG)/server_builder_plugin_test
1038
1046
  server_crash_test: $(BINDIR)/$(CONFIG)/server_crash_test
1039
1047
  server_crash_test_client: $(BINDIR)/$(CONFIG)/server_crash_test_client
1040
1048
  shutdown_test: $(BINDIR)/$(CONFIG)/shutdown_test
1041
1049
  status_test: $(BINDIR)/$(CONFIG)/status_test
1042
1050
  streaming_throughput_test: $(BINDIR)/$(CONFIG)/streaming_throughput_test
1043
1051
  stress_test: $(BINDIR)/$(CONFIG)/stress_test
1044
- sync_streaming_ping_pong_test: $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test
1045
- sync_unary_ping_pong_test: $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test
1046
1052
  thread_stress_test: $(BINDIR)/$(CONFIG)/thread_stress_test
1047
- zookeeper_test: $(BINDIR)/$(CONFIG)/zookeeper_test
1048
1053
  public_headers_must_be_c89: $(BINDIR)/$(CONFIG)/public_headers_must_be_c89
1049
1054
  boringssl_aes_test: $(BINDIR)/$(CONFIG)/boringssl_aes_test
1050
1055
  boringssl_asn1_test: $(BINDIR)/$(CONFIG)/boringssl_asn1_test
@@ -1089,6 +1094,7 @@ connection_prefix_bad_client_test: $(BINDIR)/$(CONFIG)/connection_prefix_bad_cli
1089
1094
  head_of_line_blocking_bad_client_test: $(BINDIR)/$(CONFIG)/head_of_line_blocking_bad_client_test
1090
1095
  headers_bad_client_test: $(BINDIR)/$(CONFIG)/headers_bad_client_test
1091
1096
  initial_settings_frame_bad_client_test: $(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test
1097
+ large_metadata_bad_client_test: $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test
1092
1098
  server_registered_method_bad_client_test: $(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test
1093
1099
  simple_request_bad_client_test: $(BINDIR)/$(CONFIG)/simple_request_bad_client_test
1094
1100
  unknown_frame_bad_client_test: $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test
@@ -1100,9 +1106,11 @@ bad_ssl_cert_test: $(BINDIR)/$(CONFIG)/bad_ssl_cert_test
1100
1106
  h2_census_test: $(BINDIR)/$(CONFIG)/h2_census_test
1101
1107
  h2_compress_test: $(BINDIR)/$(CONFIG)/h2_compress_test
1102
1108
  h2_fakesec_test: $(BINDIR)/$(CONFIG)/h2_fakesec_test
1109
+ h2_fd_test: $(BINDIR)/$(CONFIG)/h2_fd_test
1103
1110
  h2_full_test: $(BINDIR)/$(CONFIG)/h2_full_test
1104
1111
  h2_full+pipe_test: $(BINDIR)/$(CONFIG)/h2_full+pipe_test
1105
1112
  h2_full+trace_test: $(BINDIR)/$(CONFIG)/h2_full+trace_test
1113
+ h2_loadreporting_test: $(BINDIR)/$(CONFIG)/h2_loadreporting_test
1106
1114
  h2_oauth2_test: $(BINDIR)/$(CONFIG)/h2_oauth2_test
1107
1115
  h2_proxy_test: $(BINDIR)/$(CONFIG)/h2_proxy_test
1108
1116
  h2_sockpair_test: $(BINDIR)/$(CONFIG)/h2_sockpair_test
@@ -1114,9 +1122,11 @@ h2_ssl_proxy_test: $(BINDIR)/$(CONFIG)/h2_ssl_proxy_test
1114
1122
  h2_uds_test: $(BINDIR)/$(CONFIG)/h2_uds_test
1115
1123
  h2_census_nosec_test: $(BINDIR)/$(CONFIG)/h2_census_nosec_test
1116
1124
  h2_compress_nosec_test: $(BINDIR)/$(CONFIG)/h2_compress_nosec_test
1125
+ h2_fd_nosec_test: $(BINDIR)/$(CONFIG)/h2_fd_nosec_test
1117
1126
  h2_full_nosec_test: $(BINDIR)/$(CONFIG)/h2_full_nosec_test
1118
1127
  h2_full+pipe_nosec_test: $(BINDIR)/$(CONFIG)/h2_full+pipe_nosec_test
1119
1128
  h2_full+trace_nosec_test: $(BINDIR)/$(CONFIG)/h2_full+trace_nosec_test
1129
+ h2_loadreporting_nosec_test: $(BINDIR)/$(CONFIG)/h2_loadreporting_nosec_test
1120
1130
  h2_proxy_nosec_test: $(BINDIR)/$(CONFIG)/h2_proxy_nosec_test
1121
1131
  h2_sockpair_nosec_test: $(BINDIR)/$(CONFIG)/h2_sockpair_nosec_test
1122
1132
  h2_sockpair+trace_nosec_test: $(BINDIR)/$(CONFIG)/h2_sockpair+trace_nosec_test
@@ -1125,7 +1135,8 @@ h2_uds_nosec_test: $(BINDIR)/$(CONFIG)/h2_uds_nosec_test
1125
1135
  api_fuzzer_one_entry: $(BINDIR)/$(CONFIG)/api_fuzzer_one_entry
1126
1136
  client_fuzzer_one_entry: $(BINDIR)/$(CONFIG)/client_fuzzer_one_entry
1127
1137
  hpack_parser_fuzzer_test_one_entry: $(BINDIR)/$(CONFIG)/hpack_parser_fuzzer_test_one_entry
1128
- http_fuzzer_test_one_entry: $(BINDIR)/$(CONFIG)/http_fuzzer_test_one_entry
1138
+ http_request_fuzzer_test_one_entry: $(BINDIR)/$(CONFIG)/http_request_fuzzer_test_one_entry
1139
+ http_response_fuzzer_test_one_entry: $(BINDIR)/$(CONFIG)/http_response_fuzzer_test_one_entry
1129
1140
  json_fuzzer_test_one_entry: $(BINDIR)/$(CONFIG)/json_fuzzer_test_one_entry
1130
1141
  nanopb_fuzzer_response_test_one_entry: $(BINDIR)/$(CONFIG)/nanopb_fuzzer_response_test_one_entry
1131
1142
  nanopb_fuzzer_serverlist_test_one_entry: $(BINDIR)/$(CONFIG)/nanopb_fuzzer_serverlist_test_one_entry
@@ -1158,21 +1169,21 @@ $(LIBDIR)/$(CONFIG)/protobuf/libprotobuf.a: third_party/protobuf/configure
1158
1169
 
1159
1170
  static: static_c static_cxx
1160
1171
 
1161
- static_c: pc_c pc_c_unsecure cache.mk pc_c_zookeeper $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a static_zookeeper_libs
1172
+ static_c: pc_c pc_c_unsecure cache.mk pc_c_zookeeper $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a static_zookeeper_libs
1162
1173
 
1163
1174
 
1164
- static_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
1175
+ static_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
1165
1176
 
1166
1177
  shared: shared_c shared_cxx
1167
1178
 
1168
- shared_c: pc_c pc_c_unsecure cache.mk pc_c_zookeeper $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION).$(SHARED_EXT) shared_zookeeper_libs
1179
+ shared_c: pc_c pc_c_unsecure cache.mk pc_c_zookeeper $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION).$(SHARED_EXT) shared_zookeeper_libs
1169
1180
 
1170
- shared_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION).$(SHARED_EXT)
1181
+ shared_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION).$(SHARED_EXT)
1171
1182
 
1172
1183
  shared_csharp: shared_c $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION).$(SHARED_EXT)
1173
1184
  ifeq ($(HAS_ZOOKEEPER),true)
1174
- static_zookeeper_libs: $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a
1175
- shared_zookeeper_libs: $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT)
1185
+ static_zookeeper_libs:
1186
+ shared_zookeeper_libs:
1176
1187
  else
1177
1188
 
1178
1189
  static_zookeeper_libs:
@@ -1202,7 +1213,12 @@ pc_cxx: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc
1202
1213
 
1203
1214
  pc_cxx_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc
1204
1215
 
1205
- privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl_aes_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_asn1_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_base64_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_bio_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_bn_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_bytestring_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_aead_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_cipher_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_cmac_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ed25519_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_x25519_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_dh_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_digest_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ec_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ecdsa_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_err_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_evp_extra_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_evp_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_pbkdf_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_hmac_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_pkcs12_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_pkcs8_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_poly1305_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_rsa_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_x509_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ssl_test_lib.a
1216
+ ifeq ($(EMBED_OPENSSL),true)
1217
+ privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl_aes_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_asn1_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_base64_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_bio_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_bn_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_bytestring_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_aead_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_cipher_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_cmac_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ed25519_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_x25519_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_dh_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_digest_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ec_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ecdsa_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_err_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_evp_extra_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_evp_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_pbkdf_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_hmac_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_pkcs12_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_pkcs8_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_poly1305_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_rsa_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_x509_test_lib.a $(LIBDIR)/$(CONFIG)/libboringssl_ssl_test_lib.a
1218
+ else
1219
+ privatelibs_cxx: $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libinterop_client_helper.a $(LIBDIR)/$(CONFIG)/libinterop_client_main.a $(LIBDIR)/$(CONFIG)/libinterop_server_helper.a $(LIBDIR)/$(CONFIG)/libinterop_server_main.a $(LIBDIR)/$(CONFIG)/libqps.a
1220
+ endif
1221
+
1206
1222
 
1207
1223
  ifeq ($(HAS_ZOOKEEPER),true)
1208
1224
  privatelibs_zookeeper:
@@ -1218,6 +1234,7 @@ buildtests_c: privatelibs_c \
1218
1234
  $(BINDIR)/$(CONFIG)/algorithm_test \
1219
1235
  $(BINDIR)/$(CONFIG)/alloc_test \
1220
1236
  $(BINDIR)/$(CONFIG)/alpn_test \
1237
+ $(BINDIR)/$(CONFIG)/bin_decoder_test \
1221
1238
  $(BINDIR)/$(CONFIG)/bin_encoder_test \
1222
1239
  $(BINDIR)/$(CONFIG)/census_context_test \
1223
1240
  $(BINDIR)/$(CONFIG)/channel_create_test \
@@ -1245,7 +1262,6 @@ buildtests_c: privatelibs_c \
1245
1262
  $(BINDIR)/$(CONFIG)/gpr_env_test \
1246
1263
  $(BINDIR)/$(CONFIG)/gpr_histogram_test \
1247
1264
  $(BINDIR)/$(CONFIG)/gpr_host_port_test \
1248
- $(BINDIR)/$(CONFIG)/gpr_load_file_test \
1249
1265
  $(BINDIR)/$(CONFIG)/gpr_log_test \
1250
1266
  $(BINDIR)/$(CONFIG)/gpr_slice_buffer_test \
1251
1267
  $(BINDIR)/$(CONFIG)/gpr_slice_test \
@@ -1284,6 +1300,7 @@ buildtests_c: privatelibs_c \
1284
1300
  $(BINDIR)/$(CONFIG)/json_test \
1285
1301
  $(BINDIR)/$(CONFIG)/lame_client_test \
1286
1302
  $(BINDIR)/$(CONFIG)/lb_policies_test \
1303
+ $(BINDIR)/$(CONFIG)/load_file_test \
1287
1304
  $(BINDIR)/$(CONFIG)/message_compress_test \
1288
1305
  $(BINDIR)/$(CONFIG)/mlog_test \
1289
1306
  $(BINDIR)/$(CONFIG)/multiple_server_queues_test \
@@ -1292,6 +1309,7 @@ buildtests_c: privatelibs_c \
1292
1309
  $(BINDIR)/$(CONFIG)/resolve_address_test \
1293
1310
  $(BINDIR)/$(CONFIG)/secure_channel_create_test \
1294
1311
  $(BINDIR)/$(CONFIG)/secure_endpoint_test \
1312
+ $(BINDIR)/$(CONFIG)/sequential_connectivity_test \
1295
1313
  $(BINDIR)/$(CONFIG)/server_chttp2_test \
1296
1314
  $(BINDIR)/$(CONFIG)/server_test \
1297
1315
  $(BINDIR)/$(CONFIG)/set_initial_connect_string_test \
@@ -1318,6 +1336,7 @@ buildtests_c: privatelibs_c \
1318
1336
  $(BINDIR)/$(CONFIG)/head_of_line_blocking_bad_client_test \
1319
1337
  $(BINDIR)/$(CONFIG)/headers_bad_client_test \
1320
1338
  $(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test \
1339
+ $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test \
1321
1340
  $(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test \
1322
1341
  $(BINDIR)/$(CONFIG)/simple_request_bad_client_test \
1323
1342
  $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test \
@@ -1329,9 +1348,11 @@ buildtests_c: privatelibs_c \
1329
1348
  $(BINDIR)/$(CONFIG)/h2_census_test \
1330
1349
  $(BINDIR)/$(CONFIG)/h2_compress_test \
1331
1350
  $(BINDIR)/$(CONFIG)/h2_fakesec_test \
1351
+ $(BINDIR)/$(CONFIG)/h2_fd_test \
1332
1352
  $(BINDIR)/$(CONFIG)/h2_full_test \
1333
1353
  $(BINDIR)/$(CONFIG)/h2_full+pipe_test \
1334
1354
  $(BINDIR)/$(CONFIG)/h2_full+trace_test \
1355
+ $(BINDIR)/$(CONFIG)/h2_loadreporting_test \
1335
1356
  $(BINDIR)/$(CONFIG)/h2_oauth2_test \
1336
1357
  $(BINDIR)/$(CONFIG)/h2_proxy_test \
1337
1358
  $(BINDIR)/$(CONFIG)/h2_sockpair_test \
@@ -1343,9 +1364,11 @@ buildtests_c: privatelibs_c \
1343
1364
  $(BINDIR)/$(CONFIG)/h2_uds_test \
1344
1365
  $(BINDIR)/$(CONFIG)/h2_census_nosec_test \
1345
1366
  $(BINDIR)/$(CONFIG)/h2_compress_nosec_test \
1367
+ $(BINDIR)/$(CONFIG)/h2_fd_nosec_test \
1346
1368
  $(BINDIR)/$(CONFIG)/h2_full_nosec_test \
1347
1369
  $(BINDIR)/$(CONFIG)/h2_full+pipe_nosec_test \
1348
1370
  $(BINDIR)/$(CONFIG)/h2_full+trace_nosec_test \
1371
+ $(BINDIR)/$(CONFIG)/h2_loadreporting_nosec_test \
1349
1372
  $(BINDIR)/$(CONFIG)/h2_proxy_nosec_test \
1350
1373
  $(BINDIR)/$(CONFIG)/h2_sockpair_nosec_test \
1351
1374
  $(BINDIR)/$(CONFIG)/h2_sockpair+trace_nosec_test \
@@ -1354,7 +1377,8 @@ buildtests_c: privatelibs_c \
1354
1377
  $(BINDIR)/$(CONFIG)/api_fuzzer_one_entry \
1355
1378
  $(BINDIR)/$(CONFIG)/client_fuzzer_one_entry \
1356
1379
  $(BINDIR)/$(CONFIG)/hpack_parser_fuzzer_test_one_entry \
1357
- $(BINDIR)/$(CONFIG)/http_fuzzer_test_one_entry \
1380
+ $(BINDIR)/$(CONFIG)/http_request_fuzzer_test_one_entry \
1381
+ $(BINDIR)/$(CONFIG)/http_response_fuzzer_test_one_entry \
1358
1382
  $(BINDIR)/$(CONFIG)/json_fuzzer_test_one_entry \
1359
1383
  $(BINDIR)/$(CONFIG)/nanopb_fuzzer_response_test_one_entry \
1360
1384
  $(BINDIR)/$(CONFIG)/nanopb_fuzzer_serverlist_test_one_entry \
@@ -1362,11 +1386,10 @@ buildtests_c: privatelibs_c \
1362
1386
  $(BINDIR)/$(CONFIG)/uri_fuzzer_test_one_entry \
1363
1387
 
1364
1388
 
1389
+ ifeq ($(EMBED_OPENSSL),true)
1365
1390
  buildtests_cxx: buildtests_zookeeper privatelibs_cxx \
1366
1391
  $(BINDIR)/$(CONFIG)/alarm_cpp_test \
1367
1392
  $(BINDIR)/$(CONFIG)/async_end2end_test \
1368
- $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test \
1369
- $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test \
1370
1393
  $(BINDIR)/$(CONFIG)/auth_property_iterator_test \
1371
1394
  $(BINDIR)/$(CONFIG)/channel_arguments_test \
1372
1395
  $(BINDIR)/$(CONFIG)/cli_call_test \
@@ -1380,7 +1403,6 @@ buildtests_cxx: buildtests_zookeeper privatelibs_cxx \
1380
1403
  $(BINDIR)/$(CONFIG)/cxx_string_ref_test \
1381
1404
  $(BINDIR)/$(CONFIG)/cxx_time_test \
1382
1405
  $(BINDIR)/$(CONFIG)/end2end_test \
1383
- $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test \
1384
1406
  $(BINDIR)/$(CONFIG)/generic_end2end_test \
1385
1407
  $(BINDIR)/$(CONFIG)/golden_file_test \
1386
1408
  $(BINDIR)/$(CONFIG)/grpc_cli \
@@ -1392,23 +1414,22 @@ buildtests_cxx: buildtests_zookeeper privatelibs_cxx \
1392
1414
  $(BINDIR)/$(CONFIG)/json_run_localhost \
1393
1415
  $(BINDIR)/$(CONFIG)/metrics_client \
1394
1416
  $(BINDIR)/$(CONFIG)/mock_test \
1417
+ $(BINDIR)/$(CONFIG)/proto_server_reflection_test \
1395
1418
  $(BINDIR)/$(CONFIG)/qps_interarrival_test \
1396
1419
  $(BINDIR)/$(CONFIG)/qps_json_driver \
1397
1420
  $(BINDIR)/$(CONFIG)/qps_openloop_test \
1398
- $(BINDIR)/$(CONFIG)/qps_test \
1399
1421
  $(BINDIR)/$(CONFIG)/qps_worker \
1400
1422
  $(BINDIR)/$(CONFIG)/reconnect_interop_client \
1401
1423
  $(BINDIR)/$(CONFIG)/reconnect_interop_server \
1402
1424
  $(BINDIR)/$(CONFIG)/secure_auth_context_test \
1403
1425
  $(BINDIR)/$(CONFIG)/secure_sync_unary_ping_pong_test \
1426
+ $(BINDIR)/$(CONFIG)/server_builder_plugin_test \
1404
1427
  $(BINDIR)/$(CONFIG)/server_crash_test \
1405
1428
  $(BINDIR)/$(CONFIG)/server_crash_test_client \
1406
1429
  $(BINDIR)/$(CONFIG)/shutdown_test \
1407
1430
  $(BINDIR)/$(CONFIG)/status_test \
1408
1431
  $(BINDIR)/$(CONFIG)/streaming_throughput_test \
1409
1432
  $(BINDIR)/$(CONFIG)/stress_test \
1410
- $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test \
1411
- $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test \
1412
1433
  $(BINDIR)/$(CONFIG)/thread_stress_test \
1413
1434
  $(BINDIR)/$(CONFIG)/boringssl_aes_test \
1414
1435
  $(BINDIR)/$(CONFIG)/boringssl_asn1_test \
@@ -1449,10 +1470,57 @@ buildtests_cxx: buildtests_zookeeper privatelibs_cxx \
1449
1470
  $(BINDIR)/$(CONFIG)/boringssl_pqueue_test \
1450
1471
  $(BINDIR)/$(CONFIG)/boringssl_ssl_test \
1451
1472
 
1473
+ else
1474
+ buildtests_cxx: buildtests_zookeeper privatelibs_cxx \
1475
+ $(BINDIR)/$(CONFIG)/alarm_cpp_test \
1476
+ $(BINDIR)/$(CONFIG)/async_end2end_test \
1477
+ $(BINDIR)/$(CONFIG)/auth_property_iterator_test \
1478
+ $(BINDIR)/$(CONFIG)/channel_arguments_test \
1479
+ $(BINDIR)/$(CONFIG)/cli_call_test \
1480
+ $(BINDIR)/$(CONFIG)/client_crash_test \
1481
+ $(BINDIR)/$(CONFIG)/client_crash_test_server \
1482
+ $(BINDIR)/$(CONFIG)/codegen_test_full \
1483
+ $(BINDIR)/$(CONFIG)/codegen_test_minimal \
1484
+ $(BINDIR)/$(CONFIG)/credentials_test \
1485
+ $(BINDIR)/$(CONFIG)/cxx_byte_buffer_test \
1486
+ $(BINDIR)/$(CONFIG)/cxx_slice_test \
1487
+ $(BINDIR)/$(CONFIG)/cxx_string_ref_test \
1488
+ $(BINDIR)/$(CONFIG)/cxx_time_test \
1489
+ $(BINDIR)/$(CONFIG)/end2end_test \
1490
+ $(BINDIR)/$(CONFIG)/generic_end2end_test \
1491
+ $(BINDIR)/$(CONFIG)/golden_file_test \
1492
+ $(BINDIR)/$(CONFIG)/grpc_cli \
1493
+ $(BINDIR)/$(CONFIG)/grpclb_api_test \
1494
+ $(BINDIR)/$(CONFIG)/hybrid_end2end_test \
1495
+ $(BINDIR)/$(CONFIG)/interop_client \
1496
+ $(BINDIR)/$(CONFIG)/interop_server \
1497
+ $(BINDIR)/$(CONFIG)/interop_test \
1498
+ $(BINDIR)/$(CONFIG)/json_run_localhost \
1499
+ $(BINDIR)/$(CONFIG)/metrics_client \
1500
+ $(BINDIR)/$(CONFIG)/mock_test \
1501
+ $(BINDIR)/$(CONFIG)/proto_server_reflection_test \
1502
+ $(BINDIR)/$(CONFIG)/qps_interarrival_test \
1503
+ $(BINDIR)/$(CONFIG)/qps_json_driver \
1504
+ $(BINDIR)/$(CONFIG)/qps_openloop_test \
1505
+ $(BINDIR)/$(CONFIG)/qps_worker \
1506
+ $(BINDIR)/$(CONFIG)/reconnect_interop_client \
1507
+ $(BINDIR)/$(CONFIG)/reconnect_interop_server \
1508
+ $(BINDIR)/$(CONFIG)/secure_auth_context_test \
1509
+ $(BINDIR)/$(CONFIG)/secure_sync_unary_ping_pong_test \
1510
+ $(BINDIR)/$(CONFIG)/server_builder_plugin_test \
1511
+ $(BINDIR)/$(CONFIG)/server_crash_test \
1512
+ $(BINDIR)/$(CONFIG)/server_crash_test_client \
1513
+ $(BINDIR)/$(CONFIG)/shutdown_test \
1514
+ $(BINDIR)/$(CONFIG)/status_test \
1515
+ $(BINDIR)/$(CONFIG)/streaming_throughput_test \
1516
+ $(BINDIR)/$(CONFIG)/stress_test \
1517
+ $(BINDIR)/$(CONFIG)/thread_stress_test \
1518
+
1519
+ endif
1520
+
1452
1521
 
1453
1522
  ifeq ($(HAS_ZOOKEEPER),true)
1454
1523
  buildtests_zookeeper: privatelibs_zookeeper \
1455
- $(BINDIR)/$(CONFIG)/zookeeper_test \
1456
1524
 
1457
1525
  else
1458
1526
  buildtests_zookeeper:
@@ -1472,6 +1540,8 @@ test_c: buildtests_c
1472
1540
  $(Q) $(BINDIR)/$(CONFIG)/alloc_test || ( echo test alloc_test failed ; exit 1 )
1473
1541
  $(E) "[RUN] Testing alpn_test"
1474
1542
  $(Q) $(BINDIR)/$(CONFIG)/alpn_test || ( echo test alpn_test failed ; exit 1 )
1543
+ $(E) "[RUN] Testing bin_decoder_test"
1544
+ $(Q) $(BINDIR)/$(CONFIG)/bin_decoder_test || ( echo test bin_decoder_test failed ; exit 1 )
1475
1545
  $(E) "[RUN] Testing bin_encoder_test"
1476
1546
  $(Q) $(BINDIR)/$(CONFIG)/bin_encoder_test || ( echo test bin_encoder_test failed ; exit 1 )
1477
1547
  $(E) "[RUN] Testing census_context_test"
@@ -1522,8 +1592,6 @@ test_c: buildtests_c
1522
1592
  $(Q) $(BINDIR)/$(CONFIG)/gpr_histogram_test || ( echo test gpr_histogram_test failed ; exit 1 )
1523
1593
  $(E) "[RUN] Testing gpr_host_port_test"
1524
1594
  $(Q) $(BINDIR)/$(CONFIG)/gpr_host_port_test || ( echo test gpr_host_port_test failed ; exit 1 )
1525
- $(E) "[RUN] Testing gpr_load_file_test"
1526
- $(Q) $(BINDIR)/$(CONFIG)/gpr_load_file_test || ( echo test gpr_load_file_test failed ; exit 1 )
1527
1595
  $(E) "[RUN] Testing gpr_log_test"
1528
1596
  $(Q) $(BINDIR)/$(CONFIG)/gpr_log_test || ( echo test gpr_log_test failed ; exit 1 )
1529
1597
  $(E) "[RUN] Testing gpr_slice_buffer_test"
@@ -1590,6 +1658,8 @@ test_c: buildtests_c
1590
1658
  $(Q) $(BINDIR)/$(CONFIG)/json_test || ( echo test json_test failed ; exit 1 )
1591
1659
  $(E) "[RUN] Testing lame_client_test"
1592
1660
  $(Q) $(BINDIR)/$(CONFIG)/lame_client_test || ( echo test lame_client_test failed ; exit 1 )
1661
+ $(E) "[RUN] Testing load_file_test"
1662
+ $(Q) $(BINDIR)/$(CONFIG)/load_file_test || ( echo test load_file_test failed ; exit 1 )
1593
1663
  $(E) "[RUN] Testing message_compress_test"
1594
1664
  $(Q) $(BINDIR)/$(CONFIG)/message_compress_test || ( echo test message_compress_test failed ; exit 1 )
1595
1665
  $(E) "[RUN] Testing multiple_server_queues_test"
@@ -1604,6 +1674,8 @@ test_c: buildtests_c
1604
1674
  $(Q) $(BINDIR)/$(CONFIG)/secure_channel_create_test || ( echo test secure_channel_create_test failed ; exit 1 )
1605
1675
  $(E) "[RUN] Testing secure_endpoint_test"
1606
1676
  $(Q) $(BINDIR)/$(CONFIG)/secure_endpoint_test || ( echo test secure_endpoint_test failed ; exit 1 )
1677
+ $(E) "[RUN] Testing sequential_connectivity_test"
1678
+ $(Q) $(BINDIR)/$(CONFIG)/sequential_connectivity_test || ( echo test sequential_connectivity_test failed ; exit 1 )
1607
1679
  $(E) "[RUN] Testing server_chttp2_test"
1608
1680
  $(Q) $(BINDIR)/$(CONFIG)/server_chttp2_test || ( echo test server_chttp2_test failed ; exit 1 )
1609
1681
  $(E) "[RUN] Testing server_test"
@@ -1656,6 +1728,8 @@ test_c: buildtests_c
1656
1728
  $(Q) $(BINDIR)/$(CONFIG)/headers_bad_client_test || ( echo test headers_bad_client_test failed ; exit 1 )
1657
1729
  $(E) "[RUN] Testing initial_settings_frame_bad_client_test"
1658
1730
  $(Q) $(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test || ( echo test initial_settings_frame_bad_client_test failed ; exit 1 )
1731
+ $(E) "[RUN] Testing large_metadata_bad_client_test"
1732
+ $(Q) $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test || ( echo test large_metadata_bad_client_test failed ; exit 1 )
1659
1733
  $(E) "[RUN] Testing server_registered_method_bad_client_test"
1660
1734
  $(Q) $(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test || ( echo test server_registered_method_bad_client_test failed ; exit 1 )
1661
1735
  $(E) "[RUN] Testing simple_request_bad_client_test"
@@ -1682,10 +1756,6 @@ test_cxx: test_zookeeper buildtests_cxx
1682
1756
  $(Q) $(BINDIR)/$(CONFIG)/alarm_cpp_test || ( echo test alarm_cpp_test failed ; exit 1 )
1683
1757
  $(E) "[RUN] Testing async_end2end_test"
1684
1758
  $(Q) $(BINDIR)/$(CONFIG)/async_end2end_test || ( echo test async_end2end_test failed ; exit 1 )
1685
- $(E) "[RUN] Testing async_streaming_ping_pong_test"
1686
- $(Q) $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test || ( echo test async_streaming_ping_pong_test failed ; exit 1 )
1687
- $(E) "[RUN] Testing async_unary_ping_pong_test"
1688
- $(Q) $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test || ( echo test async_unary_ping_pong_test failed ; exit 1 )
1689
1759
  $(E) "[RUN] Testing auth_property_iterator_test"
1690
1760
  $(Q) $(BINDIR)/$(CONFIG)/auth_property_iterator_test || ( echo test auth_property_iterator_test failed ; exit 1 )
1691
1761
  $(E) "[RUN] Testing channel_arguments_test"
@@ -1710,8 +1780,6 @@ test_cxx: test_zookeeper buildtests_cxx
1710
1780
  $(Q) $(BINDIR)/$(CONFIG)/cxx_time_test || ( echo test cxx_time_test failed ; exit 1 )
1711
1781
  $(E) "[RUN] Testing end2end_test"
1712
1782
  $(Q) $(BINDIR)/$(CONFIG)/end2end_test || ( echo test end2end_test failed ; exit 1 )
1713
- $(E) "[RUN] Testing generic_async_streaming_ping_pong_test"
1714
- $(Q) $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test || ( echo test generic_async_streaming_ping_pong_test failed ; exit 1 )
1715
1783
  $(E) "[RUN] Testing generic_end2end_test"
1716
1784
  $(Q) $(BINDIR)/$(CONFIG)/generic_end2end_test || ( echo test generic_end2end_test failed ; exit 1 )
1717
1785
  $(E) "[RUN] Testing golden_file_test"
@@ -1724,14 +1792,16 @@ test_cxx: test_zookeeper buildtests_cxx
1724
1792
  $(Q) $(BINDIR)/$(CONFIG)/interop_test || ( echo test interop_test failed ; exit 1 )
1725
1793
  $(E) "[RUN] Testing mock_test"
1726
1794
  $(Q) $(BINDIR)/$(CONFIG)/mock_test || ( echo test mock_test failed ; exit 1 )
1795
+ $(E) "[RUN] Testing proto_server_reflection_test"
1796
+ $(Q) $(BINDIR)/$(CONFIG)/proto_server_reflection_test || ( echo test proto_server_reflection_test failed ; exit 1 )
1727
1797
  $(E) "[RUN] Testing qps_openloop_test"
1728
1798
  $(Q) $(BINDIR)/$(CONFIG)/qps_openloop_test || ( echo test qps_openloop_test failed ; exit 1 )
1729
- $(E) "[RUN] Testing qps_test"
1730
- $(Q) $(BINDIR)/$(CONFIG)/qps_test || ( echo test qps_test failed ; exit 1 )
1731
1799
  $(E) "[RUN] Testing secure_auth_context_test"
1732
1800
  $(Q) $(BINDIR)/$(CONFIG)/secure_auth_context_test || ( echo test secure_auth_context_test failed ; exit 1 )
1733
1801
  $(E) "[RUN] Testing secure_sync_unary_ping_pong_test"
1734
1802
  $(Q) $(BINDIR)/$(CONFIG)/secure_sync_unary_ping_pong_test || ( echo test secure_sync_unary_ping_pong_test failed ; exit 1 )
1803
+ $(E) "[RUN] Testing server_builder_plugin_test"
1804
+ $(Q) $(BINDIR)/$(CONFIG)/server_builder_plugin_test || ( echo test server_builder_plugin_test failed ; exit 1 )
1735
1805
  $(E) "[RUN] Testing server_crash_test"
1736
1806
  $(Q) $(BINDIR)/$(CONFIG)/server_crash_test || ( echo test server_crash_test failed ; exit 1 )
1737
1807
  $(E) "[RUN] Testing shutdown_test"
@@ -1740,10 +1810,6 @@ test_cxx: test_zookeeper buildtests_cxx
1740
1810
  $(Q) $(BINDIR)/$(CONFIG)/status_test || ( echo test status_test failed ; exit 1 )
1741
1811
  $(E) "[RUN] Testing streaming_throughput_test"
1742
1812
  $(Q) $(BINDIR)/$(CONFIG)/streaming_throughput_test || ( echo test streaming_throughput_test failed ; exit 1 )
1743
- $(E) "[RUN] Testing sync_streaming_ping_pong_test"
1744
- $(Q) $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test || ( echo test sync_streaming_ping_pong_test failed ; exit 1 )
1745
- $(E) "[RUN] Testing sync_unary_ping_pong_test"
1746
- $(Q) $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test || ( echo test sync_unary_ping_pong_test failed ; exit 1 )
1747
1813
  $(E) "[RUN] Testing thread_stress_test"
1748
1814
  $(Q) $(BINDIR)/$(CONFIG)/thread_stress_test || ( echo test thread_stress_test failed ; exit 1 )
1749
1815
 
@@ -1796,11 +1862,11 @@ ifeq ($(CONFIG),opt)
1796
1862
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgpr.a
1797
1863
  $(E) "[STRIP] Stripping libgrpc.a"
1798
1864
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc.a
1865
+ $(E) "[STRIP] Stripping libgrpc_cronet.a"
1866
+ $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a
1799
1867
  $(E) "[STRIP] Stripping libgrpc_unsecure.a"
1800
1868
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
1801
1869
  ifeq ($(HAS_ZOOKEEPER),true)
1802
- $(E) "[STRIP] Stripping libgrpc_zookeeper.a"
1803
- $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a
1804
1870
  endif
1805
1871
  endif
1806
1872
 
@@ -1808,6 +1874,8 @@ strip-static_cxx: static_cxx
1808
1874
  ifeq ($(CONFIG),opt)
1809
1875
  $(E) "[STRIP] Stripping libgrpc++.a"
1810
1876
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++.a
1877
+ $(E) "[STRIP] Stripping libgrpc++_reflection.a"
1878
+ $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
1811
1879
  $(E) "[STRIP] Stripping libgrpc++_unsecure.a"
1812
1880
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a
1813
1881
  endif
@@ -1818,11 +1886,11 @@ ifeq ($(CONFIG),opt)
1818
1886
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION).$(SHARED_EXT)
1819
1887
  $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc$(SHARED_VERSION).$(SHARED_EXT)"
1820
1888
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION).$(SHARED_EXT)
1889
+ $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT)"
1890
+ $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT)
1821
1891
  $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION).$(SHARED_EXT)"
1822
1892
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION).$(SHARED_EXT)
1823
1893
  ifeq ($(HAS_ZOOKEEPER),true)
1824
- $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT)"
1825
- $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT)
1826
1894
  endif
1827
1895
  endif
1828
1896
 
@@ -1830,6 +1898,8 @@ strip-shared_cxx: shared_cxx
1830
1898
  ifeq ($(CONFIG),opt)
1831
1899
  $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT)"
1832
1900
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT)
1901
+ $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT)"
1902
+ $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT)
1833
1903
  $(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION).$(SHARED_EXT)"
1834
1904
  $(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION).$(SHARED_EXT)
1835
1905
  endif
@@ -1857,7 +1927,7 @@ $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc:
1857
1927
  $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_zookeeper.pc:
1858
1928
  $(E) "[MAKE] Generating $@"
1859
1929
  $(Q) mkdir -p $(@D)
1860
- $(Q) echo -e "$(GRPC_ZOOKEEPER_PC_FILE)" >$@
1930
+ $(Q) echo "$(GRPC_ZOOKEEPER_PC_FILE)" | tr , '\n' >$@
1861
1931
 
1862
1932
  $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++.pc:
1863
1933
  $(E) "[MAKE] Generating $@"
@@ -1870,18 +1940,18 @@ $(LIBDIR)/$(CONFIG)/pkgconfig/grpc++_unsecure.pc:
1870
1940
  $(Q) echo "$(GRPCXX_UNSECURE_PC_FILE)" | tr , '\n' >$@
1871
1941
 
1872
1942
  ifeq ($(NO_PROTOC),true)
1873
- $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.pb.cc: protoc_dep_error
1874
- $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.grpc.pb.cc: protoc_dep_error
1943
+ $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc: protoc_dep_error
1944
+ $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc: protoc_dep_error
1875
1945
  else
1876
- $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.pb.cc: src/proto/grpc/lb/v0/load_balancer.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1946
+ $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc: src/proto/grpc/lb/v1/load_balancer.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1877
1947
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1878
1948
  $(Q) mkdir -p `dirname $@`
1879
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
1949
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1880
1950
 
1881
- $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.grpc.pb.cc: src/proto/grpc/lb/v0/load_balancer.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1951
+ $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc: src/proto/grpc/lb/v1/load_balancer.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1882
1952
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1883
1953
  $(Q) mkdir -p `dirname $@`
1884
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1954
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1885
1955
  endif
1886
1956
 
1887
1957
  ifeq ($(NO_PROTOC),true)
@@ -1891,12 +1961,12 @@ else
1891
1961
  $(GENDIR)/src/proto/grpc/testing/compiler_test.pb.cc: src/proto/grpc/testing/compiler_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1892
1962
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1893
1963
  $(Q) mkdir -p `dirname $@`
1894
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
1964
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1895
1965
 
1896
1966
  $(GENDIR)/src/proto/grpc/testing/compiler_test.grpc.pb.cc: src/proto/grpc/testing/compiler_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1897
1967
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1898
1968
  $(Q) mkdir -p `dirname $@`
1899
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1969
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1900
1970
  endif
1901
1971
 
1902
1972
  ifeq ($(NO_PROTOC),true)
@@ -1906,12 +1976,12 @@ else
1906
1976
  $(GENDIR)/src/proto/grpc/testing/control.pb.cc: src/proto/grpc/testing/control.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc
1907
1977
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1908
1978
  $(Q) mkdir -p `dirname $@`
1909
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
1979
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1910
1980
 
1911
1981
  $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc: src/proto/grpc/testing/control.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
1912
1982
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1913
1983
  $(Q) mkdir -p `dirname $@`
1914
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1984
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1915
1985
  endif
1916
1986
 
1917
1987
  ifeq ($(NO_PROTOC),true)
@@ -1921,12 +1991,12 @@ else
1921
1991
  $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc: src/proto/grpc/testing/duplicate/echo_duplicate.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc
1922
1992
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1923
1993
  $(Q) mkdir -p `dirname $@`
1924
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
1994
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1925
1995
 
1926
1996
  $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc: src/proto/grpc/testing/duplicate/echo_duplicate.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc
1927
1997
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1928
1998
  $(Q) mkdir -p `dirname $@`
1929
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1999
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1930
2000
  endif
1931
2001
 
1932
2002
  ifeq ($(NO_PROTOC),true)
@@ -1936,12 +2006,12 @@ else
1936
2006
  $(GENDIR)/src/proto/grpc/testing/echo.pb.cc: src/proto/grpc/testing/echo.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc
1937
2007
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1938
2008
  $(Q) mkdir -p `dirname $@`
1939
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2009
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1940
2010
 
1941
2011
  $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc: src/proto/grpc/testing/echo.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc
1942
2012
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1943
2013
  $(Q) mkdir -p `dirname $@`
1944
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2014
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1945
2015
  endif
1946
2016
 
1947
2017
  ifeq ($(NO_PROTOC),true)
@@ -1951,12 +2021,12 @@ else
1951
2021
  $(GENDIR)/src/proto/grpc/testing/echo_messages.pb.cc: src/proto/grpc/testing/echo_messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1952
2022
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1953
2023
  $(Q) mkdir -p `dirname $@`
1954
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2024
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1955
2025
 
1956
2026
  $(GENDIR)/src/proto/grpc/testing/echo_messages.grpc.pb.cc: src/proto/grpc/testing/echo_messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1957
2027
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1958
2028
  $(Q) mkdir -p `dirname $@`
1959
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2029
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1960
2030
  endif
1961
2031
 
1962
2032
  ifeq ($(NO_PROTOC),true)
@@ -1966,12 +2036,12 @@ else
1966
2036
  $(GENDIR)/src/proto/grpc/testing/empty.pb.cc: src/proto/grpc/testing/empty.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1967
2037
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1968
2038
  $(Q) mkdir -p `dirname $@`
1969
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2039
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1970
2040
 
1971
2041
  $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc: src/proto/grpc/testing/empty.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1972
2042
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1973
2043
  $(Q) mkdir -p `dirname $@`
1974
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2044
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1975
2045
  endif
1976
2046
 
1977
2047
  ifeq ($(NO_PROTOC),true)
@@ -1981,12 +2051,12 @@ else
1981
2051
  $(GENDIR)/src/proto/grpc/testing/messages.pb.cc: src/proto/grpc/testing/messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1982
2052
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1983
2053
  $(Q) mkdir -p `dirname $@`
1984
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2054
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
1985
2055
 
1986
2056
  $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc: src/proto/grpc/testing/messages.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1987
2057
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
1988
2058
  $(Q) mkdir -p `dirname $@`
1989
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2059
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
1990
2060
  endif
1991
2061
 
1992
2062
  ifeq ($(NO_PROTOC),true)
@@ -1996,12 +2066,12 @@ else
1996
2066
  $(GENDIR)/src/proto/grpc/testing/metrics.pb.cc: src/proto/grpc/testing/metrics.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
1997
2067
  $(E) "[PROTOC] Generating protobuf CC file from $<"
1998
2068
  $(Q) mkdir -p `dirname $@`
1999
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2069
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
2000
2070
 
2001
2071
  $(GENDIR)/src/proto/grpc/testing/metrics.grpc.pb.cc: src/proto/grpc/testing/metrics.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
2002
2072
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2003
2073
  $(Q) mkdir -p `dirname $@`
2004
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2074
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2005
2075
  endif
2006
2076
 
2007
2077
  ifeq ($(NO_PROTOC),true)
@@ -2011,27 +2081,12 @@ else
2011
2081
  $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc: src/proto/grpc/testing/payloads.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
2012
2082
  $(E) "[PROTOC] Generating protobuf CC file from $<"
2013
2083
  $(Q) mkdir -p `dirname $@`
2014
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2084
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
2015
2085
 
2016
2086
  $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc: src/proto/grpc/testing/payloads.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
2017
2087
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2018
2088
  $(Q) mkdir -p `dirname $@`
2019
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2020
- endif
2021
-
2022
- ifeq ($(NO_PROTOC),true)
2023
- $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc: protoc_dep_error
2024
- $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc: protoc_dep_error
2025
- else
2026
- $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc: src/proto/grpc/testing/perf_db.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/control.pb.cc
2027
- $(E) "[PROTOC] Generating protobuf CC file from $<"
2028
- $(Q) mkdir -p `dirname $@`
2029
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2030
-
2031
- $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc: src/proto/grpc/testing/perf_db.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc
2032
- $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2033
- $(Q) mkdir -p `dirname $@`
2034
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2089
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2035
2090
  endif
2036
2091
 
2037
2092
  ifeq ($(NO_PROTOC),true)
@@ -2041,12 +2096,12 @@ else
2041
2096
  $(GENDIR)/src/proto/grpc/testing/services.pb.cc: src/proto/grpc/testing/services.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc
2042
2097
  $(E) "[PROTOC] Generating protobuf CC file from $<"
2043
2098
  $(Q) mkdir -p `dirname $@`
2044
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2099
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
2045
2100
 
2046
2101
  $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc: src/proto/grpc/testing/services.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc
2047
2102
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2048
2103
  $(Q) mkdir -p `dirname $@`
2049
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2104
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2050
2105
  endif
2051
2106
 
2052
2107
  ifeq ($(NO_PROTOC),true)
@@ -2056,12 +2111,12 @@ else
2056
2111
  $(GENDIR)/src/proto/grpc/testing/stats.pb.cc: src/proto/grpc/testing/stats.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
2057
2112
  $(E) "[PROTOC] Generating protobuf CC file from $<"
2058
2113
  $(Q) mkdir -p `dirname $@`
2059
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2114
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
2060
2115
 
2061
2116
  $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc: src/proto/grpc/testing/stats.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
2062
2117
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2063
2118
  $(Q) mkdir -p `dirname $@`
2064
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2119
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2065
2120
  endif
2066
2121
 
2067
2122
  ifeq ($(NO_PROTOC),true)
@@ -2071,12 +2126,12 @@ else
2071
2126
  $(GENDIR)/src/proto/grpc/testing/test.pb.cc: src/proto/grpc/testing/test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc
2072
2127
  $(E) "[PROTOC] Generating protobuf CC file from $<"
2073
2128
  $(Q) mkdir -p `dirname $@`
2074
- $(Q) $(PROTOC) --cpp_out=$(GENDIR) $<
2129
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
2075
2130
 
2076
2131
  $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc: src/proto/grpc/testing/test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc
2077
2132
  $(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
2078
2133
  $(Q) mkdir -p `dirname $@`
2079
- $(Q) $(PROTOC) --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2134
+ $(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(BINDIR)/$(CONFIG)/grpc_cpp_plugin $<
2080
2135
  endif
2081
2136
 
2082
2137
 
@@ -2143,19 +2198,22 @@ install-static_c: static_c strip-static_c install-pkg-config_c
2143
2198
  $(E) "[INSTALL] Installing libgrpc.a"
2144
2199
  $(Q) $(INSTALL) -d $(prefix)/lib
2145
2200
  $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc.a $(prefix)/lib/libgrpc.a
2201
+ $(E) "[INSTALL] Installing libgrpc_cronet.a"
2202
+ $(Q) $(INSTALL) -d $(prefix)/lib
2203
+ $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a $(prefix)/lib/libgrpc_cronet.a
2146
2204
  $(E) "[INSTALL] Installing libgrpc_unsecure.a"
2147
2205
  $(Q) $(INSTALL) -d $(prefix)/lib
2148
2206
  $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(prefix)/lib/libgrpc_unsecure.a
2149
2207
  ifeq ($(HAS_ZOOKEEPER),true)
2150
- $(E) "[INSTALL] Installing libgrpc_zookeeper.a"
2151
- $(Q) $(INSTALL) -d $(prefix)/lib
2152
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a $(prefix)/lib/libgrpc_zookeeper.a
2153
2208
  endif
2154
2209
 
2155
2210
  install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx
2156
2211
  $(E) "[INSTALL] Installing libgrpc++.a"
2157
2212
  $(Q) $(INSTALL) -d $(prefix)/lib
2158
2213
  $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(prefix)/lib/libgrpc++.a
2214
+ $(E) "[INSTALL] Installing libgrpc++_reflection.a"
2215
+ $(Q) $(INSTALL) -d $(prefix)/lib
2216
+ $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(prefix)/lib/libgrpc++_reflection.a
2159
2217
  $(E) "[INSTALL] Installing libgrpc++_unsecure.a"
2160
2218
  $(Q) $(INSTALL) -d $(prefix)/lib
2161
2219
  $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(prefix)/lib/libgrpc++_unsecure.a
@@ -2180,6 +2238,15 @@ ifeq ($(SYSTEM),MINGW32)
2180
2238
  else ifneq ($(SYSTEM),Darwin)
2181
2239
  $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc.so.0
2182
2240
  $(Q) ln -sf $(SHARED_PREFIX)grpc$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc.so
2241
+ endif
2242
+ $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT)"
2243
+ $(Q) $(INSTALL) -d $(prefix)/lib
2244
+ $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/$(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT)
2245
+ ifeq ($(SYSTEM),MINGW32)
2246
+ $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_cronet-imp.a $(prefix)/lib/libgrpc_cronet-imp.a
2247
+ else ifneq ($(SYSTEM),Darwin)
2248
+ $(Q) ln -sf $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc_cronet.so.0
2249
+ $(Q) ln -sf $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc_cronet.so
2183
2250
  endif
2184
2251
  $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION).$(SHARED_EXT)"
2185
2252
  $(Q) $(INSTALL) -d $(prefix)/lib
@@ -2191,15 +2258,6 @@ else ifneq ($(SYSTEM),Darwin)
2191
2258
  $(Q) ln -sf $(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc_unsecure.so
2192
2259
  endif
2193
2260
  ifeq ($(HAS_ZOOKEEPER),true)
2194
- $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT)"
2195
- $(Q) $(INSTALL) -d $(prefix)/lib
2196
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/$(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT)
2197
- ifeq ($(SYSTEM),MINGW32)
2198
- $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper-imp.a $(prefix)/lib/libgrpc_zookeeper-imp.a
2199
- else ifneq ($(SYSTEM),Darwin)
2200
- $(Q) ln -sf $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc_zookeeper.so.0
2201
- $(Q) ln -sf $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc_zookeeper.so
2202
- endif
2203
2261
  endif
2204
2262
  ifneq ($(SYSTEM),MINGW32)
2205
2263
  ifneq ($(SYSTEM),Darwin)
@@ -2217,6 +2275,15 @@ ifeq ($(SYSTEM),MINGW32)
2217
2275
  else ifneq ($(SYSTEM),Darwin)
2218
2276
  $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc++.so.0
2219
2277
  $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc++.so
2278
+ endif
2279
+ $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT)"
2280
+ $(Q) $(INSTALL) -d $(prefix)/lib
2281
+ $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT)
2282
+ ifeq ($(SYSTEM),MINGW32)
2283
+ $(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection-imp.a $(prefix)/lib/libgrpc++_reflection-imp.a
2284
+ else ifneq ($(SYSTEM),Darwin)
2285
+ $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc++_reflection.so.0
2286
+ $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(prefix)/lib/libgrpc++_reflection.so
2220
2287
  endif
2221
2288
  $(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION).$(SHARED_EXT)"
2222
2289
  $(Q) $(INSTALL) -d $(prefix)/lib
@@ -2299,17 +2366,19 @@ ifeq ($(INSTALL_OK),true)
2299
2366
  @echo "Your system looks ready to go."
2300
2367
  @echo
2301
2368
  else
2302
- @echo "We couldn't find protoc 3.0.0+ installed on your system. While this"
2303
- @echo "won't prevent grpc from working, you won't be able to compile"
2304
- @echo "and run any meaningful code with it."
2369
+ @echo "Warning: it looks like protoc 3.0.0+ isn't installed on your system,"
2370
+ @echo "which means that you won't be able to compile .proto files for use"
2371
+ @echo "with gRPC."
2305
2372
  @echo
2373
+ @echo "If you are just using pre-compiled protocol buffers, or you otherwise"
2374
+ @echo "have no need to compile .proto files, you can ignore this."
2306
2375
  @echo
2307
- @echo "Please download and install protobuf 3.0.0+ from:"
2376
+ @echo "If you do need protobuf for some reason, you can download and install"
2377
+ @echo "it from:"
2308
2378
  @echo
2309
2379
  @echo " https://github.com/google/protobuf/releases"
2310
2380
  @echo
2311
- @echo "Once you've done so, or if you think this message is in error,"
2312
- @echo "you can re-run this check by doing:"
2381
+ @echo "Once you've done so, you can re-run this check by doing:"
2313
2382
  @echo
2314
2383
  @echo " make verify-install"
2315
2384
  endif
@@ -2335,39 +2404,38 @@ LIBGPR_SRC = \
2335
2404
  src/core/lib/support/cpu_windows.c \
2336
2405
  src/core/lib/support/env_linux.c \
2337
2406
  src/core/lib/support/env_posix.c \
2338
- src/core/lib/support/env_win32.c \
2407
+ src/core/lib/support/env_windows.c \
2339
2408
  src/core/lib/support/histogram.c \
2340
2409
  src/core/lib/support/host_port.c \
2341
- src/core/lib/support/load_file.c \
2342
2410
  src/core/lib/support/log.c \
2343
2411
  src/core/lib/support/log_android.c \
2344
2412
  src/core/lib/support/log_linux.c \
2345
2413
  src/core/lib/support/log_posix.c \
2346
- src/core/lib/support/log_win32.c \
2414
+ src/core/lib/support/log_windows.c \
2347
2415
  src/core/lib/support/murmur_hash.c \
2348
2416
  src/core/lib/support/slice.c \
2349
2417
  src/core/lib/support/slice_buffer.c \
2350
2418
  src/core/lib/support/stack_lockfree.c \
2351
2419
  src/core/lib/support/string.c \
2352
2420
  src/core/lib/support/string_posix.c \
2353
- src/core/lib/support/string_util_win32.c \
2354
- src/core/lib/support/string_win32.c \
2421
+ src/core/lib/support/string_util_windows.c \
2422
+ src/core/lib/support/string_windows.c \
2355
2423
  src/core/lib/support/subprocess_posix.c \
2356
2424
  src/core/lib/support/subprocess_windows.c \
2357
2425
  src/core/lib/support/sync.c \
2358
2426
  src/core/lib/support/sync_posix.c \
2359
- src/core/lib/support/sync_win32.c \
2427
+ src/core/lib/support/sync_windows.c \
2360
2428
  src/core/lib/support/thd.c \
2361
2429
  src/core/lib/support/thd_posix.c \
2362
- src/core/lib/support/thd_win32.c \
2430
+ src/core/lib/support/thd_windows.c \
2363
2431
  src/core/lib/support/time.c \
2364
2432
  src/core/lib/support/time_posix.c \
2365
2433
  src/core/lib/support/time_precise.c \
2366
- src/core/lib/support/time_win32.c \
2434
+ src/core/lib/support/time_windows.c \
2367
2435
  src/core/lib/support/tls_pthread.c \
2368
2436
  src/core/lib/support/tmpfile_msys.c \
2369
2437
  src/core/lib/support/tmpfile_posix.c \
2370
- src/core/lib/support/tmpfile_win32.c \
2438
+ src/core/lib/support/tmpfile_windows.c \
2371
2439
  src/core/lib/support/wrap_memcpy.c \
2372
2440
 
2373
2441
  PUBLIC_HEADERS_C += \
@@ -2375,14 +2443,14 @@ PUBLIC_HEADERS_C += \
2375
2443
  include/grpc/support/atm.h \
2376
2444
  include/grpc/support/atm_gcc_atomic.h \
2377
2445
  include/grpc/support/atm_gcc_sync.h \
2378
- include/grpc/support/atm_win32.h \
2446
+ include/grpc/support/atm_windows.h \
2379
2447
  include/grpc/support/avl.h \
2380
2448
  include/grpc/support/cmdline.h \
2381
2449
  include/grpc/support/cpu.h \
2382
2450
  include/grpc/support/histogram.h \
2383
2451
  include/grpc/support/host_port.h \
2384
2452
  include/grpc/support/log.h \
2385
- include/grpc/support/log_win32.h \
2453
+ include/grpc/support/log_windows.h \
2386
2454
  include/grpc/support/port_platform.h \
2387
2455
  include/grpc/support/slice.h \
2388
2456
  include/grpc/support/slice_buffer.h \
@@ -2391,7 +2459,7 @@ PUBLIC_HEADERS_C += \
2391
2459
  include/grpc/support/sync.h \
2392
2460
  include/grpc/support/sync_generic.h \
2393
2461
  include/grpc/support/sync_posix.h \
2394
- include/grpc/support/sync_win32.h \
2462
+ include/grpc/support/sync_windows.h \
2395
2463
  include/grpc/support/thd.h \
2396
2464
  include/grpc/support/time.h \
2397
2465
  include/grpc/support/tls.h \
@@ -2403,7 +2471,7 @@ PUBLIC_HEADERS_C += \
2403
2471
  include/grpc/impl/codegen/atm.h \
2404
2472
  include/grpc/impl/codegen/atm_gcc_atomic.h \
2405
2473
  include/grpc/impl/codegen/atm_gcc_sync.h \
2406
- include/grpc/impl/codegen/atm_win32.h \
2474
+ include/grpc/impl/codegen/atm_windows.h \
2407
2475
  include/grpc/impl/codegen/log.h \
2408
2476
  include/grpc/impl/codegen/port_platform.h \
2409
2477
  include/grpc/impl/codegen/slice.h \
@@ -2411,7 +2479,7 @@ PUBLIC_HEADERS_C += \
2411
2479
  include/grpc/impl/codegen/sync.h \
2412
2480
  include/grpc/impl/codegen/sync_generic.h \
2413
2481
  include/grpc/impl/codegen/sync_posix.h \
2414
- include/grpc/impl/codegen/sync_win32.h \
2482
+ include/grpc/impl/codegen/sync_windows.h \
2415
2483
  include/grpc/impl/codegen/time.h \
2416
2484
 
2417
2485
  LIBGPR_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGPR_SRC))))
@@ -2485,7 +2553,7 @@ LIBGRPC_SRC = \
2485
2553
  src/core/lib/channel/connected_channel.c \
2486
2554
  src/core/lib/channel/http_client_filter.c \
2487
2555
  src/core/lib/channel/http_server_filter.c \
2488
- src/core/lib/compression/compression_algorithm.c \
2556
+ src/core/lib/compression/compression.c \
2489
2557
  src/core/lib/compression/message_compress.c \
2490
2558
  src/core/lib/debug/trace.c \
2491
2559
  src/core/lib/http/format_request.c \
@@ -2495,7 +2563,9 @@ LIBGRPC_SRC = \
2495
2563
  src/core/lib/iomgr/endpoint.c \
2496
2564
  src/core/lib/iomgr/endpoint_pair_posix.c \
2497
2565
  src/core/lib/iomgr/endpoint_pair_windows.c \
2566
+ src/core/lib/iomgr/error.c \
2498
2567
  src/core/lib/iomgr/ev_poll_and_epoll_posix.c \
2568
+ src/core/lib/iomgr/ev_poll_posix.c \
2499
2569
  src/core/lib/iomgr/ev_posix.c \
2500
2570
  src/core/lib/iomgr/exec_ctx.c \
2501
2571
  src/core/lib/iomgr/executor.c \
@@ -2503,6 +2573,8 @@ LIBGRPC_SRC = \
2503
2573
  src/core/lib/iomgr/iomgr.c \
2504
2574
  src/core/lib/iomgr/iomgr_posix.c \
2505
2575
  src/core/lib/iomgr/iomgr_windows.c \
2576
+ src/core/lib/iomgr/load_file.c \
2577
+ src/core/lib/iomgr/polling_entity.c \
2506
2578
  src/core/lib/iomgr/pollset_set_windows.c \
2507
2579
  src/core/lib/iomgr/pollset_windows.c \
2508
2580
  src/core/lib/iomgr/resolve_address_posix.c \
@@ -2560,6 +2632,7 @@ LIBGRPC_SRC = \
2560
2632
  src/core/lib/transport/transport.c \
2561
2633
  src/core/lib/transport/transport_op_string.c \
2562
2634
  src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c \
2635
+ src/core/ext/transport/chttp2/transport/bin_decoder.c \
2563
2636
  src/core/ext/transport/chttp2/transport/bin_encoder.c \
2564
2637
  src/core/ext/transport/chttp2/transport/chttp2_plugin.c \
2565
2638
  src/core/ext/transport/chttp2/transport/chttp2_transport.c \
@@ -2583,20 +2656,29 @@ LIBGRPC_SRC = \
2583
2656
  src/core/ext/transport/chttp2/transport/writing.c \
2584
2657
  src/core/ext/transport/chttp2/alpn/alpn.c \
2585
2658
  src/core/lib/http/httpcli_security_connector.c \
2586
- src/core/lib/security/b64.c \
2587
- src/core/lib/security/client_auth_filter.c \
2588
- src/core/lib/security/credentials.c \
2589
- src/core/lib/security/credentials_metadata.c \
2590
- src/core/lib/security/credentials_posix.c \
2591
- src/core/lib/security/credentials_win32.c \
2592
- src/core/lib/security/google_default_credentials.c \
2593
- src/core/lib/security/handshake.c \
2594
- src/core/lib/security/json_token.c \
2595
- src/core/lib/security/jwt_verifier.c \
2596
- src/core/lib/security/secure_endpoint.c \
2597
- src/core/lib/security/security_connector.c \
2598
- src/core/lib/security/security_context.c \
2599
- src/core/lib/security/server_auth_filter.c \
2659
+ src/core/lib/security/context/security_context.c \
2660
+ src/core/lib/security/credentials/composite/composite_credentials.c \
2661
+ src/core/lib/security/credentials/credentials.c \
2662
+ src/core/lib/security/credentials/credentials_metadata.c \
2663
+ src/core/lib/security/credentials/fake/fake_credentials.c \
2664
+ src/core/lib/security/credentials/google_default/credentials_posix.c \
2665
+ src/core/lib/security/credentials/google_default/credentials_windows.c \
2666
+ src/core/lib/security/credentials/google_default/google_default_credentials.c \
2667
+ src/core/lib/security/credentials/iam/iam_credentials.c \
2668
+ src/core/lib/security/credentials/jwt/json_token.c \
2669
+ src/core/lib/security/credentials/jwt/jwt_credentials.c \
2670
+ src/core/lib/security/credentials/jwt/jwt_verifier.c \
2671
+ src/core/lib/security/credentials/oauth2/oauth2_credentials.c \
2672
+ src/core/lib/security/credentials/plugin/plugin_credentials.c \
2673
+ src/core/lib/security/credentials/ssl/ssl_credentials.c \
2674
+ src/core/lib/security/transport/client_auth_filter.c \
2675
+ src/core/lib/security/transport/handshake.c \
2676
+ src/core/lib/security/transport/secure_endpoint.c \
2677
+ src/core/lib/security/transport/security_connector.c \
2678
+ src/core/lib/security/transport/server_auth_filter.c \
2679
+ src/core/lib/security/transport/tsi_error.c \
2680
+ src/core/lib/security/util/b64.c \
2681
+ src/core/lib/security/util/json_util.c \
2600
2682
  src/core/lib/surface/init_secure.c \
2601
2683
  src/core/lib/tsi/fake_transport_security.c \
2602
2684
  src/core/lib/tsi/ssl_transport_security.c \
@@ -2622,9 +2704,11 @@ LIBGRPC_SRC = \
2622
2704
  src/core/ext/client_config/subchannel_index.c \
2623
2705
  src/core/ext/client_config/uri_parser.c \
2624
2706
  src/core/ext/transport/chttp2/server/insecure/server_chttp2.c \
2707
+ src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c \
2625
2708
  src/core/ext/transport/chttp2/client/insecure/channel_create.c \
2709
+ src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c \
2626
2710
  src/core/ext/lb_policy/grpclb/load_balancer_api.c \
2627
- src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c \
2711
+ src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c \
2628
2712
  third_party/nanopb/pb_common.c \
2629
2713
  third_party/nanopb/pb_decode.c \
2630
2714
  third_party/nanopb/pb_encode.c \
@@ -2632,7 +2716,10 @@ LIBGRPC_SRC = \
2632
2716
  src/core/ext/lb_policy/round_robin/round_robin.c \
2633
2717
  src/core/ext/resolver/dns/native/dns_resolver.c \
2634
2718
  src/core/ext/resolver/sockaddr/sockaddr_resolver.c \
2719
+ src/core/ext/load_reporting/load_reporting.c \
2720
+ src/core/ext/load_reporting/load_reporting_filter.c \
2635
2721
  src/core/ext/census/context.c \
2722
+ src/core/ext/census/gen/census.pb.c \
2636
2723
  src/core/ext/census/grpc_context.c \
2637
2724
  src/core/ext/census/grpc_filter.c \
2638
2725
  src/core/ext/census/grpc_plugin.c \
@@ -2648,6 +2735,7 @@ PUBLIC_HEADERS_C += \
2648
2735
  include/grpc/byte_buffer_reader.h \
2649
2736
  include/grpc/compression.h \
2650
2737
  include/grpc/grpc.h \
2738
+ include/grpc/grpc_posix.h \
2651
2739
  include/grpc/status.h \
2652
2740
  include/grpc/impl/codegen/byte_buffer.h \
2653
2741
  include/grpc/impl/codegen/byte_buffer_reader.h \
@@ -2660,7 +2748,7 @@ PUBLIC_HEADERS_C += \
2660
2748
  include/grpc/impl/codegen/atm.h \
2661
2749
  include/grpc/impl/codegen/atm_gcc_atomic.h \
2662
2750
  include/grpc/impl/codegen/atm_gcc_sync.h \
2663
- include/grpc/impl/codegen/atm_win32.h \
2751
+ include/grpc/impl/codegen/atm_windows.h \
2664
2752
  include/grpc/impl/codegen/log.h \
2665
2753
  include/grpc/impl/codegen/port_platform.h \
2666
2754
  include/grpc/impl/codegen/slice.h \
@@ -2668,7 +2756,7 @@ PUBLIC_HEADERS_C += \
2668
2756
  include/grpc/impl/codegen/sync.h \
2669
2757
  include/grpc/impl/codegen/sync_generic.h \
2670
2758
  include/grpc/impl/codegen/sync_posix.h \
2671
- include/grpc/impl/codegen/sync_win32.h \
2759
+ include/grpc/impl/codegen/sync_windows.h \
2672
2760
  include/grpc/impl/codegen/time.h \
2673
2761
  include/grpc/grpc_security.h \
2674
2762
  include/grpc/grpc_security_constants.h \
@@ -2726,6 +2814,253 @@ endif
2726
2814
  endif
2727
2815
 
2728
2816
 
2817
+ LIBGRPC_CRONET_SRC = \
2818
+ src/core/lib/surface/init.c \
2819
+ src/core/lib/channel/channel_args.c \
2820
+ src/core/lib/channel/channel_stack.c \
2821
+ src/core/lib/channel/channel_stack_builder.c \
2822
+ src/core/lib/channel/compress_filter.c \
2823
+ src/core/lib/channel/connected_channel.c \
2824
+ src/core/lib/channel/http_client_filter.c \
2825
+ src/core/lib/channel/http_server_filter.c \
2826
+ src/core/lib/compression/compression.c \
2827
+ src/core/lib/compression/message_compress.c \
2828
+ src/core/lib/debug/trace.c \
2829
+ src/core/lib/http/format_request.c \
2830
+ src/core/lib/http/httpcli.c \
2831
+ src/core/lib/http/parser.c \
2832
+ src/core/lib/iomgr/closure.c \
2833
+ src/core/lib/iomgr/endpoint.c \
2834
+ src/core/lib/iomgr/endpoint_pair_posix.c \
2835
+ src/core/lib/iomgr/endpoint_pair_windows.c \
2836
+ src/core/lib/iomgr/error.c \
2837
+ src/core/lib/iomgr/ev_poll_and_epoll_posix.c \
2838
+ src/core/lib/iomgr/ev_poll_posix.c \
2839
+ src/core/lib/iomgr/ev_posix.c \
2840
+ src/core/lib/iomgr/exec_ctx.c \
2841
+ src/core/lib/iomgr/executor.c \
2842
+ src/core/lib/iomgr/iocp_windows.c \
2843
+ src/core/lib/iomgr/iomgr.c \
2844
+ src/core/lib/iomgr/iomgr_posix.c \
2845
+ src/core/lib/iomgr/iomgr_windows.c \
2846
+ src/core/lib/iomgr/load_file.c \
2847
+ src/core/lib/iomgr/polling_entity.c \
2848
+ src/core/lib/iomgr/pollset_set_windows.c \
2849
+ src/core/lib/iomgr/pollset_windows.c \
2850
+ src/core/lib/iomgr/resolve_address_posix.c \
2851
+ src/core/lib/iomgr/resolve_address_windows.c \
2852
+ src/core/lib/iomgr/sockaddr_utils.c \
2853
+ src/core/lib/iomgr/socket_utils_common_posix.c \
2854
+ src/core/lib/iomgr/socket_utils_linux.c \
2855
+ src/core/lib/iomgr/socket_utils_posix.c \
2856
+ src/core/lib/iomgr/socket_windows.c \
2857
+ src/core/lib/iomgr/tcp_client_posix.c \
2858
+ src/core/lib/iomgr/tcp_client_windows.c \
2859
+ src/core/lib/iomgr/tcp_posix.c \
2860
+ src/core/lib/iomgr/tcp_server_posix.c \
2861
+ src/core/lib/iomgr/tcp_server_windows.c \
2862
+ src/core/lib/iomgr/tcp_windows.c \
2863
+ src/core/lib/iomgr/time_averaged_stats.c \
2864
+ src/core/lib/iomgr/timer.c \
2865
+ src/core/lib/iomgr/timer_heap.c \
2866
+ src/core/lib/iomgr/udp_server.c \
2867
+ src/core/lib/iomgr/unix_sockets_posix.c \
2868
+ src/core/lib/iomgr/unix_sockets_posix_noop.c \
2869
+ src/core/lib/iomgr/wakeup_fd_eventfd.c \
2870
+ src/core/lib/iomgr/wakeup_fd_nospecial.c \
2871
+ src/core/lib/iomgr/wakeup_fd_pipe.c \
2872
+ src/core/lib/iomgr/wakeup_fd_posix.c \
2873
+ src/core/lib/iomgr/workqueue_posix.c \
2874
+ src/core/lib/iomgr/workqueue_windows.c \
2875
+ src/core/lib/json/json.c \
2876
+ src/core/lib/json/json_reader.c \
2877
+ src/core/lib/json/json_string.c \
2878
+ src/core/lib/json/json_writer.c \
2879
+ src/core/lib/surface/alarm.c \
2880
+ src/core/lib/surface/api_trace.c \
2881
+ src/core/lib/surface/byte_buffer.c \
2882
+ src/core/lib/surface/byte_buffer_reader.c \
2883
+ src/core/lib/surface/call.c \
2884
+ src/core/lib/surface/call_details.c \
2885
+ src/core/lib/surface/call_log_batch.c \
2886
+ src/core/lib/surface/channel.c \
2887
+ src/core/lib/surface/channel_init.c \
2888
+ src/core/lib/surface/channel_ping.c \
2889
+ src/core/lib/surface/channel_stack_type.c \
2890
+ src/core/lib/surface/completion_queue.c \
2891
+ src/core/lib/surface/event_string.c \
2892
+ src/core/lib/surface/lame_client.c \
2893
+ src/core/lib/surface/metadata_array.c \
2894
+ src/core/lib/surface/server.c \
2895
+ src/core/lib/surface/validate_metadata.c \
2896
+ src/core/lib/surface/version.c \
2897
+ src/core/lib/transport/byte_stream.c \
2898
+ src/core/lib/transport/connectivity_state.c \
2899
+ src/core/lib/transport/metadata.c \
2900
+ src/core/lib/transport/metadata_batch.c \
2901
+ src/core/lib/transport/static_metadata.c \
2902
+ src/core/lib/transport/transport.c \
2903
+ src/core/lib/transport/transport_op_string.c \
2904
+ src/core/ext/transport/cronet/client/secure/cronet_channel_create.c \
2905
+ src/core/ext/transport/cronet/transport/cronet_api_dummy.c \
2906
+ src/core/ext/transport/cronet/transport/cronet_transport.c \
2907
+ src/core/ext/transport/chttp2/client/secure/secure_channel_create.c \
2908
+ src/core/ext/transport/chttp2/transport/bin_decoder.c \
2909
+ src/core/ext/transport/chttp2/transport/bin_encoder.c \
2910
+ src/core/ext/transport/chttp2/transport/chttp2_plugin.c \
2911
+ src/core/ext/transport/chttp2/transport/chttp2_transport.c \
2912
+ src/core/ext/transport/chttp2/transport/frame_data.c \
2913
+ src/core/ext/transport/chttp2/transport/frame_goaway.c \
2914
+ src/core/ext/transport/chttp2/transport/frame_ping.c \
2915
+ src/core/ext/transport/chttp2/transport/frame_rst_stream.c \
2916
+ src/core/ext/transport/chttp2/transport/frame_settings.c \
2917
+ src/core/ext/transport/chttp2/transport/frame_window_update.c \
2918
+ src/core/ext/transport/chttp2/transport/hpack_encoder.c \
2919
+ src/core/ext/transport/chttp2/transport/hpack_parser.c \
2920
+ src/core/ext/transport/chttp2/transport/hpack_table.c \
2921
+ src/core/ext/transport/chttp2/transport/huffsyms.c \
2922
+ src/core/ext/transport/chttp2/transport/incoming_metadata.c \
2923
+ src/core/ext/transport/chttp2/transport/parsing.c \
2924
+ src/core/ext/transport/chttp2/transport/status_conversion.c \
2925
+ src/core/ext/transport/chttp2/transport/stream_lists.c \
2926
+ src/core/ext/transport/chttp2/transport/stream_map.c \
2927
+ src/core/ext/transport/chttp2/transport/timeout_encoding.c \
2928
+ src/core/ext/transport/chttp2/transport/varint.c \
2929
+ src/core/ext/transport/chttp2/transport/writing.c \
2930
+ src/core/ext/transport/chttp2/alpn/alpn.c \
2931
+ src/core/ext/client_config/channel_connectivity.c \
2932
+ src/core/ext/client_config/client_channel.c \
2933
+ src/core/ext/client_config/client_channel_factory.c \
2934
+ src/core/ext/client_config/client_config.c \
2935
+ src/core/ext/client_config/client_config_plugin.c \
2936
+ src/core/ext/client_config/connector.c \
2937
+ src/core/ext/client_config/default_initial_connect_string.c \
2938
+ src/core/ext/client_config/initial_connect_string.c \
2939
+ src/core/ext/client_config/lb_policy.c \
2940
+ src/core/ext/client_config/lb_policy_factory.c \
2941
+ src/core/ext/client_config/lb_policy_registry.c \
2942
+ src/core/ext/client_config/parse_address.c \
2943
+ src/core/ext/client_config/resolver.c \
2944
+ src/core/ext/client_config/resolver_factory.c \
2945
+ src/core/ext/client_config/resolver_registry.c \
2946
+ src/core/ext/client_config/subchannel.c \
2947
+ src/core/ext/client_config/subchannel_call_holder.c \
2948
+ src/core/ext/client_config/subchannel_index.c \
2949
+ src/core/ext/client_config/uri_parser.c \
2950
+ src/core/lib/http/httpcli_security_connector.c \
2951
+ src/core/lib/security/context/security_context.c \
2952
+ src/core/lib/security/credentials/composite/composite_credentials.c \
2953
+ src/core/lib/security/credentials/credentials.c \
2954
+ src/core/lib/security/credentials/credentials_metadata.c \
2955
+ src/core/lib/security/credentials/fake/fake_credentials.c \
2956
+ src/core/lib/security/credentials/google_default/credentials_posix.c \
2957
+ src/core/lib/security/credentials/google_default/credentials_windows.c \
2958
+ src/core/lib/security/credentials/google_default/google_default_credentials.c \
2959
+ src/core/lib/security/credentials/iam/iam_credentials.c \
2960
+ src/core/lib/security/credentials/jwt/json_token.c \
2961
+ src/core/lib/security/credentials/jwt/jwt_credentials.c \
2962
+ src/core/lib/security/credentials/jwt/jwt_verifier.c \
2963
+ src/core/lib/security/credentials/oauth2/oauth2_credentials.c \
2964
+ src/core/lib/security/credentials/plugin/plugin_credentials.c \
2965
+ src/core/lib/security/credentials/ssl/ssl_credentials.c \
2966
+ src/core/lib/security/transport/client_auth_filter.c \
2967
+ src/core/lib/security/transport/handshake.c \
2968
+ src/core/lib/security/transport/secure_endpoint.c \
2969
+ src/core/lib/security/transport/security_connector.c \
2970
+ src/core/lib/security/transport/server_auth_filter.c \
2971
+ src/core/lib/security/transport/tsi_error.c \
2972
+ src/core/lib/security/util/b64.c \
2973
+ src/core/lib/security/util/json_util.c \
2974
+ src/core/lib/surface/init_secure.c \
2975
+ src/core/lib/tsi/fake_transport_security.c \
2976
+ src/core/lib/tsi/ssl_transport_security.c \
2977
+ src/core/lib/tsi/transport_security.c \
2978
+ src/core/plugin_registry/grpc_cronet_plugin_registry.c \
2979
+
2980
+ PUBLIC_HEADERS_C += \
2981
+ include/grpc/byte_buffer.h \
2982
+ include/grpc/byte_buffer_reader.h \
2983
+ include/grpc/compression.h \
2984
+ include/grpc/grpc.h \
2985
+ include/grpc/grpc_posix.h \
2986
+ include/grpc/status.h \
2987
+ include/grpc/impl/codegen/byte_buffer.h \
2988
+ include/grpc/impl/codegen/byte_buffer_reader.h \
2989
+ include/grpc/impl/codegen/compression_types.h \
2990
+ include/grpc/impl/codegen/connectivity_state.h \
2991
+ include/grpc/impl/codegen/grpc_types.h \
2992
+ include/grpc/impl/codegen/propagation_bits.h \
2993
+ include/grpc/impl/codegen/status.h \
2994
+ include/grpc/impl/codegen/alloc.h \
2995
+ include/grpc/impl/codegen/atm.h \
2996
+ include/grpc/impl/codegen/atm_gcc_atomic.h \
2997
+ include/grpc/impl/codegen/atm_gcc_sync.h \
2998
+ include/grpc/impl/codegen/atm_windows.h \
2999
+ include/grpc/impl/codegen/log.h \
3000
+ include/grpc/impl/codegen/port_platform.h \
3001
+ include/grpc/impl/codegen/slice.h \
3002
+ include/grpc/impl/codegen/slice_buffer.h \
3003
+ include/grpc/impl/codegen/sync.h \
3004
+ include/grpc/impl/codegen/sync_generic.h \
3005
+ include/grpc/impl/codegen/sync_posix.h \
3006
+ include/grpc/impl/codegen/sync_windows.h \
3007
+ include/grpc/impl/codegen/time.h \
3008
+ include/grpc/grpc_cronet.h \
3009
+ include/grpc/grpc_security.h \
3010
+ include/grpc/grpc_security_constants.h \
3011
+
3012
+ LIBGRPC_CRONET_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_CRONET_SRC))))
3013
+
3014
+
3015
+ ifeq ($(NO_SECURE),true)
3016
+
3017
+ # You can't build secure libraries if you don't have OpenSSL.
3018
+
3019
+ $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a: openssl_dep_error
3020
+
3021
+ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT): openssl_dep_error
3022
+
3023
+ else
3024
+
3025
+
3026
+ $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(LIBGRPC_CRONET_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
3027
+ $(E) "[AR] Creating $@"
3028
+ $(Q) mkdir -p `dirname $@`
3029
+ $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a
3030
+ $(Q) $(AR) $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a $(LIBGRPC_CRONET_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
3031
+ ifeq ($(SYSTEM),Darwin)
3032
+ $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a
3033
+ endif
3034
+
3035
+
3036
+
3037
+ ifeq ($(SYSTEM),MINGW32)
3038
+ $(LIBDIR)/$(CONFIG)/grpc_cronet$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC_CRONET_OBJS) $(ZLIB_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(OPENSSL_DEP)
3039
+ $(E) "[LD] Linking $@"
3040
+ $(Q) mkdir -p `dirname $@`
3041
+ $(Q) $(LD) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared grpc_cronet.def -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_cronet$(SHARED_VERSION).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_cronet$(SHARED_VERSION)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC_CRONET_OBJS) $(LDLIBS) $(LIBDIR)/$(CONFIG)/libgpr.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS)
3042
+ else
3043
+ $(LIBDIR)/$(CONFIG)/libgrpc_cronet$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC_CRONET_OBJS) $(ZLIB_DEP) $(LIBDIR)/$(CONFIG)/libgpr.a $(OPENSSL_DEP)
3044
+ $(E) "[LD] Linking $@"
3045
+ $(Q) mkdir -p `dirname $@`
3046
+ ifeq ($(SYSTEM),Darwin)
3047
+ $(Q) $(LD) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC_CRONET_OBJS) $(LDLIBS) $(LIBDIR)/$(CONFIG)/libgpr.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS)
3048
+ else
3049
+ $(Q) $(LD) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_cronet.so.0 -o $(LIBDIR)/$(CONFIG)/libgrpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC_CRONET_OBJS) $(LDLIBS) $(LIBDIR)/$(CONFIG)/libgpr.a $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS)
3050
+ $(Q) ln -sf $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc_cronet$(SHARED_VERSION).so.0
3051
+ $(Q) ln -sf $(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc_cronet$(SHARED_VERSION).so
3052
+ endif
3053
+ endif
3054
+
3055
+ endif
3056
+
3057
+ ifneq ($(NO_SECURE),true)
3058
+ ifneq ($(NO_DEPS),true)
3059
+ -include $(LIBGRPC_CRONET_OBJS:.o=.dep)
3060
+ endif
3061
+ endif
3062
+
3063
+
2729
3064
  LIBGRPC_TEST_UTIL_SRC = \
2730
3065
  test/core/end2end/data/client_certs.c \
2731
3066
  test/core/end2end/data/server1_cert.c \
@@ -2827,7 +3162,7 @@ LIBGRPC_UNSECURE_SRC = \
2827
3162
  src/core/lib/channel/connected_channel.c \
2828
3163
  src/core/lib/channel/http_client_filter.c \
2829
3164
  src/core/lib/channel/http_server_filter.c \
2830
- src/core/lib/compression/compression_algorithm.c \
3165
+ src/core/lib/compression/compression.c \
2831
3166
  src/core/lib/compression/message_compress.c \
2832
3167
  src/core/lib/debug/trace.c \
2833
3168
  src/core/lib/http/format_request.c \
@@ -2837,7 +3172,9 @@ LIBGRPC_UNSECURE_SRC = \
2837
3172
  src/core/lib/iomgr/endpoint.c \
2838
3173
  src/core/lib/iomgr/endpoint_pair_posix.c \
2839
3174
  src/core/lib/iomgr/endpoint_pair_windows.c \
3175
+ src/core/lib/iomgr/error.c \
2840
3176
  src/core/lib/iomgr/ev_poll_and_epoll_posix.c \
3177
+ src/core/lib/iomgr/ev_poll_posix.c \
2841
3178
  src/core/lib/iomgr/ev_posix.c \
2842
3179
  src/core/lib/iomgr/exec_ctx.c \
2843
3180
  src/core/lib/iomgr/executor.c \
@@ -2845,6 +3182,8 @@ LIBGRPC_UNSECURE_SRC = \
2845
3182
  src/core/lib/iomgr/iomgr.c \
2846
3183
  src/core/lib/iomgr/iomgr_posix.c \
2847
3184
  src/core/lib/iomgr/iomgr_windows.c \
3185
+ src/core/lib/iomgr/load_file.c \
3186
+ src/core/lib/iomgr/polling_entity.c \
2848
3187
  src/core/lib/iomgr/pollset_set_windows.c \
2849
3188
  src/core/lib/iomgr/pollset_windows.c \
2850
3189
  src/core/lib/iomgr/resolve_address_posix.c \
@@ -2902,6 +3241,8 @@ LIBGRPC_UNSECURE_SRC = \
2902
3241
  src/core/lib/transport/transport.c \
2903
3242
  src/core/lib/transport/transport_op_string.c \
2904
3243
  src/core/ext/transport/chttp2/server/insecure/server_chttp2.c \
3244
+ src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c \
3245
+ src/core/ext/transport/chttp2/transport/bin_decoder.c \
2905
3246
  src/core/ext/transport/chttp2/transport/bin_encoder.c \
2906
3247
  src/core/ext/transport/chttp2/transport/chttp2_plugin.c \
2907
3248
  src/core/ext/transport/chttp2/transport/chttp2_transport.c \
@@ -2925,6 +3266,7 @@ LIBGRPC_UNSECURE_SRC = \
2925
3266
  src/core/ext/transport/chttp2/transport/writing.c \
2926
3267
  src/core/ext/transport/chttp2/alpn/alpn.c \
2927
3268
  src/core/ext/transport/chttp2/client/insecure/channel_create.c \
3269
+ src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c \
2928
3270
  src/core/ext/client_config/channel_connectivity.c \
2929
3271
  src/core/ext/client_config/client_channel.c \
2930
3272
  src/core/ext/client_config/client_channel_factory.c \
@@ -2946,14 +3288,17 @@ LIBGRPC_UNSECURE_SRC = \
2946
3288
  src/core/ext/client_config/uri_parser.c \
2947
3289
  src/core/ext/resolver/dns/native/dns_resolver.c \
2948
3290
  src/core/ext/resolver/sockaddr/sockaddr_resolver.c \
3291
+ src/core/ext/load_reporting/load_reporting.c \
3292
+ src/core/ext/load_reporting/load_reporting_filter.c \
2949
3293
  src/core/ext/lb_policy/grpclb/load_balancer_api.c \
2950
- src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c \
3294
+ src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c \
2951
3295
  third_party/nanopb/pb_common.c \
2952
3296
  third_party/nanopb/pb_decode.c \
2953
3297
  third_party/nanopb/pb_encode.c \
2954
3298
  src/core/ext/lb_policy/pick_first/pick_first.c \
2955
3299
  src/core/ext/lb_policy/round_robin/round_robin.c \
2956
3300
  src/core/ext/census/context.c \
3301
+ src/core/ext/census/gen/census.pb.c \
2957
3302
  src/core/ext/census/grpc_context.c \
2958
3303
  src/core/ext/census/grpc_filter.c \
2959
3304
  src/core/ext/census/grpc_plugin.c \
@@ -2969,6 +3314,7 @@ PUBLIC_HEADERS_C += \
2969
3314
  include/grpc/byte_buffer_reader.h \
2970
3315
  include/grpc/compression.h \
2971
3316
  include/grpc/grpc.h \
3317
+ include/grpc/grpc_posix.h \
2972
3318
  include/grpc/status.h \
2973
3319
  include/grpc/impl/codegen/byte_buffer.h \
2974
3320
  include/grpc/impl/codegen/byte_buffer_reader.h \
@@ -2981,7 +3327,7 @@ PUBLIC_HEADERS_C += \
2981
3327
  include/grpc/impl/codegen/atm.h \
2982
3328
  include/grpc/impl/codegen/atm_gcc_atomic.h \
2983
3329
  include/grpc/impl/codegen/atm_gcc_sync.h \
2984
- include/grpc/impl/codegen/atm_win32.h \
3330
+ include/grpc/impl/codegen/atm_windows.h \
2985
3331
  include/grpc/impl/codegen/log.h \
2986
3332
  include/grpc/impl/codegen/port_platform.h \
2987
3333
  include/grpc/impl/codegen/slice.h \
@@ -2989,7 +3335,7 @@ PUBLIC_HEADERS_C += \
2989
3335
  include/grpc/impl/codegen/sync.h \
2990
3336
  include/grpc/impl/codegen/sync_generic.h \
2991
3337
  include/grpc/impl/codegen/sync_posix.h \
2992
- include/grpc/impl/codegen/sync_win32.h \
3338
+ include/grpc/impl/codegen/sync_windows.h \
2993
3339
  include/grpc/impl/codegen/time.h \
2994
3340
  include/grpc/census.h \
2995
3341
 
@@ -3030,49 +3376,6 @@ ifneq ($(NO_DEPS),true)
3030
3376
  endif
3031
3377
 
3032
3378
 
3033
- LIBGRPC_ZOOKEEPER_SRC = \
3034
- src/core/ext/resolver/zookeeper/zookeeper_resolver.c \
3035
-
3036
- PUBLIC_HEADERS_C += \
3037
- include/grpc/grpc_zookeeper.h \
3038
-
3039
- LIBGRPC_ZOOKEEPER_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_ZOOKEEPER_SRC))))
3040
-
3041
-
3042
- $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a: $(ZLIB_DEP) $(LIBGRPC_ZOOKEEPER_OBJS)
3043
- $(E) "[AR] Creating $@"
3044
- $(Q) mkdir -p `dirname $@`
3045
- $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a
3046
- $(Q) $(AR) $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a $(LIBGRPC_ZOOKEEPER_OBJS)
3047
- ifeq ($(SYSTEM),Darwin)
3048
- $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a
3049
- endif
3050
-
3051
-
3052
-
3053
- ifeq ($(SYSTEM),MINGW32)
3054
- $(LIBDIR)/$(CONFIG)/grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC_ZOOKEEPER_OBJS) $(ZLIB_DEP) $(LIBDIR)/$(CONFIG)/gpr.$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/grpc.$(SHARED_EXT)
3055
- $(E) "[LD] Linking $@"
3056
- $(Q) mkdir -p `dirname $@`
3057
- $(Q) $(LD) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared grpc_zookeeper.def -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc_zookeeper$(SHARED_VERSION).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc_zookeeper$(SHARED_VERSION)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC_ZOOKEEPER_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) -lgpr-imp -lgrpc-imp
3058
- else
3059
- $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC_ZOOKEEPER_OBJS) $(ZLIB_DEP) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT)
3060
- $(E) "[LD] Linking $@"
3061
- $(Q) mkdir -p `dirname $@`
3062
- ifeq ($(SYSTEM),Darwin)
3063
- $(Q) $(LD) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC_ZOOKEEPER_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) -lgpr -lgrpc -lzookeeper_mt
3064
- else
3065
- $(Q) $(LD) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_zookeeper.so.0 -o $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC_ZOOKEEPER_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) -lgpr -lgrpc -lzookeeper_mt
3066
- $(Q) ln -sf $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper$(SHARED_VERSION).so.0
3067
- $(Q) ln -sf $(SHARED_PREFIX)grpc_zookeeper$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper$(SHARED_VERSION).so
3068
- endif
3069
- endif
3070
-
3071
- ifneq ($(NO_DEPS),true)
3072
- -include $(LIBGRPC_ZOOKEEPER_OBJS:.o=.dep)
3073
- endif
3074
-
3075
-
3076
3379
  LIBRECONNECT_SERVER_SRC = \
3077
3380
  test/core/util/reconnect_server.c \
3078
3381
 
@@ -3146,87 +3449,220 @@ endif
3146
3449
 
3147
3450
  ifneq ($(NO_SECURE),true)
3148
3451
  ifneq ($(NO_DEPS),true)
3149
- -include $(LIBTEST_TCP_SERVER_OBJS:.o=.dep)
3452
+ -include $(LIBTEST_TCP_SERVER_OBJS:.o=.dep)
3453
+ endif
3454
+ endif
3455
+
3456
+
3457
+ LIBGRPC++_SRC = \
3458
+ src/cpp/client/secure_credentials.cc \
3459
+ src/cpp/common/auth_property_iterator.cc \
3460
+ src/cpp/common/secure_auth_context.cc \
3461
+ src/cpp/common/secure_channel_arguments.cc \
3462
+ src/cpp/common/secure_create_auth_context.cc \
3463
+ src/cpp/server/secure_server_credentials.cc \
3464
+ src/cpp/client/channel.cc \
3465
+ src/cpp/client/client_context.cc \
3466
+ src/cpp/client/create_channel.cc \
3467
+ src/cpp/client/create_channel_internal.cc \
3468
+ src/cpp/client/create_channel_posix.cc \
3469
+ src/cpp/client/credentials.cc \
3470
+ src/cpp/client/generic_stub.cc \
3471
+ src/cpp/client/insecure_credentials.cc \
3472
+ src/cpp/common/channel_arguments.cc \
3473
+ src/cpp/common/completion_queue.cc \
3474
+ src/cpp/common/core_codegen.cc \
3475
+ src/cpp/common/rpc_method.cc \
3476
+ src/cpp/server/async_generic_service.cc \
3477
+ src/cpp/server/create_default_thread_pool.cc \
3478
+ src/cpp/server/dynamic_thread_pool.cc \
3479
+ src/cpp/server/insecure_server_credentials.cc \
3480
+ src/cpp/server/server.cc \
3481
+ src/cpp/server/server_builder.cc \
3482
+ src/cpp/server/server_context.cc \
3483
+ src/cpp/server/server_credentials.cc \
3484
+ src/cpp/server/server_posix.cc \
3485
+ src/cpp/util/byte_buffer.cc \
3486
+ src/cpp/util/slice.cc \
3487
+ src/cpp/util/status.cc \
3488
+ src/cpp/util/string_ref.cc \
3489
+ src/cpp/util/time.cc \
3490
+ src/cpp/codegen/codegen_init.cc \
3491
+
3492
+ PUBLIC_HEADERS_CXX += \
3493
+ include/grpc++/alarm.h \
3494
+ include/grpc++/channel.h \
3495
+ include/grpc++/client_context.h \
3496
+ include/grpc++/completion_queue.h \
3497
+ include/grpc++/create_channel.h \
3498
+ include/grpc++/create_channel_posix.h \
3499
+ include/grpc++/generic/async_generic_service.h \
3500
+ include/grpc++/generic/generic_stub.h \
3501
+ include/grpc++/grpc++.h \
3502
+ include/grpc++/impl/call.h \
3503
+ include/grpc++/impl/client_unary_call.h \
3504
+ include/grpc++/impl/codegen/core_codegen.h \
3505
+ include/grpc++/impl/grpc_library.h \
3506
+ include/grpc++/impl/method_handler_impl.h \
3507
+ include/grpc++/impl/rpc_method.h \
3508
+ include/grpc++/impl/rpc_service_method.h \
3509
+ include/grpc++/impl/serialization_traits.h \
3510
+ include/grpc++/impl/server_builder_option.h \
3511
+ include/grpc++/impl/server_builder_plugin.h \
3512
+ include/grpc++/impl/server_initializer.h \
3513
+ include/grpc++/impl/service_type.h \
3514
+ include/grpc++/impl/sync.h \
3515
+ include/grpc++/impl/sync_cxx11.h \
3516
+ include/grpc++/impl/sync_no_cxx11.h \
3517
+ include/grpc++/impl/thd.h \
3518
+ include/grpc++/impl/thd_cxx11.h \
3519
+ include/grpc++/impl/thd_no_cxx11.h \
3520
+ include/grpc++/security/auth_context.h \
3521
+ include/grpc++/security/auth_metadata_processor.h \
3522
+ include/grpc++/security/credentials.h \
3523
+ include/grpc++/security/server_credentials.h \
3524
+ include/grpc++/server.h \
3525
+ include/grpc++/server_builder.h \
3526
+ include/grpc++/server_context.h \
3527
+ include/grpc++/server_posix.h \
3528
+ include/grpc++/support/async_stream.h \
3529
+ include/grpc++/support/async_unary_call.h \
3530
+ include/grpc++/support/byte_buffer.h \
3531
+ include/grpc++/support/channel_arguments.h \
3532
+ include/grpc++/support/config.h \
3533
+ include/grpc++/support/slice.h \
3534
+ include/grpc++/support/status.h \
3535
+ include/grpc++/support/status_code_enum.h \
3536
+ include/grpc++/support/string_ref.h \
3537
+ include/grpc++/support/stub_options.h \
3538
+ include/grpc++/support/sync_stream.h \
3539
+ include/grpc++/support/time.h \
3540
+ include/grpc++/impl/codegen/async_stream.h \
3541
+ include/grpc++/impl/codegen/async_unary_call.h \
3542
+ include/grpc++/impl/codegen/call.h \
3543
+ include/grpc++/impl/codegen/call_hook.h \
3544
+ include/grpc++/impl/codegen/channel_interface.h \
3545
+ include/grpc++/impl/codegen/client_context.h \
3546
+ include/grpc++/impl/codegen/client_unary_call.h \
3547
+ include/grpc++/impl/codegen/completion_queue.h \
3548
+ include/grpc++/impl/codegen/completion_queue_tag.h \
3549
+ include/grpc++/impl/codegen/config.h \
3550
+ include/grpc++/impl/codegen/core_codegen_interface.h \
3551
+ include/grpc++/impl/codegen/create_auth_context.h \
3552
+ include/grpc++/impl/codegen/grpc_library.h \
3553
+ include/grpc++/impl/codegen/method_handler_impl.h \
3554
+ include/grpc++/impl/codegen/rpc_method.h \
3555
+ include/grpc++/impl/codegen/rpc_service_method.h \
3556
+ include/grpc++/impl/codegen/security/auth_context.h \
3557
+ include/grpc++/impl/codegen/serialization_traits.h \
3558
+ include/grpc++/impl/codegen/server_context.h \
3559
+ include/grpc++/impl/codegen/server_interface.h \
3560
+ include/grpc++/impl/codegen/service_type.h \
3561
+ include/grpc++/impl/codegen/status.h \
3562
+ include/grpc++/impl/codegen/status_code_enum.h \
3563
+ include/grpc++/impl/codegen/string_ref.h \
3564
+ include/grpc++/impl/codegen/stub_options.h \
3565
+ include/grpc++/impl/codegen/sync.h \
3566
+ include/grpc++/impl/codegen/sync_cxx11.h \
3567
+ include/grpc++/impl/codegen/sync_no_cxx11.h \
3568
+ include/grpc++/impl/codegen/sync_stream.h \
3569
+ include/grpc++/impl/codegen/time.h \
3570
+ include/grpc/impl/codegen/byte_buffer.h \
3571
+ include/grpc/impl/codegen/byte_buffer_reader.h \
3572
+ include/grpc/impl/codegen/compression_types.h \
3573
+ include/grpc/impl/codegen/connectivity_state.h \
3574
+ include/grpc/impl/codegen/grpc_types.h \
3575
+ include/grpc/impl/codegen/propagation_bits.h \
3576
+ include/grpc/impl/codegen/status.h \
3577
+ include/grpc/impl/codegen/alloc.h \
3578
+ include/grpc/impl/codegen/atm.h \
3579
+ include/grpc/impl/codegen/atm_gcc_atomic.h \
3580
+ include/grpc/impl/codegen/atm_gcc_sync.h \
3581
+ include/grpc/impl/codegen/atm_windows.h \
3582
+ include/grpc/impl/codegen/log.h \
3583
+ include/grpc/impl/codegen/port_platform.h \
3584
+ include/grpc/impl/codegen/slice.h \
3585
+ include/grpc/impl/codegen/slice_buffer.h \
3586
+ include/grpc/impl/codegen/sync.h \
3587
+ include/grpc/impl/codegen/sync_generic.h \
3588
+ include/grpc/impl/codegen/sync_posix.h \
3589
+ include/grpc/impl/codegen/sync_windows.h \
3590
+ include/grpc/impl/codegen/time.h \
3591
+
3592
+ LIBGRPC++_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC))))
3593
+
3594
+
3595
+ ifeq ($(NO_SECURE),true)
3596
+
3597
+ # You can't build secure libraries if you don't have OpenSSL.
3598
+
3599
+ $(LIBDIR)/$(CONFIG)/libgrpc++.a: openssl_dep_error
3600
+
3601
+ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT): openssl_dep_error
3602
+
3603
+ else
3604
+
3605
+ ifeq ($(NO_PROTOBUF),true)
3606
+
3607
+ # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
3608
+
3609
+ $(LIBDIR)/$(CONFIG)/libgrpc++.a: protobuf_dep_error
3610
+
3611
+ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT): protobuf_dep_error
3612
+
3613
+ else
3614
+
3615
+ $(LIBDIR)/$(CONFIG)/libgrpc++.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS)
3616
+ $(E) "[AR] Creating $@"
3617
+ $(Q) mkdir -p `dirname $@`
3618
+ $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++.a
3619
+ $(Q) $(AR) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS)
3620
+ ifeq ($(SYSTEM),Darwin)
3621
+ $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++.a
3622
+ endif
3623
+
3624
+
3625
+
3626
+ ifeq ($(SYSTEM),MINGW32)
3627
+ $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc.$(SHARED_EXT) $(OPENSSL_DEP)
3628
+ $(E) "[LD] Linking $@"
3629
+ $(Q) mkdir -p `dirname $@`
3630
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared grpc++.def -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc-imp
3631
+ else
3632
+ $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT) $(OPENSSL_DEP)
3633
+ $(E) "[LD] Linking $@"
3634
+ $(Q) mkdir -p `dirname $@`
3635
+ ifeq ($(SYSTEM),Darwin)
3636
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc
3637
+ else
3638
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++.so.0 -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc
3639
+ $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).so.0
3640
+ $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).so
3641
+ endif
3642
+ endif
3643
+
3644
+ endif
3645
+
3646
+ endif
3647
+
3648
+ ifneq ($(NO_SECURE),true)
3649
+ ifneq ($(NO_DEPS),true)
3650
+ -include $(LIBGRPC++_OBJS:.o=.dep)
3150
3651
  endif
3151
3652
  endif
3152
3653
 
3153
3654
 
3154
- LIBGRPC++_SRC = \
3155
- src/cpp/client/secure_credentials.cc \
3156
- src/cpp/common/auth_property_iterator.cc \
3157
- src/cpp/common/secure_auth_context.cc \
3158
- src/cpp/common/secure_channel_arguments.cc \
3159
- src/cpp/common/secure_create_auth_context.cc \
3160
- src/cpp/server/secure_server_credentials.cc \
3161
- src/cpp/client/channel.cc \
3162
- src/cpp/client/client_context.cc \
3163
- src/cpp/client/create_channel.cc \
3164
- src/cpp/client/create_channel_internal.cc \
3165
- src/cpp/client/credentials.cc \
3166
- src/cpp/client/generic_stub.cc \
3167
- src/cpp/client/insecure_credentials.cc \
3168
- src/cpp/common/channel_arguments.cc \
3169
- src/cpp/common/completion_queue.cc \
3170
- src/cpp/common/core_codegen.cc \
3171
- src/cpp/common/rpc_method.cc \
3172
- src/cpp/server/async_generic_service.cc \
3173
- src/cpp/server/create_default_thread_pool.cc \
3174
- src/cpp/server/dynamic_thread_pool.cc \
3175
- src/cpp/server/insecure_server_credentials.cc \
3176
- src/cpp/server/server.cc \
3177
- src/cpp/server/server_builder.cc \
3178
- src/cpp/server/server_context.cc \
3179
- src/cpp/server/server_credentials.cc \
3180
- src/cpp/util/byte_buffer.cc \
3181
- src/cpp/util/slice.cc \
3182
- src/cpp/util/status.cc \
3183
- src/cpp/util/string_ref.cc \
3184
- src/cpp/util/time.cc \
3185
- src/cpp/codegen/codegen_init.cc \
3655
+ LIBGRPC++_REFLECTION_SRC = \
3656
+ src/cpp/ext/proto_server_reflection.cc \
3657
+ src/cpp/ext/proto_server_reflection_plugin.cc \
3658
+ src/cpp/ext/reflection.grpc.pb.cc \
3659
+ src/cpp/ext/reflection.pb.cc \
3186
3660
 
3187
3661
  PUBLIC_HEADERS_CXX += \
3188
- include/grpc++/alarm.h \
3189
- include/grpc++/channel.h \
3190
- include/grpc++/client_context.h \
3191
- include/grpc++/completion_queue.h \
3192
- include/grpc++/create_channel.h \
3193
- include/grpc++/generic/async_generic_service.h \
3194
- include/grpc++/generic/generic_stub.h \
3195
- include/grpc++/grpc++.h \
3196
- include/grpc++/impl/call.h \
3197
- include/grpc++/impl/client_unary_call.h \
3198
- include/grpc++/impl/grpc_library.h \
3199
- include/grpc++/impl/method_handler_impl.h \
3200
- include/grpc++/impl/proto_utils.h \
3201
- include/grpc++/impl/rpc_method.h \
3202
- include/grpc++/impl/rpc_service_method.h \
3203
- include/grpc++/impl/serialization_traits.h \
3204
- include/grpc++/impl/server_builder_option.h \
3205
- include/grpc++/impl/service_type.h \
3206
- include/grpc++/impl/sync.h \
3207
- include/grpc++/impl/sync_cxx11.h \
3208
- include/grpc++/impl/sync_no_cxx11.h \
3209
- include/grpc++/impl/thd.h \
3210
- include/grpc++/impl/thd_cxx11.h \
3211
- include/grpc++/impl/thd_no_cxx11.h \
3212
- include/grpc++/security/auth_context.h \
3213
- include/grpc++/security/auth_metadata_processor.h \
3214
- include/grpc++/security/credentials.h \
3215
- include/grpc++/security/server_credentials.h \
3216
- include/grpc++/server.h \
3217
- include/grpc++/server_builder.h \
3218
- include/grpc++/server_context.h \
3219
- include/grpc++/support/async_stream.h \
3220
- include/grpc++/support/async_unary_call.h \
3221
- include/grpc++/support/byte_buffer.h \
3222
- include/grpc++/support/channel_arguments.h \
3223
- include/grpc++/support/slice.h \
3224
- include/grpc++/support/status.h \
3225
- include/grpc++/support/status_code_enum.h \
3226
- include/grpc++/support/string_ref.h \
3227
- include/grpc++/support/stub_options.h \
3228
- include/grpc++/support/sync_stream.h \
3229
- include/grpc++/support/time.h \
3662
+ include/grpc++/ext/proto_server_reflection_plugin.h \
3663
+ include/grpc++/ext/reflection.grpc.pb.h \
3664
+ include/grpc++/ext/reflection.pb.h \
3665
+ include/grpc++/impl/codegen/proto_utils.h \
3230
3666
  include/grpc++/impl/codegen/async_stream.h \
3231
3667
  include/grpc++/impl/codegen/async_unary_call.h \
3232
3668
  include/grpc++/impl/codegen/call.h \
@@ -3236,11 +3672,11 @@ PUBLIC_HEADERS_CXX += \
3236
3672
  include/grpc++/impl/codegen/client_unary_call.h \
3237
3673
  include/grpc++/impl/codegen/completion_queue.h \
3238
3674
  include/grpc++/impl/codegen/completion_queue_tag.h \
3675
+ include/grpc++/impl/codegen/config.h \
3239
3676
  include/grpc++/impl/codegen/core_codegen_interface.h \
3240
3677
  include/grpc++/impl/codegen/create_auth_context.h \
3241
3678
  include/grpc++/impl/codegen/grpc_library.h \
3242
3679
  include/grpc++/impl/codegen/method_handler_impl.h \
3243
- include/grpc++/impl/codegen/proto_utils.h \
3244
3680
  include/grpc++/impl/codegen/rpc_method.h \
3245
3681
  include/grpc++/impl/codegen/rpc_service_method.h \
3246
3682
  include/grpc++/impl/codegen/security/auth_context.h \
@@ -3268,7 +3704,7 @@ PUBLIC_HEADERS_CXX += \
3268
3704
  include/grpc/impl/codegen/atm.h \
3269
3705
  include/grpc/impl/codegen/atm_gcc_atomic.h \
3270
3706
  include/grpc/impl/codegen/atm_gcc_sync.h \
3271
- include/grpc/impl/codegen/atm_win32.h \
3707
+ include/grpc/impl/codegen/atm_windows.h \
3272
3708
  include/grpc/impl/codegen/log.h \
3273
3709
  include/grpc/impl/codegen/port_platform.h \
3274
3710
  include/grpc/impl/codegen/slice.h \
@@ -3276,23 +3712,20 @@ PUBLIC_HEADERS_CXX += \
3276
3712
  include/grpc/impl/codegen/sync.h \
3277
3713
  include/grpc/impl/codegen/sync_generic.h \
3278
3714
  include/grpc/impl/codegen/sync_posix.h \
3279
- include/grpc/impl/codegen/sync_win32.h \
3715
+ include/grpc/impl/codegen/sync_windows.h \
3280
3716
  include/grpc/impl/codegen/time.h \
3281
- include/grpc++/impl/codegen/config.h \
3282
3717
  include/grpc++/impl/codegen/config_protobuf.h \
3283
- include/grpc++/support/config.h \
3284
- include/grpc++/support/config_protobuf.h \
3285
3718
 
3286
- LIBGRPC++_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_SRC))))
3719
+ LIBGRPC++_REFLECTION_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_REFLECTION_SRC))))
3287
3720
 
3288
3721
 
3289
3722
  ifeq ($(NO_SECURE),true)
3290
3723
 
3291
3724
  # You can't build secure libraries if you don't have OpenSSL.
3292
3725
 
3293
- $(LIBDIR)/$(CONFIG)/libgrpc++.a: openssl_dep_error
3726
+ $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: openssl_dep_error
3294
3727
 
3295
- $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT): openssl_dep_error
3728
+ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT): openssl_dep_error
3296
3729
 
3297
3730
  else
3298
3731
 
@@ -3300,38 +3733,38 @@ ifeq ($(NO_PROTOBUF),true)
3300
3733
 
3301
3734
  # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
3302
3735
 
3303
- $(LIBDIR)/$(CONFIG)/libgrpc++.a: protobuf_dep_error
3736
+ $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: protobuf_dep_error
3304
3737
 
3305
- $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT): protobuf_dep_error
3738
+ $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT): protobuf_dep_error
3306
3739
 
3307
3740
  else
3308
3741
 
3309
- $(LIBDIR)/$(CONFIG)/libgrpc++.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS)
3742
+ $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_REFLECTION_OBJS)
3310
3743
  $(E) "[AR] Creating $@"
3311
3744
  $(Q) mkdir -p `dirname $@`
3312
- $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++.a
3313
- $(Q) $(AR) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBGRPC++_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS)
3745
+ $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
3746
+ $(Q) $(AR) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBGRPC++_REFLECTION_OBJS)
3314
3747
  ifeq ($(SYSTEM),Darwin)
3315
- $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++.a
3748
+ $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a
3316
3749
  endif
3317
3750
 
3318
3751
 
3319
3752
 
3320
3753
  ifeq ($(SYSTEM),MINGW32)
3321
- $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc.$(SHARED_EXT) $(OPENSSL_DEP)
3754
+ $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/grpc++.$(SHARED_EXT) $(OPENSSL_DEP)
3322
3755
  $(E) "[LD] Linking $@"
3323
3756
  $(Q) mkdir -p `dirname $@`
3324
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared grpc++.def -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc-imp
3757
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared grpc++_reflection.def -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_REFLECTION_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc++-imp
3325
3758
  else
3326
- $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC++_OBJS) $(ZLIB_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT) $(OPENSSL_DEP)
3759
+ $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION).$(SHARED_EXT): $(LIBGRPC++_REFLECTION_OBJS) $(ZLIB_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgrpc++.$(SHARED_EXT) $(OPENSSL_DEP)
3327
3760
  $(E) "[LD] Linking $@"
3328
3761
  $(Q) mkdir -p `dirname $@`
3329
3762
  ifeq ($(SYSTEM),Darwin)
3330
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc
3763
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_REFLECTION_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc++
3331
3764
  else
3332
- $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++.so.0 -o $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc
3333
- $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).so.0
3334
- $(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc++$(SHARED_VERSION).so
3765
+ $(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_reflection.so.0 -o $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(LIBGRPC++_REFLECTION_OBJS) $(LDLIBS) $(ZLIB_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) -lgrpc++
3766
+ $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION).so.0
3767
+ $(Q) ln -sf $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION).$(SHARED_EXT) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection$(SHARED_VERSION).so
3335
3768
  endif
3336
3769
  endif
3337
3770
 
@@ -3341,7 +3774,7 @@ endif
3341
3774
 
3342
3775
  ifneq ($(NO_SECURE),true)
3343
3776
  ifneq ($(NO_DEPS),true)
3344
- -include $(LIBGRPC++_OBJS:.o=.dep)
3777
+ -include $(LIBGRPC++_REFLECTION_OBJS:.o=.dep)
3345
3778
  endif
3346
3779
  endif
3347
3780
 
@@ -3401,13 +3834,66 @@ LIBGRPC++_TEST_UTIL_SRC = \
3401
3834
  $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc \
3402
3835
  test/cpp/end2end/test_service_impl.cc \
3403
3836
  test/cpp/util/byte_buffer_proto_helper.cc \
3404
- test/cpp/util/cli_call.cc \
3405
3837
  test/cpp/util/create_test_channel.cc \
3406
3838
  test/cpp/util/string_ref_helper.cc \
3407
3839
  test/cpp/util/subprocess.cc \
3408
3840
  test/cpp/util/test_credentials_provider.cc \
3841
+ src/cpp/codegen/codegen_init.cc \
3409
3842
 
3410
3843
  PUBLIC_HEADERS_CXX += \
3844
+ include/grpc++/impl/codegen/async_stream.h \
3845
+ include/grpc++/impl/codegen/async_unary_call.h \
3846
+ include/grpc++/impl/codegen/call.h \
3847
+ include/grpc++/impl/codegen/call_hook.h \
3848
+ include/grpc++/impl/codegen/channel_interface.h \
3849
+ include/grpc++/impl/codegen/client_context.h \
3850
+ include/grpc++/impl/codegen/client_unary_call.h \
3851
+ include/grpc++/impl/codegen/completion_queue.h \
3852
+ include/grpc++/impl/codegen/completion_queue_tag.h \
3853
+ include/grpc++/impl/codegen/config.h \
3854
+ include/grpc++/impl/codegen/core_codegen_interface.h \
3855
+ include/grpc++/impl/codegen/create_auth_context.h \
3856
+ include/grpc++/impl/codegen/grpc_library.h \
3857
+ include/grpc++/impl/codegen/method_handler_impl.h \
3858
+ include/grpc++/impl/codegen/rpc_method.h \
3859
+ include/grpc++/impl/codegen/rpc_service_method.h \
3860
+ include/grpc++/impl/codegen/security/auth_context.h \
3861
+ include/grpc++/impl/codegen/serialization_traits.h \
3862
+ include/grpc++/impl/codegen/server_context.h \
3863
+ include/grpc++/impl/codegen/server_interface.h \
3864
+ include/grpc++/impl/codegen/service_type.h \
3865
+ include/grpc++/impl/codegen/status.h \
3866
+ include/grpc++/impl/codegen/status_code_enum.h \
3867
+ include/grpc++/impl/codegen/string_ref.h \
3868
+ include/grpc++/impl/codegen/stub_options.h \
3869
+ include/grpc++/impl/codegen/sync.h \
3870
+ include/grpc++/impl/codegen/sync_cxx11.h \
3871
+ include/grpc++/impl/codegen/sync_no_cxx11.h \
3872
+ include/grpc++/impl/codegen/sync_stream.h \
3873
+ include/grpc++/impl/codegen/time.h \
3874
+ include/grpc/impl/codegen/byte_buffer.h \
3875
+ include/grpc/impl/codegen/byte_buffer_reader.h \
3876
+ include/grpc/impl/codegen/compression_types.h \
3877
+ include/grpc/impl/codegen/connectivity_state.h \
3878
+ include/grpc/impl/codegen/grpc_types.h \
3879
+ include/grpc/impl/codegen/propagation_bits.h \
3880
+ include/grpc/impl/codegen/status.h \
3881
+ include/grpc/impl/codegen/alloc.h \
3882
+ include/grpc/impl/codegen/atm.h \
3883
+ include/grpc/impl/codegen/atm_gcc_atomic.h \
3884
+ include/grpc/impl/codegen/atm_gcc_sync.h \
3885
+ include/grpc/impl/codegen/atm_windows.h \
3886
+ include/grpc/impl/codegen/log.h \
3887
+ include/grpc/impl/codegen/port_platform.h \
3888
+ include/grpc/impl/codegen/slice.h \
3889
+ include/grpc/impl/codegen/slice_buffer.h \
3890
+ include/grpc/impl/codegen/sync.h \
3891
+ include/grpc/impl/codegen/sync_generic.h \
3892
+ include/grpc/impl/codegen/sync_posix.h \
3893
+ include/grpc/impl/codegen/sync_windows.h \
3894
+ include/grpc/impl/codegen/time.h \
3895
+ include/grpc++/impl/codegen/proto_utils.h \
3896
+ include/grpc++/impl/codegen/config_protobuf.h \
3411
3897
 
3412
3898
  LIBGRPC++_TEST_UTIL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_TEST_UTIL_SRC))))
3413
3899
 
@@ -3453,11 +3939,11 @@ endif
3453
3939
  endif
3454
3940
  $(OBJDIR)/$(CONFIG)/test/cpp/end2end/test_service_impl.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3455
3941
  $(OBJDIR)/$(CONFIG)/test/cpp/util/byte_buffer_proto_helper.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3456
- $(OBJDIR)/$(CONFIG)/test/cpp/util/cli_call.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3457
3942
  $(OBJDIR)/$(CONFIG)/test/cpp/util/create_test_channel.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3458
3943
  $(OBJDIR)/$(CONFIG)/test/cpp/util/string_ref_helper.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3459
3944
  $(OBJDIR)/$(CONFIG)/test/cpp/util/subprocess.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3460
3945
  $(OBJDIR)/$(CONFIG)/test/cpp/util/test_credentials_provider.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3946
+ $(OBJDIR)/$(CONFIG)/src/cpp/codegen/codegen_init.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 $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.pb.cc $(GENDIR)/src/proto/grpc/testing/duplicate/echo_duplicate.grpc.pb.cc
3461
3947
 
3462
3948
 
3463
3949
  LIBGRPC++_UNSECURE_SRC = \
@@ -3466,6 +3952,7 @@ LIBGRPC++_UNSECURE_SRC = \
3466
3952
  src/cpp/client/client_context.cc \
3467
3953
  src/cpp/client/create_channel.cc \
3468
3954
  src/cpp/client/create_channel_internal.cc \
3955
+ src/cpp/client/create_channel_posix.cc \
3469
3956
  src/cpp/client/credentials.cc \
3470
3957
  src/cpp/client/generic_stub.cc \
3471
3958
  src/cpp/client/insecure_credentials.cc \
@@ -3481,6 +3968,7 @@ LIBGRPC++_UNSECURE_SRC = \
3481
3968
  src/cpp/server/server_builder.cc \
3482
3969
  src/cpp/server/server_context.cc \
3483
3970
  src/cpp/server/server_credentials.cc \
3971
+ src/cpp/server/server_posix.cc \
3484
3972
  src/cpp/util/byte_buffer.cc \
3485
3973
  src/cpp/util/slice.cc \
3486
3974
  src/cpp/util/status.cc \
@@ -3494,18 +3982,21 @@ PUBLIC_HEADERS_CXX += \
3494
3982
  include/grpc++/client_context.h \
3495
3983
  include/grpc++/completion_queue.h \
3496
3984
  include/grpc++/create_channel.h \
3985
+ include/grpc++/create_channel_posix.h \
3497
3986
  include/grpc++/generic/async_generic_service.h \
3498
3987
  include/grpc++/generic/generic_stub.h \
3499
3988
  include/grpc++/grpc++.h \
3500
3989
  include/grpc++/impl/call.h \
3501
3990
  include/grpc++/impl/client_unary_call.h \
3991
+ include/grpc++/impl/codegen/core_codegen.h \
3502
3992
  include/grpc++/impl/grpc_library.h \
3503
3993
  include/grpc++/impl/method_handler_impl.h \
3504
- include/grpc++/impl/proto_utils.h \
3505
3994
  include/grpc++/impl/rpc_method.h \
3506
3995
  include/grpc++/impl/rpc_service_method.h \
3507
3996
  include/grpc++/impl/serialization_traits.h \
3508
3997
  include/grpc++/impl/server_builder_option.h \
3998
+ include/grpc++/impl/server_builder_plugin.h \
3999
+ include/grpc++/impl/server_initializer.h \
3509
4000
  include/grpc++/impl/service_type.h \
3510
4001
  include/grpc++/impl/sync.h \
3511
4002
  include/grpc++/impl/sync_cxx11.h \
@@ -3520,10 +4011,12 @@ PUBLIC_HEADERS_CXX += \
3520
4011
  include/grpc++/server.h \
3521
4012
  include/grpc++/server_builder.h \
3522
4013
  include/grpc++/server_context.h \
4014
+ include/grpc++/server_posix.h \
3523
4015
  include/grpc++/support/async_stream.h \
3524
4016
  include/grpc++/support/async_unary_call.h \
3525
4017
  include/grpc++/support/byte_buffer.h \
3526
4018
  include/grpc++/support/channel_arguments.h \
4019
+ include/grpc++/support/config.h \
3527
4020
  include/grpc++/support/slice.h \
3528
4021
  include/grpc++/support/status.h \
3529
4022
  include/grpc++/support/status_code_enum.h \
@@ -3540,11 +4033,11 @@ PUBLIC_HEADERS_CXX += \
3540
4033
  include/grpc++/impl/codegen/client_unary_call.h \
3541
4034
  include/grpc++/impl/codegen/completion_queue.h \
3542
4035
  include/grpc++/impl/codegen/completion_queue_tag.h \
4036
+ include/grpc++/impl/codegen/config.h \
3543
4037
  include/grpc++/impl/codegen/core_codegen_interface.h \
3544
4038
  include/grpc++/impl/codegen/create_auth_context.h \
3545
4039
  include/grpc++/impl/codegen/grpc_library.h \
3546
4040
  include/grpc++/impl/codegen/method_handler_impl.h \
3547
- include/grpc++/impl/codegen/proto_utils.h \
3548
4041
  include/grpc++/impl/codegen/rpc_method.h \
3549
4042
  include/grpc++/impl/codegen/rpc_service_method.h \
3550
4043
  include/grpc++/impl/codegen/security/auth_context.h \
@@ -3572,7 +4065,7 @@ PUBLIC_HEADERS_CXX += \
3572
4065
  include/grpc/impl/codegen/atm.h \
3573
4066
  include/grpc/impl/codegen/atm_gcc_atomic.h \
3574
4067
  include/grpc/impl/codegen/atm_gcc_sync.h \
3575
- include/grpc/impl/codegen/atm_win32.h \
4068
+ include/grpc/impl/codegen/atm_windows.h \
3576
4069
  include/grpc/impl/codegen/log.h \
3577
4070
  include/grpc/impl/codegen/port_platform.h \
3578
4071
  include/grpc/impl/codegen/slice.h \
@@ -3580,12 +4073,8 @@ PUBLIC_HEADERS_CXX += \
3580
4073
  include/grpc/impl/codegen/sync.h \
3581
4074
  include/grpc/impl/codegen/sync_generic.h \
3582
4075
  include/grpc/impl/codegen/sync_posix.h \
3583
- include/grpc/impl/codegen/sync_win32.h \
4076
+ include/grpc/impl/codegen/sync_windows.h \
3584
4077
  include/grpc/impl/codegen/time.h \
3585
- include/grpc++/impl/codegen/config.h \
3586
- include/grpc++/impl/codegen/config_protobuf.h \
3587
- include/grpc++/support/config.h \
3588
- include/grpc++/support/config_protobuf.h \
3589
4078
 
3590
4079
  LIBGRPC++_UNSECURE_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_UNSECURE_SRC))))
3591
4080
 
@@ -3636,6 +4125,56 @@ ifneq ($(NO_DEPS),true)
3636
4125
  endif
3637
4126
 
3638
4127
 
4128
+ LIBGRPC_CLI_LIBS_SRC = \
4129
+ test/cpp/util/cli_call.cc \
4130
+ test/cpp/util/proto_file_parser.cc \
4131
+
4132
+ PUBLIC_HEADERS_CXX += \
4133
+
4134
+ LIBGRPC_CLI_LIBS_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_CLI_LIBS_SRC))))
4135
+
4136
+
4137
+ ifeq ($(NO_SECURE),true)
4138
+
4139
+ # You can't build secure libraries if you don't have OpenSSL.
4140
+
4141
+ $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a: openssl_dep_error
4142
+
4143
+
4144
+ else
4145
+
4146
+ ifeq ($(NO_PROTOBUF),true)
4147
+
4148
+ # You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
4149
+
4150
+ $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a: protobuf_dep_error
4151
+
4152
+
4153
+ else
4154
+
4155
+ $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(PROTOBUF_DEP) $(LIBGRPC_CLI_LIBS_OBJS)
4156
+ $(E) "[AR] Creating $@"
4157
+ $(Q) mkdir -p `dirname $@`
4158
+ $(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a
4159
+ $(Q) $(AR) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBGRPC_CLI_LIBS_OBJS)
4160
+ ifeq ($(SYSTEM),Darwin)
4161
+ $(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a
4162
+ endif
4163
+
4164
+
4165
+
4166
+
4167
+ endif
4168
+
4169
+ endif
4170
+
4171
+ ifneq ($(NO_SECURE),true)
4172
+ ifneq ($(NO_DEPS),true)
4173
+ -include $(LIBGRPC_CLI_LIBS_OBJS:.o=.dep)
4174
+ endif
4175
+ endif
4176
+
4177
+
3639
4178
  LIBGRPC_PLUGIN_SUPPORT_SRC = \
3640
4179
  src/compiler/cpp_generator.cc \
3641
4180
  src/compiler/csharp_generator.cc \
@@ -3645,9 +4184,6 @@ LIBGRPC_PLUGIN_SUPPORT_SRC = \
3645
4184
  src/compiler/ruby_generator.cc \
3646
4185
 
3647
4186
  PUBLIC_HEADERS_CXX += \
3648
- include/grpc++/support/config.h \
3649
- include/grpc++/support/config_protobuf.h \
3650
- include/grpc++/impl/codegen/config.h \
3651
4187
  include/grpc++/impl/codegen/config_protobuf.h \
3652
4188
 
3653
4189
  LIBGRPC_PLUGIN_SUPPORT_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC_PLUGIN_SUPPORT_SRC))))
@@ -3840,7 +4376,7 @@ LIBINTEROP_SERVER_MAIN_SRC = \
3840
4376
  $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc \
3841
4377
  $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc \
3842
4378
  $(GENDIR)/src/proto/grpc/testing/test.pb.cc $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc \
3843
- test/cpp/interop/server_main.cc \
4379
+ test/cpp/interop/interop_server.cc \
3844
4380
 
3845
4381
  PUBLIC_HEADERS_CXX += \
3846
4382
 
@@ -3886,7 +4422,7 @@ ifneq ($(NO_DEPS),true)
3886
4422
  -include $(LIBINTEROP_SERVER_MAIN_OBJS:.o=.dep)
3887
4423
  endif
3888
4424
  endif
3889
- $(OBJDIR)/$(CONFIG)/test/cpp/interop/server_main.o: $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/test.pb.cc $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc
4425
+ $(OBJDIR)/$(CONFIG)/test/cpp/interop/interop_server.o: $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/test.pb.cc $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc
3890
4426
 
3891
4427
 
3892
4428
  LIBQPS_SRC = \
@@ -3895,12 +4431,11 @@ LIBQPS_SRC = \
3895
4431
  $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc \
3896
4432
  $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc \
3897
4433
  $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc \
3898
- $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc \
3899
4434
  test/cpp/qps/client_async.cc \
3900
4435
  test/cpp/qps/client_sync.cc \
3901
4436
  test/cpp/qps/driver.cc \
3902
4437
  test/cpp/qps/limit_cores.cc \
3903
- test/cpp/qps/perf_db_client.cc \
4438
+ test/cpp/qps/parse_json.cc \
3904
4439
  test/cpp/qps/qps_worker.cc \
3905
4440
  test/cpp/qps/report.cc \
3906
4441
  test/cpp/qps/server_async.cc \
@@ -3952,17 +4487,17 @@ ifneq ($(NO_DEPS),true)
3952
4487
  -include $(LIBQPS_OBJS:.o=.dep)
3953
4488
  endif
3954
4489
  endif
3955
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/client_async.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3956
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/client_sync.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3957
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/driver.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3958
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/limit_cores.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3959
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/perf_db_client.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3960
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_worker.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3961
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/report.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3962
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/server_async.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3963
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/server_sync.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3964
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/usage_timer.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
3965
- $(OBJDIR)/$(CONFIG)/test/cpp/util/benchmark_config.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc
4490
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/client_async.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4491
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/client_sync.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4492
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/driver.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4493
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/limit_cores.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4494
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/parse_json.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4495
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_worker.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4496
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/report.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4497
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/server_async.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4498
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/server_sync.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4499
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/usage_timer.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
4500
+ $(OBJDIR)/$(CONFIG)/test/cpp/util/benchmark_config.o: $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc
3966
4501
 
3967
4502
 
3968
4503
  LIBGRPC_CSHARP_EXT_SRC = \
@@ -4326,7 +4861,7 @@ PUBLIC_HEADERS_C += \
4326
4861
  LIBBORINGSSL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_SRC))))
4327
4862
 
4328
4863
  $(LIBBORINGSSL_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4329
- $(LIBBORINGSSL_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
4864
+ $(LIBBORINGSSL_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4330
4865
 
4331
4866
  $(LIBDIR)/$(CONFIG)/libboringssl.a: $(ZLIB_DEP) $(LIBBORINGSSL_OBJS)
4332
4867
  $(E) "[AR] Creating $@"
@@ -4355,7 +4890,7 @@ PUBLIC_HEADERS_CXX += \
4355
4890
  LIBBORINGSSL_TEST_UTIL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_TEST_UTIL_SRC))))
4356
4891
 
4357
4892
  $(LIBBORINGSSL_TEST_UTIL_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4358
- $(LIBBORINGSSL_TEST_UTIL_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
4893
+ $(LIBBORINGSSL_TEST_UTIL_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4359
4894
 
4360
4895
  ifeq ($(NO_PROTOBUF),true)
4361
4896
 
@@ -4393,7 +4928,7 @@ PUBLIC_HEADERS_CXX += \
4393
4928
  LIBBORINGSSL_AES_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_AES_TEST_LIB_SRC))))
4394
4929
 
4395
4930
  $(LIBBORINGSSL_AES_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4396
- $(LIBBORINGSSL_AES_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
4931
+ $(LIBBORINGSSL_AES_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4397
4932
 
4398
4933
  ifeq ($(NO_PROTOBUF),true)
4399
4934
 
@@ -4431,7 +4966,7 @@ PUBLIC_HEADERS_CXX += \
4431
4966
  LIBBORINGSSL_ASN1_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_ASN1_TEST_LIB_SRC))))
4432
4967
 
4433
4968
  $(LIBBORINGSSL_ASN1_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4434
- $(LIBBORINGSSL_ASN1_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
4969
+ $(LIBBORINGSSL_ASN1_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4435
4970
 
4436
4971
  ifeq ($(NO_PROTOBUF),true)
4437
4972
 
@@ -4469,7 +5004,7 @@ PUBLIC_HEADERS_CXX += \
4469
5004
  LIBBORINGSSL_BASE64_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_BASE64_TEST_LIB_SRC))))
4470
5005
 
4471
5006
  $(LIBBORINGSSL_BASE64_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4472
- $(LIBBORINGSSL_BASE64_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5007
+ $(LIBBORINGSSL_BASE64_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4473
5008
 
4474
5009
  ifeq ($(NO_PROTOBUF),true)
4475
5010
 
@@ -4507,7 +5042,7 @@ PUBLIC_HEADERS_CXX += \
4507
5042
  LIBBORINGSSL_BIO_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_BIO_TEST_LIB_SRC))))
4508
5043
 
4509
5044
  $(LIBBORINGSSL_BIO_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4510
- $(LIBBORINGSSL_BIO_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5045
+ $(LIBBORINGSSL_BIO_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4511
5046
 
4512
5047
  ifeq ($(NO_PROTOBUF),true)
4513
5048
 
@@ -4545,7 +5080,7 @@ PUBLIC_HEADERS_CXX += \
4545
5080
  LIBBORINGSSL_BN_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_BN_TEST_LIB_SRC))))
4546
5081
 
4547
5082
  $(LIBBORINGSSL_BN_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4548
- $(LIBBORINGSSL_BN_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5083
+ $(LIBBORINGSSL_BN_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4549
5084
 
4550
5085
  ifeq ($(NO_PROTOBUF),true)
4551
5086
 
@@ -4583,7 +5118,7 @@ PUBLIC_HEADERS_CXX += \
4583
5118
  LIBBORINGSSL_BYTESTRING_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_BYTESTRING_TEST_LIB_SRC))))
4584
5119
 
4585
5120
  $(LIBBORINGSSL_BYTESTRING_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4586
- $(LIBBORINGSSL_BYTESTRING_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5121
+ $(LIBBORINGSSL_BYTESTRING_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4587
5122
 
4588
5123
  ifeq ($(NO_PROTOBUF),true)
4589
5124
 
@@ -4621,7 +5156,7 @@ PUBLIC_HEADERS_CXX += \
4621
5156
  LIBBORINGSSL_AEAD_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_AEAD_TEST_LIB_SRC))))
4622
5157
 
4623
5158
  $(LIBBORINGSSL_AEAD_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4624
- $(LIBBORINGSSL_AEAD_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5159
+ $(LIBBORINGSSL_AEAD_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4625
5160
 
4626
5161
  ifeq ($(NO_PROTOBUF),true)
4627
5162
 
@@ -4659,7 +5194,7 @@ PUBLIC_HEADERS_CXX += \
4659
5194
  LIBBORINGSSL_CIPHER_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_CIPHER_TEST_LIB_SRC))))
4660
5195
 
4661
5196
  $(LIBBORINGSSL_CIPHER_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4662
- $(LIBBORINGSSL_CIPHER_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5197
+ $(LIBBORINGSSL_CIPHER_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4663
5198
 
4664
5199
  ifeq ($(NO_PROTOBUF),true)
4665
5200
 
@@ -4697,7 +5232,7 @@ PUBLIC_HEADERS_CXX += \
4697
5232
  LIBBORINGSSL_CMAC_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_CMAC_TEST_LIB_SRC))))
4698
5233
 
4699
5234
  $(LIBBORINGSSL_CMAC_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4700
- $(LIBBORINGSSL_CMAC_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5235
+ $(LIBBORINGSSL_CMAC_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4701
5236
 
4702
5237
  ifeq ($(NO_PROTOBUF),true)
4703
5238
 
@@ -4735,7 +5270,7 @@ PUBLIC_HEADERS_C += \
4735
5270
  LIBBORINGSSL_CONSTANT_TIME_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_CONSTANT_TIME_TEST_LIB_SRC))))
4736
5271
 
4737
5272
  $(LIBBORINGSSL_CONSTANT_TIME_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4738
- $(LIBBORINGSSL_CONSTANT_TIME_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5273
+ $(LIBBORINGSSL_CONSTANT_TIME_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4739
5274
 
4740
5275
  $(LIBDIR)/$(CONFIG)/libboringssl_constant_time_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_CONSTANT_TIME_TEST_LIB_OBJS)
4741
5276
  $(E) "[AR] Creating $@"
@@ -4762,7 +5297,7 @@ PUBLIC_HEADERS_CXX += \
4762
5297
  LIBBORINGSSL_ED25519_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_ED25519_TEST_LIB_SRC))))
4763
5298
 
4764
5299
  $(LIBBORINGSSL_ED25519_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4765
- $(LIBBORINGSSL_ED25519_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5300
+ $(LIBBORINGSSL_ED25519_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4766
5301
 
4767
5302
  ifeq ($(NO_PROTOBUF),true)
4768
5303
 
@@ -4800,7 +5335,7 @@ PUBLIC_HEADERS_CXX += \
4800
5335
  LIBBORINGSSL_X25519_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_X25519_TEST_LIB_SRC))))
4801
5336
 
4802
5337
  $(LIBBORINGSSL_X25519_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4803
- $(LIBBORINGSSL_X25519_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5338
+ $(LIBBORINGSSL_X25519_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4804
5339
 
4805
5340
  ifeq ($(NO_PROTOBUF),true)
4806
5341
 
@@ -4838,7 +5373,7 @@ PUBLIC_HEADERS_CXX += \
4838
5373
  LIBBORINGSSL_DH_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_DH_TEST_LIB_SRC))))
4839
5374
 
4840
5375
  $(LIBBORINGSSL_DH_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4841
- $(LIBBORINGSSL_DH_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5376
+ $(LIBBORINGSSL_DH_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4842
5377
 
4843
5378
  ifeq ($(NO_PROTOBUF),true)
4844
5379
 
@@ -4876,7 +5411,7 @@ PUBLIC_HEADERS_CXX += \
4876
5411
  LIBBORINGSSL_DIGEST_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_DIGEST_TEST_LIB_SRC))))
4877
5412
 
4878
5413
  $(LIBBORINGSSL_DIGEST_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4879
- $(LIBBORINGSSL_DIGEST_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5414
+ $(LIBBORINGSSL_DIGEST_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4880
5415
 
4881
5416
  ifeq ($(NO_PROTOBUF),true)
4882
5417
 
@@ -4914,7 +5449,7 @@ PUBLIC_HEADERS_C += \
4914
5449
  LIBBORINGSSL_DSA_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_DSA_TEST_LIB_SRC))))
4915
5450
 
4916
5451
  $(LIBBORINGSSL_DSA_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4917
- $(LIBBORINGSSL_DSA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5452
+ $(LIBBORINGSSL_DSA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4918
5453
 
4919
5454
  $(LIBDIR)/$(CONFIG)/libboringssl_dsa_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_DSA_TEST_LIB_OBJS)
4920
5455
  $(E) "[AR] Creating $@"
@@ -4941,7 +5476,7 @@ PUBLIC_HEADERS_CXX += \
4941
5476
  LIBBORINGSSL_EC_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_EC_TEST_LIB_SRC))))
4942
5477
 
4943
5478
  $(LIBBORINGSSL_EC_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4944
- $(LIBBORINGSSL_EC_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5479
+ $(LIBBORINGSSL_EC_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4945
5480
 
4946
5481
  ifeq ($(NO_PROTOBUF),true)
4947
5482
 
@@ -4979,7 +5514,7 @@ PUBLIC_HEADERS_C += \
4979
5514
  LIBBORINGSSL_EXAMPLE_MUL_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_EXAMPLE_MUL_LIB_SRC))))
4980
5515
 
4981
5516
  $(LIBBORINGSSL_EXAMPLE_MUL_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
4982
- $(LIBBORINGSSL_EXAMPLE_MUL_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5517
+ $(LIBBORINGSSL_EXAMPLE_MUL_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
4983
5518
 
4984
5519
  $(LIBDIR)/$(CONFIG)/libboringssl_example_mul_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_EXAMPLE_MUL_LIB_OBJS)
4985
5520
  $(E) "[AR] Creating $@"
@@ -5006,7 +5541,7 @@ PUBLIC_HEADERS_CXX += \
5006
5541
  LIBBORINGSSL_ECDSA_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_ECDSA_TEST_LIB_SRC))))
5007
5542
 
5008
5543
  $(LIBBORINGSSL_ECDSA_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5009
- $(LIBBORINGSSL_ECDSA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5544
+ $(LIBBORINGSSL_ECDSA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5010
5545
 
5011
5546
  ifeq ($(NO_PROTOBUF),true)
5012
5547
 
@@ -5044,7 +5579,7 @@ PUBLIC_HEADERS_CXX += \
5044
5579
  LIBBORINGSSL_ERR_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_ERR_TEST_LIB_SRC))))
5045
5580
 
5046
5581
  $(LIBBORINGSSL_ERR_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5047
- $(LIBBORINGSSL_ERR_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5582
+ $(LIBBORINGSSL_ERR_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5048
5583
 
5049
5584
  ifeq ($(NO_PROTOBUF),true)
5050
5585
 
@@ -5082,7 +5617,7 @@ PUBLIC_HEADERS_CXX += \
5082
5617
  LIBBORINGSSL_EVP_EXTRA_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_EVP_EXTRA_TEST_LIB_SRC))))
5083
5618
 
5084
5619
  $(LIBBORINGSSL_EVP_EXTRA_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5085
- $(LIBBORINGSSL_EVP_EXTRA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5620
+ $(LIBBORINGSSL_EVP_EXTRA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5086
5621
 
5087
5622
  ifeq ($(NO_PROTOBUF),true)
5088
5623
 
@@ -5120,7 +5655,7 @@ PUBLIC_HEADERS_CXX += \
5120
5655
  LIBBORINGSSL_EVP_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_EVP_TEST_LIB_SRC))))
5121
5656
 
5122
5657
  $(LIBBORINGSSL_EVP_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5123
- $(LIBBORINGSSL_EVP_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5658
+ $(LIBBORINGSSL_EVP_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5124
5659
 
5125
5660
  ifeq ($(NO_PROTOBUF),true)
5126
5661
 
@@ -5158,7 +5693,7 @@ PUBLIC_HEADERS_CXX += \
5158
5693
  LIBBORINGSSL_PBKDF_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_PBKDF_TEST_LIB_SRC))))
5159
5694
 
5160
5695
  $(LIBBORINGSSL_PBKDF_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5161
- $(LIBBORINGSSL_PBKDF_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5696
+ $(LIBBORINGSSL_PBKDF_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5162
5697
 
5163
5698
  ifeq ($(NO_PROTOBUF),true)
5164
5699
 
@@ -5196,7 +5731,7 @@ PUBLIC_HEADERS_C += \
5196
5731
  LIBBORINGSSL_HKDF_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_HKDF_TEST_LIB_SRC))))
5197
5732
 
5198
5733
  $(LIBBORINGSSL_HKDF_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5199
- $(LIBBORINGSSL_HKDF_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5734
+ $(LIBBORINGSSL_HKDF_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5200
5735
 
5201
5736
  $(LIBDIR)/$(CONFIG)/libboringssl_hkdf_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_HKDF_TEST_LIB_OBJS)
5202
5737
  $(E) "[AR] Creating $@"
@@ -5223,7 +5758,7 @@ PUBLIC_HEADERS_CXX += \
5223
5758
  LIBBORINGSSL_HMAC_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_HMAC_TEST_LIB_SRC))))
5224
5759
 
5225
5760
  $(LIBBORINGSSL_HMAC_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5226
- $(LIBBORINGSSL_HMAC_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5761
+ $(LIBBORINGSSL_HMAC_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5227
5762
 
5228
5763
  ifeq ($(NO_PROTOBUF),true)
5229
5764
 
@@ -5261,7 +5796,7 @@ PUBLIC_HEADERS_C += \
5261
5796
  LIBBORINGSSL_LHASH_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_LHASH_TEST_LIB_SRC))))
5262
5797
 
5263
5798
  $(LIBBORINGSSL_LHASH_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5264
- $(LIBBORINGSSL_LHASH_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5799
+ $(LIBBORINGSSL_LHASH_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5265
5800
 
5266
5801
  $(LIBDIR)/$(CONFIG)/libboringssl_lhash_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_LHASH_TEST_LIB_OBJS)
5267
5802
  $(E) "[AR] Creating $@"
@@ -5288,7 +5823,7 @@ PUBLIC_HEADERS_C += \
5288
5823
  LIBBORINGSSL_GCM_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_GCM_TEST_LIB_SRC))))
5289
5824
 
5290
5825
  $(LIBBORINGSSL_GCM_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5291
- $(LIBBORINGSSL_GCM_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5826
+ $(LIBBORINGSSL_GCM_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5292
5827
 
5293
5828
  $(LIBDIR)/$(CONFIG)/libboringssl_gcm_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_GCM_TEST_LIB_OBJS)
5294
5829
  $(E) "[AR] Creating $@"
@@ -5315,7 +5850,7 @@ PUBLIC_HEADERS_CXX += \
5315
5850
  LIBBORINGSSL_PKCS12_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_PKCS12_TEST_LIB_SRC))))
5316
5851
 
5317
5852
  $(LIBBORINGSSL_PKCS12_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5318
- $(LIBBORINGSSL_PKCS12_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5853
+ $(LIBBORINGSSL_PKCS12_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5319
5854
 
5320
5855
  ifeq ($(NO_PROTOBUF),true)
5321
5856
 
@@ -5353,7 +5888,7 @@ PUBLIC_HEADERS_CXX += \
5353
5888
  LIBBORINGSSL_PKCS8_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_PKCS8_TEST_LIB_SRC))))
5354
5889
 
5355
5890
  $(LIBBORINGSSL_PKCS8_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5356
- $(LIBBORINGSSL_PKCS8_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5891
+ $(LIBBORINGSSL_PKCS8_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5357
5892
 
5358
5893
  ifeq ($(NO_PROTOBUF),true)
5359
5894
 
@@ -5391,7 +5926,7 @@ PUBLIC_HEADERS_CXX += \
5391
5926
  LIBBORINGSSL_POLY1305_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_POLY1305_TEST_LIB_SRC))))
5392
5927
 
5393
5928
  $(LIBBORINGSSL_POLY1305_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5394
- $(LIBBORINGSSL_POLY1305_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5929
+ $(LIBBORINGSSL_POLY1305_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5395
5930
 
5396
5931
  ifeq ($(NO_PROTOBUF),true)
5397
5932
 
@@ -5429,7 +5964,7 @@ PUBLIC_HEADERS_C += \
5429
5964
  LIBBORINGSSL_REFCOUNT_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_REFCOUNT_TEST_LIB_SRC))))
5430
5965
 
5431
5966
  $(LIBBORINGSSL_REFCOUNT_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5432
- $(LIBBORINGSSL_REFCOUNT_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5967
+ $(LIBBORINGSSL_REFCOUNT_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5433
5968
 
5434
5969
  $(LIBDIR)/$(CONFIG)/libboringssl_refcount_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_REFCOUNT_TEST_LIB_OBJS)
5435
5970
  $(E) "[AR] Creating $@"
@@ -5456,7 +5991,7 @@ PUBLIC_HEADERS_CXX += \
5456
5991
  LIBBORINGSSL_RSA_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_RSA_TEST_LIB_SRC))))
5457
5992
 
5458
5993
  $(LIBBORINGSSL_RSA_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5459
- $(LIBBORINGSSL_RSA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
5994
+ $(LIBBORINGSSL_RSA_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5460
5995
 
5461
5996
  ifeq ($(NO_PROTOBUF),true)
5462
5997
 
@@ -5494,7 +6029,7 @@ PUBLIC_HEADERS_C += \
5494
6029
  LIBBORINGSSL_THREAD_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_THREAD_TEST_LIB_SRC))))
5495
6030
 
5496
6031
  $(LIBBORINGSSL_THREAD_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5497
- $(LIBBORINGSSL_THREAD_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6032
+ $(LIBBORINGSSL_THREAD_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5498
6033
 
5499
6034
  $(LIBDIR)/$(CONFIG)/libboringssl_thread_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_THREAD_TEST_LIB_OBJS)
5500
6035
  $(E) "[AR] Creating $@"
@@ -5521,7 +6056,7 @@ PUBLIC_HEADERS_C += \
5521
6056
  LIBBORINGSSL_PKCS7_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_PKCS7_TEST_LIB_SRC))))
5522
6057
 
5523
6058
  $(LIBBORINGSSL_PKCS7_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5524
- $(LIBBORINGSSL_PKCS7_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6059
+ $(LIBBORINGSSL_PKCS7_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5525
6060
 
5526
6061
  $(LIBDIR)/$(CONFIG)/libboringssl_pkcs7_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_PKCS7_TEST_LIB_OBJS)
5527
6062
  $(E) "[AR] Creating $@"
@@ -5548,7 +6083,7 @@ PUBLIC_HEADERS_CXX += \
5548
6083
  LIBBORINGSSL_X509_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_X509_TEST_LIB_SRC))))
5549
6084
 
5550
6085
  $(LIBBORINGSSL_X509_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5551
- $(LIBBORINGSSL_X509_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6086
+ $(LIBBORINGSSL_X509_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5552
6087
 
5553
6088
  ifeq ($(NO_PROTOBUF),true)
5554
6089
 
@@ -5586,7 +6121,7 @@ PUBLIC_HEADERS_C += \
5586
6121
  LIBBORINGSSL_TAB_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_TAB_TEST_LIB_SRC))))
5587
6122
 
5588
6123
  $(LIBBORINGSSL_TAB_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5589
- $(LIBBORINGSSL_TAB_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6124
+ $(LIBBORINGSSL_TAB_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5590
6125
 
5591
6126
  $(LIBDIR)/$(CONFIG)/libboringssl_tab_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_TAB_TEST_LIB_OBJS)
5592
6127
  $(E) "[AR] Creating $@"
@@ -5613,7 +6148,7 @@ PUBLIC_HEADERS_C += \
5613
6148
  LIBBORINGSSL_V3NAME_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_V3NAME_TEST_LIB_SRC))))
5614
6149
 
5615
6150
  $(LIBBORINGSSL_V3NAME_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5616
- $(LIBBORINGSSL_V3NAME_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6151
+ $(LIBBORINGSSL_V3NAME_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5617
6152
 
5618
6153
  $(LIBDIR)/$(CONFIG)/libboringssl_v3name_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_V3NAME_TEST_LIB_OBJS)
5619
6154
  $(E) "[AR] Creating $@"
@@ -5640,7 +6175,7 @@ PUBLIC_HEADERS_C += \
5640
6175
  LIBBORINGSSL_PQUEUE_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_PQUEUE_TEST_LIB_SRC))))
5641
6176
 
5642
6177
  $(LIBBORINGSSL_PQUEUE_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5643
- $(LIBBORINGSSL_PQUEUE_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6178
+ $(LIBBORINGSSL_PQUEUE_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5644
6179
 
5645
6180
  $(LIBDIR)/$(CONFIG)/libboringssl_pqueue_test_lib.a: $(ZLIB_DEP) $(LIBBORINGSSL_PQUEUE_TEST_LIB_OBJS)
5646
6181
  $(E) "[AR] Creating $@"
@@ -5667,7 +6202,7 @@ PUBLIC_HEADERS_CXX += \
5667
6202
  LIBBORINGSSL_SSL_TEST_LIB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_SSL_TEST_LIB_SRC))))
5668
6203
 
5669
6204
  $(LIBBORINGSSL_SSL_TEST_LIB_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
5670
- $(LIBBORINGSSL_SSL_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
6205
+ $(LIBBORINGSSL_SSL_TEST_LIB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
5671
6206
 
5672
6207
  ifeq ($(NO_PROTOBUF),true)
5673
6208
 
@@ -5854,6 +6389,7 @@ LIBEND2END_TESTS_SRC = \
5854
6389
  test/core/end2end/tests/simple_delayed_request.c \
5855
6390
  test/core/end2end/tests/simple_metadata.c \
5856
6391
  test/core/end2end/tests/simple_request.c \
6392
+ test/core/end2end/tests/streaming_error_response.c \
5857
6393
  test/core/end2end/tests/trailing_metadata.c \
5858
6394
 
5859
6395
  PUBLIC_HEADERS_C += \
@@ -5930,6 +6466,7 @@ LIBEND2END_NOSEC_TESTS_SRC = \
5930
6466
  test/core/end2end/tests/simple_delayed_request.c \
5931
6467
  test/core/end2end/tests/simple_metadata.c \
5932
6468
  test/core/end2end/tests/simple_request.c \
6469
+ test/core/end2end/tests/streaming_error_response.c \
5933
6470
  test/core/end2end/tests/trailing_metadata.c \
5934
6471
 
5935
6472
  PUBLIC_HEADERS_C += \
@@ -6118,6 +6655,38 @@ endif
6118
6655
  endif
6119
6656
 
6120
6657
 
6658
+ BIN_DECODER_TEST_SRC = \
6659
+ test/core/transport/chttp2/bin_decoder_test.c \
6660
+
6661
+ BIN_DECODER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(BIN_DECODER_TEST_SRC))))
6662
+ ifeq ($(NO_SECURE),true)
6663
+
6664
+ # You can't build secure targets if you don't have OpenSSL.
6665
+
6666
+ $(BINDIR)/$(CONFIG)/bin_decoder_test: openssl_dep_error
6667
+
6668
+ else
6669
+
6670
+
6671
+
6672
+ $(BINDIR)/$(CONFIG)/bin_decoder_test: $(BIN_DECODER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a
6673
+ $(E) "[LD] Linking $@"
6674
+ $(Q) mkdir -p `dirname $@`
6675
+ $(Q) $(LD) $(LDFLAGS) $(BIN_DECODER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/bin_decoder_test
6676
+
6677
+ endif
6678
+
6679
+ $(OBJDIR)/$(CONFIG)/test/core/transport/chttp2/bin_decoder_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a
6680
+
6681
+ deps_bin_decoder_test: $(BIN_DECODER_TEST_OBJS:.o=.dep)
6682
+
6683
+ ifneq ($(NO_SECURE),true)
6684
+ ifneq ($(NO_DEPS),true)
6685
+ -include $(BIN_DECODER_TEST_OBJS:.o=.dep)
6686
+ endif
6687
+ endif
6688
+
6689
+
6121
6690
  BIN_ENCODER_TEST_SRC = \
6122
6691
  test/core/transport/chttp2/bin_encoder_test.c \
6123
6692
 
@@ -7031,81 +7600,49 @@ else
7031
7600
  $(BINDIR)/$(CONFIG)/gpr_histogram_test: $(GPR_HISTOGRAM_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7032
7601
  $(E) "[LD] Linking $@"
7033
7602
  $(Q) mkdir -p `dirname $@`
7034
- $(Q) $(LD) $(LDFLAGS) $(GPR_HISTOGRAM_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/gpr_histogram_test
7035
-
7036
- endif
7037
-
7038
- $(OBJDIR)/$(CONFIG)/test/core/support/histogram_test.o: $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7039
-
7040
- deps_gpr_histogram_test: $(GPR_HISTOGRAM_TEST_OBJS:.o=.dep)
7041
-
7042
- ifneq ($(NO_SECURE),true)
7043
- ifneq ($(NO_DEPS),true)
7044
- -include $(GPR_HISTOGRAM_TEST_OBJS:.o=.dep)
7045
- endif
7046
- endif
7047
-
7048
-
7049
- GPR_HOST_PORT_TEST_SRC = \
7050
- test/core/support/host_port_test.c \
7051
-
7052
- GPR_HOST_PORT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_HOST_PORT_TEST_SRC))))
7053
- ifeq ($(NO_SECURE),true)
7054
-
7055
- # You can't build secure targets if you don't have OpenSSL.
7056
-
7057
- $(BINDIR)/$(CONFIG)/gpr_host_port_test: openssl_dep_error
7058
-
7059
- else
7060
-
7061
-
7062
-
7063
- $(BINDIR)/$(CONFIG)/gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7064
- $(E) "[LD] Linking $@"
7065
- $(Q) mkdir -p `dirname $@`
7066
- $(Q) $(LD) $(LDFLAGS) $(GPR_HOST_PORT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/gpr_host_port_test
7603
+ $(Q) $(LD) $(LDFLAGS) $(GPR_HISTOGRAM_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/gpr_histogram_test
7067
7604
 
7068
7605
  endif
7069
7606
 
7070
- $(OBJDIR)/$(CONFIG)/test/core/support/host_port_test.o: $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7607
+ $(OBJDIR)/$(CONFIG)/test/core/support/histogram_test.o: $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7071
7608
 
7072
- deps_gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS:.o=.dep)
7609
+ deps_gpr_histogram_test: $(GPR_HISTOGRAM_TEST_OBJS:.o=.dep)
7073
7610
 
7074
7611
  ifneq ($(NO_SECURE),true)
7075
7612
  ifneq ($(NO_DEPS),true)
7076
- -include $(GPR_HOST_PORT_TEST_OBJS:.o=.dep)
7613
+ -include $(GPR_HISTOGRAM_TEST_OBJS:.o=.dep)
7077
7614
  endif
7078
7615
  endif
7079
7616
 
7080
7617
 
7081
- GPR_LOAD_FILE_TEST_SRC = \
7082
- test/core/support/load_file_test.c \
7618
+ GPR_HOST_PORT_TEST_SRC = \
7619
+ test/core/support/host_port_test.c \
7083
7620
 
7084
- GPR_LOAD_FILE_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_LOAD_FILE_TEST_SRC))))
7621
+ GPR_HOST_PORT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_HOST_PORT_TEST_SRC))))
7085
7622
  ifeq ($(NO_SECURE),true)
7086
7623
 
7087
7624
  # You can't build secure targets if you don't have OpenSSL.
7088
7625
 
7089
- $(BINDIR)/$(CONFIG)/gpr_load_file_test: openssl_dep_error
7626
+ $(BINDIR)/$(CONFIG)/gpr_host_port_test: openssl_dep_error
7090
7627
 
7091
7628
  else
7092
7629
 
7093
7630
 
7094
7631
 
7095
- $(BINDIR)/$(CONFIG)/gpr_load_file_test: $(GPR_LOAD_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7632
+ $(BINDIR)/$(CONFIG)/gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7096
7633
  $(E) "[LD] Linking $@"
7097
7634
  $(Q) mkdir -p `dirname $@`
7098
- $(Q) $(LD) $(LDFLAGS) $(GPR_LOAD_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/gpr_load_file_test
7635
+ $(Q) $(LD) $(LDFLAGS) $(GPR_HOST_PORT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/gpr_host_port_test
7099
7636
 
7100
7637
  endif
7101
7638
 
7102
- $(OBJDIR)/$(CONFIG)/test/core/support/load_file_test.o: $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7639
+ $(OBJDIR)/$(CONFIG)/test/core/support/host_port_test.o: $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
7103
7640
 
7104
- deps_gpr_load_file_test: $(GPR_LOAD_FILE_TEST_OBJS:.o=.dep)
7641
+ deps_gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS:.o=.dep)
7105
7642
 
7106
7643
  ifneq ($(NO_SECURE),true)
7107
7644
  ifneq ($(NO_DEPS),true)
7108
- -include $(GPR_LOAD_FILE_TEST_OBJS:.o=.dep)
7645
+ -include $(GPR_HOST_PORT_TEST_OBJS:.o=.dep)
7109
7646
  endif
7110
7647
  endif
7111
7648
 
@@ -8006,66 +8543,98 @@ endif
8006
8543
  endif
8007
8544
 
8008
8545
 
8009
- HTTP_FUZZER_TEST_SRC = \
8010
- test/core/http/fuzzer.c \
8546
+ HTTP_PARSER_TEST_SRC = \
8547
+ test/core/http/parser_test.c \
8011
8548
 
8012
- HTTP_FUZZER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_FUZZER_TEST_SRC))))
8549
+ HTTP_PARSER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_PARSER_TEST_SRC))))
8013
8550
  ifeq ($(NO_SECURE),true)
8014
8551
 
8015
8552
  # You can't build secure targets if you don't have OpenSSL.
8016
8553
 
8017
- $(BINDIR)/$(CONFIG)/http_fuzzer_test: openssl_dep_error
8554
+ $(BINDIR)/$(CONFIG)/http_parser_test: openssl_dep_error
8018
8555
 
8019
8556
  else
8020
8557
 
8021
8558
 
8022
8559
 
8023
- $(BINDIR)/$(CONFIG)/http_fuzzer_test: $(HTTP_FUZZER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8560
+ $(BINDIR)/$(CONFIG)/http_parser_test: $(HTTP_PARSER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8024
8561
  $(E) "[LD] Linking $@"
8025
8562
  $(Q) mkdir -p `dirname $@`
8026
- $(Q) $(LDXX) $(LDFLAGS) $(HTTP_FUZZER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -lFuzzer -o $(BINDIR)/$(CONFIG)/http_fuzzer_test
8563
+ $(Q) $(LD) $(LDFLAGS) $(HTTP_PARSER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/http_parser_test
8027
8564
 
8028
8565
  endif
8029
8566
 
8030
- $(OBJDIR)/$(CONFIG)/test/core/http/fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8567
+ $(OBJDIR)/$(CONFIG)/test/core/http/parser_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8031
8568
 
8032
- deps_http_fuzzer_test: $(HTTP_FUZZER_TEST_OBJS:.o=.dep)
8569
+ deps_http_parser_test: $(HTTP_PARSER_TEST_OBJS:.o=.dep)
8033
8570
 
8034
8571
  ifneq ($(NO_SECURE),true)
8035
8572
  ifneq ($(NO_DEPS),true)
8036
- -include $(HTTP_FUZZER_TEST_OBJS:.o=.dep)
8573
+ -include $(HTTP_PARSER_TEST_OBJS:.o=.dep)
8037
8574
  endif
8038
8575
  endif
8039
8576
 
8040
8577
 
8041
- HTTP_PARSER_TEST_SRC = \
8042
- test/core/http/parser_test.c \
8578
+ HTTP_REQUEST_FUZZER_TEST_SRC = \
8579
+ test/core/http/request_fuzzer.c \
8043
8580
 
8044
- HTTP_PARSER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_PARSER_TEST_SRC))))
8581
+ HTTP_REQUEST_FUZZER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_REQUEST_FUZZER_TEST_SRC))))
8045
8582
  ifeq ($(NO_SECURE),true)
8046
8583
 
8047
8584
  # You can't build secure targets if you don't have OpenSSL.
8048
8585
 
8049
- $(BINDIR)/$(CONFIG)/http_parser_test: openssl_dep_error
8586
+ $(BINDIR)/$(CONFIG)/http_request_fuzzer_test: openssl_dep_error
8050
8587
 
8051
8588
  else
8052
8589
 
8053
8590
 
8054
8591
 
8055
- $(BINDIR)/$(CONFIG)/http_parser_test: $(HTTP_PARSER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8592
+ $(BINDIR)/$(CONFIG)/http_request_fuzzer_test: $(HTTP_REQUEST_FUZZER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8056
8593
  $(E) "[LD] Linking $@"
8057
8594
  $(Q) mkdir -p `dirname $@`
8058
- $(Q) $(LD) $(LDFLAGS) $(HTTP_PARSER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/http_parser_test
8595
+ $(Q) $(LDXX) $(LDFLAGS) $(HTTP_REQUEST_FUZZER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -lFuzzer -o $(BINDIR)/$(CONFIG)/http_request_fuzzer_test
8059
8596
 
8060
8597
  endif
8061
8598
 
8062
- $(OBJDIR)/$(CONFIG)/test/core/http/parser_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8599
+ $(OBJDIR)/$(CONFIG)/test/core/http/request_fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8063
8600
 
8064
- deps_http_parser_test: $(HTTP_PARSER_TEST_OBJS:.o=.dep)
8601
+ deps_http_request_fuzzer_test: $(HTTP_REQUEST_FUZZER_TEST_OBJS:.o=.dep)
8065
8602
 
8066
8603
  ifneq ($(NO_SECURE),true)
8067
8604
  ifneq ($(NO_DEPS),true)
8068
- -include $(HTTP_PARSER_TEST_OBJS:.o=.dep)
8605
+ -include $(HTTP_REQUEST_FUZZER_TEST_OBJS:.o=.dep)
8606
+ endif
8607
+ endif
8608
+
8609
+
8610
+ HTTP_RESPONSE_FUZZER_TEST_SRC = \
8611
+ test/core/http/response_fuzzer.c \
8612
+
8613
+ HTTP_RESPONSE_FUZZER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_RESPONSE_FUZZER_TEST_SRC))))
8614
+ ifeq ($(NO_SECURE),true)
8615
+
8616
+ # You can't build secure targets if you don't have OpenSSL.
8617
+
8618
+ $(BINDIR)/$(CONFIG)/http_response_fuzzer_test: openssl_dep_error
8619
+
8620
+ else
8621
+
8622
+
8623
+
8624
+ $(BINDIR)/$(CONFIG)/http_response_fuzzer_test: $(HTTP_RESPONSE_FUZZER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8625
+ $(E) "[LD] Linking $@"
8626
+ $(Q) mkdir -p `dirname $@`
8627
+ $(Q) $(LDXX) $(LDFLAGS) $(HTTP_RESPONSE_FUZZER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -lFuzzer -o $(BINDIR)/$(CONFIG)/http_response_fuzzer_test
8628
+
8629
+ endif
8630
+
8631
+ $(OBJDIR)/$(CONFIG)/test/core/http/response_fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
8632
+
8633
+ deps_http_response_fuzzer_test: $(HTTP_RESPONSE_FUZZER_TEST_OBJS:.o=.dep)
8634
+
8635
+ ifneq ($(NO_SECURE),true)
8636
+ ifneq ($(NO_DEPS),true)
8637
+ -include $(HTTP_RESPONSE_FUZZER_TEST_OBJS:.o=.dep)
8069
8638
  endif
8070
8639
  endif
8071
8640
 
@@ -8550,6 +9119,38 @@ endif
8550
9119
  endif
8551
9120
 
8552
9121
 
9122
+ LOAD_FILE_TEST_SRC = \
9123
+ test/core/iomgr/load_file_test.c \
9124
+
9125
+ LOAD_FILE_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LOAD_FILE_TEST_SRC))))
9126
+ ifeq ($(NO_SECURE),true)
9127
+
9128
+ # You can't build secure targets if you don't have OpenSSL.
9129
+
9130
+ $(BINDIR)/$(CONFIG)/load_file_test: openssl_dep_error
9131
+
9132
+ else
9133
+
9134
+
9135
+
9136
+ $(BINDIR)/$(CONFIG)/load_file_test: $(LOAD_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9137
+ $(E) "[LD] Linking $@"
9138
+ $(Q) mkdir -p `dirname $@`
9139
+ $(Q) $(LD) $(LDFLAGS) $(LOAD_FILE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/load_file_test
9140
+
9141
+ endif
9142
+
9143
+ $(OBJDIR)/$(CONFIG)/test/core/iomgr/load_file_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9144
+
9145
+ deps_load_file_test: $(LOAD_FILE_TEST_OBJS:.o=.dep)
9146
+
9147
+ ifneq ($(NO_SECURE),true)
9148
+ ifneq ($(NO_DEPS),true)
9149
+ -include $(LOAD_FILE_TEST_OBJS:.o=.dep)
9150
+ endif
9151
+ endif
9152
+
9153
+
8553
9154
  LOW_LEVEL_PING_PONG_BENCHMARK_SRC = \
8554
9155
  test/core/network_benchmarks/low_level_ping_pong.c \
8555
9156
 
@@ -8902,6 +9503,38 @@ endif
8902
9503
  endif
8903
9504
 
8904
9505
 
9506
+ SEQUENTIAL_CONNECTIVITY_TEST_SRC = \
9507
+ test/core/surface/sequential_connectivity_test.c \
9508
+
9509
+ SEQUENTIAL_CONNECTIVITY_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SEQUENTIAL_CONNECTIVITY_TEST_SRC))))
9510
+ ifeq ($(NO_SECURE),true)
9511
+
9512
+ # You can't build secure targets if you don't have OpenSSL.
9513
+
9514
+ $(BINDIR)/$(CONFIG)/sequential_connectivity_test: openssl_dep_error
9515
+
9516
+ else
9517
+
9518
+
9519
+
9520
+ $(BINDIR)/$(CONFIG)/sequential_connectivity_test: $(SEQUENTIAL_CONNECTIVITY_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9521
+ $(E) "[LD] Linking $@"
9522
+ $(Q) mkdir -p `dirname $@`
9523
+ $(Q) $(LD) $(LDFLAGS) $(SEQUENTIAL_CONNECTIVITY_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/sequential_connectivity_test
9524
+
9525
+ endif
9526
+
9527
+ $(OBJDIR)/$(CONFIG)/test/core/surface/sequential_connectivity_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9528
+
9529
+ deps_sequential_connectivity_test: $(SEQUENTIAL_CONNECTIVITY_TEST_OBJS:.o=.dep)
9530
+
9531
+ ifneq ($(NO_SECURE),true)
9532
+ ifneq ($(NO_DEPS),true)
9533
+ -include $(SEQUENTIAL_CONNECTIVITY_TEST_OBJS:.o=.dep)
9534
+ endif
9535
+ endif
9536
+
9537
+
8905
9538
  SERVER_CHTTP2_TEST_SRC = \
8906
9539
  test/core/surface/server_chttp2_test.c \
8907
9540
 
@@ -9692,92 +10325,6 @@ endif
9692
10325
  endif
9693
10326
 
9694
10327
 
9695
- ASYNC_STREAMING_PING_PONG_TEST_SRC = \
9696
- test/cpp/qps/async_streaming_ping_pong_test.cc \
9697
-
9698
- ASYNC_STREAMING_PING_PONG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(ASYNC_STREAMING_PING_PONG_TEST_SRC))))
9699
- ifeq ($(NO_SECURE),true)
9700
-
9701
- # You can't build secure targets if you don't have OpenSSL.
9702
-
9703
- $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test: openssl_dep_error
9704
-
9705
- else
9706
-
9707
-
9708
-
9709
-
9710
- ifeq ($(NO_PROTOBUF),true)
9711
-
9712
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
9713
-
9714
- $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test: protobuf_dep_error
9715
-
9716
- else
9717
-
9718
- $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test: $(PROTOBUF_DEP) $(ASYNC_STREAMING_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9719
- $(E) "[LD] Linking $@"
9720
- $(Q) mkdir -p `dirname $@`
9721
- $(Q) $(LDXX) $(LDFLAGS) $(ASYNC_STREAMING_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/async_streaming_ping_pong_test
9722
-
9723
- endif
9724
-
9725
- endif
9726
-
9727
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/async_streaming_ping_pong_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9728
-
9729
- deps_async_streaming_ping_pong_test: $(ASYNC_STREAMING_PING_PONG_TEST_OBJS:.o=.dep)
9730
-
9731
- ifneq ($(NO_SECURE),true)
9732
- ifneq ($(NO_DEPS),true)
9733
- -include $(ASYNC_STREAMING_PING_PONG_TEST_OBJS:.o=.dep)
9734
- endif
9735
- endif
9736
-
9737
-
9738
- ASYNC_UNARY_PING_PONG_TEST_SRC = \
9739
- test/cpp/qps/async_unary_ping_pong_test.cc \
9740
-
9741
- ASYNC_UNARY_PING_PONG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(ASYNC_UNARY_PING_PONG_TEST_SRC))))
9742
- ifeq ($(NO_SECURE),true)
9743
-
9744
- # You can't build secure targets if you don't have OpenSSL.
9745
-
9746
- $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test: openssl_dep_error
9747
-
9748
- else
9749
-
9750
-
9751
-
9752
-
9753
- ifeq ($(NO_PROTOBUF),true)
9754
-
9755
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
9756
-
9757
- $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test: protobuf_dep_error
9758
-
9759
- else
9760
-
9761
- $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test: $(PROTOBUF_DEP) $(ASYNC_UNARY_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9762
- $(E) "[LD] Linking $@"
9763
- $(Q) mkdir -p `dirname $@`
9764
- $(Q) $(LDXX) $(LDFLAGS) $(ASYNC_UNARY_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/async_unary_ping_pong_test
9765
-
9766
- endif
9767
-
9768
- endif
9769
-
9770
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/async_unary_ping_pong_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9771
-
9772
- deps_async_unary_ping_pong_test: $(ASYNC_UNARY_PING_PONG_TEST_OBJS:.o=.dep)
9773
-
9774
- ifneq ($(NO_SECURE),true)
9775
- ifneq ($(NO_DEPS),true)
9776
- -include $(ASYNC_UNARY_PING_PONG_TEST_OBJS:.o=.dep)
9777
- endif
9778
- endif
9779
-
9780
-
9781
10328
  AUTH_PROPERTY_ITERATOR_TEST_SRC = \
9782
10329
  test/cpp/common/auth_property_iterator_test.cc \
9783
10330
 
@@ -9887,16 +10434,16 @@ $(BINDIR)/$(CONFIG)/cli_call_test: protobuf_dep_error
9887
10434
 
9888
10435
  else
9889
10436
 
9890
- $(BINDIR)/$(CONFIG)/cli_call_test: $(PROTOBUF_DEP) $(CLI_CALL_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_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
10437
+ $(BINDIR)/$(CONFIG)/cli_call_test: $(PROTOBUF_DEP) $(CLI_CALL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9891
10438
  $(E) "[LD] Linking $@"
9892
10439
  $(Q) mkdir -p `dirname $@`
9893
- $(Q) $(LDXX) $(LDFLAGS) $(CLI_CALL_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_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/cli_call_test
10440
+ $(Q) $(LDXX) $(LDFLAGS) $(CLI_CALL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/cli_call_test
9894
10441
 
9895
10442
  endif
9896
10443
 
9897
10444
  endif
9898
10445
 
9899
- $(OBJDIR)/$(CONFIG)/test/cpp/util/cli_call_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_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
10446
+ $(OBJDIR)/$(CONFIG)/test/cpp/util/cli_call_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
9900
10447
 
9901
10448
  deps_cli_call_test: $(CLI_CALL_TEST_OBJS:.o=.dep)
9902
10449
 
@@ -9997,11 +10544,9 @@ CODEGEN_TEST_FULL_SRC = \
9997
10544
  $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc \
9998
10545
  $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc \
9999
10546
  $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc \
10000
- $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc \
10001
10547
  $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc \
10002
10548
  $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc \
10003
10549
  test/cpp/codegen/codegen_test_full.cc \
10004
- src/cpp/codegen/codegen_init.cc \
10005
10550
 
10006
10551
  CODEGEN_TEST_FULL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(CODEGEN_TEST_FULL_SRC))))
10007
10552
  ifeq ($(NO_SECURE),true)
@@ -10038,16 +10583,12 @@ $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/messages.o: $(LIBDIR)/$(CONFIG)/libg
10038
10583
 
10039
10584
  $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/payloads.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
10040
10585
 
10041
- $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/perf_db.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
10042
-
10043
10586
  $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/services.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
10044
10587
 
10045
10588
  $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/stats.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
10046
10589
 
10047
10590
  $(OBJDIR)/$(CONFIG)/test/cpp/codegen/codegen_test_full.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
10048
10591
 
10049
- $(OBJDIR)/$(CONFIG)/src/cpp/codegen/codegen_init.o: $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
10050
-
10051
10592
  deps_codegen_test_full: $(CODEGEN_TEST_FULL_OBJS:.o=.dep)
10052
10593
 
10053
10594
  ifneq ($(NO_SECURE),true)
@@ -10055,15 +10596,13 @@ ifneq ($(NO_DEPS),true)
10055
10596
  -include $(CODEGEN_TEST_FULL_OBJS:.o=.dep)
10056
10597
  endif
10057
10598
  endif
10058
- $(OBJDIR)/$(CONFIG)/test/cpp/codegen/codegen_test_full.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10059
- $(OBJDIR)/$(CONFIG)/src/cpp/codegen/codegen_init.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10599
+ $(OBJDIR)/$(CONFIG)/test/cpp/codegen/codegen_test_full.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10060
10600
 
10061
10601
 
10062
10602
  CODEGEN_TEST_MINIMAL_SRC = \
10063
10603
  $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc \
10064
10604
  $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc \
10065
10605
  $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc \
10066
- $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc \
10067
10606
  $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc \
10068
10607
  $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc \
10069
10608
  test/cpp/codegen/codegen_test_minimal.cc \
@@ -10104,8 +10643,6 @@ $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/messages.o:
10104
10643
 
10105
10644
  $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/payloads.o:
10106
10645
 
10107
- $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/perf_db.o:
10108
-
10109
10646
  $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/services.o:
10110
10647
 
10111
10648
  $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/stats.o:
@@ -10121,8 +10658,8 @@ ifneq ($(NO_DEPS),true)
10121
10658
  -include $(CODEGEN_TEST_MINIMAL_OBJS:.o=.dep)
10122
10659
  endif
10123
10660
  endif
10124
- $(OBJDIR)/$(CONFIG)/test/cpp/codegen/codegen_test_minimal.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10125
- $(OBJDIR)/$(CONFIG)/src/cpp/codegen/codegen_init.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.pb.cc $(GENDIR)/src/proto/grpc/testing/perf_db.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10661
+ $(OBJDIR)/$(CONFIG)/test/cpp/codegen/codegen_test_minimal.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10662
+ $(OBJDIR)/$(CONFIG)/src/cpp/codegen/codegen_init.o: $(GENDIR)/src/proto/grpc/testing/control.pb.cc $(GENDIR)/src/proto/grpc/testing/control.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.pb.cc $(GENDIR)/src/proto/grpc/testing/payloads.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/services.pb.cc $(GENDIR)/src/proto/grpc/testing/services.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.pb.cc $(GENDIR)/src/proto/grpc/testing/stats.grpc.pb.cc
10126
10663
 
10127
10664
 
10128
10665
  CREDENTIALS_TEST_SRC = \
@@ -10383,49 +10920,6 @@ endif
10383
10920
  endif
10384
10921
 
10385
10922
 
10386
- GENERIC_ASYNC_STREAMING_PING_PONG_TEST_SRC = \
10387
- test/cpp/qps/generic_async_streaming_ping_pong_test.cc \
10388
-
10389
- GENERIC_ASYNC_STREAMING_PING_PONG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GENERIC_ASYNC_STREAMING_PING_PONG_TEST_SRC))))
10390
- ifeq ($(NO_SECURE),true)
10391
-
10392
- # You can't build secure targets if you don't have OpenSSL.
10393
-
10394
- $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test: openssl_dep_error
10395
-
10396
- else
10397
-
10398
-
10399
-
10400
-
10401
- ifeq ($(NO_PROTOBUF),true)
10402
-
10403
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
10404
-
10405
- $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test: protobuf_dep_error
10406
-
10407
- else
10408
-
10409
- $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test: $(PROTOBUF_DEP) $(GENERIC_ASYNC_STREAMING_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
10410
- $(E) "[LD] Linking $@"
10411
- $(Q) mkdir -p `dirname $@`
10412
- $(Q) $(LDXX) $(LDFLAGS) $(GENERIC_ASYNC_STREAMING_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/generic_async_streaming_ping_pong_test
10413
-
10414
- endif
10415
-
10416
- endif
10417
-
10418
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/generic_async_streaming_ping_pong_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
10419
-
10420
- deps_generic_async_streaming_ping_pong_test: $(GENERIC_ASYNC_STREAMING_PING_PONG_TEST_OBJS:.o=.dep)
10421
-
10422
- ifneq ($(NO_SECURE),true)
10423
- ifneq ($(NO_DEPS),true)
10424
- -include $(GENERIC_ASYNC_STREAMING_PING_PONG_TEST_OBJS:.o=.dep)
10425
- endif
10426
- endif
10427
-
10428
-
10429
10923
  GENERIC_END2END_TEST_SRC = \
10430
10924
  test/cpp/end2end/generic_end2end_test.cc \
10431
10925
 
@@ -10539,16 +11033,16 @@ $(BINDIR)/$(CONFIG)/grpc_cli: protobuf_dep_error
10539
11033
 
10540
11034
  else
10541
11035
 
10542
- $(BINDIR)/$(CONFIG)/grpc_cli: $(PROTOBUF_DEP) $(GRPC_CLI_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11036
+ $(BINDIR)/$(CONFIG)/grpc_cli: $(PROTOBUF_DEP) $(GRPC_CLI_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
10543
11037
  $(E) "[LD] Linking $@"
10544
11038
  $(Q) mkdir -p `dirname $@`
10545
- $(Q) $(LDXX) $(LDFLAGS) $(GRPC_CLI_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/grpc_cli
11039
+ $(Q) $(LDXX) $(LDFLAGS) $(GRPC_CLI_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/grpc_cli
10546
11040
 
10547
11041
  endif
10548
11042
 
10549
11043
  endif
10550
11044
 
10551
- $(OBJDIR)/$(CONFIG)/test/cpp/util/grpc_cli.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11045
+ $(OBJDIR)/$(CONFIG)/test/cpp/util/grpc_cli.o: $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
10552
11046
 
10553
11047
  deps_grpc_cli: $(GRPC_CLI_OBJS:.o=.dep)
10554
11048
 
@@ -10746,7 +11240,7 @@ endif
10746
11240
 
10747
11241
 
10748
11242
  GRPCLB_API_TEST_SRC = \
10749
- $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.pb.cc $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.grpc.pb.cc \
11243
+ $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc \
10750
11244
  test/cpp/grpclb/grpclb_api_test.cc \
10751
11245
 
10752
11246
  GRPCLB_API_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPCLB_API_TEST_SRC))))
@@ -10778,7 +11272,7 @@ endif
10778
11272
 
10779
11273
  endif
10780
11274
 
10781
- $(OBJDIR)/$(CONFIG)/src/proto/grpc/lb/v0/load_balancer.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a
11275
+ $(OBJDIR)/$(CONFIG)/src/proto/grpc/lb/v1/load_balancer.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a
10782
11276
 
10783
11277
  $(OBJDIR)/$(CONFIG)/test/cpp/grpclb/grpclb_api_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a
10784
11278
 
@@ -10789,7 +11283,7 @@ ifneq ($(NO_DEPS),true)
10789
11283
  -include $(GRPCLB_API_TEST_OBJS:.o=.dep)
10790
11284
  endif
10791
11285
  endif
10792
- $(OBJDIR)/$(CONFIG)/test/cpp/grpclb/grpclb_api_test.o: $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.pb.cc $(GENDIR)/src/proto/grpc/lb/v0/load_balancer.grpc.pb.cc
11286
+ $(OBJDIR)/$(CONFIG)/test/cpp/grpclb/grpclb_api_test.o: $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc
10793
11287
 
10794
11288
 
10795
11289
  HYBRID_END2END_TEST_SRC = \
@@ -11073,15 +11567,16 @@ endif
11073
11567
  endif
11074
11568
 
11075
11569
 
11076
- QPS_INTERARRIVAL_TEST_SRC = \
11077
- test/cpp/qps/qps_interarrival_test.cc \
11570
+ PROTO_SERVER_REFLECTION_TEST_SRC = \
11571
+ test/cpp/end2end/proto_server_reflection_test.cc \
11572
+ test/cpp/util/proto_reflection_descriptor_database.cc \
11078
11573
 
11079
- QPS_INTERARRIVAL_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_INTERARRIVAL_TEST_SRC))))
11574
+ PROTO_SERVER_REFLECTION_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(PROTO_SERVER_REFLECTION_TEST_SRC))))
11080
11575
  ifeq ($(NO_SECURE),true)
11081
11576
 
11082
11577
  # You can't build secure targets if you don't have OpenSSL.
11083
11578
 
11084
- $(BINDIR)/$(CONFIG)/qps_interarrival_test: openssl_dep_error
11579
+ $(BINDIR)/$(CONFIG)/proto_server_reflection_test: openssl_dep_error
11085
11580
 
11086
11581
  else
11087
11582
 
@@ -11092,40 +11587,41 @@ ifeq ($(NO_PROTOBUF),true)
11092
11587
 
11093
11588
  # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11094
11589
 
11095
- $(BINDIR)/$(CONFIG)/qps_interarrival_test: protobuf_dep_error
11590
+ $(BINDIR)/$(CONFIG)/proto_server_reflection_test: protobuf_dep_error
11096
11591
 
11097
11592
  else
11098
11593
 
11099
- $(BINDIR)/$(CONFIG)/qps_interarrival_test: $(PROTOBUF_DEP) $(QPS_INTERARRIVAL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11594
+ $(BINDIR)/$(CONFIG)/proto_server_reflection_test: $(PROTOBUF_DEP) $(PROTO_SERVER_REFLECTION_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11100
11595
  $(E) "[LD] Linking $@"
11101
11596
  $(Q) mkdir -p `dirname $@`
11102
- $(Q) $(LDXX) $(LDFLAGS) $(QPS_INTERARRIVAL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_interarrival_test
11597
+ $(Q) $(LDXX) $(LDFLAGS) $(PROTO_SERVER_REFLECTION_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/proto_server_reflection_test
11103
11598
 
11104
11599
  endif
11105
11600
 
11106
11601
  endif
11107
11602
 
11108
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_interarrival_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11603
+ $(OBJDIR)/$(CONFIG)/test/cpp/end2end/proto_server_reflection_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11109
11604
 
11110
- deps_qps_interarrival_test: $(QPS_INTERARRIVAL_TEST_OBJS:.o=.dep)
11605
+ $(OBJDIR)/$(CONFIG)/test/cpp/util/proto_reflection_descriptor_database.o: $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11606
+
11607
+ deps_proto_server_reflection_test: $(PROTO_SERVER_REFLECTION_TEST_OBJS:.o=.dep)
11111
11608
 
11112
11609
  ifneq ($(NO_SECURE),true)
11113
11610
  ifneq ($(NO_DEPS),true)
11114
- -include $(QPS_INTERARRIVAL_TEST_OBJS:.o=.dep)
11611
+ -include $(PROTO_SERVER_REFLECTION_TEST_OBJS:.o=.dep)
11115
11612
  endif
11116
11613
  endif
11117
11614
 
11118
11615
 
11119
- QPS_JSON_DRIVER_SRC = \
11120
- test/cpp/qps/parse_json.cc \
11121
- test/cpp/qps/qps_json_driver.cc \
11616
+ QPS_INTERARRIVAL_TEST_SRC = \
11617
+ test/cpp/qps/qps_interarrival_test.cc \
11122
11618
 
11123
- QPS_JSON_DRIVER_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_JSON_DRIVER_SRC))))
11619
+ QPS_INTERARRIVAL_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_INTERARRIVAL_TEST_SRC))))
11124
11620
  ifeq ($(NO_SECURE),true)
11125
11621
 
11126
11622
  # You can't build secure targets if you don't have OpenSSL.
11127
11623
 
11128
- $(BINDIR)/$(CONFIG)/qps_json_driver: openssl_dep_error
11624
+ $(BINDIR)/$(CONFIG)/qps_interarrival_test: openssl_dep_error
11129
11625
 
11130
11626
  else
11131
11627
 
@@ -11136,41 +11632,39 @@ ifeq ($(NO_PROTOBUF),true)
11136
11632
 
11137
11633
  # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11138
11634
 
11139
- $(BINDIR)/$(CONFIG)/qps_json_driver: protobuf_dep_error
11635
+ $(BINDIR)/$(CONFIG)/qps_interarrival_test: protobuf_dep_error
11140
11636
 
11141
11637
  else
11142
11638
 
11143
- $(BINDIR)/$(CONFIG)/qps_json_driver: $(PROTOBUF_DEP) $(QPS_JSON_DRIVER_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11639
+ $(BINDIR)/$(CONFIG)/qps_interarrival_test: $(PROTOBUF_DEP) $(QPS_INTERARRIVAL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11144
11640
  $(E) "[LD] Linking $@"
11145
11641
  $(Q) mkdir -p `dirname $@`
11146
- $(Q) $(LDXX) $(LDFLAGS) $(QPS_JSON_DRIVER_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_json_driver
11642
+ $(Q) $(LDXX) $(LDFLAGS) $(QPS_INTERARRIVAL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_interarrival_test
11147
11643
 
11148
11644
  endif
11149
11645
 
11150
11646
  endif
11151
11647
 
11152
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/parse_json.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11153
-
11154
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_json_driver.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11648
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_interarrival_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11155
11649
 
11156
- deps_qps_json_driver: $(QPS_JSON_DRIVER_OBJS:.o=.dep)
11650
+ deps_qps_interarrival_test: $(QPS_INTERARRIVAL_TEST_OBJS:.o=.dep)
11157
11651
 
11158
11652
  ifneq ($(NO_SECURE),true)
11159
11653
  ifneq ($(NO_DEPS),true)
11160
- -include $(QPS_JSON_DRIVER_OBJS:.o=.dep)
11654
+ -include $(QPS_INTERARRIVAL_TEST_OBJS:.o=.dep)
11161
11655
  endif
11162
11656
  endif
11163
11657
 
11164
11658
 
11165
- QPS_OPENLOOP_TEST_SRC = \
11166
- test/cpp/qps/qps_openloop_test.cc \
11659
+ QPS_JSON_DRIVER_SRC = \
11660
+ test/cpp/qps/qps_json_driver.cc \
11167
11661
 
11168
- QPS_OPENLOOP_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_OPENLOOP_TEST_SRC))))
11662
+ QPS_JSON_DRIVER_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_JSON_DRIVER_SRC))))
11169
11663
  ifeq ($(NO_SECURE),true)
11170
11664
 
11171
11665
  # You can't build secure targets if you don't have OpenSSL.
11172
11666
 
11173
- $(BINDIR)/$(CONFIG)/qps_openloop_test: openssl_dep_error
11667
+ $(BINDIR)/$(CONFIG)/qps_json_driver: openssl_dep_error
11174
11668
 
11175
11669
  else
11176
11670
 
@@ -11181,39 +11675,39 @@ ifeq ($(NO_PROTOBUF),true)
11181
11675
 
11182
11676
  # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11183
11677
 
11184
- $(BINDIR)/$(CONFIG)/qps_openloop_test: protobuf_dep_error
11678
+ $(BINDIR)/$(CONFIG)/qps_json_driver: protobuf_dep_error
11185
11679
 
11186
11680
  else
11187
11681
 
11188
- $(BINDIR)/$(CONFIG)/qps_openloop_test: $(PROTOBUF_DEP) $(QPS_OPENLOOP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11682
+ $(BINDIR)/$(CONFIG)/qps_json_driver: $(PROTOBUF_DEP) $(QPS_JSON_DRIVER_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11189
11683
  $(E) "[LD] Linking $@"
11190
11684
  $(Q) mkdir -p `dirname $@`
11191
- $(Q) $(LDXX) $(LDFLAGS) $(QPS_OPENLOOP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_openloop_test
11685
+ $(Q) $(LDXX) $(LDFLAGS) $(QPS_JSON_DRIVER_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_json_driver
11192
11686
 
11193
11687
  endif
11194
11688
 
11195
11689
  endif
11196
11690
 
11197
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_openloop_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11691
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_json_driver.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11198
11692
 
11199
- deps_qps_openloop_test: $(QPS_OPENLOOP_TEST_OBJS:.o=.dep)
11693
+ deps_qps_json_driver: $(QPS_JSON_DRIVER_OBJS:.o=.dep)
11200
11694
 
11201
11695
  ifneq ($(NO_SECURE),true)
11202
11696
  ifneq ($(NO_DEPS),true)
11203
- -include $(QPS_OPENLOOP_TEST_OBJS:.o=.dep)
11697
+ -include $(QPS_JSON_DRIVER_OBJS:.o=.dep)
11204
11698
  endif
11205
11699
  endif
11206
11700
 
11207
11701
 
11208
- QPS_TEST_SRC = \
11209
- test/cpp/qps/qps_test.cc \
11702
+ QPS_OPENLOOP_TEST_SRC = \
11703
+ test/cpp/qps/qps_openloop_test.cc \
11210
11704
 
11211
- QPS_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_TEST_SRC))))
11705
+ QPS_OPENLOOP_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(QPS_OPENLOOP_TEST_SRC))))
11212
11706
  ifeq ($(NO_SECURE),true)
11213
11707
 
11214
11708
  # You can't build secure targets if you don't have OpenSSL.
11215
11709
 
11216
- $(BINDIR)/$(CONFIG)/qps_test: openssl_dep_error
11710
+ $(BINDIR)/$(CONFIG)/qps_openloop_test: openssl_dep_error
11217
11711
 
11218
11712
  else
11219
11713
 
@@ -11224,26 +11718,26 @@ ifeq ($(NO_PROTOBUF),true)
11224
11718
 
11225
11719
  # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11226
11720
 
11227
- $(BINDIR)/$(CONFIG)/qps_test: protobuf_dep_error
11721
+ $(BINDIR)/$(CONFIG)/qps_openloop_test: protobuf_dep_error
11228
11722
 
11229
11723
  else
11230
11724
 
11231
- $(BINDIR)/$(CONFIG)/qps_test: $(PROTOBUF_DEP) $(QPS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11725
+ $(BINDIR)/$(CONFIG)/qps_openloop_test: $(PROTOBUF_DEP) $(QPS_OPENLOOP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11232
11726
  $(E) "[LD] Linking $@"
11233
11727
  $(Q) mkdir -p `dirname $@`
11234
- $(Q) $(LDXX) $(LDFLAGS) $(QPS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_test
11728
+ $(Q) $(LDXX) $(LDFLAGS) $(QPS_OPENLOOP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/qps_openloop_test
11235
11729
 
11236
11730
  endif
11237
11731
 
11238
11732
  endif
11239
11733
 
11240
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11734
+ $(OBJDIR)/$(CONFIG)/test/cpp/qps/qps_openloop_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
11241
11735
 
11242
- deps_qps_test: $(QPS_TEST_OBJS:.o=.dep)
11736
+ deps_qps_openloop_test: $(QPS_OPENLOOP_TEST_OBJS:.o=.dep)
11243
11737
 
11244
11738
  ifneq ($(NO_SECURE),true)
11245
11739
  ifneq ($(NO_DEPS),true)
11246
- -include $(QPS_TEST_OBJS:.o=.dep)
11740
+ -include $(QPS_OPENLOOP_TEST_OBJS:.o=.dep)
11247
11741
  endif
11248
11742
  endif
11249
11743
 
@@ -11483,6 +11977,49 @@ endif
11483
11977
  endif
11484
11978
 
11485
11979
 
11980
+ SERVER_BUILDER_PLUGIN_TEST_SRC = \
11981
+ test/cpp/end2end/server_builder_plugin_test.cc \
11982
+
11983
+ SERVER_BUILDER_PLUGIN_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SERVER_BUILDER_PLUGIN_TEST_SRC))))
11984
+ ifeq ($(NO_SECURE),true)
11985
+
11986
+ # You can't build secure targets if you don't have OpenSSL.
11987
+
11988
+ $(BINDIR)/$(CONFIG)/server_builder_plugin_test: openssl_dep_error
11989
+
11990
+ else
11991
+
11992
+
11993
+
11994
+
11995
+ ifeq ($(NO_PROTOBUF),true)
11996
+
11997
+ # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11998
+
11999
+ $(BINDIR)/$(CONFIG)/server_builder_plugin_test: protobuf_dep_error
12000
+
12001
+ else
12002
+
12003
+ $(BINDIR)/$(CONFIG)/server_builder_plugin_test: $(PROTOBUF_DEP) $(SERVER_BUILDER_PLUGIN_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_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
12004
+ $(E) "[LD] Linking $@"
12005
+ $(Q) mkdir -p `dirname $@`
12006
+ $(Q) $(LDXX) $(LDFLAGS) $(SERVER_BUILDER_PLUGIN_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_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/server_builder_plugin_test
12007
+
12008
+ endif
12009
+
12010
+ endif
12011
+
12012
+ $(OBJDIR)/$(CONFIG)/test/cpp/end2end/server_builder_plugin_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_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
12013
+
12014
+ deps_server_builder_plugin_test: $(SERVER_BUILDER_PLUGIN_TEST_OBJS:.o=.dep)
12015
+
12016
+ ifneq ($(NO_SECURE),true)
12017
+ ifneq ($(NO_DEPS),true)
12018
+ -include $(SERVER_BUILDER_PLUGIN_TEST_OBJS:.o=.dep)
12019
+ endif
12020
+ endif
12021
+
12022
+
11486
12023
  SERVER_CRASH_TEST_SRC = \
11487
12024
  test/cpp/end2end/server_crash_test.cc \
11488
12025
 
@@ -11766,92 +12303,6 @@ $(OBJDIR)/$(CONFIG)/test/cpp/interop/stress_test.o: $(GENDIR)/src/proto/grpc/tes
11766
12303
  $(OBJDIR)/$(CONFIG)/test/cpp/util/metrics_server.o: $(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/metrics.pb.cc $(GENDIR)/src/proto/grpc/testing/metrics.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/test.pb.cc $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc
11767
12304
 
11768
12305
 
11769
- SYNC_STREAMING_PING_PONG_TEST_SRC = \
11770
- test/cpp/qps/sync_streaming_ping_pong_test.cc \
11771
-
11772
- SYNC_STREAMING_PING_PONG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SYNC_STREAMING_PING_PONG_TEST_SRC))))
11773
- ifeq ($(NO_SECURE),true)
11774
-
11775
- # You can't build secure targets if you don't have OpenSSL.
11776
-
11777
- $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test: openssl_dep_error
11778
-
11779
- else
11780
-
11781
-
11782
-
11783
-
11784
- ifeq ($(NO_PROTOBUF),true)
11785
-
11786
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11787
-
11788
- $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test: protobuf_dep_error
11789
-
11790
- else
11791
-
11792
- $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test: $(PROTOBUF_DEP) $(SYNC_STREAMING_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11793
- $(E) "[LD] Linking $@"
11794
- $(Q) mkdir -p `dirname $@`
11795
- $(Q) $(LDXX) $(LDFLAGS) $(SYNC_STREAMING_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/sync_streaming_ping_pong_test
11796
-
11797
- endif
11798
-
11799
- endif
11800
-
11801
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/sync_streaming_ping_pong_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11802
-
11803
- deps_sync_streaming_ping_pong_test: $(SYNC_STREAMING_PING_PONG_TEST_OBJS:.o=.dep)
11804
-
11805
- ifneq ($(NO_SECURE),true)
11806
- ifneq ($(NO_DEPS),true)
11807
- -include $(SYNC_STREAMING_PING_PONG_TEST_OBJS:.o=.dep)
11808
- endif
11809
- endif
11810
-
11811
-
11812
- SYNC_UNARY_PING_PONG_TEST_SRC = \
11813
- test/cpp/qps/sync_unary_ping_pong_test.cc \
11814
-
11815
- SYNC_UNARY_PING_PONG_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(SYNC_UNARY_PING_PONG_TEST_SRC))))
11816
- ifeq ($(NO_SECURE),true)
11817
-
11818
- # You can't build secure targets if you don't have OpenSSL.
11819
-
11820
- $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test: openssl_dep_error
11821
-
11822
- else
11823
-
11824
-
11825
-
11826
-
11827
- ifeq ($(NO_PROTOBUF),true)
11828
-
11829
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11830
-
11831
- $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test: protobuf_dep_error
11832
-
11833
- else
11834
-
11835
- $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test: $(PROTOBUF_DEP) $(SYNC_UNARY_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11836
- $(E) "[LD] Linking $@"
11837
- $(Q) mkdir -p `dirname $@`
11838
- $(Q) $(LDXX) $(LDFLAGS) $(SYNC_UNARY_PING_PONG_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/sync_unary_ping_pong_test
11839
-
11840
- endif
11841
-
11842
- endif
11843
-
11844
- $(OBJDIR)/$(CONFIG)/test/cpp/qps/sync_unary_ping_pong_test.o: $(LIBDIR)/$(CONFIG)/libqps.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11845
-
11846
- deps_sync_unary_ping_pong_test: $(SYNC_UNARY_PING_PONG_TEST_OBJS:.o=.dep)
11847
-
11848
- ifneq ($(NO_SECURE),true)
11849
- ifneq ($(NO_DEPS),true)
11850
- -include $(SYNC_UNARY_PING_PONG_TEST_OBJS:.o=.dep)
11851
- endif
11852
- endif
11853
-
11854
-
11855
12306
  THREAD_STRESS_TEST_SRC = \
11856
12307
  test/cpp/end2end/thread_stress_test.cc \
11857
12308
 
@@ -11895,53 +12346,6 @@ endif
11895
12346
  endif
11896
12347
 
11897
12348
 
11898
- ZOOKEEPER_TEST_SRC = \
11899
- $(GENDIR)/src/proto/grpc/testing/echo.pb.cc $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc \
11900
- test/cpp/end2end/zookeeper_test.cc \
11901
-
11902
- ZOOKEEPER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(ZOOKEEPER_TEST_SRC))))
11903
- ifeq ($(NO_SECURE),true)
11904
-
11905
- # You can't build secure targets if you don't have OpenSSL.
11906
-
11907
- $(BINDIR)/$(CONFIG)/zookeeper_test: openssl_dep_error
11908
-
11909
- else
11910
-
11911
-
11912
-
11913
-
11914
- ifeq ($(NO_PROTOBUF),true)
11915
-
11916
- # You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.0.0+.
11917
-
11918
- $(BINDIR)/$(CONFIG)/zookeeper_test: protobuf_dep_error
11919
-
11920
- else
11921
-
11922
- $(BINDIR)/$(CONFIG)/zookeeper_test: $(PROTOBUF_DEP) $(ZOOKEEPER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11923
- $(E) "[LD] Linking $@"
11924
- $(Q) mkdir -p `dirname $@`
11925
- $(Q) $(LDXX) $(LDFLAGS) $(ZOOKEEPER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a -lzookeeper_mt $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/zookeeper_test
11926
-
11927
- endif
11928
-
11929
- endif
11930
-
11931
- $(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/echo.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11932
-
11933
- $(OBJDIR)/$(CONFIG)/test/cpp/end2end/zookeeper_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc_zookeeper.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
11934
-
11935
- deps_zookeeper_test: $(ZOOKEEPER_TEST_OBJS:.o=.dep)
11936
-
11937
- ifneq ($(NO_SECURE),true)
11938
- ifneq ($(NO_DEPS),true)
11939
- -include $(ZOOKEEPER_TEST_OBJS:.o=.dep)
11940
- endif
11941
- endif
11942
- $(OBJDIR)/$(CONFIG)/test/cpp/end2end/zookeeper_test.o: $(GENDIR)/src/proto/grpc/testing/echo.pb.cc $(GENDIR)/src/proto/grpc/testing/echo.grpc.pb.cc
11943
-
11944
-
11945
12349
  PUBLIC_HEADERS_MUST_BE_C89_SRC = \
11946
12350
  test/core/surface/public_headers_must_be_c89.c \
11947
12351
 
@@ -11982,7 +12386,7 @@ endif
11982
12386
  # boringssl needs an override to ensure that it does not include
11983
12387
  # system openssl headers regardless of other configuration
11984
12388
  # we do so here with a target specific variable assignment
11985
- $(BORINGSSL_AES_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12389
+ $(BORINGSSL_AES_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
11986
12390
  $(BORINGSSL_AES_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
11987
12391
  $(BORINGSSL_AES_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
11988
12392
 
@@ -12009,7 +12413,7 @@ endif
12009
12413
  # boringssl needs an override to ensure that it does not include
12010
12414
  # system openssl headers regardless of other configuration
12011
12415
  # we do so here with a target specific variable assignment
12012
- $(BORINGSSL_ASN1_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12416
+ $(BORINGSSL_ASN1_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12013
12417
  $(BORINGSSL_ASN1_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12014
12418
  $(BORINGSSL_ASN1_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12015
12419
 
@@ -12036,7 +12440,7 @@ endif
12036
12440
  # boringssl needs an override to ensure that it does not include
12037
12441
  # system openssl headers regardless of other configuration
12038
12442
  # we do so here with a target specific variable assignment
12039
- $(BORINGSSL_BASE64_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12443
+ $(BORINGSSL_BASE64_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12040
12444
  $(BORINGSSL_BASE64_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12041
12445
  $(BORINGSSL_BASE64_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12042
12446
 
@@ -12063,7 +12467,7 @@ endif
12063
12467
  # boringssl needs an override to ensure that it does not include
12064
12468
  # system openssl headers regardless of other configuration
12065
12469
  # we do so here with a target specific variable assignment
12066
- $(BORINGSSL_BIO_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12470
+ $(BORINGSSL_BIO_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12067
12471
  $(BORINGSSL_BIO_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12068
12472
  $(BORINGSSL_BIO_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12069
12473
 
@@ -12090,7 +12494,7 @@ endif
12090
12494
  # boringssl needs an override to ensure that it does not include
12091
12495
  # system openssl headers regardless of other configuration
12092
12496
  # we do so here with a target specific variable assignment
12093
- $(BORINGSSL_BN_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12497
+ $(BORINGSSL_BN_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12094
12498
  $(BORINGSSL_BN_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12095
12499
  $(BORINGSSL_BN_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12096
12500
 
@@ -12117,7 +12521,7 @@ endif
12117
12521
  # boringssl needs an override to ensure that it does not include
12118
12522
  # system openssl headers regardless of other configuration
12119
12523
  # we do so here with a target specific variable assignment
12120
- $(BORINGSSL_BYTESTRING_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12524
+ $(BORINGSSL_BYTESTRING_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12121
12525
  $(BORINGSSL_BYTESTRING_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12122
12526
  $(BORINGSSL_BYTESTRING_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12123
12527
 
@@ -12144,7 +12548,7 @@ endif
12144
12548
  # boringssl needs an override to ensure that it does not include
12145
12549
  # system openssl headers regardless of other configuration
12146
12550
  # we do so here with a target specific variable assignment
12147
- $(BORINGSSL_AEAD_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12551
+ $(BORINGSSL_AEAD_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12148
12552
  $(BORINGSSL_AEAD_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12149
12553
  $(BORINGSSL_AEAD_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12150
12554
 
@@ -12171,7 +12575,7 @@ endif
12171
12575
  # boringssl needs an override to ensure that it does not include
12172
12576
  # system openssl headers regardless of other configuration
12173
12577
  # we do so here with a target specific variable assignment
12174
- $(BORINGSSL_CIPHER_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12578
+ $(BORINGSSL_CIPHER_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12175
12579
  $(BORINGSSL_CIPHER_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12176
12580
  $(BORINGSSL_CIPHER_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12177
12581
 
@@ -12198,7 +12602,7 @@ endif
12198
12602
  # boringssl needs an override to ensure that it does not include
12199
12603
  # system openssl headers regardless of other configuration
12200
12604
  # we do so here with a target specific variable assignment
12201
- $(BORINGSSL_CMAC_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12605
+ $(BORINGSSL_CMAC_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12202
12606
  $(BORINGSSL_CMAC_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12203
12607
  $(BORINGSSL_CMAC_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12204
12608
 
@@ -12225,7 +12629,7 @@ endif
12225
12629
  # boringssl needs an override to ensure that it does not include
12226
12630
  # system openssl headers regardless of other configuration
12227
12631
  # we do so here with a target specific variable assignment
12228
- $(BORINGSSL_CONSTANT_TIME_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12632
+ $(BORINGSSL_CONSTANT_TIME_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12229
12633
  $(BORINGSSL_CONSTANT_TIME_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12230
12634
  $(BORINGSSL_CONSTANT_TIME_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12231
12635
 
@@ -12252,7 +12656,7 @@ endif
12252
12656
  # boringssl needs an override to ensure that it does not include
12253
12657
  # system openssl headers regardless of other configuration
12254
12658
  # we do so here with a target specific variable assignment
12255
- $(BORINGSSL_ED25519_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12659
+ $(BORINGSSL_ED25519_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12256
12660
  $(BORINGSSL_ED25519_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12257
12661
  $(BORINGSSL_ED25519_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12258
12662
 
@@ -12279,7 +12683,7 @@ endif
12279
12683
  # boringssl needs an override to ensure that it does not include
12280
12684
  # system openssl headers regardless of other configuration
12281
12685
  # we do so here with a target specific variable assignment
12282
- $(BORINGSSL_X25519_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12686
+ $(BORINGSSL_X25519_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12283
12687
  $(BORINGSSL_X25519_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12284
12688
  $(BORINGSSL_X25519_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12285
12689
 
@@ -12306,7 +12710,7 @@ endif
12306
12710
  # boringssl needs an override to ensure that it does not include
12307
12711
  # system openssl headers regardless of other configuration
12308
12712
  # we do so here with a target specific variable assignment
12309
- $(BORINGSSL_DH_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12713
+ $(BORINGSSL_DH_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12310
12714
  $(BORINGSSL_DH_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12311
12715
  $(BORINGSSL_DH_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12312
12716
 
@@ -12333,7 +12737,7 @@ endif
12333
12737
  # boringssl needs an override to ensure that it does not include
12334
12738
  # system openssl headers regardless of other configuration
12335
12739
  # we do so here with a target specific variable assignment
12336
- $(BORINGSSL_DIGEST_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12740
+ $(BORINGSSL_DIGEST_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12337
12741
  $(BORINGSSL_DIGEST_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12338
12742
  $(BORINGSSL_DIGEST_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12339
12743
 
@@ -12360,7 +12764,7 @@ endif
12360
12764
  # boringssl needs an override to ensure that it does not include
12361
12765
  # system openssl headers regardless of other configuration
12362
12766
  # we do so here with a target specific variable assignment
12363
- $(BORINGSSL_DSA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12767
+ $(BORINGSSL_DSA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12364
12768
  $(BORINGSSL_DSA_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12365
12769
  $(BORINGSSL_DSA_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12366
12770
 
@@ -12387,7 +12791,7 @@ endif
12387
12791
  # boringssl needs an override to ensure that it does not include
12388
12792
  # system openssl headers regardless of other configuration
12389
12793
  # we do so here with a target specific variable assignment
12390
- $(BORINGSSL_EC_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12794
+ $(BORINGSSL_EC_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12391
12795
  $(BORINGSSL_EC_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12392
12796
  $(BORINGSSL_EC_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12393
12797
 
@@ -12414,7 +12818,7 @@ endif
12414
12818
  # boringssl needs an override to ensure that it does not include
12415
12819
  # system openssl headers regardless of other configuration
12416
12820
  # we do so here with a target specific variable assignment
12417
- $(BORINGSSL_EXAMPLE_MUL_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12821
+ $(BORINGSSL_EXAMPLE_MUL_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12418
12822
  $(BORINGSSL_EXAMPLE_MUL_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12419
12823
  $(BORINGSSL_EXAMPLE_MUL_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12420
12824
 
@@ -12441,7 +12845,7 @@ endif
12441
12845
  # boringssl needs an override to ensure that it does not include
12442
12846
  # system openssl headers regardless of other configuration
12443
12847
  # we do so here with a target specific variable assignment
12444
- $(BORINGSSL_ECDSA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12848
+ $(BORINGSSL_ECDSA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12445
12849
  $(BORINGSSL_ECDSA_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12446
12850
  $(BORINGSSL_ECDSA_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12447
12851
 
@@ -12468,7 +12872,7 @@ endif
12468
12872
  # boringssl needs an override to ensure that it does not include
12469
12873
  # system openssl headers regardless of other configuration
12470
12874
  # we do so here with a target specific variable assignment
12471
- $(BORINGSSL_ERR_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12875
+ $(BORINGSSL_ERR_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12472
12876
  $(BORINGSSL_ERR_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12473
12877
  $(BORINGSSL_ERR_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12474
12878
 
@@ -12495,7 +12899,7 @@ endif
12495
12899
  # boringssl needs an override to ensure that it does not include
12496
12900
  # system openssl headers regardless of other configuration
12497
12901
  # we do so here with a target specific variable assignment
12498
- $(BORINGSSL_EVP_EXTRA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12902
+ $(BORINGSSL_EVP_EXTRA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12499
12903
  $(BORINGSSL_EVP_EXTRA_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12500
12904
  $(BORINGSSL_EVP_EXTRA_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12501
12905
 
@@ -12522,7 +12926,7 @@ endif
12522
12926
  # boringssl needs an override to ensure that it does not include
12523
12927
  # system openssl headers regardless of other configuration
12524
12928
  # we do so here with a target specific variable assignment
12525
- $(BORINGSSL_EVP_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12929
+ $(BORINGSSL_EVP_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12526
12930
  $(BORINGSSL_EVP_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12527
12931
  $(BORINGSSL_EVP_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12528
12932
 
@@ -12549,7 +12953,7 @@ endif
12549
12953
  # boringssl needs an override to ensure that it does not include
12550
12954
  # system openssl headers regardless of other configuration
12551
12955
  # we do so here with a target specific variable assignment
12552
- $(BORINGSSL_PBKDF_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12956
+ $(BORINGSSL_PBKDF_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12553
12957
  $(BORINGSSL_PBKDF_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12554
12958
  $(BORINGSSL_PBKDF_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12555
12959
 
@@ -12576,7 +12980,7 @@ endif
12576
12980
  # boringssl needs an override to ensure that it does not include
12577
12981
  # system openssl headers regardless of other configuration
12578
12982
  # we do so here with a target specific variable assignment
12579
- $(BORINGSSL_HKDF_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
12983
+ $(BORINGSSL_HKDF_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12580
12984
  $(BORINGSSL_HKDF_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12581
12985
  $(BORINGSSL_HKDF_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12582
12986
 
@@ -12603,7 +13007,7 @@ endif
12603
13007
  # boringssl needs an override to ensure that it does not include
12604
13008
  # system openssl headers regardless of other configuration
12605
13009
  # we do so here with a target specific variable assignment
12606
- $(BORINGSSL_HMAC_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13010
+ $(BORINGSSL_HMAC_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12607
13011
  $(BORINGSSL_HMAC_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12608
13012
  $(BORINGSSL_HMAC_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12609
13013
 
@@ -12630,7 +13034,7 @@ endif
12630
13034
  # boringssl needs an override to ensure that it does not include
12631
13035
  # system openssl headers regardless of other configuration
12632
13036
  # we do so here with a target specific variable assignment
12633
- $(BORINGSSL_LHASH_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13037
+ $(BORINGSSL_LHASH_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12634
13038
  $(BORINGSSL_LHASH_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12635
13039
  $(BORINGSSL_LHASH_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12636
13040
 
@@ -12657,7 +13061,7 @@ endif
12657
13061
  # boringssl needs an override to ensure that it does not include
12658
13062
  # system openssl headers regardless of other configuration
12659
13063
  # we do so here with a target specific variable assignment
12660
- $(BORINGSSL_GCM_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13064
+ $(BORINGSSL_GCM_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12661
13065
  $(BORINGSSL_GCM_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12662
13066
  $(BORINGSSL_GCM_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12663
13067
 
@@ -12684,7 +13088,7 @@ endif
12684
13088
  # boringssl needs an override to ensure that it does not include
12685
13089
  # system openssl headers regardless of other configuration
12686
13090
  # we do so here with a target specific variable assignment
12687
- $(BORINGSSL_PKCS12_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13091
+ $(BORINGSSL_PKCS12_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12688
13092
  $(BORINGSSL_PKCS12_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12689
13093
  $(BORINGSSL_PKCS12_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12690
13094
 
@@ -12711,7 +13115,7 @@ endif
12711
13115
  # boringssl needs an override to ensure that it does not include
12712
13116
  # system openssl headers regardless of other configuration
12713
13117
  # we do so here with a target specific variable assignment
12714
- $(BORINGSSL_PKCS8_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13118
+ $(BORINGSSL_PKCS8_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12715
13119
  $(BORINGSSL_PKCS8_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12716
13120
  $(BORINGSSL_PKCS8_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12717
13121
 
@@ -12738,7 +13142,7 @@ endif
12738
13142
  # boringssl needs an override to ensure that it does not include
12739
13143
  # system openssl headers regardless of other configuration
12740
13144
  # we do so here with a target specific variable assignment
12741
- $(BORINGSSL_POLY1305_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13145
+ $(BORINGSSL_POLY1305_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12742
13146
  $(BORINGSSL_POLY1305_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12743
13147
  $(BORINGSSL_POLY1305_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12744
13148
 
@@ -12765,7 +13169,7 @@ endif
12765
13169
  # boringssl needs an override to ensure that it does not include
12766
13170
  # system openssl headers regardless of other configuration
12767
13171
  # we do so here with a target specific variable assignment
12768
- $(BORINGSSL_REFCOUNT_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13172
+ $(BORINGSSL_REFCOUNT_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12769
13173
  $(BORINGSSL_REFCOUNT_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12770
13174
  $(BORINGSSL_REFCOUNT_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12771
13175
 
@@ -12792,7 +13196,7 @@ endif
12792
13196
  # boringssl needs an override to ensure that it does not include
12793
13197
  # system openssl headers regardless of other configuration
12794
13198
  # we do so here with a target specific variable assignment
12795
- $(BORINGSSL_RSA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13199
+ $(BORINGSSL_RSA_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12796
13200
  $(BORINGSSL_RSA_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12797
13201
  $(BORINGSSL_RSA_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12798
13202
 
@@ -12819,7 +13223,7 @@ endif
12819
13223
  # boringssl needs an override to ensure that it does not include
12820
13224
  # system openssl headers regardless of other configuration
12821
13225
  # we do so here with a target specific variable assignment
12822
- $(BORINGSSL_THREAD_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13226
+ $(BORINGSSL_THREAD_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12823
13227
  $(BORINGSSL_THREAD_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12824
13228
  $(BORINGSSL_THREAD_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12825
13229
 
@@ -12846,7 +13250,7 @@ endif
12846
13250
  # boringssl needs an override to ensure that it does not include
12847
13251
  # system openssl headers regardless of other configuration
12848
13252
  # we do so here with a target specific variable assignment
12849
- $(BORINGSSL_PKCS7_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13253
+ $(BORINGSSL_PKCS7_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12850
13254
  $(BORINGSSL_PKCS7_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12851
13255
  $(BORINGSSL_PKCS7_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12852
13256
 
@@ -12873,7 +13277,7 @@ endif
12873
13277
  # boringssl needs an override to ensure that it does not include
12874
13278
  # system openssl headers regardless of other configuration
12875
13279
  # we do so here with a target specific variable assignment
12876
- $(BORINGSSL_X509_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13280
+ $(BORINGSSL_X509_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12877
13281
  $(BORINGSSL_X509_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12878
13282
  $(BORINGSSL_X509_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12879
13283
 
@@ -12900,7 +13304,7 @@ endif
12900
13304
  # boringssl needs an override to ensure that it does not include
12901
13305
  # system openssl headers regardless of other configuration
12902
13306
  # we do so here with a target specific variable assignment
12903
- $(BORINGSSL_TAB_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13307
+ $(BORINGSSL_TAB_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12904
13308
  $(BORINGSSL_TAB_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12905
13309
  $(BORINGSSL_TAB_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12906
13310
 
@@ -12927,7 +13331,7 @@ endif
12927
13331
  # boringssl needs an override to ensure that it does not include
12928
13332
  # system openssl headers regardless of other configuration
12929
13333
  # we do so here with a target specific variable assignment
12930
- $(BORINGSSL_V3NAME_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13334
+ $(BORINGSSL_V3NAME_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12931
13335
  $(BORINGSSL_V3NAME_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12932
13336
  $(BORINGSSL_V3NAME_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12933
13337
 
@@ -12954,7 +13358,7 @@ endif
12954
13358
  # boringssl needs an override to ensure that it does not include
12955
13359
  # system openssl headers regardless of other configuration
12956
13360
  # we do so here with a target specific variable assignment
12957
- $(BORINGSSL_PQUEUE_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13361
+ $(BORINGSSL_PQUEUE_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12958
13362
  $(BORINGSSL_PQUEUE_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12959
13363
  $(BORINGSSL_PQUEUE_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12960
13364
 
@@ -12981,7 +13385,7 @@ endif
12981
13385
  # boringssl needs an override to ensure that it does not include
12982
13386
  # system openssl headers regardless of other configuration
12983
13387
  # we do so here with a target specific variable assignment
12984
- $(BORINGSSL_SSL_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value
13388
+ $(BORINGSSL_SSL_TEST_OBJS): CFLAGS := -Ithird_party/boringssl/include $(CFLAGS) -Wno-sign-conversion -Wno-conversion -Wno-unused-value $(NO_W_EXTRA_SEMI)
12985
13389
  $(BORINGSSL_SSL_TEST_OBJS): CXXFLAGS := -Ithird_party/boringssl/include $(CXXFLAGS)
12986
13390
  $(BORINGSSL_SSL_TEST_OBJS): CPPFLAGS += -DOPENSSL_NO_ASM -D_GNU_SOURCE
12987
13391
 
@@ -13104,6 +13508,26 @@ ifneq ($(NO_DEPS),true)
13104
13508
  endif
13105
13509
 
13106
13510
 
13511
+ LARGE_METADATA_BAD_CLIENT_TEST_SRC = \
13512
+ test/core/bad_client/tests/large_metadata.c \
13513
+
13514
+ LARGE_METADATA_BAD_CLIENT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LARGE_METADATA_BAD_CLIENT_TEST_SRC))))
13515
+
13516
+
13517
+ $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test: $(LARGE_METADATA_BAD_CLIENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libbad_client_test.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
13518
+ $(E) "[LD] Linking $@"
13519
+ $(Q) mkdir -p `dirname $@`
13520
+ $(Q) $(LD) $(LDFLAGS) $(LARGE_METADATA_BAD_CLIENT_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libbad_client_test.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) -o $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test
13521
+
13522
+ $(OBJDIR)/$(CONFIG)/test/core/bad_client/tests/large_metadata.o: $(LIBDIR)/$(CONFIG)/libbad_client_test.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
13523
+
13524
+ deps_large_metadata_bad_client_test: $(LARGE_METADATA_BAD_CLIENT_TEST_OBJS:.o=.dep)
13525
+
13526
+ ifneq ($(NO_DEPS),true)
13527
+ -include $(LARGE_METADATA_BAD_CLIENT_TEST_OBJS:.o=.dep)
13528
+ endif
13529
+
13530
+
13107
13531
  SERVER_REGISTERED_METHOD_BAD_CLIENT_TEST_SRC = \
13108
13532
  test/core/bad_client/tests/server_registered_method.c \
13109
13533
 
@@ -13408,6 +13832,38 @@ endif
13408
13832
  endif
13409
13833
 
13410
13834
 
13835
+ H2_FD_TEST_SRC = \
13836
+ test/core/end2end/fixtures/h2_fd.c \
13837
+
13838
+ H2_FD_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_FD_TEST_SRC))))
13839
+ ifeq ($(NO_SECURE),true)
13840
+
13841
+ # You can't build secure targets if you don't have OpenSSL.
13842
+
13843
+ $(BINDIR)/$(CONFIG)/h2_fd_test: openssl_dep_error
13844
+
13845
+ else
13846
+
13847
+
13848
+
13849
+ $(BINDIR)/$(CONFIG)/h2_fd_test: $(H2_FD_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
13850
+ $(E) "[LD] Linking $@"
13851
+ $(Q) mkdir -p `dirname $@`
13852
+ $(Q) $(LD) $(LDFLAGS) $(H2_FD_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/h2_fd_test
13853
+
13854
+ endif
13855
+
13856
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_fd.o: $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
13857
+
13858
+ deps_h2_fd_test: $(H2_FD_TEST_OBJS:.o=.dep)
13859
+
13860
+ ifneq ($(NO_SECURE),true)
13861
+ ifneq ($(NO_DEPS),true)
13862
+ -include $(H2_FD_TEST_OBJS:.o=.dep)
13863
+ endif
13864
+ endif
13865
+
13866
+
13411
13867
  H2_FULL_TEST_SRC = \
13412
13868
  test/core/end2end/fixtures/h2_full.c \
13413
13869
 
@@ -13504,6 +13960,38 @@ endif
13504
13960
  endif
13505
13961
 
13506
13962
 
13963
+ H2_LOADREPORTING_TEST_SRC = \
13964
+ test/core/end2end/fixtures/h2_loadreporting.c \
13965
+
13966
+ H2_LOADREPORTING_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_LOADREPORTING_TEST_SRC))))
13967
+ ifeq ($(NO_SECURE),true)
13968
+
13969
+ # You can't build secure targets if you don't have OpenSSL.
13970
+
13971
+ $(BINDIR)/$(CONFIG)/h2_loadreporting_test: openssl_dep_error
13972
+
13973
+ else
13974
+
13975
+
13976
+
13977
+ $(BINDIR)/$(CONFIG)/h2_loadreporting_test: $(H2_LOADREPORTING_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
13978
+ $(E) "[LD] Linking $@"
13979
+ $(Q) mkdir -p `dirname $@`
13980
+ $(Q) $(LD) $(LDFLAGS) $(H2_LOADREPORTING_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/h2_loadreporting_test
13981
+
13982
+ endif
13983
+
13984
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_loadreporting.o: $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
13985
+
13986
+ deps_h2_loadreporting_test: $(H2_LOADREPORTING_TEST_OBJS:.o=.dep)
13987
+
13988
+ ifneq ($(NO_SECURE),true)
13989
+ ifneq ($(NO_DEPS),true)
13990
+ -include $(H2_LOADREPORTING_TEST_OBJS:.o=.dep)
13991
+ endif
13992
+ endif
13993
+
13994
+
13507
13995
  H2_OAUTH2_TEST_SRC = \
13508
13996
  test/core/end2end/fixtures/h2_oauth2.c \
13509
13997
 
@@ -13832,6 +14320,26 @@ ifneq ($(NO_DEPS),true)
13832
14320
  endif
13833
14321
 
13834
14322
 
14323
+ H2_FD_NOSEC_TEST_SRC = \
14324
+ test/core/end2end/fixtures/h2_fd.c \
14325
+
14326
+ H2_FD_NOSEC_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_FD_NOSEC_TEST_SRC))))
14327
+
14328
+
14329
+ $(BINDIR)/$(CONFIG)/h2_fd_nosec_test: $(H2_FD_NOSEC_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14330
+ $(E) "[LD] Linking $@"
14331
+ $(Q) mkdir -p `dirname $@`
14332
+ $(Q) $(LD) $(LDFLAGS) $(H2_FD_NOSEC_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) -o $(BINDIR)/$(CONFIG)/h2_fd_nosec_test
14333
+
14334
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_fd.o: $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14335
+
14336
+ deps_h2_fd_nosec_test: $(H2_FD_NOSEC_TEST_OBJS:.o=.dep)
14337
+
14338
+ ifneq ($(NO_DEPS),true)
14339
+ -include $(H2_FD_NOSEC_TEST_OBJS:.o=.dep)
14340
+ endif
14341
+
14342
+
13835
14343
  H2_FULL_NOSEC_TEST_SRC = \
13836
14344
  test/core/end2end/fixtures/h2_full.c \
13837
14345
 
@@ -13892,6 +14400,26 @@ ifneq ($(NO_DEPS),true)
13892
14400
  endif
13893
14401
 
13894
14402
 
14403
+ H2_LOADREPORTING_NOSEC_TEST_SRC = \
14404
+ test/core/end2end/fixtures/h2_loadreporting.c \
14405
+
14406
+ H2_LOADREPORTING_NOSEC_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(H2_LOADREPORTING_NOSEC_TEST_SRC))))
14407
+
14408
+
14409
+ $(BINDIR)/$(CONFIG)/h2_loadreporting_nosec_test: $(H2_LOADREPORTING_NOSEC_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14410
+ $(E) "[LD] Linking $@"
14411
+ $(Q) mkdir -p `dirname $@`
14412
+ $(Q) $(LD) $(LDFLAGS) $(H2_LOADREPORTING_NOSEC_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) -o $(BINDIR)/$(CONFIG)/h2_loadreporting_nosec_test
14413
+
14414
+ $(OBJDIR)/$(CONFIG)/test/core/end2end/fixtures/h2_loadreporting.o: $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14415
+
14416
+ deps_h2_loadreporting_nosec_test: $(H2_LOADREPORTING_NOSEC_TEST_OBJS:.o=.dep)
14417
+
14418
+ ifneq ($(NO_DEPS),true)
14419
+ -include $(H2_LOADREPORTING_NOSEC_TEST_OBJS:.o=.dep)
14420
+ endif
14421
+
14422
+
13895
14423
  H2_PROXY_NOSEC_TEST_SRC = \
13896
14424
  test/core/end2end/fixtures/h2_proxy.c \
13897
14425
 
@@ -14097,37 +14625,72 @@ endif
14097
14625
  endif
14098
14626
 
14099
14627
 
14100
- HTTP_FUZZER_TEST_ONE_ENTRY_SRC = \
14101
- test/core/http/fuzzer.c \
14628
+ HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_SRC = \
14629
+ test/core/http/request_fuzzer.c \
14630
+ test/core/util/one_corpus_entry_fuzzer.c \
14631
+
14632
+ HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_SRC))))
14633
+ ifeq ($(NO_SECURE),true)
14634
+
14635
+ # You can't build secure targets if you don't have OpenSSL.
14636
+
14637
+ $(BINDIR)/$(CONFIG)/http_request_fuzzer_test_one_entry: openssl_dep_error
14638
+
14639
+ else
14640
+
14641
+
14642
+
14643
+ $(BINDIR)/$(CONFIG)/http_request_fuzzer_test_one_entry: $(HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14644
+ $(E) "[LD] Linking $@"
14645
+ $(Q) mkdir -p `dirname $@`
14646
+ $(Q) $(LD) $(LDFLAGS) $(HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/http_request_fuzzer_test_one_entry
14647
+
14648
+ endif
14649
+
14650
+ $(OBJDIR)/$(CONFIG)/test/core/http/request_fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14651
+
14652
+ $(OBJDIR)/$(CONFIG)/test/core/util/one_corpus_entry_fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14653
+
14654
+ deps_http_request_fuzzer_test_one_entry: $(HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_OBJS:.o=.dep)
14655
+
14656
+ ifneq ($(NO_SECURE),true)
14657
+ ifneq ($(NO_DEPS),true)
14658
+ -include $(HTTP_REQUEST_FUZZER_TEST_ONE_ENTRY_OBJS:.o=.dep)
14659
+ endif
14660
+ endif
14661
+
14662
+
14663
+ HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_SRC = \
14664
+ test/core/http/response_fuzzer.c \
14102
14665
  test/core/util/one_corpus_entry_fuzzer.c \
14103
14666
 
14104
- HTTP_FUZZER_TEST_ONE_ENTRY_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_FUZZER_TEST_ONE_ENTRY_SRC))))
14667
+ HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_SRC))))
14105
14668
  ifeq ($(NO_SECURE),true)
14106
14669
 
14107
14670
  # You can't build secure targets if you don't have OpenSSL.
14108
14671
 
14109
- $(BINDIR)/$(CONFIG)/http_fuzzer_test_one_entry: openssl_dep_error
14672
+ $(BINDIR)/$(CONFIG)/http_response_fuzzer_test_one_entry: openssl_dep_error
14110
14673
 
14111
14674
  else
14112
14675
 
14113
14676
 
14114
14677
 
14115
- $(BINDIR)/$(CONFIG)/http_fuzzer_test_one_entry: $(HTTP_FUZZER_TEST_ONE_ENTRY_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14678
+ $(BINDIR)/$(CONFIG)/http_response_fuzzer_test_one_entry: $(HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14116
14679
  $(E) "[LD] Linking $@"
14117
14680
  $(Q) mkdir -p `dirname $@`
14118
- $(Q) $(LD) $(LDFLAGS) $(HTTP_FUZZER_TEST_ONE_ENTRY_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/http_fuzzer_test_one_entry
14681
+ $(Q) $(LD) $(LDFLAGS) $(HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/http_response_fuzzer_test_one_entry
14119
14682
 
14120
14683
  endif
14121
14684
 
14122
- $(OBJDIR)/$(CONFIG)/test/core/http/fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14685
+ $(OBJDIR)/$(CONFIG)/test/core/http/response_fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14123
14686
 
14124
14687
  $(OBJDIR)/$(CONFIG)/test/core/util/one_corpus_entry_fuzzer.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr_test_util.a $(LIBDIR)/$(CONFIG)/libgpr.a
14125
14688
 
14126
- deps_http_fuzzer_test_one_entry: $(HTTP_FUZZER_TEST_ONE_ENTRY_OBJS:.o=.dep)
14689
+ deps_http_response_fuzzer_test_one_entry: $(HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_OBJS:.o=.dep)
14127
14690
 
14128
14691
  ifneq ($(NO_SECURE),true)
14129
14692
  ifneq ($(NO_DEPS),true)
14130
- -include $(HTTP_FUZZER_TEST_ONE_ENTRY_OBJS:.o=.dep)
14693
+ -include $(HTTP_RESPONSE_FUZZER_TEST_ONE_ENTRY_OBJS:.o=.dep)
14131
14694
  endif
14132
14695
  endif
14133
14696
 
@@ -14317,31 +14880,48 @@ ifneq ($(OPENSSL_DEP),)
14317
14880
  # otherwise parallel compilation will fail if a source is compiled first.
14318
14881
  src/core/ext/transport/chttp2/client/secure/secure_channel_create.c: $(OPENSSL_DEP)
14319
14882
  src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c: $(OPENSSL_DEP)
14883
+ src/core/ext/transport/cronet/client/secure/cronet_channel_create.c: $(OPENSSL_DEP)
14884
+ src/core/ext/transport/cronet/transport/cronet_api_dummy.c: $(OPENSSL_DEP)
14885
+ src/core/ext/transport/cronet/transport/cronet_transport.c: $(OPENSSL_DEP)
14320
14886
  src/core/lib/http/httpcli_security_connector.c: $(OPENSSL_DEP)
14321
- src/core/lib/security/b64.c: $(OPENSSL_DEP)
14322
- src/core/lib/security/client_auth_filter.c: $(OPENSSL_DEP)
14323
- src/core/lib/security/credentials.c: $(OPENSSL_DEP)
14324
- src/core/lib/security/credentials_metadata.c: $(OPENSSL_DEP)
14325
- src/core/lib/security/credentials_posix.c: $(OPENSSL_DEP)
14326
- src/core/lib/security/credentials_win32.c: $(OPENSSL_DEP)
14327
- src/core/lib/security/google_default_credentials.c: $(OPENSSL_DEP)
14328
- src/core/lib/security/handshake.c: $(OPENSSL_DEP)
14329
- src/core/lib/security/json_token.c: $(OPENSSL_DEP)
14330
- src/core/lib/security/jwt_verifier.c: $(OPENSSL_DEP)
14331
- src/core/lib/security/secure_endpoint.c: $(OPENSSL_DEP)
14332
- src/core/lib/security/security_connector.c: $(OPENSSL_DEP)
14333
- src/core/lib/security/security_context.c: $(OPENSSL_DEP)
14334
- src/core/lib/security/server_auth_filter.c: $(OPENSSL_DEP)
14887
+ src/core/lib/security/context/security_context.c: $(OPENSSL_DEP)
14888
+ src/core/lib/security/credentials/composite/composite_credentials.c: $(OPENSSL_DEP)
14889
+ src/core/lib/security/credentials/credentials.c: $(OPENSSL_DEP)
14890
+ src/core/lib/security/credentials/credentials_metadata.c: $(OPENSSL_DEP)
14891
+ src/core/lib/security/credentials/fake/fake_credentials.c: $(OPENSSL_DEP)
14892
+ src/core/lib/security/credentials/google_default/credentials_posix.c: $(OPENSSL_DEP)
14893
+ src/core/lib/security/credentials/google_default/credentials_windows.c: $(OPENSSL_DEP)
14894
+ src/core/lib/security/credentials/google_default/google_default_credentials.c: $(OPENSSL_DEP)
14895
+ src/core/lib/security/credentials/iam/iam_credentials.c: $(OPENSSL_DEP)
14896
+ src/core/lib/security/credentials/jwt/json_token.c: $(OPENSSL_DEP)
14897
+ src/core/lib/security/credentials/jwt/jwt_credentials.c: $(OPENSSL_DEP)
14898
+ src/core/lib/security/credentials/jwt/jwt_verifier.c: $(OPENSSL_DEP)
14899
+ src/core/lib/security/credentials/oauth2/oauth2_credentials.c: $(OPENSSL_DEP)
14900
+ src/core/lib/security/credentials/plugin/plugin_credentials.c: $(OPENSSL_DEP)
14901
+ src/core/lib/security/credentials/ssl/ssl_credentials.c: $(OPENSSL_DEP)
14902
+ src/core/lib/security/transport/client_auth_filter.c: $(OPENSSL_DEP)
14903
+ src/core/lib/security/transport/handshake.c: $(OPENSSL_DEP)
14904
+ src/core/lib/security/transport/secure_endpoint.c: $(OPENSSL_DEP)
14905
+ src/core/lib/security/transport/security_connector.c: $(OPENSSL_DEP)
14906
+ src/core/lib/security/transport/server_auth_filter.c: $(OPENSSL_DEP)
14907
+ src/core/lib/security/transport/tsi_error.c: $(OPENSSL_DEP)
14908
+ src/core/lib/security/util/b64.c: $(OPENSSL_DEP)
14909
+ src/core/lib/security/util/json_util.c: $(OPENSSL_DEP)
14335
14910
  src/core/lib/surface/init_secure.c: $(OPENSSL_DEP)
14336
14911
  src/core/lib/tsi/fake_transport_security.c: $(OPENSSL_DEP)
14337
14912
  src/core/lib/tsi/ssl_transport_security.c: $(OPENSSL_DEP)
14338
14913
  src/core/lib/tsi/transport_security.c: $(OPENSSL_DEP)
14914
+ src/core/plugin_registry/grpc_cronet_plugin_registry.c: $(OPENSSL_DEP)
14339
14915
  src/core/plugin_registry/grpc_plugin_registry.c: $(OPENSSL_DEP)
14340
14916
  src/cpp/client/secure_credentials.cc: $(OPENSSL_DEP)
14341
14917
  src/cpp/common/auth_property_iterator.cc: $(OPENSSL_DEP)
14342
14918
  src/cpp/common/secure_auth_context.cc: $(OPENSSL_DEP)
14343
14919
  src/cpp/common/secure_channel_arguments.cc: $(OPENSSL_DEP)
14344
14920
  src/cpp/common/secure_create_auth_context.cc: $(OPENSSL_DEP)
14921
+ src/cpp/ext/proto_server_reflection.cc: $(OPENSSL_DEP)
14922
+ src/cpp/ext/proto_server_reflection_plugin.cc: $(OPENSSL_DEP)
14923
+ src/cpp/ext/reflection.grpc.pb.cc: $(OPENSSL_DEP)
14924
+ src/cpp/ext/reflection.pb.cc: $(OPENSSL_DEP)
14345
14925
  src/cpp/server/secure_server_credentials.cc: $(OPENSSL_DEP)
14346
14926
  src/csharp/ext/grpc_csharp_ext.c: $(OPENSSL_DEP)
14347
14927
  test/core/bad_client/bad_client.c: $(OPENSSL_DEP)
@@ -14359,13 +14939,13 @@ test/cpp/end2end/test_service_impl.cc: $(OPENSSL_DEP)
14359
14939
  test/cpp/interop/client.cc: $(OPENSSL_DEP)
14360
14940
  test/cpp/interop/client_helper.cc: $(OPENSSL_DEP)
14361
14941
  test/cpp/interop/interop_client.cc: $(OPENSSL_DEP)
14942
+ test/cpp/interop/interop_server.cc: $(OPENSSL_DEP)
14362
14943
  test/cpp/interop/server_helper.cc: $(OPENSSL_DEP)
14363
- test/cpp/interop/server_main.cc: $(OPENSSL_DEP)
14364
14944
  test/cpp/qps/client_async.cc: $(OPENSSL_DEP)
14365
14945
  test/cpp/qps/client_sync.cc: $(OPENSSL_DEP)
14366
14946
  test/cpp/qps/driver.cc: $(OPENSSL_DEP)
14367
14947
  test/cpp/qps/limit_cores.cc: $(OPENSSL_DEP)
14368
- test/cpp/qps/perf_db_client.cc: $(OPENSSL_DEP)
14948
+ test/cpp/qps/parse_json.cc: $(OPENSSL_DEP)
14369
14949
  test/cpp/qps/qps_worker.cc: $(OPENSSL_DEP)
14370
14950
  test/cpp/qps/report.cc: $(OPENSSL_DEP)
14371
14951
  test/cpp/qps/server_async.cc: $(OPENSSL_DEP)
@@ -14375,6 +14955,7 @@ test/cpp/util/benchmark_config.cc: $(OPENSSL_DEP)
14375
14955
  test/cpp/util/byte_buffer_proto_helper.cc: $(OPENSSL_DEP)
14376
14956
  test/cpp/util/cli_call.cc: $(OPENSSL_DEP)
14377
14957
  test/cpp/util/create_test_channel.cc: $(OPENSSL_DEP)
14958
+ test/cpp/util/proto_file_parser.cc: $(OPENSSL_DEP)
14378
14959
  test/cpp/util/string_ref_helper.cc: $(OPENSSL_DEP)
14379
14960
  test/cpp/util/subprocess.cc: $(OPENSSL_DEP)
14380
14961
  test/cpp/util/test_config.cc: $(OPENSSL_DEP)