grpc 1.24.0 → 1.25.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 +306 -243
- data/etc/roots.pem +0 -100
- data/include/grpc/grpc_security.h +44 -18
- data/include/grpc/impl/codegen/grpc_types.h +15 -0
- data/include/grpc/impl/codegen/port_platform.h +27 -11
- data/include/grpc/impl/codegen/sync_generic.h +1 -1
- data/src/boringssl/err_data.c +695 -650
- data/src/core/ext/filters/client_channel/client_channel.cc +257 -179
- data/src/core/ext/filters/client_channel/client_channel.h +24 -0
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +2 -3
- data/src/core/ext/filters/client_channel/client_channel_factory.h +1 -5
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +18 -45
- data/src/core/ext/filters/client_channel/health/health_check_client.h +5 -13
- data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +1 -1
- data/src/core/ext/filters/client_channel/lb_policy.cc +2 -3
- data/src/core/ext/filters/client_channel/lb_policy.h +65 -55
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +14 -14
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +113 -36
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +14 -19
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +36 -13
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +3 -10
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.cc +814 -1589
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds.h +2 -5
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +3 -6
- data/src/core/ext/filters/client_channel/resolver.cc +1 -2
- data/src/core/ext/filters/client_channel/resolver.h +8 -16
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +25 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc +46 -12
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +10 -17
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +7 -8
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +4 -4
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +111 -44
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +22 -14
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +29 -10
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +27 -36
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +7 -10
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +60 -16
- data/src/core/ext/filters/client_channel/resolver_factory.h +4 -8
- data/src/core/ext/filters/client_channel/resolver_registry.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver_registry.h +1 -1
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +7 -10
- data/src/core/ext/filters/client_channel/resolving_lb_policy.cc +7 -8
- data/src/core/ext/filters/client_channel/resolving_lb_policy.h +1 -1
- data/src/core/ext/filters/client_channel/retry_throttle.cc +5 -5
- data/src/core/ext/filters/client_channel/retry_throttle.h +1 -4
- data/src/core/ext/filters/client_channel/service_config.h +8 -8
- data/src/core/ext/filters/client_channel/subchannel.cc +53 -86
- data/src/core/ext/filters/client_channel/subchannel.h +7 -9
- data/src/core/ext/filters/client_channel/subchannel_interface.h +9 -13
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +3 -6
- data/src/core/ext/filters/client_channel/{lb_policy/xds/xds_load_balancer_api.cc → xds/xds_api.cc} +169 -52
- data/src/core/ext/filters/client_channel/xds/xds_api.h +171 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.cc +450 -0
- data/src/core/ext/filters/client_channel/xds/xds_bootstrap.h +99 -0
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_channel.h +8 -6
- data/src/core/ext/filters/client_channel/xds/xds_channel_args.h +26 -0
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_channel_secure.cc +28 -11
- data/src/core/ext/filters/client_channel/xds/xds_client.cc +1413 -0
- data/src/core/ext/filters/client_channel/xds/xds_client.h +221 -0
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_client_stats.cc +1 -5
- data/src/core/ext/filters/client_channel/{lb_policy/xds → xds}/xds_client_stats.h +3 -4
- data/src/core/ext/filters/deadline/deadline_filter.cc +20 -20
- data/src/core/ext/filters/http/client/http_client_filter.cc +15 -15
- data/src/core/ext/filters/http/client_authority_filter.cc +14 -14
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +12 -12
- data/src/core/ext/filters/max_age/max_age_filter.cc +59 -50
- data/src/core/ext/filters/message_size/message_size_filter.cc +18 -18
- data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +15 -14
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +233 -175
- data/src/core/ext/transport/chttp2/transport/flow_control.h +21 -24
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +253 -163
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +24 -12
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +2 -3
- data/src/core/ext/transport/chttp2/transport/internal.h +13 -15
- data/src/core/ext/transport/chttp2/transport/writing.cc +3 -0
- data/src/core/ext/transport/inproc/inproc_transport.cc +20 -13
- data/src/core/lib/channel/channel_args.cc +16 -0
- data/src/core/lib/channel/channel_args.h +22 -0
- data/src/core/lib/channel/channelz.cc +5 -6
- data/src/core/lib/channel/channelz.h +1 -1
- data/src/core/lib/channel/connected_channel.cc +20 -20
- data/src/core/lib/channel/handshaker.h +3 -4
- data/src/core/lib/channel/handshaker_factory.h +1 -3
- data/src/core/lib/debug/trace.h +3 -2
- data/src/core/lib/gprpp/arena.cc +3 -3
- data/src/core/lib/gprpp/arena.h +2 -3
- data/src/core/lib/gprpp/inlined_vector.h +9 -0
- data/src/core/lib/gprpp/map.h +3 -501
- data/src/core/lib/gprpp/memory.h +45 -41
- data/src/core/lib/gprpp/mpscq.cc +108 -0
- data/src/core/lib/gprpp/mpscq.h +98 -0
- data/src/core/lib/gprpp/orphanable.h +6 -11
- data/src/core/lib/gprpp/ref_counted.h +25 -19
- data/src/core/lib/gprpp/set.h +33 -0
- data/src/core/lib/gprpp/thd.h +2 -4
- data/src/core/lib/http/httpcli.cc +1 -1
- data/src/core/lib/http/httpcli_security_connector.cc +15 -11
- data/src/core/lib/http/parser.cc +1 -1
- data/src/core/lib/iomgr/buffer_list.cc +4 -5
- data/src/core/lib/iomgr/buffer_list.h +5 -6
- data/src/core/lib/iomgr/call_combiner.cc +4 -5
- data/src/core/lib/iomgr/call_combiner.h +2 -2
- data/src/core/lib/iomgr/cfstream_handle.h +3 -5
- data/src/core/lib/iomgr/closure.h +8 -3
- data/src/core/lib/iomgr/combiner.cc +45 -82
- data/src/core/lib/iomgr/combiner.h +32 -8
- data/src/core/lib/iomgr/endpoint_cfstream.cc +5 -3
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +19 -15
- data/src/core/lib/iomgr/ev_poll_posix.cc +3 -1
- data/src/core/lib/iomgr/exec_ctx.h +4 -3
- data/src/core/lib/iomgr/executor.cc +4 -2
- data/src/core/lib/iomgr/executor.h +3 -0
- data/src/core/lib/iomgr/executor/mpmcqueue.h +3 -6
- data/src/core/lib/iomgr/executor/threadpool.cc +1 -2
- data/src/core/lib/iomgr/executor/threadpool.h +7 -11
- data/src/core/lib/iomgr/resource_quota.cc +55 -51
- data/src/core/lib/iomgr/resource_quota.h +13 -9
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +13 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +4 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +4 -11
- data/src/core/lib/iomgr/tcp_custom.cc +9 -7
- data/src/core/lib/iomgr/tcp_posix.cc +20 -16
- data/src/core/lib/iomgr/tcp_server.h +1 -4
- data/src/core/lib/iomgr/tcp_server_custom.cc +5 -5
- data/src/core/lib/iomgr/tcp_server_posix.cc +1 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +2 -11
- data/src/core/lib/iomgr/timer_custom.cc +2 -2
- data/src/core/lib/iomgr/udp_server.cc +3 -2
- data/src/core/lib/iomgr/udp_server.h +6 -12
- data/src/core/lib/json/json.h +1 -1
- data/src/core/lib/json/json_string.cc +2 -2
- data/src/core/lib/profiling/basic_timers.cc +2 -2
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +2 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -1
- data/src/core/lib/security/credentials/credentials.h +4 -20
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +4 -4
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +64 -0
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +4 -4
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +9 -7
- data/src/core/lib/security/security_connector/load_system_roots_linux.cc +2 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +4 -4
- data/src/core/lib/security/security_connector/security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/security_connector.h +19 -17
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +8 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +2 -2
- data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.cc +14 -6
- data/src/core/lib/security/security_connector/tls/spiffe_security_connector.h +4 -2
- data/src/core/lib/security/transport/client_auth_filter.cc +17 -17
- data/src/core/lib/security/transport/security_handshaker.cc +29 -13
- data/src/core/lib/security/transport/security_handshaker.h +4 -2
- data/src/core/lib/security/transport/server_auth_filter.cc +14 -14
- data/src/core/lib/slice/slice.cc +2 -10
- data/src/core/lib/slice/slice_hash_table.h +4 -6
- data/src/core/lib/slice/slice_intern.cc +42 -39
- data/src/core/lib/slice/slice_internal.h +3 -3
- data/src/core/lib/slice/slice_utils.h +21 -4
- data/src/core/lib/slice/slice_weak_hash_table.h +4 -6
- data/src/core/lib/surface/call.cc +3 -3
- data/src/core/lib/surface/channel.cc +7 -0
- data/src/core/lib/surface/completion_queue.cc +12 -11
- data/src/core/lib/surface/completion_queue.h +4 -2
- data/src/core/lib/surface/init.cc +1 -0
- data/src/core/lib/surface/lame_client.cc +33 -18
- data/src/core/lib/surface/server.cc +77 -76
- data/src/core/lib/surface/version.cc +1 -1
- data/src/core/lib/transport/byte_stream.h +3 -7
- data/src/core/lib/transport/connectivity_state.cc +112 -98
- data/src/core/lib/transport/connectivity_state.h +100 -50
- data/src/core/lib/transport/static_metadata.cc +276 -288
- data/src/core/lib/transport/static_metadata.h +73 -76
- data/src/core/lib/transport/status_conversion.cc +1 -1
- data/src/core/lib/transport/status_metadata.cc +1 -1
- data/src/core/lib/transport/transport.cc +2 -2
- data/src/core/lib/transport/transport.h +12 -4
- data/src/core/lib/transport/transport_op_string.cc +14 -11
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +5 -5
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -2
- data/src/core/tsi/fake_transport_security.cc +7 -5
- data/src/core/tsi/grpc_shadow_boringssl.h +2918 -2627
- data/src/core/tsi/local_transport_security.cc +8 -6
- data/src/core/tsi/ssl/session_cache/ssl_session.h +1 -3
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +1 -2
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +7 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +4 -6
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +1 -2
- data/src/core/tsi/ssl_transport_security.cc +12 -12
- data/src/core/tsi/ssl_transport_security.h +2 -2
- data/src/core/tsi/transport_security_grpc.cc +7 -0
- data/src/core/tsi/transport_security_grpc.h +6 -0
- data/src/ruby/ext/grpc/extconf.rb +1 -0
- data/src/ruby/ext/grpc/rb_call.c +1 -1
- data/src/ruby/ext/grpc/rb_channel.c +1 -1
- data/src/ruby/lib/grpc/generic/bidi_call.rb +1 -1
- data/src/ruby/lib/grpc/generic/rpc_server.rb +1 -1
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/spec/google_rpc_status_utils_spec.rb +2 -2
- data/third_party/boringssl/crypto/asn1/a_bool.c +18 -5
- data/third_party/boringssl/crypto/asn1/a_d2i_fp.c +17 -221
- data/third_party/boringssl/crypto/asn1/a_dup.c +0 -24
- data/third_party/boringssl/crypto/asn1/a_enum.c +2 -2
- data/third_party/boringssl/crypto/asn1/a_i2d_fp.c +10 -72
- data/third_party/boringssl/crypto/asn1/a_int.c +12 -71
- data/third_party/boringssl/crypto/asn1/a_mbstr.c +110 -216
- data/third_party/boringssl/crypto/asn1/a_object.c +16 -5
- data/third_party/boringssl/crypto/asn1/a_strnid.c +1 -0
- data/third_party/boringssl/crypto/asn1/asn1_lib.c +5 -1
- data/third_party/boringssl/crypto/asn1/tasn_enc.c +3 -1
- data/third_party/boringssl/crypto/base64/base64.c +2 -2
- data/third_party/boringssl/crypto/bio/bio.c +73 -9
- data/third_party/boringssl/crypto/bio/connect.c +4 -0
- data/third_party/boringssl/crypto/bio/fd.c +4 -0
- data/third_party/boringssl/crypto/bio/file.c +5 -2
- data/third_party/boringssl/crypto/bio/socket.c +4 -0
- data/third_party/boringssl/crypto/bio/socket_helper.c +4 -0
- data/third_party/boringssl/crypto/bn_extra/convert.c +11 -7
- data/third_party/boringssl/crypto/bytestring/ber.c +8 -4
- data/third_party/boringssl/crypto/bytestring/cbb.c +19 -7
- data/third_party/boringssl/crypto/bytestring/cbs.c +28 -15
- data/third_party/boringssl/crypto/bytestring/internal.h +28 -7
- data/third_party/boringssl/crypto/bytestring/unicode.c +155 -0
- data/third_party/boringssl/crypto/chacha/chacha.c +36 -19
- data/third_party/boringssl/crypto/chacha/internal.h +45 -0
- data/third_party/boringssl/crypto/cipher_extra/cipher_extra.c +29 -0
- data/third_party/boringssl/crypto/cipher_extra/e_aesccm.c +269 -25
- data/third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c +16 -14
- data/third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c +54 -38
- data/third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c +133 -41
- data/third_party/boringssl/crypto/cipher_extra/e_tls.c +23 -15
- data/third_party/boringssl/crypto/cipher_extra/tls_cbc.c +24 -15
- data/third_party/boringssl/crypto/cmac/cmac.c +62 -25
- data/third_party/boringssl/crypto/conf/conf.c +7 -0
- data/third_party/boringssl/crypto/cpu-arm-linux.c +4 -148
- data/third_party/boringssl/crypto/cpu-arm-linux.h +201 -0
- data/third_party/boringssl/crypto/cpu-intel.c +45 -51
- data/third_party/boringssl/crypto/crypto.c +39 -22
- data/third_party/boringssl/crypto/curve25519/spake25519.c +1 -1
- data/third_party/boringssl/crypto/dsa/dsa.c +77 -53
- data/third_party/boringssl/crypto/ec_extra/ec_asn1.c +20 -8
- data/third_party/boringssl/crypto/ec_extra/ec_derive.c +96 -0
- data/third_party/boringssl/crypto/{ecdh/ecdh.c → ecdh_extra/ecdh_extra.c} +20 -58
- data/third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c +1 -9
- data/third_party/boringssl/crypto/engine/engine.c +2 -1
- data/third_party/boringssl/crypto/err/err.c +2 -0
- data/third_party/boringssl/crypto/err/internal.h +2 -2
- data/third_party/boringssl/crypto/evp/evp.c +89 -8
- data/third_party/boringssl/crypto/evp/evp_asn1.c +56 -5
- data/third_party/boringssl/crypto/evp/evp_ctx.c +52 -14
- data/third_party/boringssl/crypto/evp/internal.h +18 -1
- data/third_party/boringssl/crypto/evp/p_dsa_asn1.c +5 -0
- data/third_party/boringssl/crypto/evp/p_ec.c +51 -3
- data/third_party/boringssl/crypto/evp/p_ec_asn1.c +6 -7
- data/third_party/boringssl/crypto/evp/p_ed25519.c +36 -3
- data/third_party/boringssl/crypto/evp/p_ed25519_asn1.c +76 -45
- data/third_party/boringssl/crypto/evp/p_rsa.c +3 -1
- data/third_party/boringssl/crypto/evp/p_rsa_asn1.c +5 -0
- data/third_party/boringssl/crypto/evp/p_x25519.c +110 -0
- data/third_party/boringssl/crypto/evp/p_x25519_asn1.c +249 -0
- data/third_party/boringssl/crypto/evp/scrypt.c +6 -2
- data/third_party/boringssl/crypto/fipsmodule/aes/aes.c +34 -274
- data/third_party/boringssl/crypto/fipsmodule/aes/internal.h +161 -21
- data/third_party/boringssl/crypto/fipsmodule/aes/key_wrap.c +111 -13
- data/third_party/boringssl/crypto/fipsmodule/aes/mode_wrappers.c +17 -21
- data/third_party/boringssl/crypto/fipsmodule/bcm.c +119 -7
- data/third_party/boringssl/crypto/fipsmodule/bn/bn.c +19 -2
- data/third_party/boringssl/crypto/fipsmodule/bn/cmp.c +2 -2
- data/third_party/boringssl/crypto/fipsmodule/bn/ctx.c +93 -160
- data/third_party/boringssl/crypto/fipsmodule/bn/div.c +48 -57
- data/third_party/boringssl/crypto/fipsmodule/bn/div_extra.c +87 -0
- data/third_party/boringssl/crypto/fipsmodule/bn/exponentiation.c +143 -211
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd.c +0 -305
- data/third_party/boringssl/crypto/fipsmodule/bn/gcd_extra.c +325 -0
- data/third_party/boringssl/crypto/fipsmodule/bn/internal.h +168 -50
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery.c +68 -92
- data/third_party/boringssl/crypto/fipsmodule/bn/montgomery_inv.c +7 -6
- data/third_party/boringssl/crypto/fipsmodule/bn/mul.c +11 -14
- data/third_party/boringssl/crypto/fipsmodule/bn/prime.c +358 -443
- data/third_party/boringssl/crypto/fipsmodule/bn/random.c +25 -35
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.c +20 -25
- data/third_party/boringssl/crypto/fipsmodule/bn/rsaz_exp.h +76 -5
- data/third_party/boringssl/crypto/fipsmodule/bn/shift.c +14 -14
- data/third_party/boringssl/crypto/fipsmodule/cipher/cipher.c +7 -2
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_aes.c +383 -516
- data/third_party/boringssl/crypto/fipsmodule/cipher/e_des.c +4 -0
- data/third_party/boringssl/crypto/fipsmodule/cipher/internal.h +3 -4
- data/third_party/boringssl/crypto/fipsmodule/delocate.h +3 -2
- data/third_party/boringssl/crypto/fipsmodule/digest/digest.c +32 -17
- data/third_party/boringssl/crypto/fipsmodule/digest/md32_common.h +3 -3
- data/third_party/boringssl/crypto/fipsmodule/ec/ec.c +228 -122
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_key.c +34 -8
- data/third_party/boringssl/crypto/fipsmodule/ec/ec_montgomery.c +311 -98
- data/third_party/boringssl/crypto/fipsmodule/ec/felem.c +82 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/internal.h +263 -97
- data/third_party/boringssl/crypto/fipsmodule/ec/oct.c +22 -59
- data/third_party/boringssl/crypto/fipsmodule/ec/p224-64.c +317 -234
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64-table.h +9473 -9475
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.c +313 -109
- data/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64.h +36 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/scalar.c +96 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/simple.c +126 -792
- data/third_party/boringssl/crypto/fipsmodule/ec/simple_mul.c +84 -0
- data/third_party/boringssl/crypto/fipsmodule/ec/util.c +163 -12
- data/third_party/boringssl/crypto/fipsmodule/ec/wnaf.c +84 -211
- data/third_party/boringssl/crypto/fipsmodule/ecdh/ecdh.c +122 -0
- data/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa.c +60 -205
- data/third_party/boringssl/crypto/fipsmodule/fips_shared_support.c +32 -0
- data/third_party/boringssl/crypto/fipsmodule/is_fips.c +2 -0
- data/third_party/boringssl/crypto/fipsmodule/md4/md4.c +3 -1
- data/third_party/boringssl/crypto/fipsmodule/md5/internal.h +37 -0
- data/third_party/boringssl/crypto/fipsmodule/md5/md5.c +11 -8
- data/third_party/boringssl/crypto/fipsmodule/modes/cbc.c +35 -79
- data/third_party/boringssl/crypto/fipsmodule/modes/cfb.c +7 -39
- data/third_party/boringssl/crypto/fipsmodule/modes/ctr.c +7 -27
- data/third_party/boringssl/crypto/fipsmodule/modes/gcm.c +123 -309
- data/third_party/boringssl/crypto/fipsmodule/modes/internal.h +189 -126
- data/third_party/boringssl/crypto/fipsmodule/modes/ofb.c +3 -2
- data/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg.c +2 -2
- data/third_party/boringssl/crypto/fipsmodule/rand/internal.h +35 -0
- data/third_party/boringssl/crypto/fipsmodule/rand/rand.c +24 -19
- data/third_party/boringssl/crypto/fipsmodule/rand/urandom.c +256 -77
- data/third_party/boringssl/crypto/fipsmodule/rsa/padding.c +10 -7
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa.c +5 -1
- data/third_party/boringssl/crypto/fipsmodule/rsa/rsa_impl.c +131 -14
- data/third_party/boringssl/crypto/fipsmodule/self_check/self_check.c +83 -10
- data/third_party/boringssl/crypto/fipsmodule/sha/internal.h +53 -0
- data/third_party/boringssl/crypto/fipsmodule/sha/sha1.c +9 -13
- data/third_party/boringssl/crypto/fipsmodule/sha/sha256.c +18 -12
- data/third_party/boringssl/crypto/fipsmodule/sha/sha512.c +95 -168
- data/third_party/boringssl/crypto/hrss/hrss.c +2201 -0
- data/third_party/boringssl/crypto/hrss/internal.h +62 -0
- data/third_party/boringssl/crypto/internal.h +95 -20
- data/third_party/boringssl/crypto/lhash/lhash.c +45 -33
- data/third_party/boringssl/crypto/mem.c +39 -2
- data/third_party/boringssl/crypto/obj/obj.c +4 -4
- data/third_party/boringssl/crypto/obj/obj_dat.h +6181 -875
- data/third_party/boringssl/crypto/pem/pem_all.c +2 -3
- data/third_party/boringssl/crypto/pem/pem_info.c +144 -162
- data/third_party/boringssl/crypto/pem/pem_lib.c +53 -52
- data/third_party/boringssl/crypto/pem/pem_pkey.c +13 -21
- data/third_party/boringssl/crypto/pkcs7/pkcs7.c +15 -22
- data/third_party/boringssl/crypto/pkcs7/pkcs7_x509.c +168 -16
- data/third_party/boringssl/crypto/pkcs8/internal.h +11 -0
- data/third_party/boringssl/crypto/pkcs8/p5_pbev2.c +24 -15
- data/third_party/boringssl/crypto/pkcs8/pkcs8.c +42 -25
- data/third_party/boringssl/crypto/pkcs8/pkcs8_x509.c +559 -43
- data/third_party/boringssl/crypto/pool/internal.h +1 -1
- data/third_party/boringssl/crypto/pool/pool.c +21 -0
- data/third_party/boringssl/crypto/rand_extra/deterministic.c +8 -0
- data/third_party/boringssl/crypto/rand_extra/fuchsia.c +1 -14
- data/third_party/boringssl/crypto/refcount_lock.c +2 -2
- data/third_party/boringssl/crypto/rsa_extra/rsa_print.c +22 -0
- data/third_party/boringssl/crypto/siphash/siphash.c +80 -0
- data/third_party/boringssl/crypto/stack/stack.c +83 -32
- data/third_party/boringssl/crypto/thread_none.c +2 -2
- data/third_party/boringssl/crypto/thread_pthread.c +2 -2
- data/third_party/boringssl/crypto/thread_win.c +38 -19
- data/third_party/boringssl/crypto/x509/a_strex.c +22 -2
- data/third_party/boringssl/crypto/x509/asn1_gen.c +2 -1
- data/third_party/boringssl/crypto/x509/by_dir.c +7 -0
- data/third_party/boringssl/crypto/x509/by_file.c +12 -10
- data/third_party/boringssl/crypto/x509/t_crl.c +5 -8
- data/third_party/boringssl/crypto/x509/t_req.c +1 -3
- data/third_party/boringssl/crypto/x509/t_x509.c +5 -8
- data/third_party/boringssl/crypto/x509/x509_cmp.c +1 -1
- data/third_party/boringssl/crypto/x509/x509_def.c +1 -1
- data/third_party/boringssl/crypto/x509/x509_lu.c +114 -5
- data/third_party/boringssl/crypto/x509/x509_req.c +20 -0
- data/third_party/boringssl/crypto/x509/x509_set.c +5 -0
- data/third_party/boringssl/crypto/x509/x509_trs.c +1 -0
- data/third_party/boringssl/crypto/x509/x509_txt.c +4 -5
- data/third_party/boringssl/crypto/x509/x509_vfy.c +145 -138
- data/third_party/boringssl/crypto/x509/x509_vpm.c +2 -0
- data/third_party/boringssl/crypto/x509/x509cset.c +40 -0
- data/third_party/boringssl/crypto/x509/x509name.c +2 -3
- data/third_party/boringssl/crypto/x509/x_all.c +109 -210
- data/third_party/boringssl/crypto/x509/x_x509.c +6 -0
- data/third_party/boringssl/crypto/x509v3/ext_dat.h +1 -3
- data/third_party/boringssl/crypto/x509v3/internal.h +56 -0
- data/third_party/boringssl/crypto/x509v3/pcy_cache.c +2 -0
- data/third_party/boringssl/crypto/x509v3/pcy_node.c +1 -0
- data/third_party/boringssl/crypto/x509v3/pcy_tree.c +4 -2
- data/third_party/boringssl/crypto/x509v3/v3_akey.c +5 -2
- data/third_party/boringssl/crypto/x509v3/v3_alt.c +19 -13
- data/third_party/boringssl/crypto/x509v3/v3_conf.c +2 -1
- data/third_party/boringssl/crypto/x509v3/v3_cpols.c +3 -2
- data/third_party/boringssl/crypto/x509v3/v3_genn.c +1 -6
- data/third_party/boringssl/crypto/x509v3/v3_lib.c +1 -0
- data/third_party/boringssl/crypto/x509v3/v3_ocsp.c +68 -0
- data/third_party/boringssl/crypto/x509v3/v3_pci.c +2 -1
- data/third_party/boringssl/crypto/x509v3/v3_purp.c +47 -69
- data/third_party/boringssl/crypto/x509v3/v3_skey.c +5 -2
- data/third_party/boringssl/crypto/x509v3/v3_utl.c +69 -25
- data/third_party/boringssl/include/openssl/aead.h +45 -19
- data/third_party/boringssl/include/openssl/aes.h +32 -7
- data/third_party/boringssl/include/openssl/asn1.h +7 -77
- data/third_party/boringssl/include/openssl/base.h +120 -6
- data/third_party/boringssl/include/openssl/base64.h +4 -1
- data/third_party/boringssl/include/openssl/bio.h +112 -81
- data/third_party/boringssl/include/openssl/blowfish.h +3 -3
- data/third_party/boringssl/include/openssl/bn.h +55 -29
- data/third_party/boringssl/include/openssl/buf.h +2 -2
- data/third_party/boringssl/include/openssl/bytestring.h +54 -32
- data/third_party/boringssl/include/openssl/cast.h +2 -2
- data/third_party/boringssl/include/openssl/cipher.h +46 -16
- data/third_party/boringssl/include/openssl/cmac.h +6 -2
- data/third_party/boringssl/include/openssl/conf.h +3 -6
- data/third_party/boringssl/include/openssl/cpu.h +25 -9
- data/third_party/boringssl/include/openssl/crypto.h +32 -10
- data/third_party/boringssl/include/openssl/curve25519.h +4 -4
- data/third_party/boringssl/include/openssl/dh.h +3 -2
- data/third_party/boringssl/include/openssl/digest.h +21 -7
- data/third_party/boringssl/include/openssl/dsa.h +8 -2
- data/third_party/boringssl/include/openssl/e_os2.h +18 -0
- data/third_party/boringssl/include/openssl/ec.h +25 -21
- data/third_party/boringssl/include/openssl/ec_key.h +36 -8
- data/third_party/boringssl/include/openssl/ecdh.h +17 -0
- data/third_party/boringssl/include/openssl/ecdsa.h +3 -3
- data/third_party/boringssl/include/openssl/engine.h +4 -4
- data/third_party/boringssl/include/openssl/err.h +3 -0
- data/third_party/boringssl/include/openssl/evp.h +199 -42
- data/third_party/boringssl/include/openssl/hmac.h +4 -4
- data/third_party/boringssl/include/openssl/hrss.h +100 -0
- data/third_party/boringssl/include/openssl/lhash.h +131 -23
- data/third_party/boringssl/include/openssl/md4.h +6 -4
- data/third_party/boringssl/include/openssl/md5.h +6 -4
- data/third_party/boringssl/include/openssl/mem.h +6 -2
- data/third_party/boringssl/include/openssl/nid.h +3 -0
- data/third_party/boringssl/include/openssl/obj.h +3 -0
- data/third_party/boringssl/include/openssl/pem.h +102 -64
- data/third_party/boringssl/include/openssl/pkcs7.h +136 -3
- data/third_party/boringssl/include/openssl/pkcs8.h +42 -3
- data/third_party/boringssl/include/openssl/pool.h +13 -2
- data/third_party/boringssl/include/openssl/ripemd.h +5 -4
- data/third_party/boringssl/include/openssl/rsa.h +46 -15
- data/third_party/boringssl/include/openssl/sha.h +40 -28
- data/third_party/boringssl/include/openssl/siphash.h +37 -0
- data/third_party/boringssl/include/openssl/span.h +17 -9
- data/third_party/boringssl/include/openssl/ssl.h +766 -393
- data/third_party/boringssl/include/openssl/ssl3.h +4 -3
- data/third_party/boringssl/include/openssl/stack.h +134 -77
- data/third_party/boringssl/include/openssl/thread.h +1 -1
- data/third_party/boringssl/include/openssl/tls1.h +25 -9
- data/third_party/boringssl/include/openssl/type_check.h +14 -15
- data/third_party/boringssl/include/openssl/x509.h +28 -3
- data/third_party/boringssl/include/openssl/x509_vfy.h +98 -32
- data/third_party/boringssl/include/openssl/x509v3.h +17 -13
- data/third_party/boringssl/ssl/d1_both.cc +9 -18
- data/third_party/boringssl/ssl/d1_lib.cc +4 -3
- data/third_party/boringssl/ssl/d1_pkt.cc +4 -4
- data/third_party/boringssl/ssl/d1_srtp.cc +15 -15
- data/third_party/boringssl/ssl/dtls_method.cc +0 -1
- data/third_party/boringssl/ssl/dtls_record.cc +28 -28
- data/third_party/boringssl/ssl/handoff.cc +295 -91
- data/third_party/boringssl/ssl/handshake.cc +133 -72
- data/third_party/boringssl/ssl/handshake_client.cc +218 -189
- data/third_party/boringssl/ssl/handshake_server.cc +399 -272
- data/third_party/boringssl/ssl/internal.h +1413 -928
- data/third_party/boringssl/ssl/s3_both.cc +175 -36
- data/third_party/boringssl/ssl/s3_lib.cc +9 -13
- data/third_party/boringssl/ssl/s3_pkt.cc +63 -29
- data/third_party/boringssl/ssl/ssl_aead_ctx.cc +55 -35
- data/third_party/boringssl/ssl/ssl_asn1.cc +57 -73
- data/third_party/boringssl/ssl/ssl_buffer.cc +13 -12
- data/third_party/boringssl/ssl/ssl_cert.cc +313 -210
- data/third_party/boringssl/ssl/ssl_cipher.cc +159 -221
- data/third_party/boringssl/ssl/ssl_file.cc +2 -0
- data/third_party/boringssl/ssl/ssl_key_share.cc +164 -19
- data/third_party/boringssl/ssl/ssl_lib.cc +847 -555
- data/third_party/boringssl/ssl/ssl_privkey.cc +441 -111
- data/third_party/boringssl/ssl/ssl_session.cc +230 -178
- data/third_party/boringssl/ssl/ssl_transcript.cc +21 -142
- data/third_party/boringssl/ssl/ssl_versions.cc +88 -93
- data/third_party/boringssl/ssl/ssl_x509.cc +279 -218
- data/third_party/boringssl/ssl/t1_enc.cc +5 -96
- data/third_party/boringssl/ssl/t1_lib.cc +931 -678
- data/third_party/boringssl/ssl/tls13_both.cc +251 -121
- data/third_party/boringssl/ssl/tls13_client.cc +129 -73
- data/third_party/boringssl/ssl/tls13_enc.cc +350 -282
- data/third_party/boringssl/ssl/tls13_server.cc +259 -192
- data/third_party/boringssl/ssl/tls_method.cc +26 -21
- data/third_party/boringssl/ssl/tls_record.cc +42 -47
- data/third_party/boringssl/third_party/fiat/curve25519.c +261 -1324
- data/third_party/boringssl/third_party/fiat/curve25519_32.h +911 -0
- data/third_party/boringssl/third_party/fiat/curve25519_64.h +559 -0
- data/third_party/boringssl/third_party/fiat/p256.c +238 -999
- data/third_party/boringssl/third_party/fiat/p256_32.h +3226 -0
- data/third_party/boringssl/third_party/fiat/p256_64.h +1217 -0
- data/third_party/upb/upb/port_def.inc +1 -1
- data/third_party/upb/upb/table.c +2 -1
- metadata +72 -44
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h +0 -127
- data/src/core/lib/gpr/mpscq.cc +0 -117
- data/src/core/lib/gpr/mpscq.h +0 -88
- data/src/core/lib/gprpp/abstract.h +0 -47
- data/src/core/lib/gprpp/pair.h +0 -38
- data/third_party/boringssl/crypto/cipher_extra/e_ssl3.c +0 -460
- data/third_party/boringssl/crypto/fipsmodule/modes/ccm.c +0 -256
- data/third_party/boringssl/include/openssl/lhash_macros.h +0 -174
- data/third_party/boringssl/ssl/custom_extensions.cc +0 -265
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f30efb4297c8f61371e6031f5ded6baeb47525d34b17203e0b0d2427864d4214
|
4
|
+
data.tar.gz: f13bceb9a5a316b8e8ffadeaae6ea8cfa50946063bc0ae22e26f0345f7d86324
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 560fcb479dcd1a620be6cdcec5405184ad9418288aa05a26f55852b87ad2afd5efc7de7cefea9c2ef11bc22142a5b2a1132c29ed35fd9582b8346aecdf37178a
|
7
|
+
data.tar.gz: 8471689811c79f7849a6287ab573e95ee7bae115d67e317c717f49ce6310ab374c1ee713b36327fce5853ca5d662bbe38cab20b27cd38fc619ae6475fb428ca0
|
data/Makefile
CHANGED
@@ -355,7 +355,7 @@ LDFLAGS += -framework CoreFoundation
|
|
355
355
|
endif
|
356
356
|
CFLAGS += -g
|
357
357
|
CPPFLAGS += -g -Wall -Wextra -DOSATOMIC_USE_INLINED=1 -Ithird_party/upb -Isrc/core/ext/upb-generated
|
358
|
-
COREFLAGS += -fno-
|
358
|
+
COREFLAGS += -fno-exceptions
|
359
359
|
LDFLAGS += -g
|
360
360
|
|
361
361
|
CPPFLAGS += $(CPPFLAGS_$(CONFIG))
|
@@ -461,8 +461,8 @@ Q = @
|
|
461
461
|
endif
|
462
462
|
|
463
463
|
CORE_VERSION = 8.0.0
|
464
|
-
CPP_VERSION = 1.
|
465
|
-
CSHARP_VERSION = 2.
|
464
|
+
CPP_VERSION = 1.25.0
|
465
|
+
CSHARP_VERSION = 2.25.0
|
466
466
|
|
467
467
|
CPPFLAGS_NO_ARCH += $(addprefix -I, $(INCLUDES)) $(addprefix -D, $(DEFINES))
|
468
468
|
CPPFLAGS += $(CPPFLAGS_NO_ARCH) $(ARCH_FLAGS)
|
@@ -498,11 +498,11 @@ ifeq ($(HAS_PKG_CONFIG), true)
|
|
498
498
|
CACHE_MK += HAS_PKG_CONFIG = true,
|
499
499
|
endif
|
500
500
|
|
501
|
-
CORE_PC_TEMPLATE = prefix=$(prefix),exec_prefix=\$${prefix},includedir=\$${prefix}/include,libdir=\$${exec_prefix}/lib,,Name: $(PC_NAME),Description: $(PC_DESCRIPTION),Version: $(CORE_VERSION),Cflags: -I\$${includedir} $(PC_CFLAGS),Requires
|
501
|
+
CORE_PC_TEMPLATE = prefix=$(prefix),exec_prefix=\$${prefix},includedir=\$${prefix}/include,libdir=\$${exec_prefix}/lib,,Name: $(PC_NAME),Description: $(PC_DESCRIPTION),Version: $(CORE_VERSION),Cflags: -I\$${includedir} $(PC_CFLAGS),Requires: $(PC_REQUIRES),Libs: -L\$${libdir} $(PC_LIB),Libs.private: $(PC_LIBS_PRIVATE)
|
502
502
|
|
503
|
-
CPP_PC_TEMPLATE = prefix=$(prefix),exec_prefix=\$${prefix},includedir=\$${prefix}/include,libdir=\$${exec_prefix}/lib,,Name: $(PC_NAME),Description: $(PC_DESCRIPTION),Version: $(CPP_VERSION),Cflags: -I\$${includedir} $(PC_CFLAGS),Requires
|
503
|
+
CPP_PC_TEMPLATE = prefix=$(prefix),exec_prefix=\$${prefix},includedir=\$${prefix}/include,libdir=\$${exec_prefix}/lib,,Name: $(PC_NAME),Description: $(PC_DESCRIPTION),Version: $(CPP_VERSION),Cflags: -I\$${includedir} $(PC_CFLAGS),Requires: $(PC_REQUIRES),Libs: -L\$${libdir} $(PC_LIB),Libs.private: $(PC_LIBS_PRIVATE)
|
504
504
|
|
505
|
-
CSHARP_PC_TEMPLATE = prefix=$(prefix),exec_prefix=\$${prefix},includedir=\$${prefix}/include,libdir=\$${exec_prefix}/lib,,Name: $(PC_NAME),Description: $(PC_DESCRIPTION),Version: $(CSHARP_VERSION),Cflags: -I\$${includedir} $(PC_CFLAGS),Requires
|
505
|
+
CSHARP_PC_TEMPLATE = prefix=$(prefix),exec_prefix=\$${prefix},includedir=\$${prefix}/include,libdir=\$${exec_prefix}/lib,,Name: $(PC_NAME),Description: $(PC_DESCRIPTION),Version: $(CSHARP_VERSION),Cflags: -I\$${includedir} $(PC_CFLAGS),Requires: $(PC_REQUIRES),Libs: -L\$${libdir} $(PC_LIB),Libs.private: $(PC_LIBS_PRIVATE)
|
506
506
|
|
507
507
|
ifeq ($(SYSTEM),MINGW32)
|
508
508
|
EXECUTABLE_SUFFIX = .exe
|
@@ -795,7 +795,7 @@ endif
|
|
795
795
|
PC_NAME = gpr
|
796
796
|
PC_DESCRIPTION = gRPC platform support library
|
797
797
|
PC_CFLAGS =
|
798
|
-
|
798
|
+
PC_REQUIRES = $(PC_REQUIRES_GPR)
|
799
799
|
PC_LIBS_PRIVATE = $(PC_LIBS_GPR)
|
800
800
|
PC_LIB = -lgpr
|
801
801
|
GPR_PC_FILE := $(CORE_PC_TEMPLATE)
|
@@ -804,7 +804,7 @@ GPR_PC_FILE := $(CORE_PC_TEMPLATE)
|
|
804
804
|
PC_NAME = gRPC
|
805
805
|
PC_DESCRIPTION = high performance general RPC framework
|
806
806
|
PC_CFLAGS =
|
807
|
-
|
807
|
+
PC_REQUIRES = gpr $(PC_REQUIRES_GRPC) $(PC_REQUIRES_SECURE)
|
808
808
|
PC_LIBS_PRIVATE = $(PC_LIBS_GRPC) $(PC_LIBS_SECURE)
|
809
809
|
PC_LIB = -lgrpc
|
810
810
|
GRPC_PC_FILE := $(CORE_PC_TEMPLATE)
|
@@ -813,7 +813,7 @@ GRPC_PC_FILE := $(CORE_PC_TEMPLATE)
|
|
813
813
|
PC_NAME = gRPC unsecure
|
814
814
|
PC_DESCRIPTION = high performance general RPC framework without SSL
|
815
815
|
PC_CFLAGS =
|
816
|
-
|
816
|
+
PC_REQUIRES = gpr $(PC_REQUIRES_GRPC)
|
817
817
|
PC_LIBS_PRIVATE = $(PC_LIBS_GRPC)
|
818
818
|
PC_LIB = -lgrpc_unsecure
|
819
819
|
GRPC_UNSECURE_PC_FILE := $(CORE_PC_TEMPLATE)
|
@@ -875,7 +875,7 @@ endif
|
|
875
875
|
PC_NAME = gRPC++
|
876
876
|
PC_DESCRIPTION = C++ wrapper for gRPC
|
877
877
|
PC_CFLAGS =
|
878
|
-
|
878
|
+
PC_REQUIRES = grpc $(PC_REQUIRES_GRPCXX)
|
879
879
|
PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
|
880
880
|
PC_LIB = -lgrpc++
|
881
881
|
GRPCXX_PC_FILE := $(CPP_PC_TEMPLATE)
|
@@ -884,7 +884,7 @@ GRPCXX_PC_FILE := $(CPP_PC_TEMPLATE)
|
|
884
884
|
PC_NAME = gRPC++ unsecure
|
885
885
|
PC_DESCRIPTION = C++ wrapper for gRPC without SSL
|
886
886
|
PC_CFLAGS =
|
887
|
-
|
887
|
+
PC_REQUIRES = grpc_unsecure $(PC_REQUIRES_GRPCXX)
|
888
888
|
PC_LIBS_PRIVATE = $(PC_LIBS_GRPCXX)
|
889
889
|
PC_LIB = -lgrpc++_unsecure
|
890
890
|
GRPCXX_UNSECURE_PC_FILE := $(CPP_PC_TEMPLATE)
|
@@ -1038,7 +1038,6 @@ gpr_env_test: $(BINDIR)/$(CONFIG)/gpr_env_test
|
|
1038
1038
|
gpr_host_port_test: $(BINDIR)/$(CONFIG)/gpr_host_port_test
|
1039
1039
|
gpr_log_test: $(BINDIR)/$(CONFIG)/gpr_log_test
|
1040
1040
|
gpr_manual_constructor_test: $(BINDIR)/$(CONFIG)/gpr_manual_constructor_test
|
1041
|
-
gpr_mpscq_test: $(BINDIR)/$(CONFIG)/gpr_mpscq_test
|
1042
1041
|
gpr_spinlock_test: $(BINDIR)/$(CONFIG)/gpr_spinlock_test
|
1043
1042
|
gpr_string_test: $(BINDIR)/$(CONFIG)/gpr_string_test
|
1044
1043
|
gpr_sync_test: $(BINDIR)/$(CONFIG)/gpr_sync_test
|
@@ -1138,7 +1137,6 @@ time_averaged_stats_test: $(BINDIR)/$(CONFIG)/time_averaged_stats_test
|
|
1138
1137
|
timeout_encoding_test: $(BINDIR)/$(CONFIG)/timeout_encoding_test
|
1139
1138
|
timer_heap_test: $(BINDIR)/$(CONFIG)/timer_heap_test
|
1140
1139
|
timer_list_test: $(BINDIR)/$(CONFIG)/timer_list_test
|
1141
|
-
transport_connectivity_state_test: $(BINDIR)/$(CONFIG)/transport_connectivity_state_test
|
1142
1140
|
transport_metadata_test: $(BINDIR)/$(CONFIG)/transport_metadata_test
|
1143
1141
|
transport_security_test: $(BINDIR)/$(CONFIG)/transport_security_test
|
1144
1142
|
udp_server_test: $(BINDIR)/$(CONFIG)/udp_server_test
|
@@ -1219,9 +1217,9 @@ generic_end2end_test: $(BINDIR)/$(CONFIG)/generic_end2end_test
|
|
1219
1217
|
global_config_env_test: $(BINDIR)/$(CONFIG)/global_config_env_test
|
1220
1218
|
global_config_test: $(BINDIR)/$(CONFIG)/global_config_test
|
1221
1219
|
golden_file_test: $(BINDIR)/$(CONFIG)/golden_file_test
|
1220
|
+
gprpp_mpscq_test: $(BINDIR)/$(CONFIG)/gprpp_mpscq_test
|
1222
1221
|
grpc_alts_credentials_options_test: $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test
|
1223
1222
|
grpc_cli: $(BINDIR)/$(CONFIG)/grpc_cli
|
1224
|
-
grpc_core_map_test: $(BINDIR)/$(CONFIG)/grpc_core_map_test
|
1225
1223
|
grpc_cpp_plugin: $(BINDIR)/$(CONFIG)/grpc_cpp_plugin
|
1226
1224
|
grpc_csharp_plugin: $(BINDIR)/$(CONFIG)/grpc_csharp_plugin
|
1227
1225
|
grpc_fetch_oauth2: $(BINDIR)/$(CONFIG)/grpc_fetch_oauth2
|
@@ -1294,9 +1292,11 @@ thread_manager_test: $(BINDIR)/$(CONFIG)/thread_manager_test
|
|
1294
1292
|
thread_stress_test: $(BINDIR)/$(CONFIG)/thread_stress_test
|
1295
1293
|
time_change_test: $(BINDIR)/$(CONFIG)/time_change_test
|
1296
1294
|
timer_test: $(BINDIR)/$(CONFIG)/timer_test
|
1295
|
+
transport_connectivity_state_test: $(BINDIR)/$(CONFIG)/transport_connectivity_state_test
|
1297
1296
|
transport_pid_controller_test: $(BINDIR)/$(CONFIG)/transport_pid_controller_test
|
1298
1297
|
transport_security_common_api_test: $(BINDIR)/$(CONFIG)/transport_security_common_api_test
|
1299
1298
|
writes_per_rpc_test: $(BINDIR)/$(CONFIG)/writes_per_rpc_test
|
1299
|
+
xds_bootstrap_test: $(BINDIR)/$(CONFIG)/xds_bootstrap_test
|
1300
1300
|
xds_end2end_test: $(BINDIR)/$(CONFIG)/xds_end2end_test
|
1301
1301
|
public_headers_must_be_c89: $(BINDIR)/$(CONFIG)/public_headers_must_be_c89
|
1302
1302
|
boringssl_ssl_test: $(BINDIR)/$(CONFIG)/boringssl_ssl_test
|
@@ -1417,7 +1417,7 @@ plugins: $(PROTOC_PLUGINS)
|
|
1417
1417
|
|
1418
1418
|
privatelibs: privatelibs_c privatelibs_cxx
|
1419
1419
|
|
1420
|
-
privatelibs_c: $(LIBDIR)/$(CONFIG)/libalts_test_util.a $(LIBDIR)/$(CONFIG)/
|
1420
|
+
privatelibs_c: $(LIBDIR)/$(CONFIG)/libalts_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libreconnect_server.a $(LIBDIR)/$(CONFIG)/libtest_tcp_server.a $(LIBDIR)/$(CONFIG)/libz.a $(LIBDIR)/$(CONFIG)/libares.a $(LIBDIR)/$(CONFIG)/libbad_ssl_test_server.a $(LIBDIR)/$(CONFIG)/libend2end_tests.a $(LIBDIR)/$(CONFIG)/libend2end_nosec_tests.a
|
1421
1421
|
pc_c: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc.pc $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc
|
1422
1422
|
|
1423
1423
|
pc_c_unsecure: $(LIBDIR)/$(CONFIG)/pkgconfig/grpc_unsecure.pc $(LIBDIR)/$(CONFIG)/pkgconfig/gpr.pc
|
@@ -1478,7 +1478,6 @@ buildtests_c: privatelibs_c \
|
|
1478
1478
|
$(BINDIR)/$(CONFIG)/gpr_host_port_test \
|
1479
1479
|
$(BINDIR)/$(CONFIG)/gpr_log_test \
|
1480
1480
|
$(BINDIR)/$(CONFIG)/gpr_manual_constructor_test \
|
1481
|
-
$(BINDIR)/$(CONFIG)/gpr_mpscq_test \
|
1482
1481
|
$(BINDIR)/$(CONFIG)/gpr_spinlock_test \
|
1483
1482
|
$(BINDIR)/$(CONFIG)/gpr_string_test \
|
1484
1483
|
$(BINDIR)/$(CONFIG)/gpr_sync_test \
|
@@ -1564,7 +1563,6 @@ buildtests_c: privatelibs_c \
|
|
1564
1563
|
$(BINDIR)/$(CONFIG)/timeout_encoding_test \
|
1565
1564
|
$(BINDIR)/$(CONFIG)/timer_heap_test \
|
1566
1565
|
$(BINDIR)/$(CONFIG)/timer_list_test \
|
1567
|
-
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test \
|
1568
1566
|
$(BINDIR)/$(CONFIG)/transport_metadata_test \
|
1569
1567
|
$(BINDIR)/$(CONFIG)/transport_security_test \
|
1570
1568
|
$(BINDIR)/$(CONFIG)/udp_server_test \
|
@@ -1698,9 +1696,9 @@ buildtests_cxx: privatelibs_cxx \
|
|
1698
1696
|
$(BINDIR)/$(CONFIG)/global_config_env_test \
|
1699
1697
|
$(BINDIR)/$(CONFIG)/global_config_test \
|
1700
1698
|
$(BINDIR)/$(CONFIG)/golden_file_test \
|
1699
|
+
$(BINDIR)/$(CONFIG)/gprpp_mpscq_test \
|
1701
1700
|
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test \
|
1702
1701
|
$(BINDIR)/$(CONFIG)/grpc_cli \
|
1703
|
-
$(BINDIR)/$(CONFIG)/grpc_core_map_test \
|
1704
1702
|
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2 \
|
1705
1703
|
$(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test \
|
1706
1704
|
$(BINDIR)/$(CONFIG)/grpc_spiffe_security_connector_test \
|
@@ -1766,9 +1764,11 @@ buildtests_cxx: privatelibs_cxx \
|
|
1766
1764
|
$(BINDIR)/$(CONFIG)/thread_stress_test \
|
1767
1765
|
$(BINDIR)/$(CONFIG)/time_change_test \
|
1768
1766
|
$(BINDIR)/$(CONFIG)/timer_test \
|
1767
|
+
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test \
|
1769
1768
|
$(BINDIR)/$(CONFIG)/transport_pid_controller_test \
|
1770
1769
|
$(BINDIR)/$(CONFIG)/transport_security_common_api_test \
|
1771
1770
|
$(BINDIR)/$(CONFIG)/writes_per_rpc_test \
|
1771
|
+
$(BINDIR)/$(CONFIG)/xds_bootstrap_test \
|
1772
1772
|
$(BINDIR)/$(CONFIG)/xds_end2end_test \
|
1773
1773
|
$(BINDIR)/$(CONFIG)/boringssl_ssl_test \
|
1774
1774
|
$(BINDIR)/$(CONFIG)/boringssl_crypto_test \
|
@@ -1867,9 +1867,9 @@ buildtests_cxx: privatelibs_cxx \
|
|
1867
1867
|
$(BINDIR)/$(CONFIG)/global_config_env_test \
|
1868
1868
|
$(BINDIR)/$(CONFIG)/global_config_test \
|
1869
1869
|
$(BINDIR)/$(CONFIG)/golden_file_test \
|
1870
|
+
$(BINDIR)/$(CONFIG)/gprpp_mpscq_test \
|
1870
1871
|
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test \
|
1871
1872
|
$(BINDIR)/$(CONFIG)/grpc_cli \
|
1872
|
-
$(BINDIR)/$(CONFIG)/grpc_core_map_test \
|
1873
1873
|
$(BINDIR)/$(CONFIG)/grpc_fetch_oauth2 \
|
1874
1874
|
$(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test \
|
1875
1875
|
$(BINDIR)/$(CONFIG)/grpc_spiffe_security_connector_test \
|
@@ -1935,9 +1935,11 @@ buildtests_cxx: privatelibs_cxx \
|
|
1935
1935
|
$(BINDIR)/$(CONFIG)/thread_stress_test \
|
1936
1936
|
$(BINDIR)/$(CONFIG)/time_change_test \
|
1937
1937
|
$(BINDIR)/$(CONFIG)/timer_test \
|
1938
|
+
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test \
|
1938
1939
|
$(BINDIR)/$(CONFIG)/transport_pid_controller_test \
|
1939
1940
|
$(BINDIR)/$(CONFIG)/transport_security_common_api_test \
|
1940
1941
|
$(BINDIR)/$(CONFIG)/writes_per_rpc_test \
|
1942
|
+
$(BINDIR)/$(CONFIG)/xds_bootstrap_test \
|
1941
1943
|
$(BINDIR)/$(CONFIG)/xds_end2end_test \
|
1942
1944
|
$(BINDIR)/$(CONFIG)/bad_streaming_id_bad_client_test \
|
1943
1945
|
$(BINDIR)/$(CONFIG)/badreq_bad_client_test \
|
@@ -2048,8 +2050,6 @@ test_c: buildtests_c
|
|
2048
2050
|
$(Q) $(BINDIR)/$(CONFIG)/gpr_log_test || ( echo test gpr_log_test failed ; exit 1 )
|
2049
2051
|
$(E) "[RUN] Testing gpr_manual_constructor_test"
|
2050
2052
|
$(Q) $(BINDIR)/$(CONFIG)/gpr_manual_constructor_test || ( echo test gpr_manual_constructor_test failed ; exit 1 )
|
2051
|
-
$(E) "[RUN] Testing gpr_mpscq_test"
|
2052
|
-
$(Q) $(BINDIR)/$(CONFIG)/gpr_mpscq_test || ( echo test gpr_mpscq_test failed ; exit 1 )
|
2053
2053
|
$(E) "[RUN] Testing gpr_spinlock_test"
|
2054
2054
|
$(Q) $(BINDIR)/$(CONFIG)/gpr_spinlock_test || ( echo test gpr_spinlock_test failed ; exit 1 )
|
2055
2055
|
$(E) "[RUN] Testing gpr_string_test"
|
@@ -2214,8 +2214,6 @@ test_c: buildtests_c
|
|
2214
2214
|
$(Q) $(BINDIR)/$(CONFIG)/timer_heap_test || ( echo test timer_heap_test failed ; exit 1 )
|
2215
2215
|
$(E) "[RUN] Testing timer_list_test"
|
2216
2216
|
$(Q) $(BINDIR)/$(CONFIG)/timer_list_test || ( echo test timer_list_test failed ; exit 1 )
|
2217
|
-
$(E) "[RUN] Testing transport_connectivity_state_test"
|
2218
|
-
$(Q) $(BINDIR)/$(CONFIG)/transport_connectivity_state_test || ( echo test transport_connectivity_state_test failed ; exit 1 )
|
2219
2217
|
$(E) "[RUN] Testing transport_metadata_test"
|
2220
2218
|
$(Q) $(BINDIR)/$(CONFIG)/transport_metadata_test || ( echo test transport_metadata_test failed ; exit 1 )
|
2221
2219
|
$(E) "[RUN] Testing transport_security_test"
|
@@ -2376,10 +2374,10 @@ test_cxx: buildtests_cxx
|
|
2376
2374
|
$(Q) $(BINDIR)/$(CONFIG)/global_config_test || ( echo test global_config_test failed ; exit 1 )
|
2377
2375
|
$(E) "[RUN] Testing golden_file_test"
|
2378
2376
|
$(Q) $(BINDIR)/$(CONFIG)/golden_file_test || ( echo test golden_file_test failed ; exit 1 )
|
2377
|
+
$(E) "[RUN] Testing gprpp_mpscq_test"
|
2378
|
+
$(Q) $(BINDIR)/$(CONFIG)/gprpp_mpscq_test || ( echo test gprpp_mpscq_test failed ; exit 1 )
|
2379
2379
|
$(E) "[RUN] Testing grpc_alts_credentials_options_test"
|
2380
2380
|
$(Q) $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test || ( echo test grpc_alts_credentials_options_test failed ; exit 1 )
|
2381
|
-
$(E) "[RUN] Testing grpc_core_map_test"
|
2382
|
-
$(Q) $(BINDIR)/$(CONFIG)/grpc_core_map_test || ( echo test grpc_core_map_test failed ; exit 1 )
|
2383
2381
|
$(E) "[RUN] Testing grpc_linux_system_roots_test"
|
2384
2382
|
$(Q) $(BINDIR)/$(CONFIG)/grpc_linux_system_roots_test || ( echo test grpc_linux_system_roots_test failed ; exit 1 )
|
2385
2383
|
$(E) "[RUN] Testing grpc_spiffe_security_connector_test"
|
@@ -2480,12 +2478,16 @@ test_cxx: buildtests_cxx
|
|
2480
2478
|
$(Q) $(BINDIR)/$(CONFIG)/time_change_test || ( echo test time_change_test failed ; exit 1 )
|
2481
2479
|
$(E) "[RUN] Testing timer_test"
|
2482
2480
|
$(Q) $(BINDIR)/$(CONFIG)/timer_test || ( echo test timer_test failed ; exit 1 )
|
2481
|
+
$(E) "[RUN] Testing transport_connectivity_state_test"
|
2482
|
+
$(Q) $(BINDIR)/$(CONFIG)/transport_connectivity_state_test || ( echo test transport_connectivity_state_test failed ; exit 1 )
|
2483
2483
|
$(E) "[RUN] Testing transport_pid_controller_test"
|
2484
2484
|
$(Q) $(BINDIR)/$(CONFIG)/transport_pid_controller_test || ( echo test transport_pid_controller_test failed ; exit 1 )
|
2485
2485
|
$(E) "[RUN] Testing transport_security_common_api_test"
|
2486
2486
|
$(Q) $(BINDIR)/$(CONFIG)/transport_security_common_api_test || ( echo test transport_security_common_api_test failed ; exit 1 )
|
2487
2487
|
$(E) "[RUN] Testing writes_per_rpc_test"
|
2488
2488
|
$(Q) $(BINDIR)/$(CONFIG)/writes_per_rpc_test || ( echo test writes_per_rpc_test failed ; exit 1 )
|
2489
|
+
$(E) "[RUN] Testing xds_bootstrap_test"
|
2490
|
+
$(Q) $(BINDIR)/$(CONFIG)/xds_bootstrap_test || ( echo test xds_bootstrap_test failed ; exit 1 )
|
2489
2491
|
$(E) "[RUN] Testing xds_end2end_test"
|
2490
2492
|
$(Q) $(BINDIR)/$(CONFIG)/xds_end2end_test || ( echo test xds_end2end_test failed ; exit 1 )
|
2491
2493
|
$(E) "[RUN] Testing bad_streaming_id_bad_client_test"
|
@@ -2713,54 +2715,6 @@ $(GENDIR)/src/proto/grpc/lb/v1/load_balancer.grpc.pb.cc: src/proto/grpc/lb/v1/lo
|
|
2713
2715
|
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
2714
2716
|
endif
|
2715
2717
|
|
2716
|
-
ifeq ($(NO_PROTOC),true)
|
2717
|
-
$(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.pb.cc: protoc_dep_error
|
2718
|
-
$(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.grpc.pb.cc: protoc_dep_error
|
2719
|
-
else
|
2720
|
-
|
2721
|
-
$(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.pb.cc: src/proto/grpc/lb/v2/eds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
2722
|
-
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
2723
|
-
$(Q) mkdir -p `dirname $@`
|
2724
|
-
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
2725
|
-
|
2726
|
-
$(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.grpc.pb.cc: src/proto/grpc/lb/v2/eds_for_test.proto $(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
2727
|
-
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
2728
|
-
$(Q) mkdir -p `dirname $@`
|
2729
|
-
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
2730
|
-
endif
|
2731
|
-
|
2732
|
-
ifeq ($(NO_PROTOC),true)
|
2733
|
-
$(GENDIR)/src/proto/grpc/lb/v2/lrs_for_test.pb.cc: protoc_dep_error
|
2734
|
-
$(GENDIR)/src/proto/grpc/lb/v2/lrs_for_test.grpc.pb.cc: protoc_dep_error
|
2735
|
-
else
|
2736
|
-
|
2737
|
-
$(GENDIR)/src/proto/grpc/lb/v2/lrs_for_test.pb.cc: src/proto/grpc/lb/v2/lrs_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.pb.cc
|
2738
|
-
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
2739
|
-
$(Q) mkdir -p `dirname $@`
|
2740
|
-
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
2741
|
-
|
2742
|
-
$(GENDIR)/src/proto/grpc/lb/v2/lrs_for_test.grpc.pb.cc: src/proto/grpc/lb/v2/lrs_for_test.proto $(GENDIR)/src/proto/grpc/lb/v2/lrs_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/lb/v2/eds_for_test.grpc.pb.cc
|
2743
|
-
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
2744
|
-
$(Q) mkdir -p `dirname $@`
|
2745
|
-
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
2746
|
-
endif
|
2747
|
-
|
2748
|
-
ifeq ($(NO_PROTOC),true)
|
2749
|
-
$(GENDIR)/src/proto/grpc/lb/v2/orca_load_report_for_test.pb.cc: protoc_dep_error
|
2750
|
-
$(GENDIR)/src/proto/grpc/lb/v2/orca_load_report_for_test.grpc.pb.cc: protoc_dep_error
|
2751
|
-
else
|
2752
|
-
|
2753
|
-
$(GENDIR)/src/proto/grpc/lb/v2/orca_load_report_for_test.pb.cc: src/proto/grpc/lb/v2/orca_load_report_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
2754
|
-
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
2755
|
-
$(Q) mkdir -p `dirname $@`
|
2756
|
-
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
2757
|
-
|
2758
|
-
$(GENDIR)/src/proto/grpc/lb/v2/orca_load_report_for_test.grpc.pb.cc: src/proto/grpc/lb/v2/orca_load_report_for_test.proto $(GENDIR)/src/proto/grpc/lb/v2/orca_load_report_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
2759
|
-
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
2760
|
-
$(Q) mkdir -p `dirname $@`
|
2761
|
-
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
2762
|
-
endif
|
2763
|
-
|
2764
2718
|
ifeq ($(NO_PROTOC),true)
|
2765
2719
|
$(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.pb.cc: protoc_dep_error
|
2766
2720
|
$(GENDIR)/src/proto/grpc/reflection/v1alpha/reflection.grpc.pb.cc: protoc_dep_error
|
@@ -3035,6 +2989,70 @@ $(GENDIR)/src/proto/grpc/testing/worker_service.grpc.pb.cc: src/proto/grpc/testi
|
|
3035
2989
|
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
3036
2990
|
endif
|
3037
2991
|
|
2992
|
+
ifeq ($(NO_PROTOC),true)
|
2993
|
+
$(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc: protoc_dep_error
|
2994
|
+
$(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.grpc.pb.cc: protoc_dep_error
|
2995
|
+
else
|
2996
|
+
|
2997
|
+
$(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc: src/proto/grpc/testing/xds/ads_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc
|
2998
|
+
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
2999
|
+
$(Q) mkdir -p `dirname $@`
|
3000
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
3001
|
+
|
3002
|
+
$(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/ads_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc
|
3003
|
+
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
3004
|
+
$(Q) mkdir -p `dirname $@`
|
3005
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
3006
|
+
endif
|
3007
|
+
|
3008
|
+
ifeq ($(NO_PROTOC),true)
|
3009
|
+
$(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc: protoc_dep_error
|
3010
|
+
$(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc: protoc_dep_error
|
3011
|
+
else
|
3012
|
+
|
3013
|
+
$(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc: src/proto/grpc/testing/xds/eds_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
3014
|
+
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
3015
|
+
$(Q) mkdir -p `dirname $@`
|
3016
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
3017
|
+
|
3018
|
+
$(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/eds_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
3019
|
+
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
3020
|
+
$(Q) mkdir -p `dirname $@`
|
3021
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
3022
|
+
endif
|
3023
|
+
|
3024
|
+
ifeq ($(NO_PROTOC),true)
|
3025
|
+
$(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc: protoc_dep_error
|
3026
|
+
$(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.grpc.pb.cc: protoc_dep_error
|
3027
|
+
else
|
3028
|
+
|
3029
|
+
$(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc: src/proto/grpc/testing/xds/lrs_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc
|
3030
|
+
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
3031
|
+
$(Q) mkdir -p `dirname $@`
|
3032
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
3033
|
+
|
3034
|
+
$(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/lrs_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS) $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc
|
3035
|
+
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
3036
|
+
$(Q) mkdir -p `dirname $@`
|
3037
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
3038
|
+
endif
|
3039
|
+
|
3040
|
+
ifeq ($(NO_PROTOC),true)
|
3041
|
+
$(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc: protoc_dep_error
|
3042
|
+
$(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.grpc.pb.cc: protoc_dep_error
|
3043
|
+
else
|
3044
|
+
|
3045
|
+
$(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc: src/proto/grpc/testing/xds/orca_load_report_for_test.proto $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
3046
|
+
$(E) "[PROTOC] Generating protobuf CC file from $<"
|
3047
|
+
$(Q) mkdir -p `dirname $@`
|
3048
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --cpp_out=$(GENDIR) $<
|
3049
|
+
|
3050
|
+
$(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.grpc.pb.cc: src/proto/grpc/testing/xds/orca_load_report_for_test.proto $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc $(PROTOBUF_DEP) $(PROTOC_PLUGINS)
|
3051
|
+
$(E) "[GRPC] Generating gRPC's protobuf service CC file from $<"
|
3052
|
+
$(Q) mkdir -p `dirname $@`
|
3053
|
+
$(Q) $(PROTOC) -Ithird_party/protobuf/src -I. --grpc_out=$(GENDIR) --plugin=protoc-gen-grpc=$(PROTOC_PLUGINS_DIR)/grpc_cpp_plugin$(EXECUTABLE_SUFFIX) $<
|
3054
|
+
endif
|
3055
|
+
|
3038
3056
|
|
3039
3057
|
ifeq ($(CONFIG),stapprof)
|
3040
3058
|
src/core/profiling/stap_timers.c: $(GENDIR)/src/core/profiling/stap_probes.h
|
@@ -3398,50 +3416,6 @@ endif
|
|
3398
3416
|
endif
|
3399
3417
|
|
3400
3418
|
|
3401
|
-
LIBCXXABI_SRC = \
|
3402
|
-
third_party/libcxxabi/src/abort_message.cpp \
|
3403
|
-
third_party/libcxxabi/src/cxa_aux_runtime.cpp \
|
3404
|
-
third_party/libcxxabi/src/cxa_default_handlers.cpp \
|
3405
|
-
third_party/libcxxabi/src/cxa_demangle.cpp \
|
3406
|
-
third_party/libcxxabi/src/cxa_exception_storage.cpp \
|
3407
|
-
third_party/libcxxabi/src/cxa_guard.cpp \
|
3408
|
-
third_party/libcxxabi/src/cxa_handlers.cpp \
|
3409
|
-
third_party/libcxxabi/src/cxa_noexception.cpp \
|
3410
|
-
third_party/libcxxabi/src/cxa_thread_atexit.cpp \
|
3411
|
-
third_party/libcxxabi/src/cxa_unexpected.cpp \
|
3412
|
-
third_party/libcxxabi/src/cxa_vector.cpp \
|
3413
|
-
third_party/libcxxabi/src/cxa_virtual.cpp \
|
3414
|
-
third_party/libcxxabi/src/fallback_malloc.cpp \
|
3415
|
-
third_party/libcxxabi/src/private_typeinfo.cpp \
|
3416
|
-
third_party/libcxxabi/src/stdlib_exception.cpp \
|
3417
|
-
third_party/libcxxabi/src/stdlib_new_delete.cpp \
|
3418
|
-
third_party/libcxxabi/src/stdlib_stdexcept.cpp \
|
3419
|
-
third_party/libcxxabi/src/stdlib_typeinfo.cpp \
|
3420
|
-
|
3421
|
-
PUBLIC_HEADERS_C += \
|
3422
|
-
|
3423
|
-
LIBCXXABI_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBCXXABI_SRC))))
|
3424
|
-
|
3425
|
-
$(LIBCXXABI_OBJS): CPPFLAGS += -D_LIBCPP_DISABLE_EXTERN_TEMPLATE -D_LIBCXXABI_BUILDING_LIBRARY -D_LIBCXXABI_NO_EXCEPTIONS -Ithird_party/libcxxabi/include -nostdinc++ -Ithird_party/libcxx/include $(W_NO_UNUSED_BUT_SET_VARIABLE) $(W_NO_MAYBE_UNINITIALIZED) -fvisibility=hidden
|
3426
|
-
$(LIBCXXABI_OBJS): CXXFLAGS += $(W_NO_CXX14_COMPAT)
|
3427
|
-
|
3428
|
-
$(LIBDIR)/$(CONFIG)/libcxxabi.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(LIBCXXABI_OBJS)
|
3429
|
-
$(E) "[AR] Creating $@"
|
3430
|
-
$(Q) mkdir -p `dirname $@`
|
3431
|
-
$(Q) rm -f $(LIBDIR)/$(CONFIG)/libcxxabi.a
|
3432
|
-
$(Q) $(AR) $(AROPTS) $(LIBDIR)/$(CONFIG)/libcxxabi.a $(LIBCXXABI_OBJS)
|
3433
|
-
ifeq ($(SYSTEM),Darwin)
|
3434
|
-
$(Q) ranlib -no_warning_for_no_symbols $(LIBDIR)/$(CONFIG)/libcxxabi.a
|
3435
|
-
endif
|
3436
|
-
|
3437
|
-
|
3438
|
-
|
3439
|
-
|
3440
|
-
ifneq ($(NO_DEPS),true)
|
3441
|
-
-include $(LIBCXXABI_OBJS:.o=.dep)
|
3442
|
-
endif
|
3443
|
-
|
3444
|
-
|
3445
3419
|
LIBGPR_SRC = \
|
3446
3420
|
src/core/lib/gpr/alloc.cc \
|
3447
3421
|
src/core/lib/gpr/atm.cc \
|
@@ -3457,7 +3431,6 @@ LIBGPR_SRC = \
|
|
3457
3431
|
src/core/lib/gpr/log_linux.cc \
|
3458
3432
|
src/core/lib/gpr/log_posix.cc \
|
3459
3433
|
src/core/lib/gpr/log_windows.cc \
|
3460
|
-
src/core/lib/gpr/mpscq.cc \
|
3461
3434
|
src/core/lib/gpr/murmur_hash.cc \
|
3462
3435
|
src/core/lib/gpr/string.cc \
|
3463
3436
|
src/core/lib/gpr/string_posix.cc \
|
@@ -3479,6 +3452,7 @@ LIBGPR_SRC = \
|
|
3479
3452
|
src/core/lib/gprpp/fork.cc \
|
3480
3453
|
src/core/lib/gprpp/global_config_env.cc \
|
3481
3454
|
src/core/lib/gprpp/host_port.cc \
|
3455
|
+
src/core/lib/gprpp/mpscq.cc \
|
3482
3456
|
src/core/lib/gprpp/thd_posix.cc \
|
3483
3457
|
src/core/lib/gprpp/thd_windows.cc \
|
3484
3458
|
src/core/lib/profiling/basic_timers.cc \
|
@@ -3883,9 +3857,11 @@ LIBGRPC_SRC = \
|
|
3883
3857
|
src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c \
|
3884
3858
|
src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \
|
3885
3859
|
src/core/ext/filters/client_channel/lb_policy/xds/xds.cc \
|
3886
|
-
src/core/ext/filters/client_channel/
|
3887
|
-
src/core/ext/filters/client_channel/
|
3888
|
-
src/core/ext/filters/client_channel/
|
3860
|
+
src/core/ext/filters/client_channel/xds/xds_api.cc \
|
3861
|
+
src/core/ext/filters/client_channel/xds/xds_bootstrap.cc \
|
3862
|
+
src/core/ext/filters/client_channel/xds/xds_channel_secure.cc \
|
3863
|
+
src/core/ext/filters/client_channel/xds/xds_client.cc \
|
3864
|
+
src/core/ext/filters/client_channel/xds/xds_client_stats.cc \
|
3889
3865
|
src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c \
|
3890
3866
|
src/core/ext/upb-generated/envoy/api/v2/cds.upb.c \
|
3891
3867
|
src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c \
|
@@ -5344,16 +5320,11 @@ LIBGRPC_UNSECURE_SRC = \
|
|
5344
5320
|
src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc \
|
5345
5321
|
src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc \
|
5346
5322
|
src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc \
|
5347
|
-
src/core/ext/filters/client_channel/
|
5348
|
-
src/core/ext/filters/client_channel/
|
5349
|
-
src/core/ext/filters/client_channel/
|
5350
|
-
src/core/ext/filters/client_channel/
|
5351
|
-
src/core/ext/filters/client_channel/
|
5352
|
-
src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c \
|
5353
|
-
src/core/ext/filters/client_channel/lb_policy/xds/xds.cc \
|
5354
|
-
src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.cc \
|
5355
|
-
src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.cc \
|
5356
|
-
src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc \
|
5323
|
+
src/core/ext/filters/client_channel/xds/xds_api.cc \
|
5324
|
+
src/core/ext/filters/client_channel/xds/xds_bootstrap.cc \
|
5325
|
+
src/core/ext/filters/client_channel/xds/xds_channel.cc \
|
5326
|
+
src/core/ext/filters/client_channel/xds/xds_client.cc \
|
5327
|
+
src/core/ext/filters/client_channel/xds/xds_client_stats.cc \
|
5357
5328
|
src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c \
|
5358
5329
|
src/core/ext/upb-generated/envoy/api/v2/cds.upb.c \
|
5359
5330
|
src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c \
|
@@ -5374,6 +5345,13 @@ LIBGRPC_UNSECURE_SRC = \
|
|
5374
5345
|
src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c \
|
5375
5346
|
src/core/ext/upb-generated/envoy/type/percent.upb.c \
|
5376
5347
|
src/core/ext/upb-generated/envoy/type/range.upb.c \
|
5348
|
+
src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc \
|
5349
|
+
src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc \
|
5350
|
+
src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.cc \
|
5351
|
+
src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc \
|
5352
|
+
src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc \
|
5353
|
+
src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c \
|
5354
|
+
src/core/ext/filters/client_channel/lb_policy/xds/xds.cc \
|
5377
5355
|
src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc \
|
5378
5356
|
src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc \
|
5379
5357
|
src/core/ext/filters/census/grpc_context.cc \
|
@@ -5645,6 +5623,8 @@ LIBGRPC++_SRC = \
|
|
5645
5623
|
src/cpp/common/secure_auth_context.cc \
|
5646
5624
|
src/cpp/common/secure_channel_arguments.cc \
|
5647
5625
|
src/cpp/common/secure_create_auth_context.cc \
|
5626
|
+
src/cpp/common/tls_credentials_options.cc \
|
5627
|
+
src/cpp/common/tls_credentials_options_util.cc \
|
5648
5628
|
src/cpp/server/insecure_server_credentials.cc \
|
5649
5629
|
src/cpp/server/secure_server_credentials.cc \
|
5650
5630
|
src/cpp/client/channel_cc.cc \
|
@@ -5779,6 +5759,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5779
5759
|
include/grpcpp/security/credentials_impl.h \
|
5780
5760
|
include/grpcpp/security/server_credentials.h \
|
5781
5761
|
include/grpcpp/security/server_credentials_impl.h \
|
5762
|
+
include/grpcpp/security/tls_credentials_options.h \
|
5782
5763
|
include/grpcpp/server.h \
|
5783
5764
|
include/grpcpp/server_builder.h \
|
5784
5765
|
include/grpcpp/server_builder_impl.h \
|
@@ -5925,6 +5906,7 @@ PUBLIC_HEADERS_CXX += \
|
|
5925
5906
|
include/grpcpp/impl/codegen/interceptor_common.h \
|
5926
5907
|
include/grpcpp/impl/codegen/message_allocator.h \
|
5927
5908
|
include/grpcpp/impl/codegen/metadata_map.h \
|
5909
|
+
include/grpcpp/impl/codegen/method_handler.h \
|
5928
5910
|
include/grpcpp/impl/codegen/method_handler_impl.h \
|
5929
5911
|
include/grpcpp/impl/codegen/rpc_method.h \
|
5930
5912
|
include/grpcpp/impl/codegen/rpc_service_method.h \
|
@@ -6396,6 +6378,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6396
6378
|
include/grpcpp/impl/codegen/interceptor_common.h \
|
6397
6379
|
include/grpcpp/impl/codegen/message_allocator.h \
|
6398
6380
|
include/grpcpp/impl/codegen/metadata_map.h \
|
6381
|
+
include/grpcpp/impl/codegen/method_handler.h \
|
6399
6382
|
include/grpcpp/impl/codegen/method_handler_impl.h \
|
6400
6383
|
include/grpcpp/impl/codegen/rpc_method.h \
|
6401
6384
|
include/grpcpp/impl/codegen/rpc_service_method.h \
|
@@ -6574,6 +6557,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6574
6557
|
include/grpcpp/impl/codegen/interceptor_common.h \
|
6575
6558
|
include/grpcpp/impl/codegen/message_allocator.h \
|
6576
6559
|
include/grpcpp/impl/codegen/metadata_map.h \
|
6560
|
+
include/grpcpp/impl/codegen/method_handler.h \
|
6577
6561
|
include/grpcpp/impl/codegen/method_handler_impl.h \
|
6578
6562
|
include/grpcpp/impl/codegen/rpc_method.h \
|
6579
6563
|
include/grpcpp/impl/codegen/rpc_service_method.h \
|
@@ -6810,6 +6794,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6810
6794
|
include/grpcpp/security/credentials_impl.h \
|
6811
6795
|
include/grpcpp/security/server_credentials.h \
|
6812
6796
|
include/grpcpp/security/server_credentials_impl.h \
|
6797
|
+
include/grpcpp/security/tls_credentials_options.h \
|
6813
6798
|
include/grpcpp/server.h \
|
6814
6799
|
include/grpcpp/server_builder.h \
|
6815
6800
|
include/grpcpp/server_builder_impl.h \
|
@@ -6956,6 +6941,7 @@ PUBLIC_HEADERS_CXX += \
|
|
6956
6941
|
include/grpcpp/impl/codegen/interceptor_common.h \
|
6957
6942
|
include/grpcpp/impl/codegen/message_allocator.h \
|
6958
6943
|
include/grpcpp/impl/codegen/metadata_map.h \
|
6944
|
+
include/grpcpp/impl/codegen/method_handler.h \
|
6959
6945
|
include/grpcpp/impl/codegen/method_handler_impl.h \
|
6960
6946
|
include/grpcpp/impl/codegen/rpc_method.h \
|
6961
6947
|
include/grpcpp/impl/codegen/rpc_service_method.h \
|
@@ -7754,6 +7740,7 @@ LIBBORINGSSL_SRC = \
|
|
7754
7740
|
third_party/boringssl/crypto/bytestring/ber.c \
|
7755
7741
|
third_party/boringssl/crypto/bytestring/cbb.c \
|
7756
7742
|
third_party/boringssl/crypto/bytestring/cbs.c \
|
7743
|
+
third_party/boringssl/crypto/bytestring/unicode.c \
|
7757
7744
|
third_party/boringssl/crypto/chacha/chacha.c \
|
7758
7745
|
third_party/boringssl/crypto/cipher_extra/cipher_extra.c \
|
7759
7746
|
third_party/boringssl/crypto/cipher_extra/derive_key.c \
|
@@ -7764,7 +7751,6 @@ LIBBORINGSSL_SRC = \
|
|
7764
7751
|
third_party/boringssl/crypto/cipher_extra/e_null.c \
|
7765
7752
|
third_party/boringssl/crypto/cipher_extra/e_rc2.c \
|
7766
7753
|
third_party/boringssl/crypto/cipher_extra/e_rc4.c \
|
7767
|
-
third_party/boringssl/crypto/cipher_extra/e_ssl3.c \
|
7768
7754
|
third_party/boringssl/crypto/cipher_extra/e_tls.c \
|
7769
7755
|
third_party/boringssl/crypto/cipher_extra/tls_cbc.c \
|
7770
7756
|
third_party/boringssl/crypto/cmac/cmac.c \
|
@@ -7785,7 +7771,8 @@ LIBBORINGSSL_SRC = \
|
|
7785
7771
|
third_party/boringssl/crypto/dsa/dsa.c \
|
7786
7772
|
third_party/boringssl/crypto/dsa/dsa_asn1.c \
|
7787
7773
|
third_party/boringssl/crypto/ec_extra/ec_asn1.c \
|
7788
|
-
third_party/boringssl/crypto/
|
7774
|
+
third_party/boringssl/crypto/ec_extra/ec_derive.c \
|
7775
|
+
third_party/boringssl/crypto/ecdh_extra/ecdh_extra.c \
|
7789
7776
|
third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c \
|
7790
7777
|
third_party/boringssl/crypto/engine/engine.c \
|
7791
7778
|
third_party/boringssl/crypto/err/err.c \
|
@@ -7800,14 +7787,18 @@ LIBBORINGSSL_SRC = \
|
|
7800
7787
|
third_party/boringssl/crypto/evp/p_ed25519_asn1.c \
|
7801
7788
|
third_party/boringssl/crypto/evp/p_rsa.c \
|
7802
7789
|
third_party/boringssl/crypto/evp/p_rsa_asn1.c \
|
7790
|
+
third_party/boringssl/crypto/evp/p_x25519.c \
|
7791
|
+
third_party/boringssl/crypto/evp/p_x25519_asn1.c \
|
7803
7792
|
third_party/boringssl/crypto/evp/pbkdf.c \
|
7804
7793
|
third_party/boringssl/crypto/evp/print.c \
|
7805
7794
|
third_party/boringssl/crypto/evp/scrypt.c \
|
7806
7795
|
third_party/boringssl/crypto/evp/sign.c \
|
7807
7796
|
third_party/boringssl/crypto/ex_data.c \
|
7808
7797
|
third_party/boringssl/crypto/fipsmodule/bcm.c \
|
7798
|
+
third_party/boringssl/crypto/fipsmodule/fips_shared_support.c \
|
7809
7799
|
third_party/boringssl/crypto/fipsmodule/is_fips.c \
|
7810
7800
|
third_party/boringssl/crypto/hkdf/hkdf.c \
|
7801
|
+
third_party/boringssl/crypto/hrss/hrss.c \
|
7811
7802
|
third_party/boringssl/crypto/lhash/lhash.c \
|
7812
7803
|
third_party/boringssl/crypto/mem.c \
|
7813
7804
|
third_party/boringssl/crypto/obj/obj.c \
|
@@ -7838,6 +7829,8 @@ LIBBORINGSSL_SRC = \
|
|
7838
7829
|
third_party/boringssl/crypto/refcount_c11.c \
|
7839
7830
|
third_party/boringssl/crypto/refcount_lock.c \
|
7840
7831
|
third_party/boringssl/crypto/rsa_extra/rsa_asn1.c \
|
7832
|
+
third_party/boringssl/crypto/rsa_extra/rsa_print.c \
|
7833
|
+
third_party/boringssl/crypto/siphash/siphash.c \
|
7841
7834
|
third_party/boringssl/crypto/stack/stack.c \
|
7842
7835
|
third_party/boringssl/crypto/thread.c \
|
7843
7836
|
third_party/boringssl/crypto/thread_none.c \
|
@@ -7914,6 +7907,7 @@ LIBBORINGSSL_SRC = \
|
|
7914
7907
|
third_party/boringssl/crypto/x509v3/v3_int.c \
|
7915
7908
|
third_party/boringssl/crypto/x509v3/v3_lib.c \
|
7916
7909
|
third_party/boringssl/crypto/x509v3/v3_ncons.c \
|
7910
|
+
third_party/boringssl/crypto/x509v3/v3_ocsp.c \
|
7917
7911
|
third_party/boringssl/crypto/x509v3/v3_pci.c \
|
7918
7912
|
third_party/boringssl/crypto/x509v3/v3_pcia.c \
|
7919
7913
|
third_party/boringssl/crypto/x509v3/v3_pcons.c \
|
@@ -7925,7 +7919,6 @@ LIBBORINGSSL_SRC = \
|
|
7925
7919
|
third_party/boringssl/crypto/x509v3/v3_sxnet.c \
|
7926
7920
|
third_party/boringssl/crypto/x509v3/v3_utl.c \
|
7927
7921
|
third_party/boringssl/ssl/bio_ssl.cc \
|
7928
|
-
third_party/boringssl/ssl/custom_extensions.cc \
|
7929
7922
|
third_party/boringssl/ssl/d1_both.cc \
|
7930
7923
|
third_party/boringssl/ssl/d1_lib.cc \
|
7931
7924
|
third_party/boringssl/ssl/d1_pkt.cc \
|
@@ -7968,7 +7961,7 @@ PUBLIC_HEADERS_C += \
|
|
7968
7961
|
LIBBORINGSSL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_SRC))))
|
7969
7962
|
|
7970
7963
|
$(LIBBORINGSSL_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
|
7971
|
-
$(LIBBORINGSSL_OBJS): CXXFLAGS += -fno-
|
7964
|
+
$(LIBBORINGSSL_OBJS): CXXFLAGS += -fno-exceptions
|
7972
7965
|
$(LIBBORINGSSL_OBJS): CFLAGS += -g
|
7973
7966
|
|
7974
7967
|
$(LIBDIR)/$(CONFIG)/libboringssl.a: $(ZLIB_DEP) $(CARES_DEP) $(ADDRESS_SORTING_DEP) $(LIBBORINGSSL_OBJS)
|
@@ -7992,13 +7985,14 @@ LIBBORINGSSL_TEST_UTIL_SRC = \
|
|
7992
7985
|
third_party/boringssl/crypto/test/file_test.cc \
|
7993
7986
|
third_party/boringssl/crypto/test/malloc.cc \
|
7994
7987
|
third_party/boringssl/crypto/test/test_util.cc \
|
7988
|
+
third_party/boringssl/crypto/test/wycheproof_util.cc \
|
7995
7989
|
|
7996
7990
|
PUBLIC_HEADERS_CXX += \
|
7997
7991
|
|
7998
7992
|
LIBBORINGSSL_TEST_UTIL_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(LIBBORINGSSL_TEST_UTIL_SRC))))
|
7999
7993
|
|
8000
7994
|
$(LIBBORINGSSL_TEST_UTIL_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
|
8001
|
-
$(LIBBORINGSSL_TEST_UTIL_OBJS): CXXFLAGS += -fno-
|
7995
|
+
$(LIBBORINGSSL_TEST_UTIL_OBJS): CXXFLAGS += -fno-exceptions
|
8002
7996
|
$(LIBBORINGSSL_TEST_UTIL_OBJS): CFLAGS += -g
|
8003
7997
|
|
8004
7998
|
ifeq ($(NO_PROTOBUF),true)
|
@@ -9988,38 +9982,6 @@ endif
|
|
9988
9982
|
endif
|
9989
9983
|
|
9990
9984
|
|
9991
|
-
GPR_MPSCQ_TEST_SRC = \
|
9992
|
-
test/core/gpr/mpscq_test.cc \
|
9993
|
-
|
9994
|
-
GPR_MPSCQ_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GPR_MPSCQ_TEST_SRC))))
|
9995
|
-
ifeq ($(NO_SECURE),true)
|
9996
|
-
|
9997
|
-
# You can't build secure targets if you don't have OpenSSL.
|
9998
|
-
|
9999
|
-
$(BINDIR)/$(CONFIG)/gpr_mpscq_test: openssl_dep_error
|
10000
|
-
|
10001
|
-
else
|
10002
|
-
|
10003
|
-
|
10004
|
-
|
10005
|
-
$(BINDIR)/$(CONFIG)/gpr_mpscq_test: $(GPR_MPSCQ_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
|
10006
|
-
$(E) "[LD] Linking $@"
|
10007
|
-
$(Q) mkdir -p `dirname $@`
|
10008
|
-
$(Q) $(LDXX) $(LDFLAGS) $(GPR_MPSCQ_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/gpr_mpscq_test
|
10009
|
-
|
10010
|
-
endif
|
10011
|
-
|
10012
|
-
$(OBJDIR)/$(CONFIG)/test/core/gpr/mpscq_test.o: $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
|
10013
|
-
|
10014
|
-
deps_gpr_mpscq_test: $(GPR_MPSCQ_TEST_OBJS:.o=.dep)
|
10015
|
-
|
10016
|
-
ifneq ($(NO_SECURE),true)
|
10017
|
-
ifneq ($(NO_DEPS),true)
|
10018
|
-
-include $(GPR_MPSCQ_TEST_OBJS:.o=.dep)
|
10019
|
-
endif
|
10020
|
-
endif
|
10021
|
-
|
10022
|
-
|
10023
9985
|
GPR_SPINLOCK_TEST_SRC = \
|
10024
9986
|
test/core/gpr/spinlock_test.cc \
|
10025
9987
|
|
@@ -13206,38 +13168,6 @@ endif
|
|
13206
13168
|
endif
|
13207
13169
|
|
13208
13170
|
|
13209
|
-
TRANSPORT_CONNECTIVITY_STATE_TEST_SRC = \
|
13210
|
-
test/core/transport/connectivity_state_test.cc \
|
13211
|
-
|
13212
|
-
TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(TRANSPORT_CONNECTIVITY_STATE_TEST_SRC))))
|
13213
|
-
ifeq ($(NO_SECURE),true)
|
13214
|
-
|
13215
|
-
# You can't build secure targets if you don't have OpenSSL.
|
13216
|
-
|
13217
|
-
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test: openssl_dep_error
|
13218
|
-
|
13219
|
-
else
|
13220
|
-
|
13221
|
-
|
13222
|
-
|
13223
|
-
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test: $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
13224
|
-
$(E) "[LD] Linking $@"
|
13225
|
-
$(Q) mkdir -p `dirname $@`
|
13226
|
-
$(Q) $(LDXX) $(LDFLAGS) $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBS) $(LDLIBS_SECURE) -o $(BINDIR)/$(CONFIG)/transport_connectivity_state_test
|
13227
|
-
|
13228
|
-
endif
|
13229
|
-
|
13230
|
-
$(OBJDIR)/$(CONFIG)/test/core/transport/connectivity_state_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
13231
|
-
|
13232
|
-
deps_transport_connectivity_state_test: $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS:.o=.dep)
|
13233
|
-
|
13234
|
-
ifneq ($(NO_SECURE),true)
|
13235
|
-
ifneq ($(NO_DEPS),true)
|
13236
|
-
-include $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS:.o=.dep)
|
13237
|
-
endif
|
13238
|
-
endif
|
13239
|
-
|
13240
|
-
|
13241
13171
|
TRANSPORT_METADATA_TEST_SRC = \
|
13242
13172
|
test/core/transport/metadata_test.cc \
|
13243
13173
|
|
@@ -15767,7 +15697,7 @@ endif
|
|
15767
15697
|
|
15768
15698
|
|
15769
15699
|
CLIENT_LB_END2END_TEST_SRC = \
|
15770
|
-
$(GENDIR)/src/proto/grpc/
|
15700
|
+
$(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.grpc.pb.cc \
|
15771
15701
|
test/cpp/end2end/client_lb_end2end_test.cc \
|
15772
15702
|
|
15773
15703
|
CLIENT_LB_END2END_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(CLIENT_LB_END2END_TEST_SRC))))
|
@@ -15799,7 +15729,7 @@ endif
|
|
15799
15729
|
|
15800
15730
|
endif
|
15801
15731
|
|
15802
|
-
$(OBJDIR)/$(CONFIG)/src/proto/grpc/
|
15732
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/xds/orca_load_report_for_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
|
15803
15733
|
|
15804
15734
|
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/client_lb_end2end_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
15805
15735
|
|
@@ -15810,7 +15740,7 @@ ifneq ($(NO_DEPS),true)
|
|
15810
15740
|
-include $(CLIENT_LB_END2END_TEST_OBJS:.o=.dep)
|
15811
15741
|
endif
|
15812
15742
|
endif
|
15813
|
-
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/client_lb_end2end_test.o: $(GENDIR)/src/proto/grpc/
|
15743
|
+
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/client_lb_end2end_test.o: $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/orca_load_report_for_test.grpc.pb.cc
|
15814
15744
|
|
15815
15745
|
|
15816
15746
|
CODEGEN_TEST_FULL_SRC = \
|
@@ -16732,15 +16662,15 @@ endif
|
|
16732
16662
|
$(OBJDIR)/$(CONFIG)/test/cpp/codegen/golden_file_test.o: $(GENDIR)/src/proto/grpc/testing/compiler_test.pb.cc $(GENDIR)/src/proto/grpc/testing/compiler_test.grpc.pb.cc
|
16733
16663
|
|
16734
16664
|
|
16735
|
-
|
16736
|
-
test/core/
|
16665
|
+
GPRPP_MPSCQ_TEST_SRC = \
|
16666
|
+
test/core/gprpp/mpscq_test.cc \
|
16737
16667
|
|
16738
|
-
|
16668
|
+
GPRPP_MPSCQ_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GPRPP_MPSCQ_TEST_SRC))))
|
16739
16669
|
ifeq ($(NO_SECURE),true)
|
16740
16670
|
|
16741
16671
|
# You can't build secure targets if you don't have OpenSSL.
|
16742
16672
|
|
16743
|
-
$(BINDIR)/$(CONFIG)/
|
16673
|
+
$(BINDIR)/$(CONFIG)/gprpp_mpscq_test: openssl_dep_error
|
16744
16674
|
|
16745
16675
|
else
|
16746
16676
|
|
@@ -16751,39 +16681,39 @@ ifeq ($(NO_PROTOBUF),true)
|
|
16751
16681
|
|
16752
16682
|
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
16753
16683
|
|
16754
|
-
$(BINDIR)/$(CONFIG)/
|
16684
|
+
$(BINDIR)/$(CONFIG)/gprpp_mpscq_test: protobuf_dep_error
|
16755
16685
|
|
16756
16686
|
else
|
16757
16687
|
|
16758
|
-
$(BINDIR)/$(CONFIG)/
|
16688
|
+
$(BINDIR)/$(CONFIG)/gprpp_mpscq_test: $(PROTOBUF_DEP) $(GPRPP_MPSCQ_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
|
16759
16689
|
$(E) "[LD] Linking $@"
|
16760
16690
|
$(Q) mkdir -p `dirname $@`
|
16761
|
-
$(Q) $(LDXX) $(LDFLAGS) $(
|
16691
|
+
$(Q) $(LDXX) $(LDFLAGS) $(GPRPP_MPSCQ_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/gprpp_mpscq_test
|
16762
16692
|
|
16763
16693
|
endif
|
16764
16694
|
|
16765
16695
|
endif
|
16766
16696
|
|
16767
|
-
$(OBJDIR)/$(CONFIG)/test/core/
|
16697
|
+
$(OBJDIR)/$(CONFIG)/test/core/gprpp/mpscq_test.o: $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util_unsecure.a $(LIBDIR)/$(CONFIG)/libgrpc_unsecure.a
|
16768
16698
|
|
16769
|
-
|
16699
|
+
deps_gprpp_mpscq_test: $(GPRPP_MPSCQ_TEST_OBJS:.o=.dep)
|
16770
16700
|
|
16771
16701
|
ifneq ($(NO_SECURE),true)
|
16772
16702
|
ifneq ($(NO_DEPS),true)
|
16773
|
-
-include $(
|
16703
|
+
-include $(GPRPP_MPSCQ_TEST_OBJS:.o=.dep)
|
16774
16704
|
endif
|
16775
16705
|
endif
|
16776
16706
|
|
16777
16707
|
|
16778
|
-
|
16779
|
-
test/
|
16708
|
+
GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_SRC = \
|
16709
|
+
test/core/security/grpc_alts_credentials_options_test.cc \
|
16780
16710
|
|
16781
|
-
|
16711
|
+
GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_SRC))))
|
16782
16712
|
ifeq ($(NO_SECURE),true)
|
16783
16713
|
|
16784
16714
|
# You can't build secure targets if you don't have OpenSSL.
|
16785
16715
|
|
16786
|
-
$(BINDIR)/$(CONFIG)/
|
16716
|
+
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test: openssl_dep_error
|
16787
16717
|
|
16788
16718
|
else
|
16789
16719
|
|
@@ -16794,39 +16724,39 @@ ifeq ($(NO_PROTOBUF),true)
|
|
16794
16724
|
|
16795
16725
|
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
16796
16726
|
|
16797
|
-
$(BINDIR)/$(CONFIG)/
|
16727
|
+
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test: protobuf_dep_error
|
16798
16728
|
|
16799
16729
|
else
|
16800
16730
|
|
16801
|
-
$(BINDIR)/$(CONFIG)/
|
16731
|
+
$(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test: $(PROTOBUF_DEP) $(GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
16802
16732
|
$(E) "[LD] Linking $@"
|
16803
16733
|
$(Q) mkdir -p `dirname $@`
|
16804
|
-
$(Q) $(LDXX) $(LDFLAGS) $(
|
16734
|
+
$(Q) $(LDXX) $(LDFLAGS) $(GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/grpc_alts_credentials_options_test
|
16805
16735
|
|
16806
16736
|
endif
|
16807
16737
|
|
16808
16738
|
endif
|
16809
16739
|
|
16810
|
-
$(OBJDIR)/$(CONFIG)/test/
|
16740
|
+
$(OBJDIR)/$(CONFIG)/test/core/security/grpc_alts_credentials_options_test.o: $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
16811
16741
|
|
16812
|
-
|
16742
|
+
deps_grpc_alts_credentials_options_test: $(GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_OBJS:.o=.dep)
|
16813
16743
|
|
16814
16744
|
ifneq ($(NO_SECURE),true)
|
16815
16745
|
ifneq ($(NO_DEPS),true)
|
16816
|
-
-include $(
|
16746
|
+
-include $(GRPC_ALTS_CREDENTIALS_OPTIONS_TEST_OBJS:.o=.dep)
|
16817
16747
|
endif
|
16818
16748
|
endif
|
16819
16749
|
|
16820
16750
|
|
16821
|
-
|
16822
|
-
test/
|
16751
|
+
GRPC_CLI_SRC = \
|
16752
|
+
test/cpp/util/grpc_cli.cc \
|
16823
16753
|
|
16824
|
-
|
16754
|
+
GRPC_CLI_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(GRPC_CLI_SRC))))
|
16825
16755
|
ifeq ($(NO_SECURE),true)
|
16826
16756
|
|
16827
16757
|
# You can't build secure targets if you don't have OpenSSL.
|
16828
16758
|
|
16829
|
-
$(BINDIR)/$(CONFIG)/
|
16759
|
+
$(BINDIR)/$(CONFIG)/grpc_cli: openssl_dep_error
|
16830
16760
|
|
16831
16761
|
else
|
16832
16762
|
|
@@ -16837,26 +16767,26 @@ ifeq ($(NO_PROTOBUF),true)
|
|
16837
16767
|
|
16838
16768
|
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
16839
16769
|
|
16840
|
-
$(BINDIR)/$(CONFIG)/
|
16770
|
+
$(BINDIR)/$(CONFIG)/grpc_cli: protobuf_dep_error
|
16841
16771
|
|
16842
16772
|
else
|
16843
16773
|
|
16844
|
-
$(BINDIR)/$(CONFIG)/
|
16774
|
+
$(BINDIR)/$(CONFIG)/grpc_cli: $(PROTOBUF_DEP) $(GRPC_CLI_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
16845
16775
|
$(E) "[LD] Linking $@"
|
16846
16776
|
$(Q) mkdir -p `dirname $@`
|
16847
|
-
$(Q) $(LDXX) $(LDFLAGS) $(
|
16777
|
+
$(Q) $(LDXX) $(LDFLAGS) $(GRPC_CLI_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.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)/grpc_cli
|
16848
16778
|
|
16849
16779
|
endif
|
16850
16780
|
|
16851
16781
|
endif
|
16852
16782
|
|
16853
|
-
$(OBJDIR)/$(CONFIG)/test/
|
16783
|
+
$(OBJDIR)/$(CONFIG)/test/cpp/util/grpc_cli.o: $(LIBDIR)/$(CONFIG)/libgrpc_cli_libs.a $(LIBDIR)/$(CONFIG)/libgrpc++_proto_reflection_desc_db.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LIBDIR)/$(CONFIG)/libgrpc++_test_config.a
|
16854
16784
|
|
16855
|
-
|
16785
|
+
deps_grpc_cli: $(GRPC_CLI_OBJS:.o=.dep)
|
16856
16786
|
|
16857
16787
|
ifneq ($(NO_SECURE),true)
|
16858
16788
|
ifneq ($(NO_DEPS),true)
|
16859
|
-
-include $(
|
16789
|
+
-include $(GRPC_CLI_OBJS:.o=.dep)
|
16860
16790
|
endif
|
16861
16791
|
endif
|
16862
16792
|
|
@@ -19936,6 +19866,49 @@ endif
|
|
19936
19866
|
endif
|
19937
19867
|
|
19938
19868
|
|
19869
|
+
TRANSPORT_CONNECTIVITY_STATE_TEST_SRC = \
|
19870
|
+
test/core/transport/connectivity_state_test.cc \
|
19871
|
+
|
19872
|
+
TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(TRANSPORT_CONNECTIVITY_STATE_TEST_SRC))))
|
19873
|
+
ifeq ($(NO_SECURE),true)
|
19874
|
+
|
19875
|
+
# You can't build secure targets if you don't have OpenSSL.
|
19876
|
+
|
19877
|
+
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test: openssl_dep_error
|
19878
|
+
|
19879
|
+
else
|
19880
|
+
|
19881
|
+
|
19882
|
+
|
19883
|
+
|
19884
|
+
ifeq ($(NO_PROTOBUF),true)
|
19885
|
+
|
19886
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
19887
|
+
|
19888
|
+
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test: protobuf_dep_error
|
19889
|
+
|
19890
|
+
else
|
19891
|
+
|
19892
|
+
$(BINDIR)/$(CONFIG)/transport_connectivity_state_test: $(PROTOBUF_DEP) $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
19893
|
+
$(E) "[LD] Linking $@"
|
19894
|
+
$(Q) mkdir -p `dirname $@`
|
19895
|
+
$(Q) $(LDXX) $(LDFLAGS) $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a $(LDLIBSXX) $(LDLIBS_PROTOBUF) $(LDLIBS) $(LDLIBS_SECURE) $(GTEST_LIB) -o $(BINDIR)/$(CONFIG)/transport_connectivity_state_test
|
19896
|
+
|
19897
|
+
endif
|
19898
|
+
|
19899
|
+
endif
|
19900
|
+
|
19901
|
+
$(OBJDIR)/$(CONFIG)/test/core/transport/connectivity_state_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
19902
|
+
|
19903
|
+
deps_transport_connectivity_state_test: $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS:.o=.dep)
|
19904
|
+
|
19905
|
+
ifneq ($(NO_SECURE),true)
|
19906
|
+
ifneq ($(NO_DEPS),true)
|
19907
|
+
-include $(TRANSPORT_CONNECTIVITY_STATE_TEST_OBJS:.o=.dep)
|
19908
|
+
endif
|
19909
|
+
endif
|
19910
|
+
|
19911
|
+
|
19939
19912
|
TRANSPORT_PID_CONTROLLER_TEST_SRC = \
|
19940
19913
|
test/core/transport/pid_controller_test.cc \
|
19941
19914
|
|
@@ -20065,9 +20038,53 @@ endif
|
|
20065
20038
|
endif
|
20066
20039
|
|
20067
20040
|
|
20041
|
+
XDS_BOOTSTRAP_TEST_SRC = \
|
20042
|
+
test/core/client_channel/xds_bootstrap_test.cc \
|
20043
|
+
|
20044
|
+
XDS_BOOTSTRAP_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(XDS_BOOTSTRAP_TEST_SRC))))
|
20045
|
+
ifeq ($(NO_SECURE),true)
|
20046
|
+
|
20047
|
+
# You can't build secure targets if you don't have OpenSSL.
|
20048
|
+
|
20049
|
+
$(BINDIR)/$(CONFIG)/xds_bootstrap_test: openssl_dep_error
|
20050
|
+
|
20051
|
+
else
|
20052
|
+
|
20053
|
+
|
20054
|
+
|
20055
|
+
|
20056
|
+
ifeq ($(NO_PROTOBUF),true)
|
20057
|
+
|
20058
|
+
# You can't build the protoc plugins or protobuf-enabled targets if you don't have protobuf 3.5.0+.
|
20059
|
+
|
20060
|
+
$(BINDIR)/$(CONFIG)/xds_bootstrap_test: protobuf_dep_error
|
20061
|
+
|
20062
|
+
else
|
20063
|
+
|
20064
|
+
$(BINDIR)/$(CONFIG)/xds_bootstrap_test: $(PROTOBUF_DEP) $(XDS_BOOTSTRAP_TEST_OBJS) $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
20065
|
+
$(E) "[LD] Linking $@"
|
20066
|
+
$(Q) mkdir -p `dirname $@`
|
20067
|
+
$(Q) $(LDXX) $(LDFLAGS) $(XDS_BOOTSTRAP_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)/xds_bootstrap_test
|
20068
|
+
|
20069
|
+
endif
|
20070
|
+
|
20071
|
+
endif
|
20072
|
+
|
20073
|
+
$(OBJDIR)/$(CONFIG)/test/core/client_channel/xds_bootstrap_test.o: $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
20074
|
+
|
20075
|
+
deps_xds_bootstrap_test: $(XDS_BOOTSTRAP_TEST_OBJS:.o=.dep)
|
20076
|
+
|
20077
|
+
ifneq ($(NO_SECURE),true)
|
20078
|
+
ifneq ($(NO_DEPS),true)
|
20079
|
+
-include $(XDS_BOOTSTRAP_TEST_OBJS:.o=.dep)
|
20080
|
+
endif
|
20081
|
+
endif
|
20082
|
+
|
20083
|
+
|
20068
20084
|
XDS_END2END_TEST_SRC = \
|
20069
|
-
$(GENDIR)/src/proto/grpc/
|
20070
|
-
$(GENDIR)/src/proto/grpc/
|
20085
|
+
$(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.grpc.pb.cc \
|
20086
|
+
$(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc \
|
20087
|
+
$(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.grpc.pb.cc \
|
20071
20088
|
test/cpp/end2end/xds_end2end_test.cc \
|
20072
20089
|
|
20073
20090
|
XDS_END2END_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(XDS_END2END_TEST_SRC))))
|
@@ -20099,9 +20116,11 @@ endif
|
|
20099
20116
|
|
20100
20117
|
endif
|
20101
20118
|
|
20102
|
-
$(OBJDIR)/$(CONFIG)/src/proto/grpc/
|
20119
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/xds/ads_for_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
|
20120
|
+
|
20121
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/xds/eds_for_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
|
20103
20122
|
|
20104
|
-
$(OBJDIR)/$(CONFIG)/src/proto/grpc/
|
20123
|
+
$(OBJDIR)/$(CONFIG)/src/proto/grpc/testing/xds/lrs_for_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
|
20105
20124
|
|
20106
20125
|
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/xds_end2end_test.o: $(LIBDIR)/$(CONFIG)/libgrpc++_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc_test_util.a $(LIBDIR)/$(CONFIG)/libgrpc++.a $(LIBDIR)/$(CONFIG)/libgrpc.a $(LIBDIR)/$(CONFIG)/libgpr.a
|
20107
20126
|
|
@@ -20112,7 +20131,7 @@ ifneq ($(NO_DEPS),true)
|
|
20112
20131
|
-include $(XDS_END2END_TEST_OBJS:.o=.dep)
|
20113
20132
|
endif
|
20114
20133
|
endif
|
20115
|
-
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/xds_end2end_test.o: $(GENDIR)/src/proto/grpc/
|
20134
|
+
$(OBJDIR)/$(CONFIG)/test/cpp/end2end/xds_end2end_test.o: $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/ads_for_test.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/eds_for_test.grpc.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.pb.cc $(GENDIR)/src/proto/grpc/testing/xds/lrs_for_test.grpc.pb.cc
|
20116
20135
|
|
20117
20136
|
|
20118
20137
|
PUBLIC_HEADERS_MUST_BE_C89_SRC = \
|
@@ -20152,8 +20171,10 @@ endif
|
|
20152
20171
|
|
20153
20172
|
|
20154
20173
|
BORINGSSL_SSL_TEST_SRC = \
|
20174
|
+
third_party/boringssl/crypto/test/abi_test.cc \
|
20155
20175
|
third_party/boringssl/crypto/test/gtest_main.cc \
|
20156
20176
|
third_party/boringssl/ssl/span_test.cc \
|
20177
|
+
third_party/boringssl/ssl/ssl_c_test.c \
|
20157
20178
|
third_party/boringssl/ssl/ssl_test.cc \
|
20158
20179
|
|
20159
20180
|
BORINGSSL_SSL_TEST_OBJS = $(addprefix $(OBJDIR)/$(CONFIG)/, $(addsuffix .o, $(basename $(BORINGSSL_SSL_TEST_SRC))))
|
@@ -20182,12 +20203,16 @@ $(BINDIR)/$(CONFIG)/boringssl_ssl_test: $(PROTOBUF_DEP) $(BORINGSSL_SSL_TEST_OBJ
|
|
20182
20203
|
endif
|
20183
20204
|
|
20184
20205
|
$(BORINGSSL_SSL_TEST_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
|
20185
|
-
$(BORINGSSL_SSL_TEST_OBJS): CXXFLAGS += -fno-
|
20206
|
+
$(BORINGSSL_SSL_TEST_OBJS): CXXFLAGS += -fno-exceptions
|
20186
20207
|
$(BORINGSSL_SSL_TEST_OBJS): CFLAGS += -g
|
20208
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/abi_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20209
|
+
|
20187
20210
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/gtest_main.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20188
20211
|
|
20189
20212
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/ssl/span_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20190
20213
|
|
20214
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/ssl/ssl_c_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20215
|
+
|
20191
20216
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/ssl/ssl_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20192
20217
|
|
20193
20218
|
deps_boringssl_ssl_test: $(BORINGSSL_SSL_TEST_OBJS:.o=.dep)
|
@@ -20199,6 +20224,7 @@ endif
|
|
20199
20224
|
|
20200
20225
|
BORINGSSL_CRYPTO_TEST_SRC = \
|
20201
20226
|
src/boringssl/crypto_test_data.cc \
|
20227
|
+
third_party/boringssl/crypto/abi_self_test.cc \
|
20202
20228
|
third_party/boringssl/crypto/asn1/asn1_test.cc \
|
20203
20229
|
third_party/boringssl/crypto/base64/base64_test.cc \
|
20204
20230
|
third_party/boringssl/crypto/bio/bio_test.cc \
|
@@ -20210,13 +20236,14 @@ BORINGSSL_CRYPTO_TEST_SRC = \
|
|
20210
20236
|
third_party/boringssl/crypto/cmac/cmac_test.cc \
|
20211
20237
|
third_party/boringssl/crypto/compiler_test.cc \
|
20212
20238
|
third_party/boringssl/crypto/constant_time_test.cc \
|
20239
|
+
third_party/boringssl/crypto/cpu-arm-linux_test.cc \
|
20213
20240
|
third_party/boringssl/crypto/curve25519/ed25519_test.cc \
|
20214
20241
|
third_party/boringssl/crypto/curve25519/spake25519_test.cc \
|
20215
20242
|
third_party/boringssl/crypto/curve25519/x25519_test.cc \
|
20216
20243
|
third_party/boringssl/crypto/dh/dh_test.cc \
|
20217
20244
|
third_party/boringssl/crypto/digest_extra/digest_test.cc \
|
20218
20245
|
third_party/boringssl/crypto/dsa/dsa_test.cc \
|
20219
|
-
third_party/boringssl/crypto/
|
20246
|
+
third_party/boringssl/crypto/ecdh_extra/ecdh_test.cc \
|
20220
20247
|
third_party/boringssl/crypto/err/err_test.cc \
|
20221
20248
|
third_party/boringssl/crypto/evp/evp_extra_test.cc \
|
20222
20249
|
third_party/boringssl/crypto/evp/evp_test.cc \
|
@@ -20227,24 +20254,34 @@ BORINGSSL_CRYPTO_TEST_SRC = \
|
|
20227
20254
|
third_party/boringssl/crypto/fipsmodule/ec/ec_test.cc \
|
20228
20255
|
third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64_test.cc \
|
20229
20256
|
third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa_test.cc \
|
20257
|
+
third_party/boringssl/crypto/fipsmodule/md5/md5_test.cc \
|
20230
20258
|
third_party/boringssl/crypto/fipsmodule/modes/gcm_test.cc \
|
20231
20259
|
third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg_test.cc \
|
20260
|
+
third_party/boringssl/crypto/fipsmodule/sha/sha_test.cc \
|
20232
20261
|
third_party/boringssl/crypto/hkdf/hkdf_test.cc \
|
20233
20262
|
third_party/boringssl/crypto/hmac_extra/hmac_test.cc \
|
20263
|
+
third_party/boringssl/crypto/hrss/hrss_test.cc \
|
20264
|
+
third_party/boringssl/crypto/impl_dispatch_test.cc \
|
20234
20265
|
third_party/boringssl/crypto/lhash/lhash_test.cc \
|
20235
20266
|
third_party/boringssl/crypto/obj/obj_test.cc \
|
20267
|
+
third_party/boringssl/crypto/pem/pem_test.cc \
|
20236
20268
|
third_party/boringssl/crypto/pkcs7/pkcs7_test.cc \
|
20237
20269
|
third_party/boringssl/crypto/pkcs8/pkcs12_test.cc \
|
20238
20270
|
third_party/boringssl/crypto/pkcs8/pkcs8_test.cc \
|
20239
20271
|
third_party/boringssl/crypto/poly1305/poly1305_test.cc \
|
20240
20272
|
third_party/boringssl/crypto/pool/pool_test.cc \
|
20273
|
+
third_party/boringssl/crypto/rand_extra/rand_test.cc \
|
20241
20274
|
third_party/boringssl/crypto/refcount_test.cc \
|
20242
20275
|
third_party/boringssl/crypto/rsa_extra/rsa_test.cc \
|
20243
20276
|
third_party/boringssl/crypto/self_test.cc \
|
20277
|
+
third_party/boringssl/crypto/siphash/siphash_test.cc \
|
20278
|
+
third_party/boringssl/crypto/stack/stack_test.cc \
|
20279
|
+
third_party/boringssl/crypto/test/abi_test.cc \
|
20244
20280
|
third_party/boringssl/crypto/test/file_test_gtest.cc \
|
20245
20281
|
third_party/boringssl/crypto/test/gtest_main.cc \
|
20246
20282
|
third_party/boringssl/crypto/thread_test.cc \
|
20247
20283
|
third_party/boringssl/crypto/x509/x509_test.cc \
|
20284
|
+
third_party/boringssl/crypto/x509/x509_time_test.cc \
|
20248
20285
|
third_party/boringssl/crypto/x509v3/tab_test.cc \
|
20249
20286
|
third_party/boringssl/crypto/x509v3/v3name_test.cc \
|
20250
20287
|
|
@@ -20274,10 +20311,12 @@ $(BINDIR)/$(CONFIG)/boringssl_crypto_test: $(PROTOBUF_DEP) $(BORINGSSL_CRYPTO_TE
|
|
20274
20311
|
endif
|
20275
20312
|
|
20276
20313
|
$(BORINGSSL_CRYPTO_TEST_OBJS): CPPFLAGS += -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
|
20277
|
-
$(BORINGSSL_CRYPTO_TEST_OBJS): CXXFLAGS += -fno-
|
20314
|
+
$(BORINGSSL_CRYPTO_TEST_OBJS): CXXFLAGS += -fno-exceptions
|
20278
20315
|
$(BORINGSSL_CRYPTO_TEST_OBJS): CFLAGS += -g
|
20279
20316
|
$(OBJDIR)/$(CONFIG)/src/boringssl/crypto_test_data.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20280
20317
|
|
20318
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/abi_self_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20319
|
+
|
20281
20320
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/asn1/asn1_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20282
20321
|
|
20283
20322
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/base64/base64_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
@@ -20300,6 +20339,8 @@ $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/compiler_test.o: $(LIBDIR)/$(C
|
|
20300
20339
|
|
20301
20340
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/constant_time_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20302
20341
|
|
20342
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/cpu-arm-linux_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20343
|
+
|
20303
20344
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/curve25519/ed25519_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20304
20345
|
|
20305
20346
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/curve25519/spake25519_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
@@ -20312,7 +20353,7 @@ $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/digest_extra/digest_test.o: $(
|
|
20312
20353
|
|
20313
20354
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/dsa/dsa_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20314
20355
|
|
20315
|
-
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/
|
20356
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/ecdh_extra/ecdh_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20316
20357
|
|
20317
20358
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/err/err_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20318
20359
|
|
@@ -20334,18 +20375,28 @@ $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64_test.
|
|
20334
20375
|
|
20335
20376
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20336
20377
|
|
20378
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/fipsmodule/md5/md5_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20379
|
+
|
20337
20380
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/fipsmodule/modes/gcm_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20338
20381
|
|
20339
20382
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20340
20383
|
|
20384
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/fipsmodule/sha/sha_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20385
|
+
|
20341
20386
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/hkdf/hkdf_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20342
20387
|
|
20343
20388
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/hmac_extra/hmac_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20344
20389
|
|
20390
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/hrss/hrss_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20391
|
+
|
20392
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/impl_dispatch_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20393
|
+
|
20345
20394
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/lhash/lhash_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20346
20395
|
|
20347
20396
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/obj/obj_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20348
20397
|
|
20398
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/pem/pem_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20399
|
+
|
20349
20400
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/pkcs7/pkcs7_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20350
20401
|
|
20351
20402
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/pkcs8/pkcs12_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
@@ -20356,12 +20407,20 @@ $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/poly1305/poly1305_test.o: $(LI
|
|
20356
20407
|
|
20357
20408
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/pool/pool_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20358
20409
|
|
20410
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/rand_extra/rand_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20411
|
+
|
20359
20412
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/refcount_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20360
20413
|
|
20361
20414
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/rsa_extra/rsa_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20362
20415
|
|
20363
20416
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/self_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20364
20417
|
|
20418
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/siphash/siphash_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20419
|
+
|
20420
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/stack/stack_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20421
|
+
|
20422
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/abi_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20423
|
+
|
20365
20424
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/file_test_gtest.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20366
20425
|
|
20367
20426
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/test/gtest_main.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
@@ -20370,6 +20429,8 @@ $(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/thread_test.o: $(LIBDIR)/$(CON
|
|
20370
20429
|
|
20371
20430
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/x509/x509_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20372
20431
|
|
20432
|
+
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/x509/x509_time_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20433
|
+
|
20373
20434
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/x509v3/tab_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
20374
20435
|
|
20375
20436
|
$(OBJDIR)/$(CONFIG)/third_party/boringssl/crypto/x509v3/v3name_test.o: $(LIBDIR)/$(CONFIG)/libboringssl_test_util.a $(LIBDIR)/$(CONFIG)/libboringssl.a
|
@@ -22644,7 +22705,7 @@ ifneq ($(OPENSSL_DEP),)
|
|
22644
22705
|
# installing headers to their final destination on the drive. We need this
|
22645
22706
|
# otherwise parallel compilation will fail if a source is compiled first.
|
22646
22707
|
src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc: $(OPENSSL_DEP)
|
22647
|
-
src/core/ext/filters/client_channel/
|
22708
|
+
src/core/ext/filters/client_channel/xds/xds_channel_secure.cc: $(OPENSSL_DEP)
|
22648
22709
|
src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc: $(OPENSSL_DEP)
|
22649
22710
|
src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc: $(OPENSSL_DEP)
|
22650
22711
|
src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc: $(OPENSSL_DEP)
|
@@ -22731,6 +22792,8 @@ src/cpp/common/auth_property_iterator.cc: $(OPENSSL_DEP)
|
|
22731
22792
|
src/cpp/common/secure_auth_context.cc: $(OPENSSL_DEP)
|
22732
22793
|
src/cpp/common/secure_channel_arguments.cc: $(OPENSSL_DEP)
|
22733
22794
|
src/cpp/common/secure_create_auth_context.cc: $(OPENSSL_DEP)
|
22795
|
+
src/cpp/common/tls_credentials_options.cc: $(OPENSSL_DEP)
|
22796
|
+
src/cpp/common/tls_credentials_options_util.cc: $(OPENSSL_DEP)
|
22734
22797
|
src/cpp/ext/proto_server_reflection.cc: $(OPENSSL_DEP)
|
22735
22798
|
src/cpp/ext/proto_server_reflection_plugin.cc: $(OPENSSL_DEP)
|
22736
22799
|
src/cpp/server/channelz/channelz_service.cc: $(OPENSSL_DEP)
|