grpc 1.22.0 → 1.23.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.
- checksums.yaml +4 -4
- data/Makefile +487 -649
- data/include/grpc/grpc_security.h +25 -0
- data/include/grpc/impl/codegen/grpc_types.h +11 -2
- data/include/grpc/impl/codegen/port_platform.h +12 -0
- data/src/core/ext/filters/client_channel/backup_poller.cc +4 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +477 -182
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +25 -16
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +11 -6
- data/src/core/ext/filters/client_channel/connector.h +10 -2
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +3 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +9 -10
- data/src/core/ext/filters/client_channel/lb_policy.cc +2 -17
- data/src/core/ext/filters/client_channel/lb_policy.h +36 -8
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +22 -8
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +86 -52
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +7 -0
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +73 -72
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +8 -12
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +25 -101
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +5 -5
- data/src/core/ext/filters/client_channel/parse_address.cc +29 -26
- data/src/core/ext/filters/client_channel/resolver.h +3 -11
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +5 -3
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +405 -82
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +44 -51
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +0 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +0 -1
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +11 -6
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +130 -65
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +8 -3
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +31 -14
- data/src/core/ext/filters/client_channel/resolver_factory.h +4 -0
- data/src/core/ext/filters/client_channel/resolver_registry.cc +11 -0
- data/src/core/ext/filters/client_channel/resolver_registry.h +3 -0
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +10 -49
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +1 -14
- data/src/core/ext/filters/client_channel/retry_throttle.h +2 -3
- data/src/core/ext/filters/client_channel/subchannel.cc +65 -58
- data/src/core/ext/filters/client_channel/subchannel.h +65 -45
- data/src/core/ext/filters/client_channel/subchannel_interface.h +15 -30
- data/src/core/ext/filters/client_idle/client_idle_filter.cc +262 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +4 -5
- data/src/core/ext/filters/http/client_authority_filter.cc +2 -2
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +140 -152
- data/src/core/ext/filters/max_age/max_age_filter.cc +3 -3
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +3 -4
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +7 -6
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +63 -38
- data/src/core/ext/transport/chttp2/transport/context_list.cc +3 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +8 -0
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +7 -0
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +1 -0
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +37 -22
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +136 -81
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +8 -0
- data/src/core/ext/transport/chttp2/transport/hpack_table.cc +7 -166
- data/src/core/ext/transport/chttp2/transport/hpack_table.h +41 -15
- data/src/core/ext/transport/chttp2/transport/internal.h +13 -2
- data/src/core/ext/transport/chttp2/transport/parsing.cc +35 -22
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +28 -18
- data/src/core/ext/transport/chttp2/transport/writing.cc +1 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +1 -1
- data/src/core/lib/channel/channelz.cc +80 -33
- data/src/core/lib/channel/channelz.h +28 -13
- data/src/core/lib/compression/compression.cc +1 -2
- data/src/core/lib/compression/compression_args.cc +13 -6
- data/src/core/lib/compression/compression_args.h +3 -2
- data/src/core/lib/compression/compression_internal.cc +1 -1
- data/src/core/lib/gpr/env_linux.cc +10 -21
- data/src/core/lib/gpr/env_posix.cc +0 -5
- data/src/core/lib/gpr/string.cc +7 -2
- data/src/core/lib/gpr/string.h +1 -0
- data/src/core/lib/gpr/sync_posix.cc +0 -129
- data/src/core/lib/gprpp/debug_location.h +3 -2
- data/src/core/lib/gprpp/fork.cc +14 -21
- data/src/core/lib/gprpp/fork.h +15 -4
- data/src/core/lib/gprpp/host_port.cc +118 -0
- data/src/core/lib/{gpr → gprpp}/host_port.h +27 -11
- data/src/core/lib/gprpp/map.h +25 -0
- data/src/core/lib/gprpp/memory.h +26 -9
- data/src/core/lib/gprpp/ref_counted.h +63 -21
- data/src/core/lib/gprpp/string_view.h +143 -0
- data/src/core/lib/gprpp/thd.h +10 -1
- data/src/core/lib/gprpp/thd_posix.cc +25 -0
- data/src/core/lib/gprpp/thd_windows.cc +9 -1
- data/src/core/lib/http/httpcli_security_connector.cc +3 -1
- data/src/core/lib/iomgr/cfstream_handle.cc +6 -1
- data/src/core/lib/iomgr/cfstream_handle.h +8 -2
- data/src/core/lib/iomgr/combiner.cc +4 -4
- data/src/core/lib/iomgr/error.cc +18 -8
- data/src/core/lib/iomgr/error.h +2 -0
- data/src/core/lib/iomgr/ev_posix.cc +4 -2
- data/src/core/lib/iomgr/executor.cc +4 -1
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +183 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +178 -0
- data/src/core/lib/iomgr/executor/threadpool.cc +138 -0
- data/src/core/lib/iomgr/executor/threadpool.h +153 -0
- data/src/core/lib/iomgr/fork_posix.cc +4 -2
- data/src/core/lib/iomgr/iocp_windows.cc +2 -2
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +14 -0
- data/src/core/lib/iomgr/iomgr_uv.cc +3 -0
- data/src/core/lib/iomgr/lockfree_event.cc +3 -3
- data/src/core/lib/iomgr/resolve_address_custom.cc +16 -20
- data/src/core/lib/iomgr/resolve_address_posix.cc +8 -10
- data/src/core/lib/iomgr/resolve_address_windows.cc +6 -8
- data/src/core/lib/iomgr/sockaddr_utils.cc +5 -3
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +0 -1
- data/src/core/lib/iomgr/socket_windows.h +1 -1
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +7 -6
- data/src/core/lib/iomgr/tcp_client_custom.cc +1 -0
- data/src/core/lib/iomgr/tcp_custom.cc +4 -0
- data/src/core/lib/iomgr/tcp_posix.cc +8 -2
- data/src/core/lib/iomgr/tcp_server_custom.cc +1 -0
- data/src/core/lib/iomgr/tcp_server_windows.cc +1 -1
- data/src/core/lib/iomgr/tcp_windows.cc +7 -7
- data/src/core/lib/iomgr/timer_custom.cc +1 -0
- data/src/core/lib/iomgr/timer_manager.cc +0 -29
- data/src/core/lib/security/credentials/credentials.cc +84 -0
- data/src/core/lib/security/credentials/credentials.h +58 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +6 -2
- data/src/core/lib/security/credentials/jwt/json_token.h +1 -1
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +245 -24
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +16 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +3 -2
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +21 -25
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +3 -2
- data/src/core/lib/security/security_connector/security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +19 -19
- data/src/core/lib/security/security_connector/ssl_utils.cc +26 -31
- data/src/core/lib/security/security_connector/ssl_utils.h +11 -8
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +16 -20
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +4 -3
- data/src/core/lib/security/transport/client_auth_filter.cc +1 -2
- data/src/core/lib/security/util/json_util.cc +19 -5
- data/src/core/lib/security/util/json_util.h +3 -1
- data/src/core/lib/slice/slice.cc +69 -50
- data/src/core/lib/slice/slice_buffer.cc +6 -5
- data/src/core/lib/slice/slice_hash_table.h +3 -7
- data/src/core/lib/slice/slice_intern.cc +130 -39
- data/src/core/lib/slice/slice_internal.h +8 -0
- data/src/core/lib/slice/slice_utils.h +120 -0
- data/src/core/lib/slice/slice_weak_hash_table.h +2 -7
- data/src/core/lib/surface/call.cc +8 -3
- data/src/core/lib/surface/channel.cc +31 -8
- data/src/core/lib/surface/completion_queue.cc +17 -7
- data/src/core/lib/surface/init_secure.cc +4 -1
- data/src/core/lib/surface/lame_client.cc +2 -2
- data/src/core/lib/surface/server.cc +34 -35
- data/src/core/lib/surface/server.h +8 -17
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/byte_stream.cc +3 -5
- data/src/core/lib/transport/byte_stream.h +1 -2
- data/src/core/lib/transport/error_utils.cc +10 -1
- data/src/core/lib/transport/metadata.cc +202 -35
- data/src/core/lib/transport/metadata.h +81 -6
- data/src/core/lib/transport/static_metadata.cc +1257 -465
- data/src/core/lib/transport/static_metadata.h +190 -347
- data/src/core/lib/transport/timeout_encoding.cc +7 -0
- data/src/core/lib/transport/timeout_encoding.h +3 -2
- data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +0 -1
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +2 -7
- data/src/core/tsi/ssl_transport_security.cc +35 -43
- data/src/core/tsi/ssl_transport_security.h +2 -1
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
- data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
- data/src/ruby/lib/grpc/grpc.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- metadata +39 -33
- data/src/core/lib/gpr/host_port.cc +0 -98
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 80bb6eba87011feccebf84a90582f4b30aa4787d27c16d0355d2b8b84c37a491
|
4
|
+
data.tar.gz: a96dc9f4ec62474f7dd46a601a1eb91c1e7464ae4a42e08e6ddc6c7db8bc4c4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5271f4ee3b1f7255e7475bb7234e0c70facae888a8bc1ca050642ff334a68afddc900545521ceb755c114c5e4a1189652be9940267a0d111584716f962a5a19d
|
7
|
+
data.tar.gz: d9b41a8aa65b9baf6a5f3779ed46eabe0f8b80ce7c6122ff81d4dc24ea1ab098198eb8a836eddd9d1670429f8a4831e0e6e99379989c34be1f522a83fb403de6
|
data/Makefile
CHANGED
@@ -351,6 +351,7 @@ CFLAGS += -std=c99 -Wsign-conversion -Wconversion $(W_SHADOW) $(W_EXTRA_SEMI)
|
|
351
351
|
CXXFLAGS += -std=c++11
|
352
352
|
ifeq ($(SYSTEM),Darwin)
|
353
353
|
CXXFLAGS += -stdlib=libc++
|
354
|
+
LDFLAGS += -framework CoreFoundation
|
354
355
|
endif
|
355
356
|
CXXFLAGS += -Wnon-virtual-dtor
|
356
357
|
CPPFLAGS += -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter -DOSATOMIC_USE_INLINED=1 -Wno-deprecated-declarations -Ithird_party/nanopb -DPB_FIELD_32BIT
|
@@ -369,7 +370,7 @@ CPPFLAGS += -fPIC
|
|
369
370
|
LDFLAGS += -fPIC
|
370
371
|
endif
|
371
372
|
|
372
|
-
INCLUDES = . include $(GENDIR)
|
373
|
+
INCLUDES = . include $(GENDIR) third_party/upb third_party/upb/generated_for_cmake
|
373
374
|
LDFLAGS += -Llibs/$(CONFIG)
|
374
375
|
|
375
376
|
ifeq ($(SYSTEM),Darwin)
|
@@ -460,8 +461,8 @@ Q = @
|
|
460
461
|
endif
|
461
462
|
|
462
463
|
CORE_VERSION = 7.0.0
|
463
|
-
CPP_VERSION = 1.
|
464
|
-
CSHARP_VERSION =
|
464
|
+
CPP_VERSION = 1.23.0
|
465
|
+
CSHARP_VERSION = 2.23.0
|
465
466
|
|
466
467
|
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
|
467
468
|
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
|
@@ -511,7 +512,7 @@ SHARED_EXT_CSHARP = dll
|
|
511
512
|
SHARED_PREFIX =
|
512
513
|
SHARED_VERSION_CORE = -7
|
513
514
|
SHARED_VERSION_CPP = -1
|
514
|
-
SHARED_VERSION_CSHARP = -
|
515
|
+
SHARED_VERSION_CSHARP = -2
|
515
516
|
else ifeq ($(SYSTEM),Darwin)
|
516
517
|
EXECUTABLE_SUFFIX =
|
517
518
|
SHARED_EXT_CORE = dylib
|
@@ -1015,7 +1016,8 @@ compression_test: $(BINDIR)/$(CONFIG)/compression_test
|
|
1015
1016
|
concurrent_connectivity_test: $(BINDIR)/$(CONFIG)/concurrent_connectivity_test
|
1016
1017
|
connection_refused_test: $(BINDIR)/$(CONFIG)/connection_refused_test
|
1017
1018
|
dns_resolver_connectivity_test: $(BINDIR)/$(CONFIG)/dns_resolver_connectivity_test
|
1018
|
-
|
1019
|
+
dns_resolver_cooldown_using_ares_resolver_test: $(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_ares_resolver_test
|
1020
|
+
dns_resolver_cooldown_using_native_resolver_test: $(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_native_resolver_test
|
1019
1021
|
dns_resolver_test: $(BINDIR)/$(CONFIG)/dns_resolver_test
|
1020
1022
|
dualstack_socket_test: $(BINDIR)/$(CONFIG)/dualstack_socket_test
|
1021
1023
|
endpoint_pair_test: $(BINDIR)/$(CONFIG)/endpoint_pair_test
|
@@ -1052,9 +1054,9 @@ grpc_channel_stack_builder_test: $(BINDIR)/$(CONFIG)/grpc_channel_stack_builder_
|
|
1052
1054
|
grpc_channel_stack_test: $(BINDIR)/$(CONFIG)/grpc_channel_stack_test
|
1053
1055
|
grpc_completion_queue_test: $(BINDIR)/$(CONFIG)/grpc_completion_queue_test
|
1054
1056
|
grpc_completion_queue_threading_test: $(BINDIR)/$(CONFIG)/grpc_completion_queue_threading_test
|
1057
|
+
grpc_control_plane_credentials_test: $(BINDIR)/$(CONFIG)/grpc_control_plane_credentials_test
|
1055
1058
|
grpc_create_jwt: $(BINDIR)/$(CONFIG)/grpc_create_jwt
|
1056
1059
|
grpc_credentials_test: $(BINDIR)/$(CONFIG)/grpc_credentials_test
|
1057
|
-
grpc_fetch_oauth2: $(BINDIR)/$(CONFIG)/grpc_fetch_oauth2
|
1058
1060
|
grpc_ipv6_loopback_available_test: $(BINDIR)/$(CONFIG)/grpc_ipv6_loopback_available_test
|
1059
1061
|
grpc_json_token_test: $(BINDIR)/$(CONFIG)/grpc_json_token_test
|
1060
1062
|
grpc_jwt_verifier_test: $(BINDIR)/$(CONFIG)/grpc_jwt_verifier_test
|
@@ -1092,6 +1094,7 @@ memory_usage_server: $(BINDIR)/$(CONFIG)/memory_usage_server
|
|
1092
1094
|
memory_usage_test: $(BINDIR)/$(CONFIG)/memory_usage_test
|
1093
1095
|
message_compress_test: $(BINDIR)/$(CONFIG)/message_compress_test
|
1094
1096
|
minimal_stack_is_minimal_test: $(BINDIR)/$(CONFIG)/minimal_stack_is_minimal_test
|
1097
|
+
mpmcqueue_test: $(BINDIR)/$(CONFIG)/mpmcqueue_test
|
1095
1098
|
multiple_server_queues_test: $(BINDIR)/$(CONFIG)/multiple_server_queues_test
|
1096
1099
|
murmur_hash_test: $(BINDIR)/$(CONFIG)/murmur_hash_test
|
1097
1100
|
nanopb_fuzzer_response_test: $(BINDIR)/$(CONFIG)/nanopb_fuzzer_response_test
|
@@ -1130,6 +1133,7 @@ tcp_client_uv_test: $(BINDIR)/$(CONFIG)/tcp_client_uv_test
|
|
1130
1133
|
tcp_posix_test: $(BINDIR)/$(CONFIG)/tcp_posix_test
|
1131
1134
|
tcp_server_posix_test: $(BINDIR)/$(CONFIG)/tcp_server_posix_test
|
1132
1135
|
tcp_server_uv_test: $(BINDIR)/$(CONFIG)/tcp_server_uv_test
|
1136
|
+
threadpool_test: $(BINDIR)/$(CONFIG)/threadpool_test
|
1133
1137
|
time_averaged_stats_test: $(BINDIR)/$(CONFIG)/time_averaged_stats_test
|
1134
1138
|
timeout_encoding_test: $(BINDIR)/$(CONFIG)/timeout_encoding_test
|
1135
1139
|
timer_heap_test: $(BINDIR)/$(CONFIG)/timer_heap_test
|
@@ -1177,6 +1181,7 @@ bm_fullstack_trickle: $(BINDIR)/$(CONFIG)/bm_fullstack_trickle
|
|
1177
1181
|
bm_fullstack_unary_ping_pong: $(BINDIR)/$(CONFIG)/bm_fullstack_unary_ping_pong
|
1178
1182
|
bm_metadata: $(BINDIR)/$(CONFIG)/bm_metadata
|
1179
1183
|
bm_pollset: $(BINDIR)/$(CONFIG)/bm_pollset
|
1184
|
+
bm_threadpool: $(BINDIR)/$(CONFIG)/bm_threadpool
|
1180
1185
|
bm_timer: $(BINDIR)/$(CONFIG)/bm_timer
|
1181
1186
|
byte_stream_test: $(BINDIR)/$(CONFIG)/byte_stream_test
|
1182
1187
|
channel_arguments_test: $(BINDIR)/$(CONFIG)/channel_arguments_test
|
@@ -1216,6 +1221,7 @@ grpc_cli: $(BINDIR)/$(CONFIG)/grpc_cli
|
|
1216
1221
|
grpc_core_map_test: $(BINDIR)/$(CONFIG)/grpc_core_map_test
|
1217
1222
|
grpc_cpp_plugin: $(BINDIR)/$(CONFIG)/grpc_cpp_plugin
|
1218
1223
|
grpc_csharp_plugin: $(BINDIR)/$(CONFIG)/grpc_csharp_plugin
|
1224
|
+
grpc_fetch_oauth2: $(BINDIR)/$(CONFIG)/grpc_fetch_oauth2
|
1219
1225
|
grpc_linux_system_roots_test: $(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test
|
1220
1226
|
grpc_node_plugin: $(BINDIR)/$(CONFIG)/grpc_node_plugin
|
1221
1227
|
grpc_objective_c_plugin: $(BINDIR)/$(CONFIG)/grpc_objective_c_plugin
|
@@ -1225,6 +1231,7 @@ grpc_ruby_plugin: $(BINDIR)/$(CONFIG)/grpc_ruby_plugin
|
|
1225
1231
|
grpc_tool_test: $(BINDIR)/$(CONFIG)/grpc_tool_test
|
1226
1232
|
grpclb_api_test: $(BINDIR)/$(CONFIG)/grpclb_api_test
|
1227
1233
|
grpclb_end2end_test: $(BINDIR)/$(CONFIG)/grpclb_end2end_test
|
1234
|
+
grpclb_fallback_test: $(BINDIR)/$(CONFIG)/grpclb_fallback_test
|
1228
1235
|
h2_ssl_cert_test: $(BINDIR)/$(CONFIG)/h2_ssl_cert_test
|
1229
1236
|
h2_ssl_session_reuse_test: $(BINDIR)/$(CONFIG)/h2_ssl_session_reuse_test
|
1230
1237
|
health_service_end2end_test: $(BINDIR)/$(CONFIG)/health_service_end2end_test
|
@@ -1278,6 +1285,7 @@ status_metadata_test: $(BINDIR)/$(CONFIG)/status_metadata_test
|
|
1278
1285
|
status_util_test: $(BINDIR)/$(CONFIG)/status_util_test
|
1279
1286
|
streaming_throughput_test: $(BINDIR)/$(CONFIG)/streaming_throughput_test
|
1280
1287
|
stress_test: $(BINDIR)/$(CONFIG)/stress_test
|
1288
|
+
string_view_test: $(BINDIR)/$(CONFIG)/string_view_test
|
1281
1289
|
thread_manager_test: $(BINDIR)/$(CONFIG)/thread_manager_test
|
1282
1290
|
thread_stress_test: $(BINDIR)/$(CONFIG)/thread_stress_test
|
1283
1291
|
time_change_test: $(BINDIR)/$(CONFIG)/time_change_test
|
@@ -1291,6 +1299,7 @@ gen_legal_metadata_characters: $(BINDIR)/$(CONFIG)/gen_legal_metadata_characters
|
|
1291
1299
|
gen_percent_encoding_tables: $(BINDIR)/$(CONFIG)/gen_percent_encoding_tables
|
1292
1300
|
boringssl_ssl_test: $(BINDIR)/$(CONFIG)/boringssl_ssl_test
|
1293
1301
|
boringssl_crypto_test: $(BINDIR)/$(CONFIG)/boringssl_crypto_test
|
1302
|
+
bad_streaming_id_bad_client_test: $(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test
|
1294
1303
|
badreq_bad_client_test: $(BINDIR)/$(CONFIG)/badreq_bad_client_test
|
1295
1304
|
connection_prefix_bad_client_test: $(BINDIR)/$(CONFIG)/connection_prefix_bad_client_test
|
1296
1305
|
duplicate_header_bad_client_test: $(BINDIR)/$(CONFIG)/duplicate_header_bad_client_test
|
@@ -1298,6 +1307,7 @@ head_of_line_blocking_bad_client_test: $(BINDIR)/$(CONFIG)/head_of_line_blocking
|
|
1298
1307
|
headers_bad_client_test: $(BINDIR)/$(CONFIG)/headers_bad_client_test
|
1299
1308
|
initial_settings_frame_bad_client_test: $(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test
|
1300
1309
|
large_metadata_bad_client_test: $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test
|
1310
|
+
out_of_bounds_bad_client_test: $(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test
|
1301
1311
|
server_registered_method_bad_client_test: $(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test
|
1302
1312
|
simple_request_bad_client_test: $(BINDIR)/$(CONFIG)/simple_request_bad_client_test
|
1303
1313
|
unknown_frame_bad_client_test: $(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test
|
@@ -1389,14 +1399,14 @@ static: static_c static_cxx
|
|
1389
1399
|
|
1390
1400
|
static_c: pc_c pc_c_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libaddress_sorting.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgrpc_cronet.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
|
1391
1401
|
|
1392
|
-
static_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++
|
1402
|
+
static_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(LIBDIR)/$(CONFIG)/libgrpc++_reflection.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpcpp_channelz.a
|
1393
1403
|
|
1394
1404
|
static_csharp: static_c $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext.a
|
1395
1405
|
|
1396
1406
|
shared: shared_c shared_cxx
|
1397
1407
|
|
1398
1408
|
shared_c: pc_c pc_c_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)address_sorting$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_cronet$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_unsecure$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE)
|
1399
|
-
shared_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++
|
1409
|
+
shared_cxx: pc_cxx pc_cxx_unsecure cache.mk $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_unsecure$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpcpp_channelz$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
|
1400
1410
|
|
1401
1411
|
shared_csharp: shared_c $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP)
|
1402
1412
|
grpc_csharp_ext: shared_csharp
|
@@ -1444,7 +1454,8 @@ buildtests_c: privatelibs_c \
|
|
1444
1454
|
$(BINDIR)/$(CONFIG)/concurrent_connectivity_test \
|
1445
1455
|
$(BINDIR)/$(CONFIG)/connection_refused_test \
|
1446
1456
|
$(BINDIR)/$(CONFIG)/dns_resolver_connectivity_test \
|
1447
|
-
$(BINDIR)/$(CONFIG)/
|
1457
|
+
$(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_ares_resolver_test \
|
1458
|
+
$(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_native_resolver_test \
|
1448
1459
|
$(BINDIR)/$(CONFIG)/dns_resolver_test \
|
1449
1460
|
$(BINDIR)/$(CONFIG)/dualstack_socket_test \
|
1450
1461
|
$(BINDIR)/$(CONFIG)/endpoint_pair_test \
|
@@ -1481,8 +1492,8 @@ buildtests_c: privatelibs_c \
|
|
1481
1492
|
$(BINDIR)/$(CONFIG)/grpc_channel_stack_test \
|
1482
1493
|
$(BINDIR)/$(CONFIG)/grpc_completion_queue_test \
|
1483
1494
|
$(BINDIR)/$(CONFIG)/grpc_completion_queue_threading_test \
|
1495
|
+
$(BINDIR)/$(CONFIG)/grpc_control_plane_credentials_test \
|
1484
1496
|
$(BINDIR)/$(CONFIG)/grpc_credentials_test \
|
1485
|
-
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2 \
|
1486
1497
|
$(BINDIR)/$(CONFIG)/grpc_ipv6_loopback_available_test \
|
1487
1498
|
$(BINDIR)/$(CONFIG)/grpc_json_token_test \
|
1488
1499
|
$(BINDIR)/$(CONFIG)/grpc_jwt_verifier_test \
|
@@ -1513,6 +1524,7 @@ buildtests_c: privatelibs_c \
|
|
1513
1524
|
$(BINDIR)/$(CONFIG)/memory_usage_test \
|
1514
1525
|
$(BINDIR)/$(CONFIG)/message_compress_test \
|
1515
1526
|
$(BINDIR)/$(CONFIG)/minimal_stack_is_minimal_test \
|
1527
|
+
$(BINDIR)/$(CONFIG)/mpmcqueue_test \
|
1516
1528
|
$(BINDIR)/$(CONFIG)/multiple_server_queues_test \
|
1517
1529
|
$(BINDIR)/$(CONFIG)/murmur_hash_test \
|
1518
1530
|
$(BINDIR)/$(CONFIG)/no_server_test \
|
@@ -1545,6 +1557,7 @@ buildtests_c: privatelibs_c \
|
|
1545
1557
|
$(BINDIR)/$(CONFIG)/tcp_posix_test \
|
1546
1558
|
$(BINDIR)/$(CONFIG)/tcp_server_posix_test \
|
1547
1559
|
$(BINDIR)/$(CONFIG)/tcp_server_uv_test \
|
1560
|
+
$(BINDIR)/$(CONFIG)/threadpool_test \
|
1548
1561
|
$(BINDIR)/$(CONFIG)/time_averaged_stats_test \
|
1549
1562
|
$(BINDIR)/$(CONFIG)/timeout_encoding_test \
|
1550
1563
|
$(BINDIR)/$(CONFIG)/timer_heap_test \
|
@@ -1648,6 +1661,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1648
1661
|
$(BINDIR)/$(CONFIG)/bm_fullstack_unary_ping_pong \
|
1649
1662
|
$(BINDIR)/$(CONFIG)/bm_metadata \
|
1650
1663
|
$(BINDIR)/$(CONFIG)/bm_pollset \
|
1664
|
+
$(BINDIR)/$(CONFIG)/bm_threadpool \
|
1651
1665
|
$(BINDIR)/$(CONFIG)/bm_timer \
|
1652
1666
|
$(BINDIR)/$(CONFIG)/byte_stream_test \
|
1653
1667
|
$(BINDIR)/$(CONFIG)/channel_arguments_test \
|
@@ -1685,10 +1699,12 @@ buildtests_cxx: privatelibs_cxx \
|
|
1685
1699
|
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test \
|
1686
1700
|
$(BINDIR)/$(CONFIG)/grpc_cli \
|
1687
1701
|
$(BINDIR)/$(CONFIG)/grpc_core_map_test \
|
1702
|
+
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2 \
|
1688
1703
|
$(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test \
|
1689
1704
|
$(BINDIR)/$(CONFIG)/grpc_tool_test \
|
1690
1705
|
$(BINDIR)/$(CONFIG)/grpclb_api_test \
|
1691
1706
|
$(BINDIR)/$(CONFIG)/grpclb_end2end_test \
|
1707
|
+
$(BINDIR)/$(CONFIG)/grpclb_fallback_test \
|
1692
1708
|
$(BINDIR)/$(CONFIG)/h2_ssl_cert_test \
|
1693
1709
|
$(BINDIR)/$(CONFIG)/h2_ssl_session_reuse_test \
|
1694
1710
|
$(BINDIR)/$(CONFIG)/health_service_end2end_test \
|
@@ -1742,6 +1758,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1742
1758
|
$(BINDIR)/$(CONFIG)/status_util_test \
|
1743
1759
|
$(BINDIR)/$(CONFIG)/streaming_throughput_test \
|
1744
1760
|
$(BINDIR)/$(CONFIG)/stress_test \
|
1761
|
+
$(BINDIR)/$(CONFIG)/string_view_test \
|
1745
1762
|
$(BINDIR)/$(CONFIG)/thread_manager_test \
|
1746
1763
|
$(BINDIR)/$(CONFIG)/thread_stress_test \
|
1747
1764
|
$(BINDIR)/$(CONFIG)/time_change_test \
|
@@ -1751,6 +1768,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1751
1768
|
$(BINDIR)/$(CONFIG)/xds_end2end_test \
|
1752
1769
|
$(BINDIR)/$(CONFIG)/boringssl_ssl_test \
|
1753
1770
|
$(BINDIR)/$(CONFIG)/boringssl_crypto_test \
|
1771
|
+
$(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test \
|
1754
1772
|
$(BINDIR)/$(CONFIG)/badreq_bad_client_test \
|
1755
1773
|
$(BINDIR)/$(CONFIG)/connection_prefix_bad_client_test \
|
1756
1774
|
$(BINDIR)/$(CONFIG)/duplicate_header_bad_client_test \
|
@@ -1758,6 +1776,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1758
1776
|
$(BINDIR)/$(CONFIG)/headers_bad_client_test \
|
1759
1777
|
$(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test \
|
1760
1778
|
$(BINDIR)/$(CONFIG)/large_metadata_bad_client_test \
|
1779
|
+
$(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test \
|
1761
1780
|
$(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test \
|
1762
1781
|
$(BINDIR)/$(CONFIG)/simple_request_bad_client_test \
|
1763
1782
|
$(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test \
|
@@ -1809,6 +1828,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1809
1828
|
$(BINDIR)/$(CONFIG)/bm_fullstack_unary_ping_pong \
|
1810
1829
|
$(BINDIR)/$(CONFIG)/bm_metadata \
|
1811
1830
|
$(BINDIR)/$(CONFIG)/bm_pollset \
|
1831
|
+
$(BINDIR)/$(CONFIG)/bm_threadpool \
|
1812
1832
|
$(BINDIR)/$(CONFIG)/bm_timer \
|
1813
1833
|
$(BINDIR)/$(CONFIG)/byte_stream_test \
|
1814
1834
|
$(BINDIR)/$(CONFIG)/channel_arguments_test \
|
@@ -1846,10 +1866,12 @@ buildtests_cxx: privatelibs_cxx \
|
|
1846
1866
|
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test \
|
1847
1867
|
$(BINDIR)/$(CONFIG)/grpc_cli \
|
1848
1868
|
$(BINDIR)/$(CONFIG)/grpc_core_map_test \
|
1869
|
+
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2 \
|
1849
1870
|
$(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test \
|
1850
1871
|
$(BINDIR)/$(CONFIG)/grpc_tool_test \
|
1851
1872
|
$(BINDIR)/$(CONFIG)/grpclb_api_test \
|
1852
1873
|
$(BINDIR)/$(CONFIG)/grpclb_end2end_test \
|
1874
|
+
$(BINDIR)/$(CONFIG)/grpclb_fallback_test \
|
1853
1875
|
$(BINDIR)/$(CONFIG)/h2_ssl_cert_test \
|
1854
1876
|
$(BINDIR)/$(CONFIG)/h2_ssl_session_reuse_test \
|
1855
1877
|
$(BINDIR)/$(CONFIG)/health_service_end2end_test \
|
@@ -1903,6 +1925,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1903
1925
|
$(BINDIR)/$(CONFIG)/status_util_test \
|
1904
1926
|
$(BINDIR)/$(CONFIG)/streaming_throughput_test \
|
1905
1927
|
$(BINDIR)/$(CONFIG)/stress_test \
|
1928
|
+
$(BINDIR)/$(CONFIG)/string_view_test \
|
1906
1929
|
$(BINDIR)/$(CONFIG)/thread_manager_test \
|
1907
1930
|
$(BINDIR)/$(CONFIG)/thread_stress_test \
|
1908
1931
|
$(BINDIR)/$(CONFIG)/time_change_test \
|
@@ -1910,6 +1933,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1910
1933
|
$(BINDIR)/$(CONFIG)/transport_security_common_api_test \
|
1911
1934
|
$(BINDIR)/$(CONFIG)/writes_per_rpc_test \
|
1912
1935
|
$(BINDIR)/$(CONFIG)/xds_end2end_test \
|
1936
|
+
$(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test \
|
1913
1937
|
$(BINDIR)/$(CONFIG)/badreq_bad_client_test \
|
1914
1938
|
$(BINDIR)/$(CONFIG)/connection_prefix_bad_client_test \
|
1915
1939
|
$(BINDIR)/$(CONFIG)/duplicate_header_bad_client_test \
|
@@ -1917,6 +1941,7 @@ buildtests_cxx: privatelibs_cxx \
|
|
1917
1941
|
$(BINDIR)/$(CONFIG)/headers_bad_client_test \
|
1918
1942
|
$(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test \
|
1919
1943
|
$(BINDIR)/$(CONFIG)/large_metadata_bad_client_test \
|
1944
|
+
$(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test \
|
1920
1945
|
$(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test \
|
1921
1946
|
$(BINDIR)/$(CONFIG)/simple_request_bad_client_test \
|
1922
1947
|
$(BINDIR)/$(CONFIG)/unknown_frame_bad_client_test \
|
@@ -1977,8 +2002,10 @@ test_c: buildtests_c
|
|
1977
2002
|
$(Q) $(BINDIR)/$(CONFIG)/connection_refused_test || ( echo test connection_refused_test failed ; exit 1 )
|
1978
2003
|
$(E) "[RUN] Testing dns_resolver_connectivity_test"
|
1979
2004
|
$(Q) $(BINDIR)/$(CONFIG)/dns_resolver_connectivity_test || ( echo test dns_resolver_connectivity_test failed ; exit 1 )
|
1980
|
-
$(E) "[RUN] Testing
|
1981
|
-
$(Q) $(BINDIR)/$(CONFIG)/
|
2005
|
+
$(E) "[RUN] Testing dns_resolver_cooldown_using_ares_resolver_test"
|
2006
|
+
$(Q) $(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_ares_resolver_test || ( echo test dns_resolver_cooldown_using_ares_resolver_test failed ; exit 1 )
|
2007
|
+
$(E) "[RUN] Testing dns_resolver_cooldown_using_native_resolver_test"
|
2008
|
+
$(Q) $(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_native_resolver_test || ( echo test dns_resolver_cooldown_using_native_resolver_test failed ; exit 1 )
|
1982
2009
|
$(E) "[RUN] Testing dns_resolver_test"
|
1983
2010
|
$(Q) $(BINDIR)/$(CONFIG)/dns_resolver_test || ( echo test dns_resolver_test failed ; exit 1 )
|
1984
2011
|
$(E) "[RUN] Testing dualstack_socket_test"
|
@@ -2047,6 +2074,8 @@ test_c: buildtests_c
|
|
2047
2074
|
$(Q) $(BINDIR)/$(CONFIG)/grpc_completion_queue_test || ( echo test grpc_completion_queue_test failed ; exit 1 )
|
2048
2075
|
$(E) "[RUN] Testing grpc_completion_queue_threading_test"
|
2049
2076
|
$(Q) $(BINDIR)/$(CONFIG)/grpc_completion_queue_threading_test || ( echo test grpc_completion_queue_threading_test failed ; exit 1 )
|
2077
|
+
$(E) "[RUN] Testing grpc_control_plane_credentials_test"
|
2078
|
+
$(Q) $(BINDIR)/$(CONFIG)/grpc_control_plane_credentials_test || ( echo test grpc_control_plane_credentials_test failed ; exit 1 )
|
2050
2079
|
$(E) "[RUN] Testing grpc_credentials_test"
|
2051
2080
|
$(Q) $(BINDIR)/$(CONFIG)/grpc_credentials_test || ( echo test grpc_credentials_test failed ; exit 1 )
|
2052
2081
|
$(E) "[RUN] Testing grpc_ipv6_loopback_available_test"
|
@@ -2103,6 +2132,8 @@ test_c: buildtests_c
|
|
2103
2132
|
$(Q) $(BINDIR)/$(CONFIG)/message_compress_test || ( echo test message_compress_test failed ; exit 1 )
|
2104
2133
|
$(E) "[RUN] Testing minimal_stack_is_minimal_test"
|
2105
2134
|
$(Q) $(BINDIR)/$(CONFIG)/minimal_stack_is_minimal_test || ( echo test minimal_stack_is_minimal_test failed ; exit 1 )
|
2135
|
+
$(E) "[RUN] Testing mpmcqueue_test"
|
2136
|
+
$(Q) $(BINDIR)/$(CONFIG)/mpmcqueue_test || ( echo test mpmcqueue_test failed ; exit 1 )
|
2106
2137
|
$(E) "[RUN] Testing multiple_server_queues_test"
|
2107
2138
|
$(Q) $(BINDIR)/$(CONFIG)/multiple_server_queues_test || ( echo test multiple_server_queues_test failed ; exit 1 )
|
2108
2139
|
$(E) "[RUN] Testing murmur_hash_test"
|
@@ -2167,6 +2198,8 @@ test_c: buildtests_c
|
|
2167
2198
|
$(Q) $(BINDIR)/$(CONFIG)/tcp_server_posix_test || ( echo test tcp_server_posix_test failed ; exit 1 )
|
2168
2199
|
$(E) "[RUN] Testing tcp_server_uv_test"
|
2169
2200
|
$(Q) $(BINDIR)/$(CONFIG)/tcp_server_uv_test || ( echo test tcp_server_uv_test failed ; exit 1 )
|
2201
|
+
$(E) "[RUN] Testing threadpool_test"
|
2202
|
+
$(Q) $(BINDIR)/$(CONFIG)/threadpool_test || ( echo test threadpool_test failed ; exit 1 )
|
2170
2203
|
$(E) "[RUN] Testing time_averaged_stats_test"
|
2171
2204
|
$(Q) $(BINDIR)/$(CONFIG)/time_averaged_stats_test || ( echo test time_averaged_stats_test failed ; exit 1 )
|
2172
2205
|
$(E) "[RUN] Testing timeout_encoding_test"
|
@@ -2269,6 +2302,8 @@ test_cxx: buildtests_cxx
|
|
2269
2302
|
$(Q) $(BINDIR)/$(CONFIG)/bm_metadata || ( echo test bm_metadata failed ; exit 1 )
|
2270
2303
|
$(E) "[RUN] Testing bm_pollset"
|
2271
2304
|
$(Q) $(BINDIR)/$(CONFIG)/bm_pollset || ( echo test bm_pollset failed ; exit 1 )
|
2305
|
+
$(E) "[RUN] Testing bm_threadpool"
|
2306
|
+
$(Q) $(BINDIR)/$(CONFIG)/bm_threadpool || ( echo test bm_threadpool failed ; exit 1 )
|
2272
2307
|
$(E) "[RUN] Testing bm_timer"
|
2273
2308
|
$(Q) $(BINDIR)/$(CONFIG)/bm_timer || ( echo test bm_timer failed ; exit 1 )
|
2274
2309
|
$(E) "[RUN] Testing byte_stream_test"
|
@@ -2347,6 +2382,8 @@ test_cxx: buildtests_cxx
|
|
2347
2382
|
$(Q) $(BINDIR)/$(CONFIG)/grpclb_api_test || ( echo test grpclb_api_test failed ; exit 1 )
|
2348
2383
|
$(E) "[RUN] Testing grpclb_end2end_test"
|
2349
2384
|
$(Q) $(BINDIR)/$(CONFIG)/grpclb_end2end_test || ( echo test grpclb_end2end_test failed ; exit 1 )
|
2385
|
+
$(E) "[RUN] Testing grpclb_fallback_test"
|
2386
|
+
$(Q) $(BINDIR)/$(CONFIG)/grpclb_fallback_test || ( echo test grpclb_fallback_test failed ; exit 1 )
|
2350
2387
|
$(E) "[RUN] Testing h2_ssl_cert_test"
|
2351
2388
|
$(Q) $(BINDIR)/$(CONFIG)/h2_ssl_cert_test || ( echo test h2_ssl_cert_test failed ; exit 1 )
|
2352
2389
|
$(E) "[RUN] Testing h2_ssl_session_reuse_test"
|
@@ -2427,6 +2464,8 @@ test_cxx: buildtests_cxx
|
|
2427
2464
|
$(Q) $(BINDIR)/$(CONFIG)/status_util_test || ( echo test status_util_test failed ; exit 1 )
|
2428
2465
|
$(E) "[RUN] Testing streaming_throughput_test"
|
2429
2466
|
$(Q) $(BINDIR)/$(CONFIG)/streaming_throughput_test || ( echo test streaming_throughput_test failed ; exit 1 )
|
2467
|
+
$(E) "[RUN] Testing string_view_test"
|
2468
|
+
$(Q) $(BINDIR)/$(CONFIG)/string_view_test || ( echo test string_view_test failed ; exit 1 )
|
2430
2469
|
$(E) "[RUN] Testing thread_manager_test"
|
2431
2470
|
$(Q) $(BINDIR)/$(CONFIG)/thread_manager_test || ( echo test thread_manager_test failed ; exit 1 )
|
2432
2471
|
$(E) "[RUN] Testing thread_stress_test"
|
@@ -2441,6 +2480,8 @@ test_cxx: buildtests_cxx
|
|
2441
2480
|
$(Q) $(BINDIR)/$(CONFIG)/writes_per_rpc_test || ( echo test writes_per_rpc_test failed ; exit 1 )
|
2442
2481
|
$(E) "[RUN] Testing xds_end2end_test"
|
2443
2482
|
$(Q) $(BINDIR)/$(CONFIG)/xds_end2end_test || ( echo test xds_end2end_test failed ; exit 1 )
|
2483
|
+
$(E) "[RUN] Testing bad_streaming_id_bad_client_test"
|
2484
|
+
$(Q) $(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test || ( echo test bad_streaming_id_bad_client_test failed ; exit 1 )
|
2444
2485
|
$(E) "[RUN] Testing badreq_bad_client_test"
|
2445
2486
|
$(Q) $(BINDIR)/$(CONFIG)/badreq_bad_client_test || ( echo test badreq_bad_client_test failed ; exit 1 )
|
2446
2487
|
$(E) "[RUN] Testing connection_prefix_bad_client_test"
|
@@ -2455,6 +2496,8 @@ test_cxx: buildtests_cxx
|
|
2455
2496
|
$(Q) $(BINDIR)/$(CONFIG)/initial_settings_frame_bad_client_test || ( echo test initial_settings_frame_bad_client_test failed ; exit 1 )
|
2456
2497
|
$(E) "[RUN] Testing large_metadata_bad_client_test"
|
2457
2498
|
$(Q) $(BINDIR)/$(CONFIG)/large_metadata_bad_client_test || ( echo test large_metadata_bad_client_test failed ; exit 1 )
|
2499
|
+
$(E) "[RUN] Testing out_of_bounds_bad_client_test"
|
2500
|
+
$(Q) $(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test || ( echo test out_of_bounds_bad_client_test failed ; exit 1 )
|
2458
2501
|
$(E) "[RUN] Testing server_registered_method_bad_client_test"
|
2459
2502
|
$(Q) $(BINDIR)/$(CONFIG)/server_registered_method_bad_client_test || ( echo test server_registered_method_bad_client_test failed ; exit 1 )
|
2460
2503
|
$(E) "[RUN] Testing simple_request_bad_client_test"
|
@@ -2525,8 +2568,6 @@ strip-static_cxx: static_cxx
|
|
2525
2568
|
ifeq ($(CONFIG),opt)
|
2526
2569
|
$(E) "[STRIP] Stripping libgrpc++.a"
|
2527
2570
|
$(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++.a
|
2528
|
-
$(E) "[STRIP] Stripping libgrpc++_cronet.a"
|
2529
|
-
$(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a
|
2530
2571
|
$(E) "[STRIP] Stripping libgrpc++_error_details.a"
|
2531
2572
|
$(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a
|
2532
2573
|
$(E) "[STRIP] Stripping libgrpc++_reflection.a"
|
@@ -2555,8 +2596,6 @@ strip-shared_cxx: shared_cxx
|
|
2555
2596
|
ifeq ($(CONFIG),opt)
|
2556
2597
|
$(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
|
2557
2598
|
$(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
|
2558
|
-
$(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
|
2559
|
-
$(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
|
2560
2599
|
$(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
|
2561
2600
|
$(Q) $(STRIP) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
|
2562
2601
|
$(E) "[STRIP] Stripping $(SHARED_PREFIX)grpc++_reflection$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
|
@@ -3033,9 +3072,6 @@ install-static_cxx: static_cxx strip-static_cxx install-pkg-config_cxx
|
|
3033
3072
|
$(E) "[INSTALL] Installing libgrpc++.a"
|
3034
3073
|
$(Q) $(INSTALL) -d $(prefix)/lib
|
3035
3074
|
$(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++.a $(prefix)/lib/libgrpc++.a
|
3036
|
-
$(E) "[INSTALL] Installing libgrpc++_cronet.a"
|
3037
|
-
$(Q) $(INSTALL) -d $(prefix)/lib
|
3038
|
-
$(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a $(prefix)/lib/libgrpc++_cronet.a
|
3039
3075
|
$(E) "[INSTALL] Installing libgrpc++_error_details.a"
|
3040
3076
|
$(Q) $(INSTALL) -d $(prefix)/lib
|
3041
3077
|
$(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_error_details.a $(prefix)/lib/libgrpc++_error_details.a
|
@@ -3113,15 +3149,6 @@ ifeq ($(SYSTEM),MINGW32)
|
|
3113
3149
|
else ifneq ($(SYSTEM),Darwin)
|
3114
3150
|
$(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++.so.1
|
3115
3151
|
$(Q) ln -sf $(SHARED_PREFIX)grpc++$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++.so
|
3116
|
-
endif
|
3117
|
-
$(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
|
3118
|
-
$(Q) $(INSTALL) -d $(prefix)/lib
|
3119
|
-
$(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/$(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)
|
3120
|
-
ifeq ($(SYSTEM),MINGW32)
|
3121
|
-
$(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP)-dll.a $(prefix)/lib/libgrpc++_cronet.a
|
3122
|
-
else ifneq ($(SYSTEM),Darwin)
|
3123
|
-
$(Q) ln -sf $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_cronet.so.1
|
3124
|
-
$(Q) ln -sf $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(prefix)/lib/libgrpc++_cronet.so
|
3125
3152
|
endif
|
3126
3153
|
$(E) "[INSTALL] Installing $(SHARED_PREFIX)grpc++_error_details$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP)"
|
3127
3154
|
$(Q) $(INSTALL) -d $(prefix)/lib
|
@@ -3173,7 +3200,7 @@ install-shared_csharp: shared_csharp strip-shared_csharp
|
|
3173
3200
|
ifeq ($(SYSTEM),MINGW32)
|
3174
3201
|
$(Q) $(INSTALL) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP)-dll.a $(prefix)/lib/libgrpc_csharp_ext.a
|
3175
3202
|
else ifneq ($(SYSTEM),Darwin)
|
3176
|
-
$(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(prefix)/lib/libgrpc_csharp_ext.so.
|
3203
|
+
$(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(prefix)/lib/libgrpc_csharp_ext.so.2
|
3177
3204
|
$(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(prefix)/lib/libgrpc_csharp_ext.so
|
3178
3205
|
endif
|
3179
3206
|
ifneq ($(SYSTEM),MINGW32)
|
@@ -3369,7 +3396,6 @@ LIBGPR_SRC = \
|
|
3369
3396
|
src/core/lib/gpr/env_linux.cc \
|
3370
3397
|
src/core/lib/gpr/env_posix.cc \
|
3371
3398
|
src/core/lib/gpr/env_windows.cc \
|
3372
|
-
src/core/lib/gpr/host_port.cc \
|
3373
3399
|
src/core/lib/gpr/log.cc \
|
3374
3400
|
src/core/lib/gpr/log_android.cc \
|
3375
3401
|
src/core/lib/gpr/log_linux.cc \
|
@@ -3396,6 +3422,7 @@ LIBGPR_SRC = \
|
|
3396
3422
|
src/core/lib/gprpp/arena.cc \
|
3397
3423
|
src/core/lib/gprpp/fork.cc \
|
3398
3424
|
src/core/lib/gprpp/global_config_env.cc \
|
3425
|
+
src/core/lib/gprpp/host_port.cc \
|
3399
3426
|
src/core/lib/gprpp/thd_posix.cc \
|
3400
3427
|
src/core/lib/gprpp/thd_windows.cc \
|
3401
3428
|
src/core/lib/profiling/basic_timers.cc \
|
@@ -3515,6 +3542,8 @@ LIBGRPC_SRC = \
|
|
3515
3542
|
src/core/lib/iomgr/ev_windows.cc \
|
3516
3543
|
src/core/lib/iomgr/exec_ctx.cc \
|
3517
3544
|
src/core/lib/iomgr/executor.cc \
|
3545
|
+
src/core/lib/iomgr/executor/mpmcqueue.cc \
|
3546
|
+
src/core/lib/iomgr/executor/threadpool.cc \
|
3518
3547
|
src/core/lib/iomgr/fork_posix.cc \
|
3519
3548
|
src/core/lib/iomgr/fork_windows.cc \
|
3520
3549
|
src/core/lib/iomgr/gethostname_fallback.cc \
|
@@ -3803,6 +3832,7 @@ LIBGRPC_SRC = \
|
|
3803
3832
|
src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc \
|
3804
3833
|
src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
|
3805
3834
|
src/core/ext/filters/census/grpc_context.cc \
|
3835
|
+
src/core/ext/filters/client_idle/client_idle_filter.cc \
|
3806
3836
|
src/core/ext/filters/max_age/max_age_filter.cc \
|
3807
3837
|
src/core/ext/filters/message_size/message_size_filter.cc \
|
3808
3838
|
src/core/ext/filters/http/client_authority_filter.cc \
|
@@ -3901,6 +3931,7 @@ endif
|
|
3901
3931
|
|
3902
3932
|
|
3903
3933
|
LIBGRPC_CRONET_SRC = \
|
3934
|
+
src/core/ext/transport/cronet/plugin_registry/grpc_cronet_plugin_registry.cc \
|
3904
3935
|
src/core/lib/surface/init.cc \
|
3905
3936
|
src/core/lib/avl/avl.cc \
|
3906
3937
|
src/core/lib/backoff/backoff.cc \
|
@@ -3944,6 +3975,8 @@ LIBGRPC_CRONET_SRC = \
|
|
3944
3975
|
src/core/lib/iomgr/ev_windows.cc \
|
3945
3976
|
src/core/lib/iomgr/exec_ctx.cc \
|
3946
3977
|
src/core/lib/iomgr/executor.cc \
|
3978
|
+
src/core/lib/iomgr/executor/mpmcqueue.cc \
|
3979
|
+
src/core/lib/iomgr/executor/threadpool.cc \
|
3947
3980
|
src/core/lib/iomgr/fork_posix.cc \
|
3948
3981
|
src/core/lib/iomgr/fork_windows.cc \
|
3949
3982
|
src/core/lib/iomgr/gethostname_fallback.cc \
|
@@ -4200,7 +4233,6 @@ LIBGRPC_CRONET_SRC = \
|
|
4200
4233
|
src/core/tsi/ssl/session_cache/ssl_session_openssl.cc \
|
4201
4234
|
src/core/tsi/ssl_transport_security.cc \
|
4202
4235
|
src/core/tsi/transport_security_grpc.cc \
|
4203
|
-
src/core/plugin_registry/grpc_cronet_plugin_registry.cc \
|
4204
4236
|
|
4205
4237
|
PUBLIC_HEADERS_C += \
|
4206
4238
|
include/grpc/impl/codegen/byte_buffer.h \
|
@@ -4354,6 +4386,8 @@ LIBGRPC_TEST_UTIL_SRC = \
|
|
4354
4386
|
src/core/lib/iomgr/ev_windows.cc \
|
4355
4387
|
src/core/lib/iomgr/exec_ctx.cc \
|
4356
4388
|
src/core/lib/iomgr/executor.cc \
|
4389
|
+
src/core/lib/iomgr/executor/mpmcqueue.cc \
|
4390
|
+
src/core/lib/iomgr/executor/threadpool.cc \
|
4357
4391
|
src/core/lib/iomgr/fork_posix.cc \
|
4358
4392
|
src/core/lib/iomgr/fork_windows.cc \
|
4359
4393
|
src/core/lib/iomgr/gethostname_fallback.cc \
|
@@ -4671,6 +4705,8 @@ LIBGRPC_TEST_UTIL_UNSECURE_SRC = \
|
|
4671
4705
|
src/core/lib/iomgr/ev_windows.cc \
|
4672
4706
|
src/core/lib/iomgr/exec_ctx.cc \
|
4673
4707
|
src/core/lib/iomgr/executor.cc \
|
4708
|
+
src/core/lib/iomgr/executor/mpmcqueue.cc \
|
4709
|
+
src/core/lib/iomgr/executor/threadpool.cc \
|
4674
4710
|
src/core/lib/iomgr/fork_posix.cc \
|
4675
4711
|
src/core/lib/iomgr/fork_windows.cc \
|
4676
4712
|
src/core/lib/iomgr/gethostname_fallback.cc \
|
@@ -4951,6 +4987,8 @@ LIBGRPC_UNSECURE_SRC = \
|
|
4951
4987
|
src/core/lib/iomgr/ev_windows.cc \
|
4952
4988
|
src/core/lib/iomgr/exec_ctx.cc \
|
4953
4989
|
src/core/lib/iomgr/executor.cc \
|
4990
|
+
src/core/lib/iomgr/executor/mpmcqueue.cc \
|
4991
|
+
src/core/lib/iomgr/executor/threadpool.cc \
|
4954
4992
|
src/core/lib/iomgr/fork_posix.cc \
|
4955
4993
|
src/core/lib/iomgr/fork_windows.cc \
|
4956
4994
|
src/core/lib/iomgr/gethostname_fallback.cc \
|
@@ -5162,6 +5200,7 @@ LIBGRPC_UNSECURE_SRC = \
|
|
5162
5200
|
src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc \
|
5163
5201
|
src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \
|
5164
5202
|
src/core/ext/filters/census/grpc_context.cc \
|
5203
|
+
src/core/ext/filters/client_idle/client_idle_filter.cc \
|
5165
5204
|
src/core/ext/filters/max_age/max_age_filter.cc \
|
5166
5205
|
src/core/ext/filters/message_size/message_size_filter.cc \
|
5167
5206
|
src/core/ext/filters/http/client_authority_filter.cc \
|
@@ -5524,6 +5563,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5524
5563
|
include/grpcpp/channel_impl.h \
|
5525
5564
|
include/grpcpp/client_context.h \
|
5526
5565
|
include/grpcpp/completion_queue.h \
|
5566
|
+
include/grpcpp/completion_queue_impl.h \
|
5527
5567
|
include/grpcpp/create_channel.h \
|
5528
5568
|
include/grpcpp/create_channel_impl.h \
|
5529
5569
|
include/grpcpp/create_channel_posix.h \
|
@@ -5567,11 +5607,14 @@ PUBLIC_HEADERS_CXX += \
|
|
5567
5607
|
include/grpcpp/server_posix.h \
|
5568
5608
|
include/grpcpp/server_posix_impl.h \
|
5569
5609
|
include/grpcpp/support/async_stream.h \
|
5610
|
+
include/grpcpp/support/async_stream_impl.h \
|
5570
5611
|
include/grpcpp/support/async_unary_call.h \
|
5612
|
+
include/grpcpp/support/async_unary_call_impl.h \
|
5571
5613
|
include/grpcpp/support/byte_buffer.h \
|
5572
5614
|
include/grpcpp/support/channel_arguments.h \
|
5573
5615
|
include/grpcpp/support/channel_arguments_impl.h \
|
5574
5616
|
include/grpcpp/support/client_callback.h \
|
5617
|
+
include/grpcpp/support/client_callback_impl.h \
|
5575
5618
|
include/grpcpp/support/client_interceptor.h \
|
5576
5619
|
include/grpcpp/support/config.h \
|
5577
5620
|
include/grpcpp/support/interceptor.h \
|
@@ -5579,6 +5622,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5579
5622
|
include/grpcpp/support/proto_buffer_reader.h \
|
5580
5623
|
include/grpcpp/support/proto_buffer_writer.h \
|
5581
5624
|
include/grpcpp/support/server_callback.h \
|
5625
|
+
include/grpcpp/support/server_callback_impl.h \
|
5582
5626
|
include/grpcpp/support/server_interceptor.h \
|
5583
5627
|
include/grpcpp/support/slice.h \
|
5584
5628
|
include/grpcpp/support/status.h \
|
@@ -5586,6 +5630,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5586
5630
|
include/grpcpp/support/string_ref.h \
|
5587
5631
|
include/grpcpp/support/stub_options.h \
|
5588
5632
|
include/grpcpp/support/sync_stream.h \
|
5633
|
+
include/grpcpp/support/sync_stream_impl.h \
|
5589
5634
|
include/grpcpp/support/time.h \
|
5590
5635
|
include/grpcpp/support/validate_service_config.h \
|
5591
5636
|
include/grpc/support/alloc.h \
|
@@ -5671,7 +5716,9 @@ PUBLIC_HEADERS_CXX += \
|
|
5671
5716
|
include/grpc++/impl/codegen/time.h \
|
5672
5717
|
include/grpcpp/impl/codegen/async_generic_service.h \
|
5673
5718
|
include/grpcpp/impl/codegen/async_stream.h \
|
5719
|
+
include/grpcpp/impl/codegen/async_stream_impl.h \
|
5674
5720
|
include/grpcpp/impl/codegen/async_unary_call.h \
|
5721
|
+
include/grpcpp/impl/codegen/async_unary_call_impl.h \
|
5675
5722
|
include/grpcpp/impl/codegen/byte_buffer.h \
|
5676
5723
|
include/grpcpp/impl/codegen/call.h \
|
5677
5724
|
include/grpcpp/impl/codegen/call_hook.h \
|
@@ -5680,6 +5727,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5680
5727
|
include/grpcpp/impl/codegen/callback_common.h \
|
5681
5728
|
include/grpcpp/impl/codegen/channel_interface.h \
|
5682
5729
|
include/grpcpp/impl/codegen/client_callback.h \
|
5730
|
+
include/grpcpp/impl/codegen/client_callback_impl.h \
|
5683
5731
|
include/grpcpp/impl/codegen/client_context.h \
|
5684
5732
|
include/grpcpp/impl/codegen/client_context_impl.h \
|
5685
5733
|
include/grpcpp/impl/codegen/client_interceptor.h \
|
@@ -5702,6 +5750,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5702
5750
|
include/grpcpp/impl/codegen/security/auth_context.h \
|
5703
5751
|
include/grpcpp/impl/codegen/serialization_traits.h \
|
5704
5752
|
include/grpcpp/impl/codegen/server_callback.h \
|
5753
|
+
include/grpcpp/impl/codegen/server_callback_impl.h \
|
5705
5754
|
include/grpcpp/impl/codegen/server_context.h \
|
5706
5755
|
include/grpcpp/impl/codegen/server_context_impl.h \
|
5707
5756
|
include/grpcpp/impl/codegen/server_interceptor.h \
|
@@ -5713,6 +5762,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5713
5762
|
include/grpcpp/impl/codegen/string_ref.h \
|
5714
5763
|
include/grpcpp/impl/codegen/stub_options.h \
|
5715
5764
|
include/grpcpp/impl/codegen/sync_stream.h \
|
5765
|
+
include/grpcpp/impl/codegen/sync_stream_impl.h \
|
5716
5766
|
include/grpcpp/impl/codegen/time.h \
|
5717
5767
|
include/grpcpp/impl/codegen/sync.h \
|
5718
5768
|
include/grpc++/impl/codegen/proto_utils.h \
|
@@ -5836,579 +5886,6 @@ endif
|
|
5836
5886
|
$(OBJDIR)/$(CONFIG)/src/cpp/util/core_stats.o: $(GENDIR)/src/proto/grpc/core/stats.pb.cc $(GENDIR)/src/proto/grpc/core/stats.grpc.pb.cc
|
5837
5887
|
|
5838
5888
|
|
5839
|
-
LIBGRPC++_CRONET_SRC = \
|
5840
|
-
src/cpp/client/cronet_credentials.cc \
|
5841
|
-
src/cpp/client/insecure_credentials.cc \
|
5842
|
-
src/cpp/common/insecure_create_auth_context.cc \
|
5843
|
-
src/cpp/server/insecure_server_credentials.cc \
|
5844
|
-
src/cpp/client/channel_cc.cc \
|
5845
|
-
src/cpp/client/client_context.cc \
|
5846
|
-
src/cpp/client/client_interceptor.cc \
|
5847
|
-
src/cpp/client/create_channel.cc \
|
5848
|
-
src/cpp/client/create_channel_internal.cc \
|
5849
|
-
src/cpp/client/create_channel_posix.cc \
|
5850
|
-
src/cpp/client/credentials_cc.cc \
|
5851
|
-
src/cpp/client/generic_stub.cc \
|
5852
|
-
src/cpp/common/alarm.cc \
|
5853
|
-
src/cpp/common/channel_arguments.cc \
|
5854
|
-
src/cpp/common/channel_filter.cc \
|
5855
|
-
src/cpp/common/completion_queue_cc.cc \
|
5856
|
-
src/cpp/common/core_codegen.cc \
|
5857
|
-
src/cpp/common/resource_quota_cc.cc \
|
5858
|
-
src/cpp/common/rpc_method.cc \
|
5859
|
-
src/cpp/common/validate_service_config.cc \
|
5860
|
-
src/cpp/common/version_cc.cc \
|
5861
|
-
src/cpp/server/async_generic_service.cc \
|
5862
|
-
src/cpp/server/channel_argument_option.cc \
|
5863
|
-
src/cpp/server/create_default_thread_pool.cc \
|
5864
|
-
src/cpp/server/dynamic_thread_pool.cc \
|
5865
|
-
src/cpp/server/external_connection_acceptor_impl.cc \
|
5866
|
-
src/cpp/server/health/default_health_check_service.cc \
|
5867
|
-
src/cpp/server/health/health_check_service.cc \
|
5868
|
-
src/cpp/server/health/health_check_service_server_builder_option.cc \
|
5869
|
-
src/cpp/server/server_builder.cc \
|
5870
|
-
src/cpp/server/server_cc.cc \
|
5871
|
-
src/cpp/server/server_context.cc \
|
5872
|
-
src/cpp/server/server_credentials.cc \
|
5873
|
-
src/cpp/server/server_posix.cc \
|
5874
|
-
src/cpp/thread_manager/thread_manager.cc \
|
5875
|
-
src/cpp/util/byte_buffer_cc.cc \
|
5876
|
-
src/cpp/util/status.cc \
|
5877
|
-
src/cpp/util/string_ref.cc \
|
5878
|
-
src/cpp/util/time_cc.cc \
|
5879
|
-
src/core/ext/filters/client_channel/health/health.pb.c \
|
5880
|
-
third_party/nanopb/pb_common.c \
|
5881
|
-
third_party/nanopb/pb_decode.c \
|
5882
|
-
third_party/nanopb/pb_encode.c \
|
5883
|
-
src/cpp/codegen/codegen_init.cc \
|
5884
|
-
src/core/ext/transport/chttp2/client/insecure/channel_create.cc \
|
5885
|
-
src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc \
|
5886
|
-
src/core/ext/transport/chttp2/client/authority.cc \
|
5887
|
-
src/core/ext/transport/chttp2/client/chttp2_connector.cc \
|
5888
|
-
src/core/ext/transport/chttp2/transport/bin_decoder.cc \
|
5889
|
-
src/core/ext/transport/chttp2/transport/bin_encoder.cc \
|
5890
|
-
src/core/ext/transport/chttp2/transport/chttp2_plugin.cc \
|
5891
|
-
src/core/ext/transport/chttp2/transport/chttp2_transport.cc \
|
5892
|
-
src/core/ext/transport/chttp2/transport/context_list.cc \
|
5893
|
-
src/core/ext/transport/chttp2/transport/flow_control.cc \
|
5894
|
-
src/core/ext/transport/chttp2/transport/frame_data.cc \
|
5895
|
-
src/core/ext/transport/chttp2/transport/frame_goaway.cc \
|
5896
|
-
src/core/ext/transport/chttp2/transport/frame_ping.cc \
|
5897
|
-
src/core/ext/transport/chttp2/transport/frame_rst_stream.cc \
|
5898
|
-
src/core/ext/transport/chttp2/transport/frame_settings.cc \
|
5899
|
-
src/core/ext/transport/chttp2/transport/frame_window_update.cc \
|
5900
|
-
src/core/ext/transport/chttp2/transport/hpack_encoder.cc \
|
5901
|
-
src/core/ext/transport/chttp2/transport/hpack_parser.cc \
|
5902
|
-
src/core/ext/transport/chttp2/transport/hpack_table.cc \
|
5903
|
-
src/core/ext/transport/chttp2/transport/http2_settings.cc \
|
5904
|
-
src/core/ext/transport/chttp2/transport/huffsyms.cc \
|
5905
|
-
src/core/ext/transport/chttp2/transport/incoming_metadata.cc \
|
5906
|
-
src/core/ext/transport/chttp2/transport/parsing.cc \
|
5907
|
-
src/core/ext/transport/chttp2/transport/stream_lists.cc \
|
5908
|
-
src/core/ext/transport/chttp2/transport/stream_map.cc \
|
5909
|
-
src/core/ext/transport/chttp2/transport/varint.cc \
|
5910
|
-
src/core/ext/transport/chttp2/transport/writing.cc \
|
5911
|
-
src/core/lib/avl/avl.cc \
|
5912
|
-
src/core/lib/backoff/backoff.cc \
|
5913
|
-
src/core/lib/channel/channel_args.cc \
|
5914
|
-
src/core/lib/channel/channel_stack.cc \
|
5915
|
-
src/core/lib/channel/channel_stack_builder.cc \
|
5916
|
-
src/core/lib/channel/channel_trace.cc \
|
5917
|
-
src/core/lib/channel/channelz.cc \
|
5918
|
-
src/core/lib/channel/channelz_registry.cc \
|
5919
|
-
src/core/lib/channel/connected_channel.cc \
|
5920
|
-
src/core/lib/channel/handshaker.cc \
|
5921
|
-
src/core/lib/channel/handshaker_registry.cc \
|
5922
|
-
src/core/lib/channel/status_util.cc \
|
5923
|
-
src/core/lib/compression/compression.cc \
|
5924
|
-
src/core/lib/compression/compression_args.cc \
|
5925
|
-
src/core/lib/compression/compression_internal.cc \
|
5926
|
-
src/core/lib/compression/message_compress.cc \
|
5927
|
-
src/core/lib/compression/stream_compression.cc \
|
5928
|
-
src/core/lib/compression/stream_compression_gzip.cc \
|
5929
|
-
src/core/lib/compression/stream_compression_identity.cc \
|
5930
|
-
src/core/lib/debug/stats.cc \
|
5931
|
-
src/core/lib/debug/stats_data.cc \
|
5932
|
-
src/core/lib/http/format_request.cc \
|
5933
|
-
src/core/lib/http/httpcli.cc \
|
5934
|
-
src/core/lib/http/parser.cc \
|
5935
|
-
src/core/lib/iomgr/buffer_list.cc \
|
5936
|
-
src/core/lib/iomgr/call_combiner.cc \
|
5937
|
-
src/core/lib/iomgr/cfstream_handle.cc \
|
5938
|
-
src/core/lib/iomgr/combiner.cc \
|
5939
|
-
src/core/lib/iomgr/endpoint.cc \
|
5940
|
-
src/core/lib/iomgr/endpoint_cfstream.cc \
|
5941
|
-
src/core/lib/iomgr/endpoint_pair_posix.cc \
|
5942
|
-
src/core/lib/iomgr/endpoint_pair_uv.cc \
|
5943
|
-
src/core/lib/iomgr/endpoint_pair_windows.cc \
|
5944
|
-
src/core/lib/iomgr/error.cc \
|
5945
|
-
src/core/lib/iomgr/error_cfstream.cc \
|
5946
|
-
src/core/lib/iomgr/ev_epoll1_linux.cc \
|
5947
|
-
src/core/lib/iomgr/ev_epollex_linux.cc \
|
5948
|
-
src/core/lib/iomgr/ev_poll_posix.cc \
|
5949
|
-
src/core/lib/iomgr/ev_posix.cc \
|
5950
|
-
src/core/lib/iomgr/ev_windows.cc \
|
5951
|
-
src/core/lib/iomgr/exec_ctx.cc \
|
5952
|
-
src/core/lib/iomgr/executor.cc \
|
5953
|
-
src/core/lib/iomgr/fork_posix.cc \
|
5954
|
-
src/core/lib/iomgr/fork_windows.cc \
|
5955
|
-
src/core/lib/iomgr/gethostname_fallback.cc \
|
5956
|
-
src/core/lib/iomgr/gethostname_host_name_max.cc \
|
5957
|
-
src/core/lib/iomgr/gethostname_sysconf.cc \
|
5958
|
-
src/core/lib/iomgr/grpc_if_nametoindex_posix.cc \
|
5959
|
-
src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc \
|
5960
|
-
src/core/lib/iomgr/internal_errqueue.cc \
|
5961
|
-
src/core/lib/iomgr/iocp_windows.cc \
|
5962
|
-
src/core/lib/iomgr/iomgr.cc \
|
5963
|
-
src/core/lib/iomgr/iomgr_custom.cc \
|
5964
|
-
src/core/lib/iomgr/iomgr_internal.cc \
|
5965
|
-
src/core/lib/iomgr/iomgr_posix.cc \
|
5966
|
-
src/core/lib/iomgr/iomgr_posix_cfstream.cc \
|
5967
|
-
src/core/lib/iomgr/iomgr_uv.cc \
|
5968
|
-
src/core/lib/iomgr/iomgr_windows.cc \
|
5969
|
-
src/core/lib/iomgr/is_epollexclusive_available.cc \
|
5970
|
-
src/core/lib/iomgr/load_file.cc \
|
5971
|
-
src/core/lib/iomgr/lockfree_event.cc \
|
5972
|
-
src/core/lib/iomgr/polling_entity.cc \
|
5973
|
-
src/core/lib/iomgr/pollset.cc \
|
5974
|
-
src/core/lib/iomgr/pollset_custom.cc \
|
5975
|
-
src/core/lib/iomgr/pollset_set.cc \
|
5976
|
-
src/core/lib/iomgr/pollset_set_custom.cc \
|
5977
|
-
src/core/lib/iomgr/pollset_set_windows.cc \
|
5978
|
-
src/core/lib/iomgr/pollset_uv.cc \
|
5979
|
-
src/core/lib/iomgr/pollset_windows.cc \
|
5980
|
-
src/core/lib/iomgr/resolve_address.cc \
|
5981
|
-
src/core/lib/iomgr/resolve_address_custom.cc \
|
5982
|
-
src/core/lib/iomgr/resolve_address_posix.cc \
|
5983
|
-
src/core/lib/iomgr/resolve_address_windows.cc \
|
5984
|
-
src/core/lib/iomgr/resource_quota.cc \
|
5985
|
-
src/core/lib/iomgr/sockaddr_utils.cc \
|
5986
|
-
src/core/lib/iomgr/socket_factory_posix.cc \
|
5987
|
-
src/core/lib/iomgr/socket_mutator.cc \
|
5988
|
-
src/core/lib/iomgr/socket_utils_common_posix.cc \
|
5989
|
-
src/core/lib/iomgr/socket_utils_linux.cc \
|
5990
|
-
src/core/lib/iomgr/socket_utils_posix.cc \
|
5991
|
-
src/core/lib/iomgr/socket_utils_uv.cc \
|
5992
|
-
src/core/lib/iomgr/socket_utils_windows.cc \
|
5993
|
-
src/core/lib/iomgr/socket_windows.cc \
|
5994
|
-
src/core/lib/iomgr/tcp_client.cc \
|
5995
|
-
src/core/lib/iomgr/tcp_client_cfstream.cc \
|
5996
|
-
src/core/lib/iomgr/tcp_client_custom.cc \
|
5997
|
-
src/core/lib/iomgr/tcp_client_posix.cc \
|
5998
|
-
src/core/lib/iomgr/tcp_client_windows.cc \
|
5999
|
-
src/core/lib/iomgr/tcp_custom.cc \
|
6000
|
-
src/core/lib/iomgr/tcp_posix.cc \
|
6001
|
-
src/core/lib/iomgr/tcp_server.cc \
|
6002
|
-
src/core/lib/iomgr/tcp_server_custom.cc \
|
6003
|
-
src/core/lib/iomgr/tcp_server_posix.cc \
|
6004
|
-
src/core/lib/iomgr/tcp_server_utils_posix_common.cc \
|
6005
|
-
src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc \
|
6006
|
-
src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc \
|
6007
|
-
src/core/lib/iomgr/tcp_server_windows.cc \
|
6008
|
-
src/core/lib/iomgr/tcp_uv.cc \
|
6009
|
-
src/core/lib/iomgr/tcp_windows.cc \
|
6010
|
-
src/core/lib/iomgr/time_averaged_stats.cc \
|
6011
|
-
src/core/lib/iomgr/timer.cc \
|
6012
|
-
src/core/lib/iomgr/timer_custom.cc \
|
6013
|
-
src/core/lib/iomgr/timer_generic.cc \
|
6014
|
-
src/core/lib/iomgr/timer_heap.cc \
|
6015
|
-
src/core/lib/iomgr/timer_manager.cc \
|
6016
|
-
src/core/lib/iomgr/timer_uv.cc \
|
6017
|
-
src/core/lib/iomgr/udp_server.cc \
|
6018
|
-
src/core/lib/iomgr/unix_sockets_posix.cc \
|
6019
|
-
src/core/lib/iomgr/unix_sockets_posix_noop.cc \
|
6020
|
-
src/core/lib/iomgr/wakeup_fd_eventfd.cc \
|
6021
|
-
src/core/lib/iomgr/wakeup_fd_nospecial.cc \
|
6022
|
-
src/core/lib/iomgr/wakeup_fd_pipe.cc \
|
6023
|
-
src/core/lib/iomgr/wakeup_fd_posix.cc \
|
6024
|
-
src/core/lib/json/json.cc \
|
6025
|
-
src/core/lib/json/json_reader.cc \
|
6026
|
-
src/core/lib/json/json_string.cc \
|
6027
|
-
src/core/lib/json/json_writer.cc \
|
6028
|
-
src/core/lib/slice/b64.cc \
|
6029
|
-
src/core/lib/slice/percent_encoding.cc \
|
6030
|
-
src/core/lib/slice/slice.cc \
|
6031
|
-
src/core/lib/slice/slice_buffer.cc \
|
6032
|
-
src/core/lib/slice/slice_intern.cc \
|
6033
|
-
src/core/lib/slice/slice_string_helpers.cc \
|
6034
|
-
src/core/lib/surface/api_trace.cc \
|
6035
|
-
src/core/lib/surface/byte_buffer.cc \
|
6036
|
-
src/core/lib/surface/byte_buffer_reader.cc \
|
6037
|
-
src/core/lib/surface/call.cc \
|
6038
|
-
src/core/lib/surface/call_details.cc \
|
6039
|
-
src/core/lib/surface/call_log_batch.cc \
|
6040
|
-
src/core/lib/surface/channel.cc \
|
6041
|
-
src/core/lib/surface/channel_init.cc \
|
6042
|
-
src/core/lib/surface/channel_ping.cc \
|
6043
|
-
src/core/lib/surface/channel_stack_type.cc \
|
6044
|
-
src/core/lib/surface/completion_queue.cc \
|
6045
|
-
src/core/lib/surface/completion_queue_factory.cc \
|
6046
|
-
src/core/lib/surface/event_string.cc \
|
6047
|
-
src/core/lib/surface/lame_client.cc \
|
6048
|
-
src/core/lib/surface/metadata_array.cc \
|
6049
|
-
src/core/lib/surface/server.cc \
|
6050
|
-
src/core/lib/surface/validate_metadata.cc \
|
6051
|
-
src/core/lib/surface/version.cc \
|
6052
|
-
src/core/lib/transport/bdp_estimator.cc \
|
6053
|
-
src/core/lib/transport/byte_stream.cc \
|
6054
|
-
src/core/lib/transport/connectivity_state.cc \
|
6055
|
-
src/core/lib/transport/error_utils.cc \
|
6056
|
-
src/core/lib/transport/metadata.cc \
|
6057
|
-
src/core/lib/transport/metadata_batch.cc \
|
6058
|
-
src/core/lib/transport/pid_controller.cc \
|
6059
|
-
src/core/lib/transport/static_metadata.cc \
|
6060
|
-
src/core/lib/transport/status_conversion.cc \
|
6061
|
-
src/core/lib/transport/status_metadata.cc \
|
6062
|
-
src/core/lib/transport/timeout_encoding.cc \
|
6063
|
-
src/core/lib/transport/transport.cc \
|
6064
|
-
src/core/lib/transport/transport_op_string.cc \
|
6065
|
-
src/core/lib/uri/uri_parser.cc \
|
6066
|
-
src/core/lib/debug/trace.cc \
|
6067
|
-
src/core/ext/transport/chttp2/alpn/alpn.cc \
|
6068
|
-
src/core/ext/filters/http/client/http_client_filter.cc \
|
6069
|
-
src/core/ext/filters/http/http_filters_plugin.cc \
|
6070
|
-
src/core/ext/filters/http/message_compress/message_compress_filter.cc \
|
6071
|
-
src/core/ext/filters/http/server/http_server_filter.cc \
|
6072
|
-
src/core/ext/filters/client_channel/backup_poller.cc \
|
6073
|
-
src/core/ext/filters/client_channel/channel_connectivity.cc \
|
6074
|
-
src/core/ext/filters/client_channel/client_channel.cc \
|
6075
|
-
src/core/ext/filters/client_channel/client_channel_channelz.cc \
|
6076
|
-
src/core/ext/filters/client_channel/client_channel_factory.cc \
|
6077
|
-
src/core/ext/filters/client_channel/client_channel_plugin.cc \
|
6078
|
-
src/core/ext/filters/client_channel/connector.cc \
|
6079
|
-
src/core/ext/filters/client_channel/global_subchannel_pool.cc \
|
6080
|
-
src/core/ext/filters/client_channel/health/health_check_client.cc \
|
6081
|
-
src/core/ext/filters/client_channel/http_connect_handshaker.cc \
|
6082
|
-
src/core/ext/filters/client_channel/http_proxy.cc \
|
6083
|
-
src/core/ext/filters/client_channel/lb_policy.cc \
|
6084
|
-
src/core/ext/filters/client_channel/lb_policy_registry.cc \
|
6085
|
-
src/core/ext/filters/client_channel/local_subchannel_pool.cc \
|
6086
|
-
src/core/ext/filters/client_channel/parse_address.cc \
|
6087
|
-
src/core/ext/filters/client_channel/proxy_mapper.cc \
|
6088
|
-
src/core/ext/filters/client_channel/proxy_mapper_registry.cc \
|
6089
|
-
src/core/ext/filters/client_channel/resolver.cc \
|
6090
|
-
src/core/ext/filters/client_channel/resolver_registry.cc \
|
6091
|
-
src/core/ext/filters/client_channel/resolver_result_parsing.cc \
|
6092
|
-
src/core/ext/filters/client_channel/resolving_lb_policy.cc \
|
6093
|
-
src/core/ext/filters/client_channel/retry_throttle.cc \
|
6094
|
-
src/core/ext/filters/client_channel/server_address.cc \
|
6095
|
-
src/core/ext/filters/client_channel/service_config.cc \
|
6096
|
-
src/core/ext/filters/client_channel/subchannel.cc \
|
6097
|
-
src/core/ext/filters/client_channel/subchannel_pool_interface.cc \
|
6098
|
-
src/core/ext/filters/deadline/deadline_filter.cc \
|
6099
|
-
src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc \
|
6100
|
-
src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc \
|
6101
|
-
src/core/ext/transport/chttp2/server/chttp2_server.cc \
|
6102
|
-
src/core/ext/filters/census/grpc_context.cc \
|
6103
|
-
|
6104
|
-
PUBLIC_HEADERS_CXX += \
|
6105
|
-
include/grpc++/alarm.h \
|
6106
|
-
include/grpc++/channel.h \
|
6107
|
-
include/grpc++/client_context.h \
|
6108
|
-
include/grpc++/completion_queue.h \
|
6109
|
-
include/grpc++/create_channel.h \
|
6110
|
-
include/grpc++/create_channel_posix.h \
|
6111
|
-
include/grpc++/ext/health_check_service_server_builder_option.h \
|
6112
|
-
include/grpc++/generic/async_generic_service.h \
|
6113
|
-
include/grpc++/generic/generic_stub.h \
|
6114
|
-
include/grpc++/grpc++.h \
|
6115
|
-
include/grpc++/health_check_service_interface.h \
|
6116
|
-
include/grpc++/impl/call.h \
|
6117
|
-
include/grpc++/impl/channel_argument_option.h \
|
6118
|
-
include/grpc++/impl/client_unary_call.h \
|
6119
|
-
include/grpc++/impl/codegen/core_codegen.h \
|
6120
|
-
include/grpc++/impl/grpc_library.h \
|
6121
|
-
include/grpc++/impl/method_handler_impl.h \
|
6122
|
-
include/grpc++/impl/rpc_method.h \
|
6123
|
-
include/grpc++/impl/rpc_service_method.h \
|
6124
|
-
include/grpc++/impl/serialization_traits.h \
|
6125
|
-
include/grpc++/impl/server_builder_option.h \
|
6126
|
-
include/grpc++/impl/server_builder_plugin.h \
|
6127
|
-
include/grpc++/impl/server_initializer.h \
|
6128
|
-
include/grpc++/impl/service_type.h \
|
6129
|
-
include/grpc++/resource_quota.h \
|
6130
|
-
include/grpc++/security/auth_context.h \
|
6131
|
-
include/grpc++/security/auth_metadata_processor.h \
|
6132
|
-
include/grpc++/security/credentials.h \
|
6133
|
-
include/grpc++/security/server_credentials.h \
|
6134
|
-
include/grpc++/server.h \
|
6135
|
-
include/grpc++/server_builder.h \
|
6136
|
-
include/grpc++/server_context.h \
|
6137
|
-
include/grpc++/server_posix.h \
|
6138
|
-
include/grpc++/support/async_stream.h \
|
6139
|
-
include/grpc++/support/async_unary_call.h \
|
6140
|
-
include/grpc++/support/byte_buffer.h \
|
6141
|
-
include/grpc++/support/channel_arguments.h \
|
6142
|
-
include/grpc++/support/config.h \
|
6143
|
-
include/grpc++/support/slice.h \
|
6144
|
-
include/grpc++/support/status.h \
|
6145
|
-
include/grpc++/support/status_code_enum.h \
|
6146
|
-
include/grpc++/support/string_ref.h \
|
6147
|
-
include/grpc++/support/stub_options.h \
|
6148
|
-
include/grpc++/support/sync_stream.h \
|
6149
|
-
include/grpc++/support/time.h \
|
6150
|
-
include/grpcpp/alarm.h \
|
6151
|
-
include/grpcpp/alarm_impl.h \
|
6152
|
-
include/grpcpp/channel.h \
|
6153
|
-
include/grpcpp/channel_impl.h \
|
6154
|
-
include/grpcpp/client_context.h \
|
6155
|
-
include/grpcpp/completion_queue.h \
|
6156
|
-
include/grpcpp/create_channel.h \
|
6157
|
-
include/grpcpp/create_channel_impl.h \
|
6158
|
-
include/grpcpp/create_channel_posix.h \
|
6159
|
-
include/grpcpp/create_channel_posix_impl.h \
|
6160
|
-
include/grpcpp/ext/health_check_service_server_builder_option.h \
|
6161
|
-
include/grpcpp/generic/async_generic_service.h \
|
6162
|
-
include/grpcpp/generic/generic_stub.h \
|
6163
|
-
include/grpcpp/generic/generic_stub_impl.h \
|
6164
|
-
include/grpcpp/grpcpp.h \
|
6165
|
-
include/grpcpp/health_check_service_interface.h \
|
6166
|
-
include/grpcpp/health_check_service_interface_impl.h \
|
6167
|
-
include/grpcpp/impl/call.h \
|
6168
|
-
include/grpcpp/impl/channel_argument_option.h \
|
6169
|
-
include/grpcpp/impl/client_unary_call.h \
|
6170
|
-
include/grpcpp/impl/codegen/core_codegen.h \
|
6171
|
-
include/grpcpp/impl/grpc_library.h \
|
6172
|
-
include/grpcpp/impl/method_handler_impl.h \
|
6173
|
-
include/grpcpp/impl/rpc_method.h \
|
6174
|
-
include/grpcpp/impl/rpc_service_method.h \
|
6175
|
-
include/grpcpp/impl/serialization_traits.h \
|
6176
|
-
include/grpcpp/impl/server_builder_option.h \
|
6177
|
-
include/grpcpp/impl/server_builder_option_impl.h \
|
6178
|
-
include/grpcpp/impl/server_builder_plugin.h \
|
6179
|
-
include/grpcpp/impl/server_initializer.h \
|
6180
|
-
include/grpcpp/impl/server_initializer_impl.h \
|
6181
|
-
include/grpcpp/impl/service_type.h \
|
6182
|
-
include/grpcpp/resource_quota.h \
|
6183
|
-
include/grpcpp/resource_quota_impl.h \
|
6184
|
-
include/grpcpp/security/auth_context.h \
|
6185
|
-
include/grpcpp/security/auth_metadata_processor.h \
|
6186
|
-
include/grpcpp/security/auth_metadata_processor_impl.h \
|
6187
|
-
include/grpcpp/security/credentials.h \
|
6188
|
-
include/grpcpp/security/credentials_impl.h \
|
6189
|
-
include/grpcpp/security/server_credentials.h \
|
6190
|
-
include/grpcpp/security/server_credentials_impl.h \
|
6191
|
-
include/grpcpp/server.h \
|
6192
|
-
include/grpcpp/server_builder.h \
|
6193
|
-
include/grpcpp/server_builder_impl.h \
|
6194
|
-
include/grpcpp/server_context.h \
|
6195
|
-
include/grpcpp/server_impl.h \
|
6196
|
-
include/grpcpp/server_posix.h \
|
6197
|
-
include/grpcpp/server_posix_impl.h \
|
6198
|
-
include/grpcpp/support/async_stream.h \
|
6199
|
-
include/grpcpp/support/async_unary_call.h \
|
6200
|
-
include/grpcpp/support/byte_buffer.h \
|
6201
|
-
include/grpcpp/support/channel_arguments.h \
|
6202
|
-
include/grpcpp/support/channel_arguments_impl.h \
|
6203
|
-
include/grpcpp/support/client_callback.h \
|
6204
|
-
include/grpcpp/support/client_interceptor.h \
|
6205
|
-
include/grpcpp/support/config.h \
|
6206
|
-
include/grpcpp/support/interceptor.h \
|
6207
|
-
include/grpcpp/support/message_allocator.h \
|
6208
|
-
include/grpcpp/support/proto_buffer_reader.h \
|
6209
|
-
include/grpcpp/support/proto_buffer_writer.h \
|
6210
|
-
include/grpcpp/support/server_callback.h \
|
6211
|
-
include/grpcpp/support/server_interceptor.h \
|
6212
|
-
include/grpcpp/support/slice.h \
|
6213
|
-
include/grpcpp/support/status.h \
|
6214
|
-
include/grpcpp/support/status_code_enum.h \
|
6215
|
-
include/grpcpp/support/string_ref.h \
|
6216
|
-
include/grpcpp/support/stub_options.h \
|
6217
|
-
include/grpcpp/support/sync_stream.h \
|
6218
|
-
include/grpcpp/support/time.h \
|
6219
|
-
include/grpcpp/support/validate_service_config.h \
|
6220
|
-
include/grpc/support/alloc.h \
|
6221
|
-
include/grpc/support/atm.h \
|
6222
|
-
include/grpc/support/atm_gcc_atomic.h \
|
6223
|
-
include/grpc/support/atm_gcc_sync.h \
|
6224
|
-
include/grpc/support/atm_windows.h \
|
6225
|
-
include/grpc/support/cpu.h \
|
6226
|
-
include/grpc/support/log.h \
|
6227
|
-
include/grpc/support/log_windows.h \
|
6228
|
-
include/grpc/support/port_platform.h \
|
6229
|
-
include/grpc/support/string_util.h \
|
6230
|
-
include/grpc/support/sync.h \
|
6231
|
-
include/grpc/support/sync_custom.h \
|
6232
|
-
include/grpc/support/sync_generic.h \
|
6233
|
-
include/grpc/support/sync_posix.h \
|
6234
|
-
include/grpc/support/sync_windows.h \
|
6235
|
-
include/grpc/support/thd_id.h \
|
6236
|
-
include/grpc/support/time.h \
|
6237
|
-
include/grpc/impl/codegen/atm.h \
|
6238
|
-
include/grpc/impl/codegen/atm_gcc_atomic.h \
|
6239
|
-
include/grpc/impl/codegen/atm_gcc_sync.h \
|
6240
|
-
include/grpc/impl/codegen/atm_windows.h \
|
6241
|
-
include/grpc/impl/codegen/fork.h \
|
6242
|
-
include/grpc/impl/codegen/gpr_slice.h \
|
6243
|
-
include/grpc/impl/codegen/gpr_types.h \
|
6244
|
-
include/grpc/impl/codegen/log.h \
|
6245
|
-
include/grpc/impl/codegen/port_platform.h \
|
6246
|
-
include/grpc/impl/codegen/sync.h \
|
6247
|
-
include/grpc/impl/codegen/sync_custom.h \
|
6248
|
-
include/grpc/impl/codegen/sync_generic.h \
|
6249
|
-
include/grpc/impl/codegen/sync_posix.h \
|
6250
|
-
include/grpc/impl/codegen/sync_windows.h \
|
6251
|
-
include/grpc/byte_buffer.h \
|
6252
|
-
include/grpc/byte_buffer_reader.h \
|
6253
|
-
include/grpc/compression.h \
|
6254
|
-
include/grpc/fork.h \
|
6255
|
-
include/grpc/grpc.h \
|
6256
|
-
include/grpc/grpc_posix.h \
|
6257
|
-
include/grpc/grpc_security_constants.h \
|
6258
|
-
include/grpc/load_reporting.h \
|
6259
|
-
include/grpc/slice.h \
|
6260
|
-
include/grpc/slice_buffer.h \
|
6261
|
-
include/grpc/status.h \
|
6262
|
-
include/grpc/support/workaround_list.h \
|
6263
|
-
include/grpc/impl/codegen/byte_buffer.h \
|
6264
|
-
include/grpc/impl/codegen/byte_buffer_reader.h \
|
6265
|
-
include/grpc/impl/codegen/compression_types.h \
|
6266
|
-
include/grpc/impl/codegen/connectivity_state.h \
|
6267
|
-
include/grpc/impl/codegen/grpc_types.h \
|
6268
|
-
include/grpc/impl/codegen/propagation_bits.h \
|
6269
|
-
include/grpc/impl/codegen/slice.h \
|
6270
|
-
include/grpc/impl/codegen/status.h \
|
6271
|
-
include/grpc++/impl/codegen/async_stream.h \
|
6272
|
-
include/grpc++/impl/codegen/async_unary_call.h \
|
6273
|
-
include/grpc++/impl/codegen/byte_buffer.h \
|
6274
|
-
include/grpc++/impl/codegen/call.h \
|
6275
|
-
include/grpc++/impl/codegen/call_hook.h \
|
6276
|
-
include/grpc++/impl/codegen/channel_interface.h \
|
6277
|
-
include/grpc++/impl/codegen/client_context.h \
|
6278
|
-
include/grpc++/impl/codegen/client_unary_call.h \
|
6279
|
-
include/grpc++/impl/codegen/completion_queue.h \
|
6280
|
-
include/grpc++/impl/codegen/completion_queue_tag.h \
|
6281
|
-
include/grpc++/impl/codegen/config.h \
|
6282
|
-
include/grpc++/impl/codegen/core_codegen_interface.h \
|
6283
|
-
include/grpc++/impl/codegen/create_auth_context.h \
|
6284
|
-
include/grpc++/impl/codegen/grpc_library.h \
|
6285
|
-
include/grpc++/impl/codegen/metadata_map.h \
|
6286
|
-
include/grpc++/impl/codegen/method_handler_impl.h \
|
6287
|
-
include/grpc++/impl/codegen/rpc_method.h \
|
6288
|
-
include/grpc++/impl/codegen/rpc_service_method.h \
|
6289
|
-
include/grpc++/impl/codegen/security/auth_context.h \
|
6290
|
-
include/grpc++/impl/codegen/serialization_traits.h \
|
6291
|
-
include/grpc++/impl/codegen/server_context.h \
|
6292
|
-
include/grpc++/impl/codegen/server_interface.h \
|
6293
|
-
include/grpc++/impl/codegen/service_type.h \
|
6294
|
-
include/grpc++/impl/codegen/slice.h \
|
6295
|
-
include/grpc++/impl/codegen/status.h \
|
6296
|
-
include/grpc++/impl/codegen/status_code_enum.h \
|
6297
|
-
include/grpc++/impl/codegen/string_ref.h \
|
6298
|
-
include/grpc++/impl/codegen/stub_options.h \
|
6299
|
-
include/grpc++/impl/codegen/sync_stream.h \
|
6300
|
-
include/grpc++/impl/codegen/time.h \
|
6301
|
-
include/grpcpp/impl/codegen/async_generic_service.h \
|
6302
|
-
include/grpcpp/impl/codegen/async_stream.h \
|
6303
|
-
include/grpcpp/impl/codegen/async_unary_call.h \
|
6304
|
-
include/grpcpp/impl/codegen/byte_buffer.h \
|
6305
|
-
include/grpcpp/impl/codegen/call.h \
|
6306
|
-
include/grpcpp/impl/codegen/call_hook.h \
|
6307
|
-
include/grpcpp/impl/codegen/call_op_set.h \
|
6308
|
-
include/grpcpp/impl/codegen/call_op_set_interface.h \
|
6309
|
-
include/grpcpp/impl/codegen/callback_common.h \
|
6310
|
-
include/grpcpp/impl/codegen/channel_interface.h \
|
6311
|
-
include/grpcpp/impl/codegen/client_callback.h \
|
6312
|
-
include/grpcpp/impl/codegen/client_context.h \
|
6313
|
-
include/grpcpp/impl/codegen/client_context_impl.h \
|
6314
|
-
include/grpcpp/impl/codegen/client_interceptor.h \
|
6315
|
-
include/grpcpp/impl/codegen/client_unary_call.h \
|
6316
|
-
include/grpcpp/impl/codegen/completion_queue.h \
|
6317
|
-
include/grpcpp/impl/codegen/completion_queue_impl.h \
|
6318
|
-
include/grpcpp/impl/codegen/completion_queue_tag.h \
|
6319
|
-
include/grpcpp/impl/codegen/config.h \
|
6320
|
-
include/grpcpp/impl/codegen/core_codegen_interface.h \
|
6321
|
-
include/grpcpp/impl/codegen/create_auth_context.h \
|
6322
|
-
include/grpcpp/impl/codegen/grpc_library.h \
|
6323
|
-
include/grpcpp/impl/codegen/intercepted_channel.h \
|
6324
|
-
include/grpcpp/impl/codegen/interceptor.h \
|
6325
|
-
include/grpcpp/impl/codegen/interceptor_common.h \
|
6326
|
-
include/grpcpp/impl/codegen/message_allocator.h \
|
6327
|
-
include/grpcpp/impl/codegen/metadata_map.h \
|
6328
|
-
include/grpcpp/impl/codegen/method_handler_impl.h \
|
6329
|
-
include/grpcpp/impl/codegen/rpc_method.h \
|
6330
|
-
include/grpcpp/impl/codegen/rpc_service_method.h \
|
6331
|
-
include/grpcpp/impl/codegen/security/auth_context.h \
|
6332
|
-
include/grpcpp/impl/codegen/serialization_traits.h \
|
6333
|
-
include/grpcpp/impl/codegen/server_callback.h \
|
6334
|
-
include/grpcpp/impl/codegen/server_context.h \
|
6335
|
-
include/grpcpp/impl/codegen/server_context_impl.h \
|
6336
|
-
include/grpcpp/impl/codegen/server_interceptor.h \
|
6337
|
-
include/grpcpp/impl/codegen/server_interface.h \
|
6338
|
-
include/grpcpp/impl/codegen/service_type.h \
|
6339
|
-
include/grpcpp/impl/codegen/slice.h \
|
6340
|
-
include/grpcpp/impl/codegen/status.h \
|
6341
|
-
include/grpcpp/impl/codegen/status_code_enum.h \
|
6342
|
-
include/grpcpp/impl/codegen/string_ref.h \
|
6343
|
-
include/grpcpp/impl/codegen/stub_options.h \
|
6344
|
-
include/grpcpp/impl/codegen/sync_stream.h \
|
6345
|
-
include/grpcpp/impl/codegen/time.h \
|
6346
|
-
include/grpcpp/impl/codegen/sync.h \
|
6347
|
-
include/grpc/census.h \
|
6348
|
-
|
6349
|
-
LIBGRPC++_CRONET_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBGRPC++_CRONET_SRC))))
|
6350
|
-
|
6351
|
-
|
6352
|
-
ifeq ($(NO_SECURE),true)
|
6353
|
-
|
6354
|
-
# You can't build secure libraries if you don't have OpenSSL.
|
6355
|
-
|
6356
|
-
$(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a: openssl_dep_error
|
6357
|
-
|
6358
|
-
$(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): openssl_dep_error
|
6359
|
-
|
6360
|
-
else
|
6361
|
-
|
6362
|
-
ifeq ($(NO_PROTOBUF),true)
|
6363
|
-
|
6364
|
-
# You can't build a C++ library if you don't have protobuf - a bit overreached, but still okay.
|
6365
|
-
|
6366
|
-
$(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a: protobuf_dep_error
|
6367
|
-
|
6368
|
-
$(LIBDIR)/$(CONFIG)/$(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): protobuf_dep_error
|
6369
|
-
|
6370
|
-
else
|
6371
|
-
|
6372
|
-
$(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a: $(ZLIB_DEP) $(OPENSSL_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(PROTOBUF_DEP) $(LIBGRPC++_CRONET_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
|
6373
|
-
$(E) "[AR] Creating $@"
|
6374
|
-
$(Q) mkdir -p `dirname $@`
|
6375
|
-
$(Q) rm -f $(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a
|
6376
|
-
$(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a $(LIBGRPC++_CRONET_OBJS) $(LIBGPR_OBJS) $(ZLIB_MERGE_OBJS) $(CARES_MERGE_OBJS) $(ADDRESS_SORTING_MERGE_OBJS) $(OPENSSL_MERGE_OBJS)
|
6377
|
-
ifeq ($(SYSTEM),Darwin)
|
6378
|
-
$(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libgrpc++_cronet.a
|
6379
|
-
endif
|
6380
|
-
|
6381
|
-
|
6382
|
-
|
6383
|
-
ifeq ($(SYSTEM),MINGW32)
|
6384
|
-
$(LIBDIR)/$(CONFIG)/grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_CRONET_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/gpr$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/grpc_cronet$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/grpc$(SHARED_VERSION_CORE).$(SHARED_EXT_CORE) $(OPENSSL_DEP)
|
6385
|
-
$(E) "[LD] Linking $@"
|
6386
|
-
$(Q) mkdir -p `dirname $@`
|
6387
|
-
$(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,--output-def=$(LIBDIR)/$(CONFIG)/grpc++_cronet$(SHARED_VERSION_CPP).def -Wl,--out-implib=$(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP)-dll.a -o $(LIBDIR)/$(CONFIG)/grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_CRONET_OBJS) $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgpr$(SHARED_VERSION_CORE)-dll -lgrpc_cronet$(SHARED_VERSION_CORE)-dll -lgrpc$(SHARED_VERSION_CORE)-dll
|
6388
|
-
else
|
6389
|
-
$(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP): $(LIBGRPC++_CRONET_OBJS) $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(PROTOBUF_DEP) $(LIBDIR)/$(CONFIG)/libgpr.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc_cronet.$(SHARED_EXT_CORE) $(LIBDIR)/$(CONFIG)/libgrpc.$(SHARED_EXT_CORE) $(OPENSSL_DEP)
|
6390
|
-
$(E) "[LD] Linking $@"
|
6391
|
-
$(Q) mkdir -p `dirname $@`
|
6392
|
-
ifeq ($(SYSTEM),Darwin)
|
6393
|
-
$(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_CRONET_OBJS) $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgpr -lgrpc_cronet -lgrpc
|
6394
|
-
else
|
6395
|
-
$(Q) $(LDXX) $(LDFLAGS) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc++_cronet.so.1 -o $(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBGRPC++_CRONET_OBJS) $(OPENSSL_MERGE_LIBS) $(LDLIBS_SECURE) $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) -lgpr -lgrpc_cronet -lgrpc
|
6396
|
-
$(Q) ln -sf $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP).so.1
|
6397
|
-
$(Q) ln -sf $(SHARED_PREFIX)grpc++_cronet$(SHARED_VERSION_CPP).$(SHARED_EXT_CPP) $(LIBDIR)/$(CONFIG)/libgrpc++_cronet$(SHARED_VERSION_CPP).so
|
6398
|
-
endif
|
6399
|
-
endif
|
6400
|
-
|
6401
|
-
endif
|
6402
|
-
|
6403
|
-
endif
|
6404
|
-
|
6405
|
-
ifneq ($(NO_SECURE),true)
|
6406
|
-
ifneq ($(NO_DEPS),true)
|
6407
|
-
-include $(LIBGRPC++_CRONET_OBJS:.o=.dep)
|
6408
|
-
endif
|
6409
|
-
endif
|
6410
|
-
|
6411
|
-
|
6412
5889
|
LIBGRPC++_ERROR_DETAILS_SRC = \
|
6413
5890
|
$(GENDIR)/src/proto/grpc/status/status.pb.cc $(GENDIR)/src/proto/grpc/status/status.grpc.pb.cc \
|
6414
5891
|
src/cpp/util/error_details.cc \
|
@@ -6709,7 +6186,9 @@ PUBLIC_HEADERS_CXX += \
|
|
6709
6186
|
include/grpc++/impl/codegen/time.h \
|
6710
6187
|
include/grpcpp/impl/codegen/async_generic_service.h \
|
6711
6188
|
include/grpcpp/impl/codegen/async_stream.h \
|
6189
|
+
include/grpcpp/impl/codegen/async_stream_impl.h \
|
6712
6190
|
include/grpcpp/impl/codegen/async_unary_call.h \
|
6191
|
+
include/grpcpp/impl/codegen/async_unary_call_impl.h \
|
6713
6192
|
include/grpcpp/impl/codegen/byte_buffer.h \
|
6714
6193
|
include/grpcpp/impl/codegen/call.h \
|
6715
6194
|
include/grpcpp/impl/codegen/call_hook.h \
|
@@ -6718,6 +6197,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6718
6197
|
include/grpcpp/impl/codegen/callback_common.h \
|
6719
6198
|
include/grpcpp/impl/codegen/channel_interface.h \
|
6720
6199
|
include/grpcpp/impl/codegen/client_callback.h \
|
6200
|
+
include/grpcpp/impl/codegen/client_callback_impl.h \
|
6721
6201
|
include/grpcpp/impl/codegen/client_context.h \
|
6722
6202
|
include/grpcpp/impl/codegen/client_context_impl.h \
|
6723
6203
|
include/grpcpp/impl/codegen/client_interceptor.h \
|
@@ -6740,6 +6220,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6740
6220
|
include/grpcpp/impl/codegen/security/auth_context.h \
|
6741
6221
|
include/grpcpp/impl/codegen/serialization_traits.h \
|
6742
6222
|
include/grpcpp/impl/codegen/server_callback.h \
|
6223
|
+
include/grpcpp/impl/codegen/server_callback_impl.h \
|
6743
6224
|
include/grpcpp/impl/codegen/server_context.h \
|
6744
6225
|
include/grpcpp/impl/codegen/server_context_impl.h \
|
6745
6226
|
include/grpcpp/impl/codegen/server_interceptor.h \
|
@@ -6751,6 +6232,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6751
6232
|
include/grpcpp/impl/codegen/string_ref.h \
|
6752
6233
|
include/grpcpp/impl/codegen/stub_options.h \
|
6753
6234
|
include/grpcpp/impl/codegen/sync_stream.h \
|
6235
|
+
include/grpcpp/impl/codegen/sync_stream_impl.h \
|
6754
6236
|
include/grpcpp/impl/codegen/time.h \
|
6755
6237
|
include/grpc/impl/codegen/byte_buffer.h \
|
6756
6238
|
include/grpc/impl/codegen/byte_buffer_reader.h \
|
@@ -6881,7 +6363,9 @@ PUBLIC_HEADERS_CXX += \
|
|
6881
6363
|
include/grpc++/impl/codegen/time.h \
|
6882
6364
|
include/grpcpp/impl/codegen/async_generic_service.h \
|
6883
6365
|
include/grpcpp/impl/codegen/async_stream.h \
|
6366
|
+
include/grpcpp/impl/codegen/async_stream_impl.h \
|
6884
6367
|
include/grpcpp/impl/codegen/async_unary_call.h \
|
6368
|
+
include/grpcpp/impl/codegen/async_unary_call_impl.h \
|
6885
6369
|
include/grpcpp/impl/codegen/byte_buffer.h \
|
6886
6370
|
include/grpcpp/impl/codegen/call.h \
|
6887
6371
|
include/grpcpp/impl/codegen/call_hook.h \
|
@@ -6890,6 +6374,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6890
6374
|
include/grpcpp/impl/codegen/callback_common.h \
|
6891
6375
|
include/grpcpp/impl/codegen/channel_interface.h \
|
6892
6376
|
include/grpcpp/impl/codegen/client_callback.h \
|
6377
|
+
include/grpcpp/impl/codegen/client_callback_impl.h \
|
6893
6378
|
include/grpcpp/impl/codegen/client_context.h \
|
6894
6379
|
include/grpcpp/impl/codegen/client_context_impl.h \
|
6895
6380
|
include/grpcpp/impl/codegen/client_interceptor.h \
|
@@ -6912,6 +6397,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6912
6397
|
include/grpcpp/impl/codegen/security/auth_context.h \
|
6913
6398
|
include/grpcpp/impl/codegen/serialization_traits.h \
|
6914
6399
|
include/grpcpp/impl/codegen/server_callback.h \
|
6400
|
+
include/grpcpp/impl/codegen/server_callback_impl.h \
|
6915
6401
|
include/grpcpp/impl/codegen/server_context.h \
|
6916
6402
|
include/grpcpp/impl/codegen/server_context_impl.h \
|
6917
6403
|
include/grpcpp/impl/codegen/server_interceptor.h \
|
@@ -6923,6 +6409,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6923
6409
|
include/grpcpp/impl/codegen/string_ref.h \
|
6924
6410
|
include/grpcpp/impl/codegen/stub_options.h \
|
6925
6411
|
include/grpcpp/impl/codegen/sync_stream.h \
|
6412
|
+
include/grpcpp/impl/codegen/sync_stream_impl.h \
|
6926
6413
|
include/grpcpp/impl/codegen/time.h \
|
6927
6414
|
include/grpc/impl/codegen/byte_buffer.h \
|
6928
6415
|
include/grpc/impl/codegen/byte_buffer_reader.h \
|
@@ -7101,6 +6588,7 @@ PUBLIC_HEADERS_CXX += \
|
|
7101
6588
|
include/grpcpp/channel_impl.h \
|
7102
6589
|
include/grpcpp/client_context.h \
|
7103
6590
|
include/grpcpp/completion_queue.h \
|
6591
|
+
include/grpcpp/completion_queue_impl.h \
|
7104
6592
|
include/grpcpp/create_channel.h \
|
7105
6593
|
include/grpcpp/create_channel_impl.h \
|
7106
6594
|
include/grpcpp/create_channel_posix.h \
|
@@ -7144,11 +6632,14 @@ PUBLIC_HEADERS_CXX += \
|
|
7144
6632
|
include/grpcpp/server_posix.h \
|
7145
6633
|
include/grpcpp/server_posix_impl.h \
|
7146
6634
|
include/grpcpp/support/async_stream.h \
|
6635
|
+
include/grpcpp/support/async_stream_impl.h \
|
7147
6636
|
include/grpcpp/support/async_unary_call.h \
|
6637
|
+
include/grpcpp/support/async_unary_call_impl.h \
|
7148
6638
|
include/grpcpp/support/byte_buffer.h \
|
7149
6639
|
include/grpcpp/support/channel_arguments.h \
|
7150
6640
|
include/grpcpp/support/channel_arguments_impl.h \
|
7151
6641
|
include/grpcpp/support/client_callback.h \
|
6642
|
+
include/grpcpp/support/client_callback_impl.h \
|
7152
6643
|
include/grpcpp/support/client_interceptor.h \
|
7153
6644
|
include/grpcpp/support/config.h \
|
7154
6645
|
include/grpcpp/support/interceptor.h \
|
@@ -7156,6 +6647,7 @@ PUBLIC_HEADERS_CXX += \
|
|
7156
6647
|
include/grpcpp/support/proto_buffer_reader.h \
|
7157
6648
|
include/grpcpp/support/proto_buffer_writer.h \
|
7158
6649
|
include/grpcpp/support/server_callback.h \
|
6650
|
+
include/grpcpp/support/server_callback_impl.h \
|
7159
6651
|
include/grpcpp/support/server_interceptor.h \
|
7160
6652
|
include/grpcpp/support/slice.h \
|
7161
6653
|
include/grpcpp/support/status.h \
|
@@ -7163,6 +6655,7 @@ PUBLIC_HEADERS_CXX += \
|
|
7163
6655
|
include/grpcpp/support/string_ref.h \
|
7164
6656
|
include/grpcpp/support/stub_options.h \
|
7165
6657
|
include/grpcpp/support/sync_stream.h \
|
6658
|
+
include/grpcpp/support/sync_stream_impl.h \
|
7166
6659
|
include/grpcpp/support/time.h \
|
7167
6660
|
include/grpcpp/support/validate_service_config.h \
|
7168
6661
|
include/grpc/support/alloc.h \
|
@@ -7248,7 +6741,9 @@ PUBLIC_HEADERS_CXX += \
|
|
7248
6741
|
include/grpc++/impl/codegen/time.h \
|
7249
6742
|
include/grpcpp/impl/codegen/async_generic_service.h \
|
7250
6743
|
include/grpcpp/impl/codegen/async_stream.h \
|
6744
|
+
include/grpcpp/impl/codegen/async_stream_impl.h \
|
7251
6745
|
include/grpcpp/impl/codegen/async_unary_call.h \
|
6746
|
+
include/grpcpp/impl/codegen/async_unary_call_impl.h \
|
7252
6747
|
include/grpcpp/impl/codegen/byte_buffer.h \
|
7253
6748
|
include/grpcpp/impl/codegen/call.h \
|
7254
6749
|
include/grpcpp/impl/codegen/call_hook.h \
|
@@ -7257,6 +6752,7 @@ PUBLIC_HEADERS_CXX += \
|
|
7257
6752
|
include/grpcpp/impl/codegen/callback_common.h \
|
7258
6753
|
include/grpcpp/impl/codegen/channel_interface.h \
|
7259
6754
|
include/grpcpp/impl/codegen/client_callback.h \
|
6755
|
+
include/grpcpp/impl/codegen/client_callback_impl.h \
|
7260
6756
|
include/grpcpp/impl/codegen/client_context.h \
|
7261
6757
|
include/grpcpp/impl/codegen/client_context_impl.h \
|
7262
6758
|
include/grpcpp/impl/codegen/client_interceptor.h \
|
@@ -7279,6 +6775,7 @@ PUBLIC_HEADERS_CXX += \
|
|
7279
6775
|
include/grpcpp/impl/codegen/security/auth_context.h \
|
7280
6776
|
include/grpcpp/impl/codegen/serialization_traits.h \
|
7281
6777
|
include/grpcpp/impl/codegen/server_callback.h \
|
6778
|
+
include/grpcpp/impl/codegen/server_callback_impl.h \
|
7282
6779
|
include/grpcpp/impl/codegen/server_context.h \
|
7283
6780
|
include/grpcpp/impl/codegen/server_context_impl.h \
|
7284
6781
|
include/grpcpp/impl/codegen/server_interceptor.h \
|
@@ -7290,6 +6787,7 @@ PUBLIC_HEADERS_CXX += \
|
|
7290
6787
|
include/grpcpp/impl/codegen/string_ref.h \
|
7291
6788
|
include/grpcpp/impl/codegen/stub_options.h \
|
7292
6789
|
include/grpcpp/impl/codegen/sync_stream.h \
|
6790
|
+
include/grpcpp/impl/codegen/sync_stream_impl.h \
|
7293
6791
|
include/grpcpp/impl/codegen/time.h \
|
7294
6792
|
include/grpcpp/impl/codegen/sync.h \
|
7295
6793
|
|
@@ -8004,8 +7502,8 @@ $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHA
|
|
8004
7502
|
ifeq ($(SYSTEM),Darwin)
|
8005
7503
|
$(Q) $(LD) $(LDFLAGS) $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy) -L$(LIBDIR)/$(CONFIG) -install_name $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) -dynamiclib -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(LDLIBS)
|
8006
7504
|
else
|
8007
|
-
$(Q) $(LD) $(LDFLAGS) $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_csharp_ext.so.
|
8008
|
-
$(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP).so.
|
7505
|
+
$(Q) $(LD) $(LDFLAGS) $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy) -L$(LIBDIR)/$(CONFIG) -shared -Wl,-soname,libgrpc_csharp_ext.so.2 -o $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(LIBGRPC_CSHARP_EXT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(ZLIB_MERGE_LIBS) $(CARES_MERGE_LIBS) $(ADDRESS_SORTING_MERGE_LIBS) $(LDLIBS)
|
7506
|
+
$(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP).so.2
|
8009
7507
|
$(Q) ln -sf $(SHARED_PREFIX)grpc_csharp_ext$(SHARED_VERSION_CSHARP).$(SHARED_EXT_CSHARP) $(LIBDIR)/$(CONFIG)/libgrpc_csharp_ext$(SHARED_VERSION_CSHARP).so
|
8010
7508
|
endif
|
8011
7509
|
endif
|
@@ -8397,7 +7895,7 @@ endif
|
|
8397
7895
|
|
8398
7896
|
|
8399
7897
|
LIBUPB_SRC = \
|
8400
|
-
third_party/upb/google/protobuf/descriptor.upb.c \
|
7898
|
+
third_party/upb/generated_for_cmake/google/protobuf/descriptor.upb.c \
|
8401
7899
|
third_party/upb/upb/decode.c \
|
8402
7900
|
third_party/upb/upb/def.c \
|
8403
7901
|
third_party/upb/upb/encode.c \
|
@@ -8412,7 +7910,7 @@ PUBLIC_HEADERS_C += \
|
|
8412
7910
|
|
8413
7911
|
LIBUPB_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBUPB_SRC))))
|
8414
7912
|
|
8415
|
-
$(LIBUPB_OBJS): CFLAGS += -
|
7913
|
+
$(LIBUPB_OBJS): CFLAGS += -Wno-sign-conversion -Wno-shadow -Wno-conversion -Wno-implicit-fallthrough -Wno-sign-compare -Wno-missing-field-initializers
|
8416
7914
|
|
8417
7915
|
$(LIBDIR)/$(CONFIG)/libupb.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(LIBUPB_OBJS)
|
8418
7916
|
$(E) "[AR] Creating $@"
|
@@ -9628,34 +9126,66 @@ endif
|
|
9628
9126
|
endif
|
9629
9127
|
|
9630
9128
|
|
9631
|
-
|
9129
|
+
DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_SRC = \
|
9130
|
+
test/core/client_channel/resolvers/dns_resolver_cooldown_test.cc \
|
9131
|
+
|
9132
|
+
DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_SRC))))
|
9133
|
+
ifeq ($(NO_SECURE),true)
|
9134
|
+
|
9135
|
+
# You can't build secure targets if you don't have OpenSSL.
|
9136
|
+
|
9137
|
+
$(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_ares_resolver_test: openssl_dep_error
|
9138
|
+
|
9139
|
+
else
|
9140
|
+
|
9141
|
+
|
9142
|
+
|
9143
|
+
$(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_ares_resolver_test: $(DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
9144
|
+
$(E) "[LD] Linking $@"
|
9145
|
+
$(Q) mkdir -p `dirname $@`
|
9146
|
+
$(Q) $(LD) $(LDFLAGS) $(DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_ares_resolver_test
|
9147
|
+
|
9148
|
+
endif
|
9149
|
+
|
9150
|
+
$(OBJDIR)/$(CONFIG)/test/core/client_channel/resolvers/dns_resolver_cooldown_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
9151
|
+
|
9152
|
+
deps_dns_resolver_cooldown_using_ares_resolver_test: $(DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_OBJS:.o=.dep)
|
9153
|
+
|
9154
|
+
ifneq ($(NO_SECURE),true)
|
9155
|
+
ifneq ($(NO_DEPS),true)
|
9156
|
+
-include $(DNS_RESOLVER_COOLDOWN_USING_ARES_RESOLVER_TEST_OBJS:.o=.dep)
|
9157
|
+
endif
|
9158
|
+
endif
|
9159
|
+
|
9160
|
+
|
9161
|
+
DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_SRC = \
|
9632
9162
|
test/core/client_channel/resolvers/dns_resolver_cooldown_test.cc \
|
9633
9163
|
|
9634
|
-
|
9164
|
+
DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_SRC))))
|
9635
9165
|
ifeq ($(NO_SECURE),true)
|
9636
9166
|
|
9637
9167
|
# You can't build secure targets if you don't have OpenSSL.
|
9638
9168
|
|
9639
|
-
$(BINDIR)/$(CONFIG)/
|
9169
|
+
$(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_native_resolver_test: openssl_dep_error
|
9640
9170
|
|
9641
9171
|
else
|
9642
9172
|
|
9643
9173
|
|
9644
9174
|
|
9645
|
-
$(BINDIR)/$(CONFIG)/
|
9175
|
+
$(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_native_resolver_test: $(DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
9646
9176
|
$(E) "[LD] Linking $@"
|
9647
9177
|
$(Q) mkdir -p `dirname $@`
|
9648
|
-
$(Q) $(LD) $(LDFLAGS) $(
|
9178
|
+
$(Q) $(LD) $(LDFLAGS) $(DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/dns_resolver_cooldown_using_native_resolver_test
|
9649
9179
|
|
9650
9180
|
endif
|
9651
9181
|
|
9652
9182
|
$(OBJDIR)/$(CONFIG)/test/core/client_channel/resolvers/dns_resolver_cooldown_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
9653
9183
|
|
9654
|
-
|
9184
|
+
deps_dns_resolver_cooldown_using_native_resolver_test: $(DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_OBJS:.o=.dep)
|
9655
9185
|
|
9656
9186
|
ifneq ($(NO_SECURE),true)
|
9657
9187
|
ifneq ($(NO_DEPS),true)
|
9658
|
-
-include $(
|
9188
|
+
-include $(DNS_RESOLVER_COOLDOWN_USING_NATIVE_RESOLVER_TEST_OBJS:.o=.dep)
|
9659
9189
|
endif
|
9660
9190
|
endif
|
9661
9191
|
|
@@ -10208,7 +9738,7 @@ endif
|
|
10208
9738
|
|
10209
9739
|
|
10210
9740
|
GPR_HOST_PORT_TEST_SRC = \
|
10211
|
-
test/core/
|
9741
|
+
test/core/gprpp/host_port_test.cc \
|
10212
9742
|
|
10213
9743
|
GPR_HOST_PORT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_HOST_PORT_TEST_SRC))))
|
10214
9744
|
ifeq ($(NO_SECURE),true)
|
@@ -10228,7 +9758,7 @@ $(BINDIR)/$(CONFIG)/gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS) $(LIBDIR)/$(C
|
|
10228
9758
|
|
10229
9759
|
endif
|
10230
9760
|
|
10231
|
-
$(OBJDIR)/$(CONFIG)/test/core/
|
9761
|
+
$(OBJDIR)/$(CONFIG)/test/core/gprpp/host_port_test.o: $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
|
10232
9762
|
|
10233
9763
|
deps_gpr_host_port_test: $(GPR_HOST_PORT_TEST_OBJS:.o=.dep)
|
10234
9764
|
|
@@ -10815,101 +10345,101 @@ endif
|
|
10815
10345
|
endif
|
10816
10346
|
|
10817
10347
|
|
10818
|
-
|
10819
|
-
test/core/security/
|
10820
|
-
test/core/util/cmdline.cc \
|
10348
|
+
GRPC_CONTROL_PLANE_CREDENTIALS_TEST_SRC = \
|
10349
|
+
test/core/security/control_plane_credentials_test.cc \
|
10821
10350
|
|
10822
|
-
|
10351
|
+
GRPC_CONTROL_PLANE_CREDENTIALS_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CONTROL_PLANE_CREDENTIALS_TEST_SRC))))
|
10823
10352
|
ifeq ($(NO_SECURE),true)
|
10824
10353
|
|
10825
10354
|
# You can't build secure targets if you don't have OpenSSL.
|
10826
10355
|
|
10827
|
-
$(BINDIR)/$(CONFIG)/
|
10356
|
+
$(BINDIR)/$(CONFIG)/grpc_control_plane_credentials_test: openssl_dep_error
|
10828
10357
|
|
10829
10358
|
else
|
10830
10359
|
|
10831
10360
|
|
10832
10361
|
|
10833
|
-
$(BINDIR)/$(CONFIG)/
|
10362
|
+
$(BINDIR)/$(CONFIG)/grpc_control_plane_credentials_test: $(GRPC_CONTROL_PLANE_CREDENTIALS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10834
10363
|
$(E) "[LD] Linking $@"
|
10835
10364
|
$(Q) mkdir -p `dirname $@`
|
10836
|
-
$(Q) $(LD) $(LDFLAGS) $(
|
10365
|
+
$(Q) $(LD) $(LDFLAGS) $(GRPC_CONTROL_PLANE_CREDENTIALS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/grpc_control_plane_credentials_test
|
10837
10366
|
|
10838
10367
|
endif
|
10839
10368
|
|
10840
|
-
$(OBJDIR)/$(CONFIG)/test/core/security/
|
10841
|
-
|
10842
|
-
$(OBJDIR)/$(CONFIG)/test/core/util/cmdline.o: $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10369
|
+
$(OBJDIR)/$(CONFIG)/test/core/security/control_plane_credentials_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10843
10370
|
|
10844
|
-
|
10371
|
+
deps_grpc_control_plane_credentials_test: $(GRPC_CONTROL_PLANE_CREDENTIALS_TEST_OBJS:.o=.dep)
|
10845
10372
|
|
10846
10373
|
ifneq ($(NO_SECURE),true)
|
10847
10374
|
ifneq ($(NO_DEPS),true)
|
10848
|
-
-include $(
|
10375
|
+
-include $(GRPC_CONTROL_PLANE_CREDENTIALS_TEST_OBJS:.o=.dep)
|
10849
10376
|
endif
|
10850
10377
|
endif
|
10851
10378
|
|
10852
10379
|
|
10853
|
-
|
10854
|
-
test/core/security/
|
10380
|
+
GRPC_CREATE_JWT_SRC = \
|
10381
|
+
test/core/security/create_jwt.cc \
|
10382
|
+
test/core/util/cmdline.cc \
|
10855
10383
|
|
10856
|
-
|
10384
|
+
GRPC_CREATE_JWT_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CREATE_JWT_SRC))))
|
10857
10385
|
ifeq ($(NO_SECURE),true)
|
10858
10386
|
|
10859
10387
|
# You can't build secure targets if you don't have OpenSSL.
|
10860
10388
|
|
10861
|
-
$(BINDIR)/$(CONFIG)/
|
10389
|
+
$(BINDIR)/$(CONFIG)/grpc_create_jwt: openssl_dep_error
|
10862
10390
|
|
10863
10391
|
else
|
10864
10392
|
|
10865
10393
|
|
10866
10394
|
|
10867
|
-
$(BINDIR)/$(CONFIG)/
|
10395
|
+
$(BINDIR)/$(CONFIG)/grpc_create_jwt: $(GRPC_CREATE_JWT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10868
10396
|
$(E) "[LD] Linking $@"
|
10869
10397
|
$(Q) mkdir -p `dirname $@`
|
10870
|
-
$(Q) $(LD) $(LDFLAGS) $(
|
10398
|
+
$(Q) $(LD) $(LDFLAGS) $(GRPC_CREATE_JWT_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/grpc_create_jwt
|
10871
10399
|
|
10872
10400
|
endif
|
10873
10401
|
|
10874
|
-
$(OBJDIR)/$(CONFIG)/test/core/security/
|
10402
|
+
$(OBJDIR)/$(CONFIG)/test/core/security/create_jwt.o: $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10403
|
+
|
10404
|
+
$(OBJDIR)/$(CONFIG)/test/core/util/cmdline.o: $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10875
10405
|
|
10876
|
-
|
10406
|
+
deps_grpc_create_jwt: $(GRPC_CREATE_JWT_OBJS:.o=.dep)
|
10877
10407
|
|
10878
10408
|
ifneq ($(NO_SECURE),true)
|
10879
10409
|
ifneq ($(NO_DEPS),true)
|
10880
|
-
-include $(
|
10410
|
+
-include $(GRPC_CREATE_JWT_OBJS:.o=.dep)
|
10881
10411
|
endif
|
10882
10412
|
endif
|
10883
10413
|
|
10884
10414
|
|
10885
|
-
|
10886
|
-
test/core/security/
|
10415
|
+
GRPC_CREDENTIALS_TEST_SRC = \
|
10416
|
+
test/core/security/credentials_test.cc \
|
10887
10417
|
|
10888
|
-
|
10418
|
+
GRPC_CREDENTIALS_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CREDENTIALS_TEST_SRC))))
|
10889
10419
|
ifeq ($(NO_SECURE),true)
|
10890
10420
|
|
10891
10421
|
# You can't build secure targets if you don't have OpenSSL.
|
10892
10422
|
|
10893
|
-
$(BINDIR)/$(CONFIG)/
|
10423
|
+
$(BINDIR)/$(CONFIG)/grpc_credentials_test: openssl_dep_error
|
10894
10424
|
|
10895
10425
|
else
|
10896
10426
|
|
10897
10427
|
|
10898
10428
|
|
10899
|
-
$(BINDIR)/$(CONFIG)/
|
10429
|
+
$(BINDIR)/$(CONFIG)/grpc_credentials_test: $(GRPC_CREDENTIALS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10900
10430
|
$(E) "[LD] Linking $@"
|
10901
10431
|
$(Q) mkdir -p `dirname $@`
|
10902
|
-
$(Q) $(LD) $(LDFLAGS) $(
|
10432
|
+
$(Q) $(LD) $(LDFLAGS) $(GRPC_CREDENTIALS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/grpc_credentials_test
|
10903
10433
|
|
10904
10434
|
endif
|
10905
10435
|
|
10906
|
-
$(OBJDIR)/$(CONFIG)/test/core/security/
|
10436
|
+
$(OBJDIR)/$(CONFIG)/test/core/security/credentials_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
10907
10437
|
|
10908
|
-
|
10438
|
+
deps_grpc_credentials_test: $(GRPC_CREDENTIALS_TEST_OBJS:.o=.dep)
|
10909
10439
|
|
10910
10440
|
ifneq ($(NO_SECURE),true)
|
10911
10441
|
ifneq ($(NO_DEPS),true)
|
10912
|
-
-include $(
|
10442
|
+
-include $(GRPC_CREDENTIALS_TEST_OBJS:.o=.dep)
|
10913
10443
|
endif
|
10914
10444
|
endif
|
10915
10445
|
|
@@ -12110,6 +11640,38 @@ endif
|
|
12110
11640
|
endif
|
12111
11641
|
|
12112
11642
|
|
11643
|
+
MPMCQUEUE_TEST_SRC = \
|
11644
|
+
test/core/iomgr/mpmcqueue_test.cc \
|
11645
|
+
|
11646
|
+
MPMCQUEUE_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(MPMCQUEUE_TEST_SRC))))
|
11647
|
+
ifeq ($(NO_SECURE),true)
|
11648
|
+
|
11649
|
+
# You can't build secure targets if you don't have OpenSSL.
|
11650
|
+
|
11651
|
+
$(BINDIR)/$(CONFIG)/mpmcqueue_test: openssl_dep_error
|
11652
|
+
|
11653
|
+
else
|
11654
|
+
|
11655
|
+
|
11656
|
+
|
11657
|
+
$(BINDIR)/$(CONFIG)/mpmcqueue_test: $(MPMCQUEUE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
11658
|
+
$(E) "[LD] Linking $@"
|
11659
|
+
$(Q) mkdir -p `dirname $@`
|
11660
|
+
$(Q) $(LD) $(LDFLAGS) $(MPMCQUEUE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/mpmcqueue_test
|
11661
|
+
|
11662
|
+
endif
|
11663
|
+
|
11664
|
+
$(OBJDIR)/$(CONFIG)/test/core/iomgr/mpmcqueue_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
11665
|
+
|
11666
|
+
deps_mpmcqueue_test: $(MPMCQUEUE_TEST_OBJS:.o=.dep)
|
11667
|
+
|
11668
|
+
ifneq ($(NO_SECURE),true)
|
11669
|
+
ifneq ($(NO_DEPS),true)
|
11670
|
+
-include $(MPMCQUEUE_TEST_OBJS:.o=.dep)
|
11671
|
+
endif
|
11672
|
+
endif
|
11673
|
+
|
11674
|
+
|
12113
11675
|
MULTIPLE_SERVER_QUEUES_TEST_SRC = \
|
12114
11676
|
test/core/end2end/multiple_server_queues_test.cc \
|
12115
11677
|
|
@@ -13329,6 +12891,38 @@ endif
|
|
13329
12891
|
endif
|
13330
12892
|
|
13331
12893
|
|
12894
|
+
THREADPOOL_TEST_SRC = \
|
12895
|
+
test/core/iomgr/threadpool_test.cc \
|
12896
|
+
|
12897
|
+
THREADPOOL_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(THREADPOOL_TEST_SRC))))
|
12898
|
+
ifeq ($(NO_SECURE),true)
|
12899
|
+
|
12900
|
+
# You can't build secure targets if you don't have OpenSSL.
|
12901
|
+
|
12902
|
+
$(BINDIR)/$(CONFIG)/threadpool_test: openssl_dep_error
|
12903
|
+
|
12904
|
+
else
|
12905
|
+
|
12906
|
+
|
12907
|
+
|
12908
|
+
$(BINDIR)/$(CONFIG)/threadpool_test: $(THREADPOOL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
12909
|
+
$(E) "[LD] Linking $@"
|
12910
|
+
$(Q) mkdir -p `dirname $@`
|
12911
|
+
$(Q) $(LD) $(LDFLAGS) $(THREADPOOL_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/threadpool_test
|
12912
|
+
|
12913
|
+
endif
|
12914
|
+
|
12915
|
+
$(OBJDIR)/$(CONFIG)/test/core/iomgr/threadpool_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
12916
|
+
|
12917
|
+
deps_threadpool_test: $(THREADPOOL_TEST_OBJS:.o=.dep)
|
12918
|
+
|
12919
|
+
ifneq ($(NO_SECURE),true)
|
12920
|
+
ifneq ($(NO_DEPS),true)
|
12921
|
+
-include $(THREADPOOL_TEST_OBJS:.o=.dep)
|
12922
|
+
endif
|
12923
|
+
endif
|
12924
|
+
|
12925
|
+
|
13332
12926
|
TIME_AVERAGED_STATS_TEST_SRC = \
|
13333
12927
|
test/core/iomgr/time_averaged_stats_test.cc \
|
13334
12928
|
|
@@ -15262,6 +14856,50 @@ endif
|
|
15262
14856
|
endif
|
15263
14857
|
|
15264
14858
|
|
14859
|
+
BM_THREADPOOL_SRC = \
|
14860
|
+
test/cpp/microbenchmarks/bm_threadpool.cc \
|
14861
|
+
|
14862
|
+
BM_THREADPOOL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(BM_THREADPOOL_SRC))))
|
14863
|
+
ifeq ($(NO_SECURE),true)
|
14864
|
+
|
14865
|
+
# You can't build secure targets if you don't have OpenSSL.
|
14866
|
+
|
14867
|
+
$(BINDIR)/$(CONFIG)/bm_threadpool: openssl_dep_error
|
14868
|
+
|
14869
|
+
else
|
14870
|
+
|
14871
|
+
|
14872
|
+
|
14873
|
+
|
14874
|
+
ifeq ($(NO_PROTOBUF),true)
|
14875
|
+
|
14876
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
14877
|
+
|
14878
|
+
$(BINDIR)/$(CONFIG)/bm_threadpool: protobuf_dep_error
|
14879
|
+
|
14880
|
+
else
|
14881
|
+
|
14882
|
+
$(BINDIR)/$(CONFIG)/bm_threadpool: $(PROTOBUF_DEP) $(BM_THREADPOOL_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_benchmark.a $(LIBDIR)/$(CONFIG)/libbenchmark.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
14883
|
+
$(E) "[LD] Linking $@"
|
14884
|
+
$(Q) mkdir -p `dirname $@`
|
14885
|
+
$(Q) $(LDXX) $(LDFLAGS) $(BM_THREADPOOL_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_benchmark.a $(LIBDIR)/$(CONFIG)/libbenchmark.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/bm_threadpool
|
14886
|
+
|
14887
|
+
endif
|
14888
|
+
|
14889
|
+
endif
|
14890
|
+
|
14891
|
+
$(BM_THREADPOOL_OBJS): CPPFLAGS += -Ithird_party/benchmark/include -DHAVE_POSIX_REGEX
|
14892
|
+
$(OBJDIR)/$(CONFIG)/test/cpp/microbenchmarks/bm_threadpool.o: $(LIBDIR)/$(CONFIG)/libgrpc_benchmark.a $(LIBDIR)/$(CONFIG)/libbenchmark.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc++_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
14893
|
+
|
14894
|
+
deps_bm_threadpool: $(BM_THREADPOOL_OBJS:.o=.dep)
|
14895
|
+
|
14896
|
+
ifneq ($(NO_SECURE),true)
|
14897
|
+
ifneq ($(NO_DEPS),true)
|
14898
|
+
-include $(BM_THREADPOOL_OBJS:.o=.dep)
|
14899
|
+
endif
|
14900
|
+
endif
|
14901
|
+
|
14902
|
+
|
15265
14903
|
BM_TIMER_SRC = \
|
15266
14904
|
test/cpp/microbenchmarks/bm_timer.cc \
|
15267
14905
|
|
@@ -16997,6 +16635,49 @@ ifneq ($(NO_DEPS),true)
|
|
16997
16635
|
endif
|
16998
16636
|
|
16999
16637
|
|
16638
|
+
GRPC_FETCH_OAUTH2_SRC = \
|
16639
|
+
test/core/security/fetch_oauth2.cc \
|
16640
|
+
|
16641
|
+
GRPC_FETCH_OAUTH2_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_FETCH_OAUTH2_SRC))))
|
16642
|
+
ifeq ($(NO_SECURE),true)
|
16643
|
+
|
16644
|
+
# You can't build secure targets if you don't have OpenSSL.
|
16645
|
+
|
16646
|
+
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2: openssl_dep_error
|
16647
|
+
|
16648
|
+
else
|
16649
|
+
|
16650
|
+
|
16651
|
+
|
16652
|
+
|
16653
|
+
ifeq ($(NO_PROTOBUF),true)
|
16654
|
+
|
16655
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
16656
|
+
|
16657
|
+
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2: protobuf_dep_error
|
16658
|
+
|
16659
|
+
else
|
16660
|
+
|
16661
|
+
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2: $(PROTOBUF_DEP) $(GRPC_FETCH_OAUTH2_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
16662
|
+
$(E) "[LD] Linking $@"
|
16663
|
+
$(Q) mkdir -p `dirname $@`
|
16664
|
+
$(Q) $(LDXX) $(LDFLAGS) $(GRPC_FETCH_OAUTH2_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/grpc_fetch_oauth2
|
16665
|
+
|
16666
|
+
endif
|
16667
|
+
|
16668
|
+
endif
|
16669
|
+
|
16670
|
+
$(OBJDIR)/$(CONFIG)/test/core/security/fetch_oauth2.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
16671
|
+
|
16672
|
+
deps_grpc_fetch_oauth2: $(GRPC_FETCH_OAUTH2_OBJS:.o=.dep)
|
16673
|
+
|
16674
|
+
ifneq ($(NO_SECURE),true)
|
16675
|
+
ifneq ($(NO_DEPS),true)
|
16676
|
+
-include $(GRPC_FETCH_OAUTH2_OBJS:.o=.dep)
|
16677
|
+
endif
|
16678
|
+
endif
|
16679
|
+
|
16680
|
+
|
17000
16681
|
GRPC_LINUX_SYSTEM_ROOTS_TEST_SRC = \
|
17001
16682
|
test/core/security/linux_system_roots_test.cc \
|
17002
16683
|
|
@@ -17339,6 +17020,59 @@ endif
|
|
17339
17020
|
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/grpclb_end2end_test.o: $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.pb.cc $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc
|
17340
17021
|
|
17341
17022
|
|
17023
|
+
GRPCLB_FALLBACK_TEST_SRC = \
|
17024
|
+
$(GENDIR)/src/proto/grpc/testing/empty.pb.cc $(GENDIR)/src/proto/grpc/testing/empty.grpc.pb.cc \
|
17025
|
+
$(GENDIR)/src/proto/grpc/testing/messages.pb.cc $(GENDIR)/src/proto/grpc/testing/messages.grpc.pb.cc \
|
17026
|
+
$(GENDIR)/src/proto/grpc/testing/test.pb.cc $(GENDIR)/src/proto/grpc/testing/test.grpc.pb.cc \
|
17027
|
+
test/cpp/interop/grpclb_fallback_test.cc \
|
17028
|
+
|
17029
|
+
GRPCLB_FALLBACK_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPCLB_FALLBACK_TEST_SRC))))
|
17030
|
+
ifeq ($(NO_SECURE),true)
|
17031
|
+
|
17032
|
+
# You can't build secure targets if you don't have OpenSSL.
|
17033
|
+
|
17034
|
+
$(BINDIR)/$(CONFIG)/grpclb_fallback_test: openssl_dep_error
|
17035
|
+
|
17036
|
+
else
|
17037
|
+
|
17038
|
+
|
17039
|
+
|
17040
|
+
|
17041
|
+
ifeq ($(NO_PROTOBUF),true)
|
17042
|
+
|
17043
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
17044
|
+
|
17045
|
+
$(BINDIR)/$(CONFIG)/grpclb_fallback_test: protobuf_dep_error
|
17046
|
+
|
17047
|
+
else
|
17048
|
+
|
17049
|
+
$(BINDIR)/$(CONFIG)/grpclb_fallback_test: $(PROTOBUF_DEP) $(GRPCLB_FALLBACK_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
17050
|
+
$(E) "[LD] Linking $@"
|
17051
|
+
$(Q) mkdir -p `dirname $@`
|
17052
|
+
$(Q) $(LDXX) $(LDFLAGS) $(GRPCLB_FALLBACK_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/grpclb_fallback_test
|
17053
|
+
|
17054
|
+
endif
|
17055
|
+
|
17056
|
+
endif
|
17057
|
+
|
17058
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/empty.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
17059
|
+
|
17060
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/messages.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
17061
|
+
|
17062
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
17063
|
+
|
17064
|
+
$(OBJDIR)/$(CONFIG)/test/cpp/interop/grpclb_fallback_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
17065
|
+
|
17066
|
+
deps_grpclb_fallback_test: $(GRPCLB_FALLBACK_TEST_OBJS:.o=.dep)
|
17067
|
+
|
17068
|
+
ifneq ($(NO_SECURE),true)
|
17069
|
+
ifneq ($(NO_DEPS),true)
|
17070
|
+
-include $(GRPCLB_FALLBACK_TEST_OBJS:.o=.dep)
|
17071
|
+
endif
|
17072
|
+
endif
|
17073
|
+
$(OBJDIR)/$(CONFIG)/test/cpp/interop/grpclb_fallback_test.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
|
17074
|
+
|
17075
|
+
|
17342
17076
|
H2_SSL_CERT_TEST_SRC = \
|
17343
17077
|
test/core/end2end/h2_ssl_cert_test.cc \
|
17344
17078
|
|
@@ -19656,6 +19390,49 @@ $(OBJDIR)/$(CONFIG)/test/cpp/interop/stress_test.o: $(GENDIR)/src/proto/grpc/tes
|
|
19656
19390
|
$(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
|
19657
19391
|
|
19658
19392
|
|
19393
|
+
STRING_VIEW_TEST_SRC = \
|
19394
|
+
test/core/gprpp/string_view_test.cc \
|
19395
|
+
|
19396
|
+
STRING_VIEW_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(STRING_VIEW_TEST_SRC))))
|
19397
|
+
ifeq ($(NO_SECURE),true)
|
19398
|
+
|
19399
|
+
# You can't build secure targets if you don't have OpenSSL.
|
19400
|
+
|
19401
|
+
$(BINDIR)/$(CONFIG)/string_view_test: openssl_dep_error
|
19402
|
+
|
19403
|
+
else
|
19404
|
+
|
19405
|
+
|
19406
|
+
|
19407
|
+
|
19408
|
+
ifeq ($(NO_PROTOBUF),true)
|
19409
|
+
|
19410
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
19411
|
+
|
19412
|
+
$(BINDIR)/$(CONFIG)/string_view_test: protobuf_dep_error
|
19413
|
+
|
19414
|
+
else
|
19415
|
+
|
19416
|
+
$(BINDIR)/$(CONFIG)/string_view_test: $(PROTOBUF_DEP) $(STRING_VIEW_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
19417
|
+
$(E) "[LD] Linking $@"
|
19418
|
+
$(Q) mkdir -p `dirname $@`
|
19419
|
+
$(Q) $(LDXX) $(LDFLAGS) $(STRING_VIEW_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/string_view_test
|
19420
|
+
|
19421
|
+
endif
|
19422
|
+
|
19423
|
+
endif
|
19424
|
+
|
19425
|
+
$(OBJDIR)/$(CONFIG)/test/core/gprpp/string_view_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
19426
|
+
|
19427
|
+
deps_string_view_test: $(STRING_VIEW_TEST_OBJS:.o=.dep)
|
19428
|
+
|
19429
|
+
ifneq ($(NO_SECURE),true)
|
19430
|
+
ifneq ($(NO_DEPS),true)
|
19431
|
+
-include $(STRING_VIEW_TEST_OBJS:.o=.dep)
|
19432
|
+
endif
|
19433
|
+
endif
|
19434
|
+
|
19435
|
+
|
19659
19436
|
THREAD_MANAGER_TEST_SRC = \
|
19660
19437
|
test/cpp/thread_manager/thread_manager_test.cc \
|
19661
19438
|
|
@@ -20323,6 +20100,37 @@ ifneq ($(NO_DEPS),true)
|
|
20323
20100
|
endif
|
20324
20101
|
|
20325
20102
|
|
20103
|
+
BAD_STREAMING_ID_BAD_CLIENT_TEST_SRC = \
|
20104
|
+
test/core/bad_client/tests/bad_streaming_id.cc \
|
20105
|
+
|
20106
|
+
BAD_STREAMING_ID_BAD_CLIENT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(BAD_STREAMING_ID_BAD_CLIENT_TEST_SRC))))
|
20107
|
+
|
20108
|
+
|
20109
|
+
|
20110
|
+
ifeq ($(NO_PROTOBUF),true)
|
20111
|
+
|
20112
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
20113
|
+
|
20114
|
+
$(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test: protobuf_dep_error
|
20115
|
+
|
20116
|
+
else
|
20117
|
+
|
20118
|
+
$(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test: $(PROTOBUF_DEP) $(BAD_STREAMING_ID_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.a
|
20119
|
+
$(E) "[LD] Linking $@"
|
20120
|
+
$(Q) mkdir -p `dirname $@`
|
20121
|
+
$(Q) $(LDXX) $(LDFLAGS) $(BAD_STREAMING_ID_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.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test
|
20122
|
+
|
20123
|
+
endif
|
20124
|
+
|
20125
|
+
$(OBJDIR)/$(CONFIG)/test/core/bad_client/tests/bad_streaming_id.o: $(LIBDIR)/$(CONFIG)/libbad_client_test.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
20126
|
+
|
20127
|
+
deps_bad_streaming_id_bad_client_test: $(BAD_STREAMING_ID_BAD_CLIENT_TEST_OBJS:.o=.dep)
|
20128
|
+
|
20129
|
+
ifneq ($(NO_DEPS),true)
|
20130
|
+
-include $(BAD_STREAMING_ID_BAD_CLIENT_TEST_OBJS:.o=.dep)
|
20131
|
+
endif
|
20132
|
+
|
20133
|
+
|
20326
20134
|
BADREQ_BAD_CLIENT_TEST_SRC = \
|
20327
20135
|
test/core/bad_client/tests/badreq.cc \
|
20328
20136
|
|
@@ -20540,6 +20348,37 @@ ifneq ($(NO_DEPS),true)
|
|
20540
20348
|
endif
|
20541
20349
|
|
20542
20350
|
|
20351
|
+
OUT_OF_BOUNDS_BAD_CLIENT_TEST_SRC = \
|
20352
|
+
test/core/bad_client/tests/out_of_bounds.cc \
|
20353
|
+
|
20354
|
+
OUT_OF_BOUNDS_BAD_CLIENT_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(OUT_OF_BOUNDS_BAD_CLIENT_TEST_SRC))))
|
20355
|
+
|
20356
|
+
|
20357
|
+
|
20358
|
+
ifeq ($(NO_PROTOBUF),true)
|
20359
|
+
|
20360
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
20361
|
+
|
20362
|
+
$(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test: protobuf_dep_error
|
20363
|
+
|
20364
|
+
else
|
20365
|
+
|
20366
|
+
$(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test: $(PROTOBUF_DEP) $(OUT_OF_BOUNDS_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.a
|
20367
|
+
$(E) "[LD] Linking $@"
|
20368
|
+
$(Q) mkdir -p `dirname $@`
|
20369
|
+
$(Q) $(LDXX) $(LDFLAGS) $(OUT_OF_BOUNDS_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.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/out_of_bounds_bad_client_test
|
20370
|
+
|
20371
|
+
endif
|
20372
|
+
|
20373
|
+
$(OBJDIR)/$(CONFIG)/test/core/bad_client/tests/out_of_bounds.o: $(LIBDIR)/$(CONFIG)/libbad_client_test.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
20374
|
+
|
20375
|
+
deps_out_of_bounds_bad_client_test: $(OUT_OF_BOUNDS_BAD_CLIENT_TEST_OBJS:.o=.dep)
|
20376
|
+
|
20377
|
+
ifneq ($(NO_DEPS),true)
|
20378
|
+
-include $(OUT_OF_BOUNDS_BAD_CLIENT_TEST_OBJS:.o=.dep)
|
20379
|
+
endif
|
20380
|
+
|
20381
|
+
|
20543
20382
|
SERVER_REGISTERED_METHOD_BAD_CLIENT_TEST_SRC = \
|
20544
20383
|
test/core/bad_client/tests/server_registered_method.cc \
|
20545
20384
|
|
@@ -22528,6 +22367,7 @@ src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc: $(OPENS
|
|
22528
22367
|
src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc: $(OPENSSL_DEP)
|
22529
22368
|
src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc: $(OPENSSL_DEP)
|
22530
22369
|
src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc: $(OPENSSL_DEP)
|
22370
|
+
src/core/ext/transport/cronet/plugin_registry/grpc_cronet_plugin_registry.cc: $(OPENSSL_DEP)
|
22531
22371
|
src/core/ext/transport/cronet/transport/cronet_api_dummy.cc: $(OPENSSL_DEP)
|
22532
22372
|
src/core/ext/transport/cronet/transport/cronet_transport.cc: $(OPENSSL_DEP)
|
22533
22373
|
src/core/lib/http/httpcli_security_connector.cc: $(OPENSSL_DEP)
|
@@ -22573,7 +22413,6 @@ src/core/lib/security/transport/target_authority_table.cc: $(OPENSSL_DEP)
|
|
22573
22413
|
src/core/lib/security/transport/tsi_error.cc: $(OPENSSL_DEP)
|
22574
22414
|
src/core/lib/security/util/json_util.cc: $(OPENSSL_DEP)
|
22575
22415
|
src/core/lib/surface/init_secure.cc: $(OPENSSL_DEP)
|
22576
|
-
src/core/plugin_registry/grpc_cronet_plugin_registry.cc: $(OPENSSL_DEP)
|
22577
22416
|
src/core/plugin_registry/grpc_plugin_registry.cc: $(OPENSSL_DEP)
|
22578
22417
|
src/core/tsi/alts/crypt/aes_gcm.cc: $(OPENSSL_DEP)
|
22579
22418
|
src/core/tsi/alts/crypt/gsec.cc: $(OPENSSL_DEP)
|
@@ -22607,7 +22446,6 @@ src/core/tsi/ssl/session_cache/ssl_session_openssl.cc: $(OPENSSL_DEP)
|
|
22607
22446
|
src/core/tsi/ssl_transport_security.cc: $(OPENSSL_DEP)
|
22608
22447
|
src/core/tsi/transport_security.cc: $(OPENSSL_DEP)
|
22609
22448
|
src/core/tsi/transport_security_grpc.cc: $(OPENSSL_DEP)
|
22610
|
-
src/cpp/client/cronet_credentials.cc: $(OPENSSL_DEP)
|
22611
22449
|
src/cpp/client/secure_credentials.cc: $(OPENSSL_DEP)
|
22612
22450
|
src/cpp/common/auth_property_iterator.cc: $(OPENSSL_DEP)
|
22613
22451
|
src/cpp/common/secure_auth_context.cc: $(OPENSSL_DEP)
|