|
|
|
@ -21,7 +21,7 @@ |
|
|
|
|
|
|
|
|
|
Pod::Spec.new do |s| |
|
|
|
|
s.name = 'gRPC-Core' |
|
|
|
|
version = '1.64.0-dev' |
|
|
|
|
version = '1.65.0-dev' |
|
|
|
|
s.version = version |
|
|
|
|
s.summary = 'Core cross-platform gRPC library, written in C' |
|
|
|
|
s.homepage = 'https://grpc.io' |
|
|
|
@ -42,11 +42,12 @@ Pod::Spec.new do |s| |
|
|
|
|
s.osx.deployment_target = '10.12' |
|
|
|
|
s.tvos.deployment_target = '12.0' |
|
|
|
|
s.watchos.deployment_target = '6.0' |
|
|
|
|
s.visionos.deployment_target = '1.0' |
|
|
|
|
|
|
|
|
|
s.requires_arc = false |
|
|
|
|
|
|
|
|
|
name = 'grpc' |
|
|
|
|
abseil_version = '1.20240116.1' |
|
|
|
|
abseil_version = '~> 1.20240116.2' |
|
|
|
|
|
|
|
|
|
# When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework. |
|
|
|
|
# This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include |
|
|
|
@ -81,7 +82,7 @@ Pod::Spec.new do |s| |
|
|
|
|
' "$(PODS_TARGET_SRCROOT)/third_party/utf8_range"'\ |
|
|
|
|
' "$(PODS_TARGET_SRCROOT)/third_party/xxhash"', |
|
|
|
|
# If we don't set these two settings, `include/grpc/support/time.h` and |
|
|
|
|
# `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the |
|
|
|
|
# `src/core/util/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the |
|
|
|
|
# build. |
|
|
|
|
'USE_HEADERMAP' => 'NO', |
|
|
|
|
'ALWAYS_SEARCH_USER_PATHS' => 'NO', |
|
|
|
@ -167,6 +168,7 @@ Pod::Spec.new do |s| |
|
|
|
|
'include/grpc/impl/propagation_bits.h', |
|
|
|
|
'include/grpc/impl/slice_type.h', |
|
|
|
|
'include/grpc/load_reporting.h', |
|
|
|
|
'include/grpc/passive_listener.h', |
|
|
|
|
'include/grpc/slice.h', |
|
|
|
|
'include/grpc/slice_buffer.h', |
|
|
|
|
'include/grpc/status.h', |
|
|
|
@ -197,7 +199,7 @@ Pod::Spec.new do |s| |
|
|
|
|
ss.libraries = 'z' |
|
|
|
|
ss.dependency "#{s.name}/Interface", version |
|
|
|
|
ss.dependency "#{s.name}/Privacy", version |
|
|
|
|
ss.dependency 'BoringSSL-GRPC', '0.0.33' |
|
|
|
|
ss.dependency 'BoringSSL-GRPC', '0.0.34' |
|
|
|
|
ss.dependency 'abseil/algorithm/container', abseil_version |
|
|
|
|
ss.dependency 'abseil/base/base', abseil_version |
|
|
|
|
ss.dependency 'abseil/base/config', abseil_version |
|
|
|
@ -214,6 +216,8 @@ Pod::Spec.new do |s| |
|
|
|
|
ss.dependency 'abseil/functional/bind_front', abseil_version |
|
|
|
|
ss.dependency 'abseil/functional/function_ref', abseil_version |
|
|
|
|
ss.dependency 'abseil/hash/hash', abseil_version |
|
|
|
|
ss.dependency 'abseil/log/check', abseil_version |
|
|
|
|
ss.dependency 'abseil/log/globals', abseil_version |
|
|
|
|
ss.dependency 'abseil/log/log', abseil_version |
|
|
|
|
ss.dependency 'abseil/memory/memory', abseil_version |
|
|
|
|
ss.dependency 'abseil/meta/type_traits', abseil_version |
|
|
|
@ -233,10 +237,14 @@ Pod::Spec.new do |s| |
|
|
|
|
ss.dependency 'abseil/utility/utility', abseil_version |
|
|
|
|
ss.compiler_flags = '-DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32' |
|
|
|
|
|
|
|
|
|
ss.source_files = 'src/core/client_channel/backup_poller.cc', |
|
|
|
|
ss.source_files = 'src/core/channelz/channel_trace.cc', |
|
|
|
|
'src/core/channelz/channel_trace.h', |
|
|
|
|
'src/core/channelz/channelz.cc', |
|
|
|
|
'src/core/channelz/channelz.h', |
|
|
|
|
'src/core/channelz/channelz_registry.cc', |
|
|
|
|
'src/core/channelz/channelz_registry.h', |
|
|
|
|
'src/core/client_channel/backup_poller.cc', |
|
|
|
|
'src/core/client_channel/backup_poller.h', |
|
|
|
|
'src/core/client_channel/client_channel_channelz.cc', |
|
|
|
|
'src/core/client_channel/client_channel_channelz.h', |
|
|
|
|
'src/core/client_channel/client_channel_factory.cc', |
|
|
|
|
'src/core/client_channel/client_channel_factory.h', |
|
|
|
|
'src/core/client_channel/client_channel_filter.cc', |
|
|
|
@ -252,8 +260,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/client_channel/dynamic_filters.h', |
|
|
|
|
'src/core/client_channel/global_subchannel_pool.cc', |
|
|
|
|
'src/core/client_channel/global_subchannel_pool.h', |
|
|
|
|
'src/core/client_channel/http_proxy_mapper.cc', |
|
|
|
|
'src/core/client_channel/http_proxy_mapper.h', |
|
|
|
|
'src/core/client_channel/local_subchannel_pool.cc', |
|
|
|
|
'src/core/client_channel/local_subchannel_pool.h', |
|
|
|
|
'src/core/client_channel/retry_filter.cc', |
|
|
|
@ -279,8 +285,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/ext/filters/channel_idle/idle_filter_state.h', |
|
|
|
|
'src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc', |
|
|
|
|
'src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h', |
|
|
|
|
'src/core/ext/filters/deadline/deadline_filter.cc', |
|
|
|
|
'src/core/ext/filters/deadline/deadline_filter.h', |
|
|
|
|
'src/core/ext/filters/fault_injection/fault_injection_filter.cc', |
|
|
|
|
'src/core/ext/filters/fault_injection/fault_injection_filter.h', |
|
|
|
|
'src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc', |
|
|
|
@ -300,9 +304,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/ext/filters/rbac/rbac_filter.h', |
|
|
|
|
'src/core/ext/filters/rbac/rbac_service_config_parser.cc', |
|
|
|
|
'src/core/ext/filters/rbac/rbac_service_config_parser.h', |
|
|
|
|
'src/core/ext/filters/server_config_selector/server_config_selector.h', |
|
|
|
|
'src/core/ext/filters/server_config_selector/server_config_selector_filter.cc', |
|
|
|
|
'src/core/ext/filters/server_config_selector/server_config_selector_filter.h', |
|
|
|
|
'src/core/ext/filters/stateful_session/stateful_session_filter.cc', |
|
|
|
|
'src/core/ext/filters/stateful_session/stateful_session_filter.h', |
|
|
|
|
'src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc', |
|
|
|
@ -1178,63 +1179,28 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h', |
|
|
|
|
'src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c', |
|
|
|
|
'src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h', |
|
|
|
|
'src/core/ext/xds/certificate_provider_store.cc', |
|
|
|
|
'src/core/ext/xds/certificate_provider_store.h', |
|
|
|
|
'src/core/ext/xds/file_watcher_certificate_provider_factory.cc', |
|
|
|
|
'src/core/ext/xds/file_watcher_certificate_provider_factory.h', |
|
|
|
|
'src/core/ext/xds/upb_utils.h', |
|
|
|
|
'src/core/ext/xds/xds_api.cc', |
|
|
|
|
'src/core/ext/xds/xds_api.h', |
|
|
|
|
'src/core/ext/xds/xds_audit_logger_registry.cc', |
|
|
|
|
'src/core/ext/xds/xds_audit_logger_registry.h', |
|
|
|
|
'src/core/ext/xds/xds_bootstrap.cc', |
|
|
|
|
'src/core/ext/xds/xds_bootstrap.h', |
|
|
|
|
'src/core/ext/xds/xds_bootstrap_grpc.cc', |
|
|
|
|
'src/core/ext/xds/xds_bootstrap_grpc.h', |
|
|
|
|
'src/core/ext/xds/xds_certificate_provider.cc', |
|
|
|
|
'src/core/ext/xds/xds_certificate_provider.h', |
|
|
|
|
'src/core/ext/xds/xds_channel_args.h', |
|
|
|
|
'src/core/ext/xds/xds_channel_stack_modifier.cc', |
|
|
|
|
'src/core/ext/xds/xds_channel_stack_modifier.h', |
|
|
|
|
'src/core/ext/xds/xds_client.cc', |
|
|
|
|
'src/core/ext/xds/xds_client.h', |
|
|
|
|
'src/core/ext/xds/xds_client_grpc.cc', |
|
|
|
|
'src/core/ext/xds/xds_client_grpc.h', |
|
|
|
|
'src/core/ext/xds/xds_client_stats.cc', |
|
|
|
|
'src/core/ext/xds/xds_client_stats.h', |
|
|
|
|
'src/core/ext/xds/xds_cluster.cc', |
|
|
|
|
'src/core/ext/xds/xds_cluster.h', |
|
|
|
|
'src/core/ext/xds/xds_cluster_specifier_plugin.cc', |
|
|
|
|
'src/core/ext/xds/xds_cluster_specifier_plugin.h', |
|
|
|
|
'src/core/ext/xds/xds_common_types.cc', |
|
|
|
|
'src/core/ext/xds/xds_common_types.h', |
|
|
|
|
'src/core/ext/xds/xds_endpoint.cc', |
|
|
|
|
'src/core/ext/xds/xds_endpoint.h', |
|
|
|
|
'src/core/ext/xds/xds_health_status.cc', |
|
|
|
|
'src/core/ext/xds/xds_health_status.h', |
|
|
|
|
'src/core/ext/xds/xds_http_fault_filter.cc', |
|
|
|
|
'src/core/ext/xds/xds_http_fault_filter.h', |
|
|
|
|
'src/core/ext/xds/xds_http_filters.cc', |
|
|
|
|
'src/core/ext/xds/xds_http_filters.h', |
|
|
|
|
'src/core/ext/xds/xds_http_rbac_filter.cc', |
|
|
|
|
'src/core/ext/xds/xds_http_rbac_filter.h', |
|
|
|
|
'src/core/ext/xds/xds_http_stateful_session_filter.cc', |
|
|
|
|
'src/core/ext/xds/xds_http_stateful_session_filter.h', |
|
|
|
|
'src/core/ext/xds/xds_lb_policy_registry.cc', |
|
|
|
|
'src/core/ext/xds/xds_lb_policy_registry.h', |
|
|
|
|
'src/core/ext/xds/xds_listener.cc', |
|
|
|
|
'src/core/ext/xds/xds_listener.h', |
|
|
|
|
'src/core/ext/xds/xds_metrics.h', |
|
|
|
|
'src/core/ext/xds/xds_resource_type.h', |
|
|
|
|
'src/core/ext/xds/xds_resource_type_impl.h', |
|
|
|
|
'src/core/ext/xds/xds_route_config.cc', |
|
|
|
|
'src/core/ext/xds/xds_route_config.h', |
|
|
|
|
'src/core/ext/xds/xds_routing.cc', |
|
|
|
|
'src/core/ext/xds/xds_routing.h', |
|
|
|
|
'src/core/ext/xds/xds_server_config_fetcher.cc', |
|
|
|
|
'src/core/ext/xds/xds_transport.h', |
|
|
|
|
'src/core/ext/xds/xds_transport_grpc.cc', |
|
|
|
|
'src/core/ext/xds/xds_transport_grpc.h', |
|
|
|
|
'src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc', |
|
|
|
|
'src/core/handshaker/endpoint_info/endpoint_info_handshaker.h', |
|
|
|
|
'src/core/handshaker/handshaker.cc', |
|
|
|
|
'src/core/handshaker/handshaker.h', |
|
|
|
|
'src/core/handshaker/handshaker_factory.h', |
|
|
|
|
'src/core/handshaker/handshaker_registry.cc', |
|
|
|
|
'src/core/handshaker/handshaker_registry.h', |
|
|
|
|
'src/core/handshaker/http_connect/http_connect_handshaker.cc', |
|
|
|
|
'src/core/handshaker/http_connect/http_connect_handshaker.h', |
|
|
|
|
'src/core/handshaker/http_connect/http_proxy_mapper.cc', |
|
|
|
|
'src/core/handshaker/http_connect/http_proxy_mapper.h', |
|
|
|
|
'src/core/handshaker/proxy_mapper.h', |
|
|
|
|
'src/core/handshaker/proxy_mapper_registry.cc', |
|
|
|
|
'src/core/handshaker/proxy_mapper_registry.h', |
|
|
|
|
'src/core/handshaker/security/secure_endpoint.cc', |
|
|
|
|
'src/core/handshaker/security/secure_endpoint.h', |
|
|
|
|
'src/core/handshaker/security/security_handshaker.cc', |
|
|
|
|
'src/core/handshaker/security/security_handshaker.h', |
|
|
|
|
'src/core/handshaker/security/tsi_error.cc', |
|
|
|
|
'src/core/handshaker/security/tsi_error.h', |
|
|
|
|
'src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc', |
|
|
|
|
'src/core/handshaker/tcp_connect/tcp_connect_handshaker.h', |
|
|
|
|
'src/core/lib/address_utils/parse_address.cc', |
|
|
|
|
'src/core/lib/address_utils/parse_address.h', |
|
|
|
|
'src/core/lib/address_utils/sockaddr_utils.cc', |
|
|
|
@ -1260,12 +1226,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/channel/channel_stack_builder_impl.h', |
|
|
|
|
'src/core/lib/channel/channel_stack_trace.cc', |
|
|
|
|
'src/core/lib/channel/channel_stack_trace.h', |
|
|
|
|
'src/core/lib/channel/channel_trace.cc', |
|
|
|
|
'src/core/lib/channel/channel_trace.h', |
|
|
|
|
'src/core/lib/channel/channelz.cc', |
|
|
|
|
'src/core/lib/channel/channelz.h', |
|
|
|
|
'src/core/lib/channel/channelz_registry.cc', |
|
|
|
|
'src/core/lib/channel/channelz_registry.h', |
|
|
|
|
'src/core/lib/channel/connected_channel.cc', |
|
|
|
|
'src/core/lib/channel/connected_channel.h', |
|
|
|
|
'src/core/lib/channel/context.h', |
|
|
|
@ -1273,8 +1233,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/channel/metrics.h', |
|
|
|
|
'src/core/lib/channel/promise_based_filter.cc', |
|
|
|
|
'src/core/lib/channel/promise_based_filter.h', |
|
|
|
|
'src/core/lib/channel/server_call_tracer_filter.cc', |
|
|
|
|
'src/core/lib/channel/server_call_tracer_filter.h', |
|
|
|
|
'src/core/lib/channel/status_util.cc', |
|
|
|
|
'src/core/lib/channel/status_util.h', |
|
|
|
|
'src/core/lib/channel/tcp_tracer.h', |
|
|
|
@ -1416,39 +1374,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/experiments/config.h', |
|
|
|
|
'src/core/lib/experiments/experiments.cc', |
|
|
|
|
'src/core/lib/experiments/experiments.h', |
|
|
|
|
'src/core/lib/gpr/alloc.cc', |
|
|
|
|
'src/core/lib/gpr/alloc.h', |
|
|
|
|
'src/core/lib/gpr/android/log.cc', |
|
|
|
|
'src/core/lib/gpr/atm.cc', |
|
|
|
|
'src/core/lib/gpr/iphone/cpu.cc', |
|
|
|
|
'src/core/lib/gpr/linux/cpu.cc', |
|
|
|
|
'src/core/lib/gpr/linux/log.cc', |
|
|
|
|
'src/core/lib/gpr/log.cc', |
|
|
|
|
'src/core/lib/gpr/log_internal.h', |
|
|
|
|
'src/core/lib/gpr/msys/tmpfile.cc', |
|
|
|
|
'src/core/lib/gpr/posix/cpu.cc', |
|
|
|
|
'src/core/lib/gpr/posix/log.cc', |
|
|
|
|
'src/core/lib/gpr/posix/string.cc', |
|
|
|
|
'src/core/lib/gpr/posix/sync.cc', |
|
|
|
|
'src/core/lib/gpr/posix/time.cc', |
|
|
|
|
'src/core/lib/gpr/posix/tmpfile.cc', |
|
|
|
|
'src/core/lib/gpr/spinlock.h', |
|
|
|
|
'src/core/lib/gpr/string.cc', |
|
|
|
|
'src/core/lib/gpr/string.h', |
|
|
|
|
'src/core/lib/gpr/sync.cc', |
|
|
|
|
'src/core/lib/gpr/sync_abseil.cc', |
|
|
|
|
'src/core/lib/gpr/time.cc', |
|
|
|
|
'src/core/lib/gpr/time_precise.cc', |
|
|
|
|
'src/core/lib/gpr/time_precise.h', |
|
|
|
|
'src/core/lib/gpr/tmpfile.h', |
|
|
|
|
'src/core/lib/gpr/useful.h', |
|
|
|
|
'src/core/lib/gpr/windows/cpu.cc', |
|
|
|
|
'src/core/lib/gpr/windows/log.cc', |
|
|
|
|
'src/core/lib/gpr/windows/string.cc', |
|
|
|
|
'src/core/lib/gpr/windows/string_util.cc', |
|
|
|
|
'src/core/lib/gpr/windows/sync.cc', |
|
|
|
|
'src/core/lib/gpr/windows/time.cc', |
|
|
|
|
'src/core/lib/gpr/windows/tmpfile.cc', |
|
|
|
|
'src/core/lib/gprpp/atomic_utils.h', |
|
|
|
|
'src/core/lib/gprpp/bitset.h', |
|
|
|
|
'src/core/lib/gprpp/chunked_vector.h', |
|
|
|
@ -1522,9 +1447,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/gprpp/work_serializer.cc', |
|
|
|
|
'src/core/lib/gprpp/work_serializer.h', |
|
|
|
|
'src/core/lib/gprpp/xxhash_inline.h', |
|
|
|
|
'src/core/lib/handshaker/proxy_mapper.h', |
|
|
|
|
'src/core/lib/handshaker/proxy_mapper_registry.cc', |
|
|
|
|
'src/core/lib/handshaker/proxy_mapper_registry.h', |
|
|
|
|
'src/core/lib/http/format_request.cc', |
|
|
|
|
'src/core/lib/http/format_request.h', |
|
|
|
|
'src/core/lib/http/httpcli.cc', |
|
|
|
@ -1852,13 +1774,7 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/security/security_connector/tls/tls_security_connector.h', |
|
|
|
|
'src/core/lib/security/transport/auth_filters.h', |
|
|
|
|
'src/core/lib/security/transport/client_auth_filter.cc', |
|
|
|
|
'src/core/lib/security/transport/secure_endpoint.cc', |
|
|
|
|
'src/core/lib/security/transport/secure_endpoint.h', |
|
|
|
|
'src/core/lib/security/transport/security_handshaker.cc', |
|
|
|
|
'src/core/lib/security/transport/security_handshaker.h', |
|
|
|
|
'src/core/lib/security/transport/server_auth_filter.cc', |
|
|
|
|
'src/core/lib/security/transport/tsi_error.cc', |
|
|
|
|
'src/core/lib/security/transport/tsi_error.h', |
|
|
|
|
'src/core/lib/security/util/json_util.cc', |
|
|
|
|
'src/core/lib/security/util/json_util.h', |
|
|
|
|
'src/core/lib/slice/percent_encoding.cc', |
|
|
|
@ -1905,9 +1821,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/surface/legacy_channel.cc', |
|
|
|
|
'src/core/lib/surface/legacy_channel.h', |
|
|
|
|
'src/core/lib/surface/metadata_array.cc', |
|
|
|
|
'src/core/lib/surface/server.cc', |
|
|
|
|
'src/core/lib/surface/server.h', |
|
|
|
|
'src/core/lib/surface/server_interface.h', |
|
|
|
|
'src/core/lib/surface/validate_metadata.cc', |
|
|
|
|
'src/core/lib/surface/validate_metadata.h', |
|
|
|
|
'src/core/lib/surface/version.cc', |
|
|
|
@ -1917,29 +1830,23 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/transport/batch_builder.h', |
|
|
|
|
'src/core/lib/transport/bdp_estimator.cc', |
|
|
|
|
'src/core/lib/transport/bdp_estimator.h', |
|
|
|
|
'src/core/lib/transport/call_arena_allocator.cc', |
|
|
|
|
'src/core/lib/transport/call_arena_allocator.h', |
|
|
|
|
'src/core/lib/transport/call_destination.h', |
|
|
|
|
'src/core/lib/transport/call_filters.cc', |
|
|
|
|
'src/core/lib/transport/call_filters.h', |
|
|
|
|
'src/core/lib/transport/call_final_info.cc', |
|
|
|
|
'src/core/lib/transport/call_final_info.h', |
|
|
|
|
'src/core/lib/transport/call_size_estimator.cc', |
|
|
|
|
'src/core/lib/transport/call_size_estimator.h', |
|
|
|
|
'src/core/lib/transport/call_spine.cc', |
|
|
|
|
'src/core/lib/transport/call_spine.h', |
|
|
|
|
'src/core/lib/transport/connectivity_state.cc', |
|
|
|
|
'src/core/lib/transport/connectivity_state.h', |
|
|
|
|
'src/core/lib/transport/custom_metadata.h', |
|
|
|
|
'src/core/lib/transport/endpoint_info_handshaker.cc', |
|
|
|
|
'src/core/lib/transport/endpoint_info_handshaker.h', |
|
|
|
|
'src/core/lib/transport/error_utils.cc', |
|
|
|
|
'src/core/lib/transport/error_utils.h', |
|
|
|
|
'src/core/lib/transport/handshaker.cc', |
|
|
|
|
'src/core/lib/transport/handshaker.h', |
|
|
|
|
'src/core/lib/transport/handshaker_factory.h', |
|
|
|
|
'src/core/lib/transport/handshaker_registry.cc', |
|
|
|
|
'src/core/lib/transport/handshaker_registry.h', |
|
|
|
|
'src/core/lib/transport/http2_errors.h', |
|
|
|
|
'src/core/lib/transport/http_connect_handshaker.cc', |
|
|
|
|
'src/core/lib/transport/http_connect_handshaker.h', |
|
|
|
|
'src/core/lib/transport/interception_chain.cc', |
|
|
|
|
'src/core/lib/transport/interception_chain.h', |
|
|
|
|
'src/core/lib/transport/message.cc', |
|
|
|
|
'src/core/lib/transport/message.h', |
|
|
|
|
'src/core/lib/transport/metadata.cc', |
|
|
|
@ -1954,8 +1861,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/transport/simple_slice_based_metadata.h', |
|
|
|
|
'src/core/lib/transport/status_conversion.cc', |
|
|
|
|
'src/core/lib/transport/status_conversion.h', |
|
|
|
|
'src/core/lib/transport/tcp_connect_handshaker.cc', |
|
|
|
|
'src/core/lib/transport/tcp_connect_handshaker.h', |
|
|
|
|
'src/core/lib/transport/timeout_encoding.cc', |
|
|
|
|
'src/core/lib/transport/timeout_encoding.h', |
|
|
|
|
'src/core/lib/transport/transport.cc', |
|
|
|
@ -2058,6 +1963,17 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/resolver/xds/xds_resolver_attributes.h', |
|
|
|
|
'src/core/resolver/xds/xds_resolver_trace.cc', |
|
|
|
|
'src/core/resolver/xds/xds_resolver_trace.h', |
|
|
|
|
'src/core/server/server.cc', |
|
|
|
|
'src/core/server/server.h', |
|
|
|
|
'src/core/server/server_call_tracer_filter.cc', |
|
|
|
|
'src/core/server/server_call_tracer_filter.h', |
|
|
|
|
'src/core/server/server_config_selector.h', |
|
|
|
|
'src/core/server/server_config_selector_filter.cc', |
|
|
|
|
'src/core/server/server_config_selector_filter.h', |
|
|
|
|
'src/core/server/server_interface.h', |
|
|
|
|
'src/core/server/xds_channel_stack_modifier.cc', |
|
|
|
|
'src/core/server/xds_channel_stack_modifier.h', |
|
|
|
|
'src/core/server/xds_server_config_fetcher.cc', |
|
|
|
|
'src/core/service_config/service_config.h', |
|
|
|
|
'src/core/service_config/service_config_call_data.h', |
|
|
|
|
'src/core/service_config/service_config_channel_arg_filter.cc', |
|
|
|
@ -2123,6 +2039,92 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/tsi/transport_security_grpc.cc', |
|
|
|
|
'src/core/tsi/transport_security_grpc.h', |
|
|
|
|
'src/core/tsi/transport_security_interface.h', |
|
|
|
|
'src/core/util/alloc.cc', |
|
|
|
|
'src/core/util/alloc.h', |
|
|
|
|
'src/core/util/android/log.cc', |
|
|
|
|
'src/core/util/atm.cc', |
|
|
|
|
'src/core/util/iphone/cpu.cc', |
|
|
|
|
'src/core/util/linux/cpu.cc', |
|
|
|
|
'src/core/util/linux/log.cc', |
|
|
|
|
'src/core/util/log.cc', |
|
|
|
|
'src/core/util/msys/tmpfile.cc', |
|
|
|
|
'src/core/util/posix/cpu.cc', |
|
|
|
|
'src/core/util/posix/log.cc', |
|
|
|
|
'src/core/util/posix/string.cc', |
|
|
|
|
'src/core/util/posix/sync.cc', |
|
|
|
|
'src/core/util/posix/time.cc', |
|
|
|
|
'src/core/util/posix/tmpfile.cc', |
|
|
|
|
'src/core/util/spinlock.h', |
|
|
|
|
'src/core/util/string.cc', |
|
|
|
|
'src/core/util/string.h', |
|
|
|
|
'src/core/util/sync.cc', |
|
|
|
|
'src/core/util/sync_abseil.cc', |
|
|
|
|
'src/core/util/time.cc', |
|
|
|
|
'src/core/util/time_precise.cc', |
|
|
|
|
'src/core/util/time_precise.h', |
|
|
|
|
'src/core/util/tmpfile.h', |
|
|
|
|
'src/core/util/useful.h', |
|
|
|
|
'src/core/util/windows/cpu.cc', |
|
|
|
|
'src/core/util/windows/log.cc', |
|
|
|
|
'src/core/util/windows/string.cc', |
|
|
|
|
'src/core/util/windows/string_util.cc', |
|
|
|
|
'src/core/util/windows/sync.cc', |
|
|
|
|
'src/core/util/windows/time.cc', |
|
|
|
|
'src/core/util/windows/tmpfile.cc', |
|
|
|
|
'src/core/xds/grpc/certificate_provider_store.cc', |
|
|
|
|
'src/core/xds/grpc/certificate_provider_store.h', |
|
|
|
|
'src/core/xds/grpc/file_watcher_certificate_provider_factory.cc', |
|
|
|
|
'src/core/xds/grpc/file_watcher_certificate_provider_factory.h', |
|
|
|
|
'src/core/xds/grpc/upb_utils.h', |
|
|
|
|
'src/core/xds/grpc/xds_audit_logger_registry.cc', |
|
|
|
|
'src/core/xds/grpc/xds_audit_logger_registry.h', |
|
|
|
|
'src/core/xds/grpc/xds_bootstrap_grpc.cc', |
|
|
|
|
'src/core/xds/grpc/xds_bootstrap_grpc.h', |
|
|
|
|
'src/core/xds/grpc/xds_certificate_provider.cc', |
|
|
|
|
'src/core/xds/grpc/xds_certificate_provider.h', |
|
|
|
|
'src/core/xds/grpc/xds_client_grpc.cc', |
|
|
|
|
'src/core/xds/grpc/xds_client_grpc.h', |
|
|
|
|
'src/core/xds/grpc/xds_cluster.cc', |
|
|
|
|
'src/core/xds/grpc/xds_cluster.h', |
|
|
|
|
'src/core/xds/grpc/xds_cluster_specifier_plugin.cc', |
|
|
|
|
'src/core/xds/grpc/xds_cluster_specifier_plugin.h', |
|
|
|
|
'src/core/xds/grpc/xds_common_types.cc', |
|
|
|
|
'src/core/xds/grpc/xds_common_types.h', |
|
|
|
|
'src/core/xds/grpc/xds_endpoint.cc', |
|
|
|
|
'src/core/xds/grpc/xds_endpoint.h', |
|
|
|
|
'src/core/xds/grpc/xds_health_status.cc', |
|
|
|
|
'src/core/xds/grpc/xds_health_status.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_fault_filter.cc', |
|
|
|
|
'src/core/xds/grpc/xds_http_fault_filter.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_filters.cc', |
|
|
|
|
'src/core/xds/grpc/xds_http_filters.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_rbac_filter.cc', |
|
|
|
|
'src/core/xds/grpc/xds_http_rbac_filter.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_stateful_session_filter.cc', |
|
|
|
|
'src/core/xds/grpc/xds_http_stateful_session_filter.h', |
|
|
|
|
'src/core/xds/grpc/xds_lb_policy_registry.cc', |
|
|
|
|
'src/core/xds/grpc/xds_lb_policy_registry.h', |
|
|
|
|
'src/core/xds/grpc/xds_listener.cc', |
|
|
|
|
'src/core/xds/grpc/xds_listener.h', |
|
|
|
|
'src/core/xds/grpc/xds_route_config.cc', |
|
|
|
|
'src/core/xds/grpc/xds_route_config.h', |
|
|
|
|
'src/core/xds/grpc/xds_routing.cc', |
|
|
|
|
'src/core/xds/grpc/xds_routing.h', |
|
|
|
|
'src/core/xds/grpc/xds_transport_grpc.cc', |
|
|
|
|
'src/core/xds/grpc/xds_transport_grpc.h', |
|
|
|
|
'src/core/xds/xds_client/xds_api.cc', |
|
|
|
|
'src/core/xds/xds_client/xds_api.h', |
|
|
|
|
'src/core/xds/xds_client/xds_bootstrap.cc', |
|
|
|
|
'src/core/xds/xds_client/xds_bootstrap.h', |
|
|
|
|
'src/core/xds/xds_client/xds_channel_args.h', |
|
|
|
|
'src/core/xds/xds_client/xds_client.cc', |
|
|
|
|
'src/core/xds/xds_client/xds_client.h', |
|
|
|
|
'src/core/xds/xds_client/xds_client_stats.cc', |
|
|
|
|
'src/core/xds/xds_client/xds_client_stats.h', |
|
|
|
|
'src/core/xds/xds_client/xds_metrics.h', |
|
|
|
|
'src/core/xds/xds_client/xds_resource_type.h', |
|
|
|
|
'src/core/xds/xds_client/xds_resource_type_impl.h', |
|
|
|
|
'src/core/xds/xds_client/xds_transport.h', |
|
|
|
|
'third_party/re2/re2/bitmap256.h', |
|
|
|
|
'third_party/re2/re2/bitstate.cc', |
|
|
|
|
'third_party/re2/re2/compile.cc', |
|
|
|
@ -2351,8 +2353,10 @@ Pod::Spec.new do |s| |
|
|
|
|
'third_party/zlib/zlib.h', |
|
|
|
|
'third_party/zlib/zutil.c', |
|
|
|
|
'third_party/zlib/zutil.h' |
|
|
|
|
ss.private_header_files = 'src/core/client_channel/backup_poller.h', |
|
|
|
|
'src/core/client_channel/client_channel_channelz.h', |
|
|
|
|
ss.private_header_files = 'src/core/channelz/channel_trace.h', |
|
|
|
|
'src/core/channelz/channelz.h', |
|
|
|
|
'src/core/channelz/channelz_registry.h', |
|
|
|
|
'src/core/client_channel/backup_poller.h', |
|
|
|
|
'src/core/client_channel/client_channel_factory.h', |
|
|
|
|
'src/core/client_channel/client_channel_filter.h', |
|
|
|
|
'src/core/client_channel/client_channel_internal.h', |
|
|
|
@ -2361,7 +2365,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/client_channel/connector.h', |
|
|
|
|
'src/core/client_channel/dynamic_filters.h', |
|
|
|
|
'src/core/client_channel/global_subchannel_pool.h', |
|
|
|
|
'src/core/client_channel/http_proxy_mapper.h', |
|
|
|
|
'src/core/client_channel/local_subchannel_pool.h', |
|
|
|
|
'src/core/client_channel/retry_filter.h', |
|
|
|
|
'src/core/client_channel/retry_filter_legacy_call_data.h', |
|
|
|
@ -2375,7 +2378,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/ext/filters/backend_metrics/backend_metric_provider.h', |
|
|
|
|
'src/core/ext/filters/channel_idle/idle_filter_state.h', |
|
|
|
|
'src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h', |
|
|
|
|
'src/core/ext/filters/deadline/deadline_filter.h', |
|
|
|
|
'src/core/ext/filters/fault_injection/fault_injection_filter.h', |
|
|
|
|
'src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h', |
|
|
|
|
'src/core/ext/filters/http/client/http_client_filter.h', |
|
|
|
@ -2385,8 +2387,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/ext/filters/message_size/message_size_filter.h', |
|
|
|
|
'src/core/ext/filters/rbac/rbac_filter.h', |
|
|
|
|
'src/core/ext/filters/rbac/rbac_service_config_parser.h', |
|
|
|
|
'src/core/ext/filters/server_config_selector/server_config_selector.h', |
|
|
|
|
'src/core/ext/filters/server_config_selector/server_config_selector_filter.h', |
|
|
|
|
'src/core/ext/filters/stateful_session/stateful_session_filter.h', |
|
|
|
|
'src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h', |
|
|
|
|
'src/core/ext/gcp/metadata_query.h', |
|
|
|
@ -2907,37 +2907,18 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h', |
|
|
|
|
'src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h', |
|
|
|
|
'src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h', |
|
|
|
|
'src/core/ext/xds/certificate_provider_store.h', |
|
|
|
|
'src/core/ext/xds/file_watcher_certificate_provider_factory.h', |
|
|
|
|
'src/core/ext/xds/upb_utils.h', |
|
|
|
|
'src/core/ext/xds/xds_api.h', |
|
|
|
|
'src/core/ext/xds/xds_audit_logger_registry.h', |
|
|
|
|
'src/core/ext/xds/xds_bootstrap.h', |
|
|
|
|
'src/core/ext/xds/xds_bootstrap_grpc.h', |
|
|
|
|
'src/core/ext/xds/xds_certificate_provider.h', |
|
|
|
|
'src/core/ext/xds/xds_channel_args.h', |
|
|
|
|
'src/core/ext/xds/xds_channel_stack_modifier.h', |
|
|
|
|
'src/core/ext/xds/xds_client.h', |
|
|
|
|
'src/core/ext/xds/xds_client_grpc.h', |
|
|
|
|
'src/core/ext/xds/xds_client_stats.h', |
|
|
|
|
'src/core/ext/xds/xds_cluster.h', |
|
|
|
|
'src/core/ext/xds/xds_cluster_specifier_plugin.h', |
|
|
|
|
'src/core/ext/xds/xds_common_types.h', |
|
|
|
|
'src/core/ext/xds/xds_endpoint.h', |
|
|
|
|
'src/core/ext/xds/xds_health_status.h', |
|
|
|
|
'src/core/ext/xds/xds_http_fault_filter.h', |
|
|
|
|
'src/core/ext/xds/xds_http_filters.h', |
|
|
|
|
'src/core/ext/xds/xds_http_rbac_filter.h', |
|
|
|
|
'src/core/ext/xds/xds_http_stateful_session_filter.h', |
|
|
|
|
'src/core/ext/xds/xds_lb_policy_registry.h', |
|
|
|
|
'src/core/ext/xds/xds_listener.h', |
|
|
|
|
'src/core/ext/xds/xds_metrics.h', |
|
|
|
|
'src/core/ext/xds/xds_resource_type.h', |
|
|
|
|
'src/core/ext/xds/xds_resource_type_impl.h', |
|
|
|
|
'src/core/ext/xds/xds_route_config.h', |
|
|
|
|
'src/core/ext/xds/xds_routing.h', |
|
|
|
|
'src/core/ext/xds/xds_transport.h', |
|
|
|
|
'src/core/ext/xds/xds_transport_grpc.h', |
|
|
|
|
'src/core/handshaker/endpoint_info/endpoint_info_handshaker.h', |
|
|
|
|
'src/core/handshaker/handshaker.h', |
|
|
|
|
'src/core/handshaker/handshaker_factory.h', |
|
|
|
|
'src/core/handshaker/handshaker_registry.h', |
|
|
|
|
'src/core/handshaker/http_connect/http_connect_handshaker.h', |
|
|
|
|
'src/core/handshaker/http_connect/http_proxy_mapper.h', |
|
|
|
|
'src/core/handshaker/proxy_mapper.h', |
|
|
|
|
'src/core/handshaker/proxy_mapper_registry.h', |
|
|
|
|
'src/core/handshaker/security/secure_endpoint.h', |
|
|
|
|
'src/core/handshaker/security/security_handshaker.h', |
|
|
|
|
'src/core/handshaker/security/tsi_error.h', |
|
|
|
|
'src/core/handshaker/tcp_connect/tcp_connect_handshaker.h', |
|
|
|
|
'src/core/lib/address_utils/parse_address.h', |
|
|
|
|
'src/core/lib/address_utils/sockaddr_utils.h', |
|
|
|
|
'src/core/lib/avl/avl.h', |
|
|
|
@ -2952,14 +2933,10 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/channel/channel_stack_builder.h', |
|
|
|
|
'src/core/lib/channel/channel_stack_builder_impl.h', |
|
|
|
|
'src/core/lib/channel/channel_stack_trace.h', |
|
|
|
|
'src/core/lib/channel/channel_trace.h', |
|
|
|
|
'src/core/lib/channel/channelz.h', |
|
|
|
|
'src/core/lib/channel/channelz_registry.h', |
|
|
|
|
'src/core/lib/channel/connected_channel.h', |
|
|
|
|
'src/core/lib/channel/context.h', |
|
|
|
|
'src/core/lib/channel/metrics.h', |
|
|
|
|
'src/core/lib/channel/promise_based_filter.h', |
|
|
|
|
'src/core/lib/channel/server_call_tracer_filter.h', |
|
|
|
|
'src/core/lib/channel/status_util.h', |
|
|
|
|
'src/core/lib/channel/tcp_tracer.h', |
|
|
|
|
'src/core/lib/compression/compression_internal.h', |
|
|
|
@ -3038,13 +3015,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/event_engine/work_queue/work_queue.h', |
|
|
|
|
'src/core/lib/experiments/config.h', |
|
|
|
|
'src/core/lib/experiments/experiments.h', |
|
|
|
|
'src/core/lib/gpr/alloc.h', |
|
|
|
|
'src/core/lib/gpr/log_internal.h', |
|
|
|
|
'src/core/lib/gpr/spinlock.h', |
|
|
|
|
'src/core/lib/gpr/string.h', |
|
|
|
|
'src/core/lib/gpr/time_precise.h', |
|
|
|
|
'src/core/lib/gpr/tmpfile.h', |
|
|
|
|
'src/core/lib/gpr/useful.h', |
|
|
|
|
'src/core/lib/gprpp/atomic_utils.h', |
|
|
|
|
'src/core/lib/gprpp/bitset.h', |
|
|
|
|
'src/core/lib/gprpp/chunked_vector.h', |
|
|
|
@ -3092,8 +3062,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/gprpp/validation_errors.h', |
|
|
|
|
'src/core/lib/gprpp/work_serializer.h', |
|
|
|
|
'src/core/lib/gprpp/xxhash_inline.h', |
|
|
|
|
'src/core/lib/handshaker/proxy_mapper.h', |
|
|
|
|
'src/core/lib/handshaker/proxy_mapper_registry.h', |
|
|
|
|
'src/core/lib/http/format_request.h', |
|
|
|
|
'src/core/lib/http/httpcli.h', |
|
|
|
|
'src/core/lib/http/httpcli_ssl_credentials.h', |
|
|
|
@ -3263,9 +3231,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/security/security_connector/ssl_utils.h', |
|
|
|
|
'src/core/lib/security/security_connector/tls/tls_security_connector.h', |
|
|
|
|
'src/core/lib/security/transport/auth_filters.h', |
|
|
|
|
'src/core/lib/security/transport/secure_endpoint.h', |
|
|
|
|
'src/core/lib/security/transport/security_handshaker.h', |
|
|
|
|
'src/core/lib/security/transport/tsi_error.h', |
|
|
|
|
'src/core/lib/security/util/json_util.h', |
|
|
|
|
'src/core/lib/slice/percent_encoding.h', |
|
|
|
|
'src/core/lib/slice/slice.h', |
|
|
|
@ -3288,25 +3253,20 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/surface/init_internally.h', |
|
|
|
|
'src/core/lib/surface/lame_client.h', |
|
|
|
|
'src/core/lib/surface/legacy_channel.h', |
|
|
|
|
'src/core/lib/surface/server.h', |
|
|
|
|
'src/core/lib/surface/server_interface.h', |
|
|
|
|
'src/core/lib/surface/validate_metadata.h', |
|
|
|
|
'src/core/lib/surface/wait_for_cq_end_op.h', |
|
|
|
|
'src/core/lib/transport/batch_builder.h', |
|
|
|
|
'src/core/lib/transport/bdp_estimator.h', |
|
|
|
|
'src/core/lib/transport/call_arena_allocator.h', |
|
|
|
|
'src/core/lib/transport/call_destination.h', |
|
|
|
|
'src/core/lib/transport/call_filters.h', |
|
|
|
|
'src/core/lib/transport/call_final_info.h', |
|
|
|
|
'src/core/lib/transport/call_size_estimator.h', |
|
|
|
|
'src/core/lib/transport/call_spine.h', |
|
|
|
|
'src/core/lib/transport/connectivity_state.h', |
|
|
|
|
'src/core/lib/transport/custom_metadata.h', |
|
|
|
|
'src/core/lib/transport/endpoint_info_handshaker.h', |
|
|
|
|
'src/core/lib/transport/error_utils.h', |
|
|
|
|
'src/core/lib/transport/handshaker.h', |
|
|
|
|
'src/core/lib/transport/handshaker_factory.h', |
|
|
|
|
'src/core/lib/transport/handshaker_registry.h', |
|
|
|
|
'src/core/lib/transport/http2_errors.h', |
|
|
|
|
'src/core/lib/transport/http_connect_handshaker.h', |
|
|
|
|
'src/core/lib/transport/interception_chain.h', |
|
|
|
|
'src/core/lib/transport/message.h', |
|
|
|
|
'src/core/lib/transport/metadata.h', |
|
|
|
|
'src/core/lib/transport/metadata_batch.h', |
|
|
|
@ -3315,7 +3275,6 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/lib/transport/parsed_metadata.h', |
|
|
|
|
'src/core/lib/transport/simple_slice_based_metadata.h', |
|
|
|
|
'src/core/lib/transport/status_conversion.h', |
|
|
|
|
'src/core/lib/transport/tcp_connect_handshaker.h', |
|
|
|
|
'src/core/lib/transport/timeout_encoding.h', |
|
|
|
|
'src/core/lib/transport/transport.h', |
|
|
|
|
'src/core/lib/transport/transport_fwd.h', |
|
|
|
@ -3364,6 +3323,12 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/resolver/xds/xds_dependency_manager.h', |
|
|
|
|
'src/core/resolver/xds/xds_resolver_attributes.h', |
|
|
|
|
'src/core/resolver/xds/xds_resolver_trace.h', |
|
|
|
|
'src/core/server/server.h', |
|
|
|
|
'src/core/server/server_call_tracer_filter.h', |
|
|
|
|
'src/core/server/server_config_selector.h', |
|
|
|
|
'src/core/server/server_config_selector_filter.h', |
|
|
|
|
'src/core/server/server_interface.h', |
|
|
|
|
'src/core/server/xds_channel_stack_modifier.h', |
|
|
|
|
'src/core/service_config/service_config.h', |
|
|
|
|
'src/core/service_config/service_config_call_data.h', |
|
|
|
|
'src/core/service_config/service_config_impl.h', |
|
|
|
@ -3397,6 +3362,42 @@ Pod::Spec.new do |s| |
|
|
|
|
'src/core/tsi/transport_security.h', |
|
|
|
|
'src/core/tsi/transport_security_grpc.h', |
|
|
|
|
'src/core/tsi/transport_security_interface.h', |
|
|
|
|
'src/core/util/alloc.h', |
|
|
|
|
'src/core/util/spinlock.h', |
|
|
|
|
'src/core/util/string.h', |
|
|
|
|
'src/core/util/time_precise.h', |
|
|
|
|
'src/core/util/tmpfile.h', |
|
|
|
|
'src/core/util/useful.h', |
|
|
|
|
'src/core/xds/grpc/certificate_provider_store.h', |
|
|
|
|
'src/core/xds/grpc/file_watcher_certificate_provider_factory.h', |
|
|
|
|
'src/core/xds/grpc/upb_utils.h', |
|
|
|
|
'src/core/xds/grpc/xds_audit_logger_registry.h', |
|
|
|
|
'src/core/xds/grpc/xds_bootstrap_grpc.h', |
|
|
|
|
'src/core/xds/grpc/xds_certificate_provider.h', |
|
|
|
|
'src/core/xds/grpc/xds_client_grpc.h', |
|
|
|
|
'src/core/xds/grpc/xds_cluster.h', |
|
|
|
|
'src/core/xds/grpc/xds_cluster_specifier_plugin.h', |
|
|
|
|
'src/core/xds/grpc/xds_common_types.h', |
|
|
|
|
'src/core/xds/grpc/xds_endpoint.h', |
|
|
|
|
'src/core/xds/grpc/xds_health_status.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_fault_filter.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_filters.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_rbac_filter.h', |
|
|
|
|
'src/core/xds/grpc/xds_http_stateful_session_filter.h', |
|
|
|
|
'src/core/xds/grpc/xds_lb_policy_registry.h', |
|
|
|
|
'src/core/xds/grpc/xds_listener.h', |
|
|
|
|
'src/core/xds/grpc/xds_route_config.h', |
|
|
|
|
'src/core/xds/grpc/xds_routing.h', |
|
|
|
|
'src/core/xds/grpc/xds_transport_grpc.h', |
|
|
|
|
'src/core/xds/xds_client/xds_api.h', |
|
|
|
|
'src/core/xds/xds_client/xds_bootstrap.h', |
|
|
|
|
'src/core/xds/xds_client/xds_channel_args.h', |
|
|
|
|
'src/core/xds/xds_client/xds_client.h', |
|
|
|
|
'src/core/xds/xds_client/xds_client_stats.h', |
|
|
|
|
'src/core/xds/xds_client/xds_metrics.h', |
|
|
|
|
'src/core/xds/xds_client/xds_resource_type.h', |
|
|
|
|
'src/core/xds/xds_client/xds_resource_type_impl.h', |
|
|
|
|
'src/core/xds/xds_client/xds_transport.h', |
|
|
|
|
'third_party/re2/re2/bitmap256.h', |
|
|
|
|
'third_party/re2/re2/filtered_re2.h', |
|
|
|
|
'third_party/re2/re2/pod_array.h', |
|
|
|
|