The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3353 lines
239 KiB

# -*- ruby -*-
# encoding: utf-8
$LOAD_PATH.push File.expand_path('../src/ruby/lib', __FILE__)
require 'grpc/version'
Gem::Specification.new do |s|
s.name = 'grpc'
s.version = GRPC::VERSION
10 years ago
s.authors = ['gRPC Authors']
s.email = 'grpc-io@googlegroups.com'
10 years ago
s.homepage = 'https://github.com/google/grpc/tree/master/src/ruby'
s.summary = 'GRPC system in Ruby'
s.description = 'Send RPCs from Ruby using GRPC'
s.license = 'Apache-2.0'
s.required_ruby_version = '>= 3.0'
s.files = %w( Makefile .yardopts )
s.files += %w( etc/roots.pem )
s.files += Dir.glob('src/ruby/bin/**/*')
s.files += Dir.glob('src/ruby/ext/**/*')
s.files += Dir.glob('src/ruby/lib/**/*')
s.files += Dir.glob('src/ruby/pb/**/*').reject do |f|
f.match(%r{^src/ruby/pb/test})
end
s.files += Dir.glob('include/grpc/**/*')
s.test_files = Dir.glob('src/ruby/spec/**/*')
s.test_files += Dir.glob('src/ruby/pb/test/**/*')
s.bindir = 'src/ruby/bin'
s.require_paths = %w( src/ruby/lib src/ruby/bin src/ruby/pb )
s.platform = Gem::Platform::RUBY
s.add_dependency 'google-protobuf', '>= 3.25', '< 5.0'
s.add_dependency 'googleapis-common-protos-types', '~> 1.0'
s.add_development_dependency 'bundler', '>= 1.9'
s.add_development_dependency 'facter', '~> 2.4'
s.add_development_dependency 'logging', '~> 2.0'
s.add_development_dependency 'simplecov', '~> 0.22'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rake-compiler', '~> 1.2.1'
s.add_development_dependency 'rake-compiler-dock', '~> 1.4'
s.add_development_dependency 'rspec', '~> 3.6'
s.add_development_dependency 'rubocop', '~> 1.41.0'
s.add_development_dependency 'signet', '~> 0.7'
s.add_development_dependency 'googleauth', '~> 1.0'
s.extensions = %w(src/ruby/ext/grpc/extconf.rb)
s.files += %w( include/grpc/byte_buffer.h )
s.files += %w( include/grpc/byte_buffer_reader.h )
s.files += %w( include/grpc/census.h )
s.files += %w( include/grpc/compression.h )
s.files += %w( include/grpc/credentials.h )
s.files += %w( include/grpc/event_engine/endpoint_config.h )
s.files += %w( include/grpc/event_engine/event_engine.h )
s.files += %w( include/grpc/event_engine/extensible.h )
s.files += %w( include/grpc/event_engine/internal/memory_allocator_impl.h )
s.files += %w( include/grpc/event_engine/internal/slice_cast.h )
s.files += %w( include/grpc/event_engine/memory_allocator.h )
s.files += %w( include/grpc/event_engine/memory_request.h )
s.files += %w( include/grpc/event_engine/port.h )
s.files += %w( include/grpc/event_engine/slice.h )
s.files += %w( include/grpc/event_engine/slice_buffer.h )
s.files += %w( include/grpc/fork.h )
s.files += %w( include/grpc/grpc.h )
s.files += %w( include/grpc/grpc_audit_logging.h )
s.files += %w( include/grpc/grpc_crl_provider.h )
s.files += %w( include/grpc/grpc_posix.h )
s.files += %w( include/grpc/grpc_security.h )
s.files += %w( include/grpc/grpc_security_constants.h )
s.files += %w( include/grpc/impl/call.h )
s.files += %w( include/grpc/impl/channel_arg_names.h )
s.files += %w( include/grpc/impl/codegen/atm.h )
s.files += %w( include/grpc/impl/codegen/atm_gcc_atomic.h )
s.files += %w( include/grpc/impl/codegen/atm_gcc_sync.h )
s.files += %w( include/grpc/impl/codegen/atm_windows.h )
s.files += %w( include/grpc/impl/codegen/byte_buffer.h )
s.files += %w( include/grpc/impl/codegen/byte_buffer_reader.h )
s.files += %w( include/grpc/impl/codegen/compression_types.h )
s.files += %w( include/grpc/impl/codegen/connectivity_state.h )
s.files += %w( include/grpc/impl/codegen/fork.h )
s.files += %w( include/grpc/impl/codegen/gpr_types.h )
s.files += %w( include/grpc/impl/codegen/grpc_types.h )
s.files += %w( include/grpc/impl/codegen/log.h )
s.files += %w( include/grpc/impl/codegen/port_platform.h )
s.files += %w( include/grpc/impl/codegen/propagation_bits.h )
s.files += %w( include/grpc/impl/codegen/slice.h )
s.files += %w( include/grpc/impl/codegen/status.h )
s.files += %w( include/grpc/impl/codegen/sync.h )
s.files += %w( include/grpc/impl/codegen/sync_abseil.h )
s.files += %w( include/grpc/impl/codegen/sync_custom.h )
s.files += %w( include/grpc/impl/codegen/sync_generic.h )
s.files += %w( include/grpc/impl/codegen/sync_posix.h )
s.files += %w( include/grpc/impl/codegen/sync_windows.h )
s.files += %w( include/grpc/impl/compression_types.h )
s.files += %w( include/grpc/impl/connectivity_state.h )
s.files += %w( include/grpc/impl/grpc_types.h )
s.files += %w( include/grpc/impl/propagation_bits.h )
s.files += %w( include/grpc/impl/slice_type.h )
s.files += %w( include/grpc/load_reporting.h )
s.files += %w( include/grpc/passive_listener.h )
s.files += %w( include/grpc/slice.h )
s.files += %w( include/grpc/slice_buffer.h )
s.files += %w( include/grpc/status.h )
s.files += %w( include/grpc/support/alloc.h )
s.files += %w( include/grpc/support/atm.h )
s.files += %w( include/grpc/support/atm_gcc_atomic.h )
s.files += %w( include/grpc/support/atm_gcc_sync.h )
s.files += %w( include/grpc/support/atm_windows.h )
s.files += %w( include/grpc/support/cpu.h )
s.files += %w( include/grpc/support/json.h )
s.files += %w( include/grpc/support/log.h )
s.files += %w( include/grpc/support/log_windows.h )
s.files += %w( include/grpc/support/metrics.h )
s.files += %w( include/grpc/support/port_platform.h )
s.files += %w( include/grpc/support/string_util.h )
s.files += %w( include/grpc/support/sync.h )
s.files += %w( include/grpc/support/sync_abseil.h )
s.files += %w( include/grpc/support/sync_custom.h )
s.files += %w( include/grpc/support/sync_generic.h )
s.files += %w( include/grpc/support/sync_posix.h )
s.files += %w( include/grpc/support/sync_windows.h )
s.files += %w( include/grpc/support/thd_id.h )
s.files += %w( include/grpc/support/time.h )
s.files += %w( include/grpc/support/workaround_list.h )
s.files += %w( src/core/channelz/channel_trace.cc )
s.files += %w( src/core/channelz/channel_trace.h )
s.files += %w( src/core/channelz/channelz.cc )
s.files += %w( src/core/channelz/channelz.h )
s.files += %w( src/core/channelz/channelz_registry.cc )
s.files += %w( src/core/channelz/channelz_registry.h )
s.files += %w( src/core/client_channel/backup_poller.cc )
s.files += %w( src/core/client_channel/backup_poller.h )
s.files += %w( src/core/client_channel/client_channel.cc )
s.files += %w( src/core/client_channel/client_channel.h )
s.files += %w( src/core/client_channel/client_channel_factory.cc )
s.files += %w( src/core/client_channel/client_channel_factory.h )
s.files += %w( src/core/client_channel/client_channel_filter.cc )
s.files += %w( src/core/client_channel/client_channel_filter.h )
s.files += %w( src/core/client_channel/client_channel_internal.h )
s.files += %w( src/core/client_channel/client_channel_plugin.cc )
s.files += %w( src/core/client_channel/client_channel_service_config.cc )
s.files += %w( src/core/client_channel/client_channel_service_config.h )
s.files += %w( src/core/client_channel/config_selector.h )
s.files += %w( src/core/client_channel/connector.h )
s.files += %w( src/core/client_channel/direct_channel.cc )
s.files += %w( src/core/client_channel/direct_channel.h )
s.files += %w( src/core/client_channel/dynamic_filters.cc )
s.files += %w( src/core/client_channel/dynamic_filters.h )
s.files += %w( src/core/client_channel/global_subchannel_pool.cc )
s.files += %w( src/core/client_channel/global_subchannel_pool.h )
s.files += %w( src/core/client_channel/lb_metadata.cc )
s.files += %w( src/core/client_channel/lb_metadata.h )
s.files += %w( src/core/client_channel/load_balanced_call_destination.cc )
s.files += %w( src/core/client_channel/load_balanced_call_destination.h )
s.files += %w( src/core/client_channel/local_subchannel_pool.cc )
s.files += %w( src/core/client_channel/local_subchannel_pool.h )
s.files += %w( src/core/client_channel/retry_filter.cc )
s.files += %w( src/core/client_channel/retry_filter.h )
s.files += %w( src/core/client_channel/retry_filter_legacy_call_data.cc )
s.files += %w( src/core/client_channel/retry_filter_legacy_call_data.h )
s.files += %w( src/core/client_channel/retry_service_config.cc )
s.files += %w( src/core/client_channel/retry_service_config.h )
s.files += %w( src/core/client_channel/retry_throttle.cc )
s.files += %w( src/core/client_channel/retry_throttle.h )
s.files += %w( src/core/client_channel/subchannel.cc )
s.files += %w( src/core/client_channel/subchannel.h )
s.files += %w( src/core/client_channel/subchannel_interface_internal.h )
s.files += %w( src/core/client_channel/subchannel_pool_interface.cc )
s.files += %w( src/core/client_channel/subchannel_pool_interface.h )
s.files += %w( src/core/client_channel/subchannel_stream_client.cc )
s.files += %w( src/core/client_channel/subchannel_stream_client.h )
s.files += %w( src/core/ext/filters/backend_metrics/backend_metric_filter.cc )
s.files += %w( src/core/ext/filters/backend_metrics/backend_metric_filter.h )
s.files += %w( src/core/ext/filters/backend_metrics/backend_metric_provider.h )
s.files += %w( src/core/ext/filters/census/grpc_context.cc )
s.files += %w( src/core/ext/filters/channel_idle/idle_filter_state.cc )
s.files += %w( src/core/ext/filters/channel_idle/idle_filter_state.h )
s.files += %w( src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc )
s.files += %w( src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h )
s.files += %w( src/core/ext/filters/fault_injection/fault_injection_filter.cc )
s.files += %w( src/core/ext/filters/fault_injection/fault_injection_filter.h )
s.files += %w( src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc )
s.files += %w( src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h )
[xDS] implement GCP Auth filter (#37550) Final piece of gRFC A83 (https://github.com/grpc/proposal/pull/438): the GCP authentication filter itself. Infrastructure changes include: - Added a general-purpose LRU cache library that can be reused elsewhere. - Fixed the client channel code to use the channel args returned by the resolver for the dynamic filters. This was necessary so that the GCP auth filter could access the `XdsConfig` object, which is passed via a channel arg. - Unlike the other xDS HTTP filters we support, the GCP auth filter does not support config overrides, and its configuration includes a cache size parameter that we always need at the channel level, not per-call. As a result, I had to change the xDS HTTP filter API to give it the ability to set top-level fields in the service config, not just per-method fields. (We use the service config as a way of passing configuration down into xDS HTTP filters.) Note that for now, this works only on the client side, because we don't have machinery for a top-level service config on the server side. - The GCP auth filter is also the first case where the filter needs to know its instance name from the xDS config, so I changed the xDS HTTP filter API to plumb that through. - Fixed a bug in the HTTP client library that prevented the override functions from declining to override a particular request. Closes #37550 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37550 from markdroth:xds_gcp_auth_filter 19eaefb52f5954dcb680c04755d1e703d7f623e8 PiperOrigin-RevId: 669371249
3 months ago
s.files += %w( src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc )
s.files += %w( src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h )
s.files += %w( src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc )
s.files += %w( src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h )
s.files += %w( src/core/ext/filters/http/client/http_client_filter.cc )
s.files += %w( src/core/ext/filters/http/client/http_client_filter.h )
s.files += %w( src/core/ext/filters/http/client_authority_filter.cc )
s.files += %w( src/core/ext/filters/http/client_authority_filter.h )
s.files += %w( src/core/ext/filters/http/http_filters_plugin.cc )
s.files += %w( src/core/ext/filters/http/message_compress/compression_filter.cc )
s.files += %w( src/core/ext/filters/http/message_compress/compression_filter.h )
s.files += %w( src/core/ext/filters/http/server/http_server_filter.cc )
s.files += %w( src/core/ext/filters/http/server/http_server_filter.h )
s.files += %w( src/core/ext/filters/message_size/message_size_filter.cc )
s.files += %w( src/core/ext/filters/message_size/message_size_filter.h )
s.files += %w( src/core/ext/filters/rbac/rbac_filter.cc )
s.files += %w( src/core/ext/filters/rbac/rbac_filter.h )
s.files += %w( src/core/ext/filters/rbac/rbac_service_config_parser.cc )
s.files += %w( src/core/ext/filters/rbac/rbac_service_config_parser.h )
s.files += %w( src/core/ext/filters/stateful_session/stateful_session_filter.cc )
s.files += %w( src/core/ext/filters/stateful_session/stateful_session_filter.h )
s.files += %w( src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc )
s.files += %w( src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h )
s.files += %w( src/core/ext/transport/chttp2/alpn/alpn.cc )
s.files += %w( src/core/ext/transport/chttp2/alpn/alpn.h )
s.files += %w( src/core/ext/transport/chttp2/client/chttp2_connector.cc )
s.files += %w( src/core/ext/transport/chttp2/client/chttp2_connector.h )
s.files += %w( src/core/ext/transport/chttp2/server/chttp2_server.cc )
s.files += %w( src/core/ext/transport/chttp2/server/chttp2_server.h )
s.files += %w( src/core/ext/transport/chttp2/transport/bin_decoder.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/bin_decoder.h )
s.files += %w( src/core/ext/transport/chttp2/transport/bin_encoder.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/bin_encoder.h )
s.files += %w( src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h )
s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_transport.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/chttp2_transport.h )
s.files += %w( src/core/ext/transport/chttp2/transport/context_list_entry.h )
s.files += %w( src/core/ext/transport/chttp2/transport/decode_huff.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/decode_huff.h )
s.files += %w( src/core/ext/transport/chttp2/transport/flow_control.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/flow_control.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_data.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_data.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_goaway.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_goaway.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_ping.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_ping.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_rst_stream.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_rst_stream.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_security.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_security.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_settings.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_settings.h )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_window_update.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/frame_window_update.h )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_constants.h )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder.h )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_encoder_table.h )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parse_result.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parse_result.h )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser.h )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser_table.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/hpack_parser_table.h )
s.files += %w( src/core/ext/transport/chttp2/transport/http2_settings.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/http2_settings.h )
s.files += %w( src/core/ext/transport/chttp2/transport/huffsyms.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/huffsyms.h )
s.files += %w( src/core/ext/transport/chttp2/transport/internal.h )
s.files += %w( src/core/ext/transport/chttp2/transport/legacy_frame.h )
s.files += %w( src/core/ext/transport/chttp2/transport/parsing.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/ping_abuse_policy.h )
s.files += %w( src/core/ext/transport/chttp2/transport/ping_callbacks.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/ping_callbacks.h )
s.files += %w( src/core/ext/transport/chttp2/transport/ping_rate_policy.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/ping_rate_policy.h )
s.files += %w( src/core/ext/transport/chttp2/transport/stream_lists.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/stream_lists.h )
s.files += %w( src/core/ext/transport/chttp2/transport/varint.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/varint.h )
s.files += %w( src/core/ext/transport/chttp2/transport/write_size_policy.cc )
s.files += %w( src/core/ext/transport/chttp2/transport/write_size_policy.h )
s.files += %w( src/core/ext/transport/chttp2/transport/writing.cc )
s.files += %w( src/core/ext/transport/inproc/inproc_transport.cc )
s.files += %w( src/core/ext/transport/inproc/inproc_transport.h )
s.files += %w( src/core/ext/transport/inproc/legacy_inproc_transport.cc )
s.files += %w( src/core/ext/transport/inproc/legacy_inproc_transport.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/annotations/resource.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/http.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/percent.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/range.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/api/annotations.upb.h )
s.files += %w( src/core/ext/upb-gen/google/api/annotations.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/api/annotations.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h )
s.files += %w( src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h )
s.files += %w( src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/api/http.upb.h )
s.files += %w( src/core/ext/upb-gen/google/api/http.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/api/http.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/api/httpbody.upb.h )
s.files += %w( src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/any.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/descriptor.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/duration.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/empty.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/struct.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/timestamp.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/wrappers.upb.h )
s.files += %w( src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/google/rpc/status.upb.h )
s.files += %w( src/core/ext/upb-gen/google/rpc/status.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/google/rpc/status.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h )
s.files += %w( src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/migrate.upb.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/security.upb.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/status.upb.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/versioning.upb.h )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/validate/validate.upb.h )
s.files += %w( src/core/ext/upb-gen/validate/validate.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/validate/validate.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/security.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/status.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/authority.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/cidr.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/context_params.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/extension.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/cel.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/range.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c )
s.files += %w( src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/api/http.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/api/http.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/validate/validate.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/validate/validate.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c )
s.files += %w( src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h )
s.files += %w( src/core/filter/blackboard.cc )
s.files += %w( src/core/filter/blackboard.h )
s.files += %w( src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc )
s.files += %w( src/core/handshaker/endpoint_info/endpoint_info_handshaker.h )
s.files += %w( src/core/handshaker/handshaker.cc )
s.files += %w( src/core/handshaker/handshaker.h )
s.files += %w( src/core/handshaker/handshaker_factory.h )
s.files += %w( src/core/handshaker/handshaker_registry.cc )
s.files += %w( src/core/handshaker/handshaker_registry.h )
s.files += %w( src/core/handshaker/http_connect/http_connect_handshaker.cc )
s.files += %w( src/core/handshaker/http_connect/http_connect_handshaker.h )
s.files += %w( src/core/handshaker/http_connect/http_proxy_mapper.cc )
s.files += %w( src/core/handshaker/http_connect/http_proxy_mapper.h )
s.files += %w( src/core/handshaker/http_connect/xds_http_proxy_mapper.cc )
s.files += %w( src/core/handshaker/http_connect/xds_http_proxy_mapper.h )
s.files += %w( src/core/handshaker/proxy_mapper.h )
s.files += %w( src/core/handshaker/proxy_mapper_registry.cc )
s.files += %w( src/core/handshaker/proxy_mapper_registry.h )
s.files += %w( src/core/handshaker/security/secure_endpoint.cc )
s.files += %w( src/core/handshaker/security/secure_endpoint.h )
s.files += %w( src/core/handshaker/security/security_handshaker.cc )
s.files += %w( src/core/handshaker/security/security_handshaker.h )
s.files += %w( src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc )
s.files += %w( src/core/handshaker/tcp_connect/tcp_connect_handshaker.h )
s.files += %w( src/core/lib/address_utils/parse_address.cc )
s.files += %w( src/core/lib/address_utils/parse_address.h )
s.files += %w( src/core/lib/address_utils/sockaddr_utils.cc )
s.files += %w( src/core/lib/address_utils/sockaddr_utils.h )
s.files += %w( src/core/lib/channel/call_finalization.h )
s.files += %w( src/core/lib/channel/channel_args.cc )
s.files += %w( src/core/lib/channel/channel_args.h )
s.files += %w( src/core/lib/channel/channel_args_preconditioning.cc )
s.files += %w( src/core/lib/channel/channel_args_preconditioning.h )
s.files += %w( src/core/lib/channel/channel_fwd.h )
s.files += %w( src/core/lib/channel/channel_stack.cc )
s.files += %w( src/core/lib/channel/channel_stack.h )
s.files += %w( src/core/lib/channel/channel_stack_builder.cc )
s.files += %w( src/core/lib/channel/channel_stack_builder.h )
s.files += %w( src/core/lib/channel/channel_stack_builder_impl.cc )
s.files += %w( src/core/lib/channel/channel_stack_builder_impl.h )
s.files += %w( src/core/lib/channel/connected_channel.cc )
s.files += %w( src/core/lib/channel/connected_channel.h )
s.files += %w( src/core/lib/channel/promise_based_filter.cc )
s.files += %w( src/core/lib/channel/promise_based_filter.h )
s.files += %w( src/core/lib/channel/status_util.cc )
s.files += %w( src/core/lib/channel/status_util.h )
s.files += %w( src/core/lib/compression/compression.cc )
s.files += %w( src/core/lib/compression/compression_internal.cc )
7 years ago
s.files += %w( src/core/lib/compression/compression_internal.h )
s.files += %w( src/core/lib/compression/message_compress.cc )
s.files += %w( src/core/lib/compression/message_compress.h )
s.files += %w( src/core/lib/config/config_vars.cc )
s.files += %w( src/core/lib/config/config_vars.h )
s.files += %w( src/core/lib/config/config_vars_non_generated.cc )
s.files += %w( src/core/lib/config/core_configuration.cc )
s.files += %w( src/core/lib/config/core_configuration.h )
s.files += %w( src/core/lib/config/load_config.cc )
s.files += %w( src/core/lib/config/load_config.h )
s.files += %w( src/core/lib/debug/trace.cc )
s.files += %w( src/core/lib/debug/trace.h )
[logging] Centralize configuration for trace flags (#36576) All TraceFlags are now configured in `src/core/lib/debug/trace_flags.yaml`. The format is: ``` my_flag: default: false # the default value; default=false description: Some Description debug_only: false # debug_only flags only work in debug builds; default=false internal: false # internal flags will not show up in documentation; default=false ``` To regenerate the trace flag source code, run `tools/codegen/core/gen_trace_flags.py` (requires mako). This script is also run when sanity checking. This PR also adds two new features: ### Glob-based flag configuration Trace flag configuration now supports `?` (single wildcard character) and `*` (one or more wildcard characters). For example, using `GRPC_TRACE='event_engine*'` will enable all flags that match that glob. It expands to: * event_engine * event_engine_client_channel_resolver * event_engine_dns * event_engine_endpoint * event_engine_endpoint_data * event_engine_poller ### A cleaner trace-logging macro in abseil logging format If your goal is only to add log statements when the `fault_injection_filter` trace flag is enabled, you can use the macro: ``` GRPC_TRACE_LOG(fault_injection, INFO) << "Filtered:" << 42; ``` When the trace flag is enabled, the the log will show something like this: ``` I0000 00:00:1715733657.430042 16 file.cc:174] Filtered:42 ``` ---- Note: just like with the gpr_log to abseil logging conversion, the pre-existing trace logging usages can be replaced with the new tracing macro across multiple PRs. Closes #36576 PiperOrigin-RevId: 641295215
6 months ago
s.files += %w( src/core/lib/debug/trace_flags.cc )
s.files += %w( src/core/lib/debug/trace_flags.h )
s.files += %w( src/core/lib/debug/trace_impl.h )
[EventEngine] PosixEventEngine DNS Resolver (#32701) This PR implements a c-ares based DNS resolver for EventEngine with the reference from the original [grpc_ares_wrapper.h](../blob/master/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h). The PosixEventEngine DNSResolver is implemented on top of that. Tests which use the client channel resolver API ([resolver.h](../blob/master/src/core/lib/resolver/resolver.h#L54)) are ported, namely the [resolver_component_test.cc](../blob/master/test/cpp/naming/resolver_component_test.cc) and the [cancel_ares_query_test.cc](../blob/master/test/cpp/naming/cancel_ares_query_test.cc). The WindowsEventEngine DNSResolver will use the same EventEngine's grpc_ares_wrapper and will be worked on next. The [resolve_address_test.cc](https://github.com/grpc/grpc/blob/master/test/core/iomgr/resolve_address_test.cc) which uses the iomgr [DNSResolver](../blob/master/src/core/lib/iomgr/resolve_address.h#L44) API has been ported to EventEngine's dns_test.cc. That leaves only 2 tests which use iomgr's API, notably the [dns_resolver_cooldown_test.cc](../blob/master/test/core/client_channel/resolvers/dns_resolver_cooldown_test.cc) and the [goaway_server_test.cc](../blob/master/test/core/end2end/goaway_server_test.cc) which probably need to be restructured to use EventEngine DNSResolver (for one thing they override the original grpc_ares_wrapper's free functions). I will try to tackle these in the next step. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
1 year ago
s.files += %w( src/core/lib/event_engine/ares_resolver.cc )
s.files += %w( src/core/lib/event_engine/ares_resolver.h )
s.files += %w( src/core/lib/event_engine/cf_engine/cf_engine.cc )
s.files += %w( src/core/lib/event_engine/cf_engine/cf_engine.h )
s.files += %w( src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc )
s.files += %w( src/core/lib/event_engine/cf_engine/cfstream_endpoint.h )
s.files += %w( src/core/lib/event_engine/cf_engine/cftype_unique_ref.h )
s.files += %w( src/core/lib/event_engine/cf_engine/dns_service_resolver.cc )
s.files += %w( src/core/lib/event_engine/cf_engine/dns_service_resolver.h )
s.files += %w( src/core/lib/event_engine/channel_args_endpoint_config.cc )
s.files += %w( src/core/lib/event_engine/channel_args_endpoint_config.h )
s.files += %w( src/core/lib/event_engine/common_closures.h )
s.files += %w( src/core/lib/event_engine/default_event_engine.cc )
s.files += %w( src/core/lib/event_engine/default_event_engine.h )
s.files += %w( src/core/lib/event_engine/default_event_engine_factory.cc )
s.files += %w( src/core/lib/event_engine/default_event_engine_factory.h )
s.files += %w( src/core/lib/event_engine/event_engine.cc )
s.files += %w( src/core/lib/event_engine/event_engine_context.h )
s.files += %w( src/core/lib/event_engine/extensions/can_track_errors.h )
s.files += %w( src/core/lib/event_engine/extensions/chaotic_good_extension.h )
s.files += %w( src/core/lib/event_engine/extensions/supports_fd.h )
s.files += %w( src/core/lib/event_engine/extensions/tcp_trace.h )
s.files += %w( src/core/lib/event_engine/forkable.cc )
s.files += %w( src/core/lib/event_engine/forkable.h )
[EventEngine] PosixEventEngine DNS Resolver (#32701) This PR implements a c-ares based DNS resolver for EventEngine with the reference from the original [grpc_ares_wrapper.h](../blob/master/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h). The PosixEventEngine DNSResolver is implemented on top of that. Tests which use the client channel resolver API ([resolver.h](../blob/master/src/core/lib/resolver/resolver.h#L54)) are ported, namely the [resolver_component_test.cc](../blob/master/test/cpp/naming/resolver_component_test.cc) and the [cancel_ares_query_test.cc](../blob/master/test/cpp/naming/cancel_ares_query_test.cc). The WindowsEventEngine DNSResolver will use the same EventEngine's grpc_ares_wrapper and will be worked on next. The [resolve_address_test.cc](https://github.com/grpc/grpc/blob/master/test/core/iomgr/resolve_address_test.cc) which uses the iomgr [DNSResolver](../blob/master/src/core/lib/iomgr/resolve_address.h#L44) API has been ported to EventEngine's dns_test.cc. That leaves only 2 tests which use iomgr's API, notably the [dns_resolver_cooldown_test.cc](../blob/master/test/core/client_channel/resolvers/dns_resolver_cooldown_test.cc) and the [goaway_server_test.cc](../blob/master/test/core/end2end/goaway_server_test.cc) which probably need to be restructured to use EventEngine DNSResolver (for one thing they override the original grpc_ares_wrapper's free functions). I will try to tackle these in the next step. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
1 year ago
s.files += %w( src/core/lib/event_engine/grpc_polled_fd.h )
s.files += %w( src/core/lib/event_engine/handle_containers.h )
s.files += %w( src/core/lib/event_engine/memory_allocator_factory.h )
s.files += %w( src/core/lib/event_engine/nameser.h )
s.files += %w( src/core/lib/event_engine/poller.h )
s.files += %w( src/core/lib/event_engine/posix.h )
s.files += %w( src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h )
s.files += %w( src/core/lib/event_engine/posix_engine/ev_poll_posix.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/ev_poll_posix.h )
s.files += %w( src/core/lib/event_engine/posix_engine/event_poller.h )
s.files += %w( src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/event_poller_posix_default.h )
[EventEngine] PosixEventEngine DNS Resolver (#32701) This PR implements a c-ares based DNS resolver for EventEngine with the reference from the original [grpc_ares_wrapper.h](../blob/master/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h). The PosixEventEngine DNSResolver is implemented on top of that. Tests which use the client channel resolver API ([resolver.h](../blob/master/src/core/lib/resolver/resolver.h#L54)) are ported, namely the [resolver_component_test.cc](../blob/master/test/cpp/naming/resolver_component_test.cc) and the [cancel_ares_query_test.cc](../blob/master/test/cpp/naming/cancel_ares_query_test.cc). The WindowsEventEngine DNSResolver will use the same EventEngine's grpc_ares_wrapper and will be worked on next. The [resolve_address_test.cc](https://github.com/grpc/grpc/blob/master/test/core/iomgr/resolve_address_test.cc) which uses the iomgr [DNSResolver](../blob/master/src/core/lib/iomgr/resolve_address.h#L44) API has been ported to EventEngine's dns_test.cc. That leaves only 2 tests which use iomgr's API, notably the [dns_resolver_cooldown_test.cc](../blob/master/test/core/client_channel/resolvers/dns_resolver_cooldown_test.cc) and the [goaway_server_test.cc](../blob/master/test/core/end2end/goaway_server_test.cc) which probably need to be restructured to use EventEngine DNSResolver (for one thing they override the original grpc_ares_wrapper's free functions). I will try to tackle these in the next step. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
1 year ago
s.files += %w( src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h )
s.files += %w( src/core/lib/event_engine/posix_engine/internal_errqueue.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/internal_errqueue.h )
s.files += %w( src/core/lib/event_engine/posix_engine/lockfree_event.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/lockfree_event.h )
s.files += %w( src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_endpoint.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_endpoint.h )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine.h )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine_closure.h )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine_listener.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine_listener.h )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h )
s.files += %w( src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/tcp_socket_utils.h )
s.files += %w( src/core/lib/event_engine/posix_engine/timer.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/timer.h )
s.files += %w( src/core/lib/event_engine/posix_engine/timer_heap.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/timer_heap.h )
s.files += %w( src/core/lib/event_engine/posix_engine/timer_manager.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/timer_manager.h )
s.files += %w( src/core/lib/event_engine/posix_engine/traced_buffer_list.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/traced_buffer_list.h )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc )
s.files += %w( src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h )
s.files += %w( src/core/lib/event_engine/query_extensions.h )
s.files += %w( src/core/lib/event_engine/ref_counted_dns_resolver_interface.h )
s.files += %w( src/core/lib/event_engine/resolved_address.cc )
[EventEngine] Modify iomgr to allow creation of event engine clients and client side endpoints (#31661) * [WIP] EventEngine iomgr endpoint shims * [WIP] EventEngine::Endpoint iomgr shims for the PosixEventEngine * Util functions to help with posix engine listener implementation * sanity * update comments in posix_engine_listener_utils.h * review comments * iwyu * revert prev commit * iwyu * update build * update * regenerate projects * regenerate projects * minor fixes * update BUILD * sanity * update build * regenerate projects * fix unused parameter * sanity * update * sanity * regenerate_projects * remove unused variable * start * update * regenerate_projects * sanity * update * fixes * update * regenerate_projects * update * fix sanity and msan failure * more fixes * build failure * update * fix * sanity * fixes * update * regenerate projects * fix sanity * review comments * An EventEngine subclass to be implemented by all posix based event engines * sanity * comments * update * review comments * re-word * fix * update * review comments * regenerate projects * syntax fix * add lock free event benchmark * releasable mutex lock * fix build isue * update * start * regenerate projects * update * fix * windows build * update * windows portability issue * update * update * update * update * format * update * update * update * update * update * fix sanity * regenerate projects * update * iwyu * Fix resolved address length related bugs in tcp_socket_utils and listener_utils * iwyu * cleanup src/core/lib/event_engine/tcp_socket_utils.cc * iwyu * fix * regenerate projects * fix sanity * re-write endpoint shim * more re-write * cleanup * update * review comments * build issue * more build issue fixes plus adding event_engine_trace * even more build issue fixes * iwyu * add static_cast * update * remove redundant code * update * deduplicate * iwyu * Fix review comments and regenerate_projects * sanity * review comments * fix include guards Co-authored-by: AJ Heller <hork@google.com>
2 years ago
s.files += %w( src/core/lib/event_engine/resolved_address_internal.h )
s.files += %w( src/core/lib/event_engine/shim.cc )
s.files += %w( src/core/lib/event_engine/shim.h )
s.files += %w( src/core/lib/event_engine/slice.cc )
s.files += %w( src/core/lib/event_engine/slice_buffer.cc )
s.files += %w( src/core/lib/event_engine/tcp_socket_utils.cc )
s.files += %w( src/core/lib/event_engine/tcp_socket_utils.h )
s.files += %w( src/core/lib/event_engine/thread_local.cc )
s.files += %w( src/core/lib/event_engine/thread_local.h )
s.files += %w( src/core/lib/event_engine/thread_pool/thread_count.cc )
s.files += %w( src/core/lib/event_engine/thread_pool/thread_count.h )
s.files += %w( src/core/lib/event_engine/thread_pool/thread_pool.h )
s.files += %w( src/core/lib/event_engine/thread_pool/thread_pool_factory.cc )
s.files += %w( src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc )
s.files += %w( src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h )
s.files += %w( src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc )
s.files += %w( src/core/lib/event_engine/thready_event_engine/thready_event_engine.h )
s.files += %w( src/core/lib/event_engine/time_util.cc )
s.files += %w( src/core/lib/event_engine/time_util.h )
s.files += %w( src/core/lib/event_engine/utils.cc )
s.files += %w( src/core/lib/event_engine/utils.h )
[EventEngine] WindowsDNSResolver Implementation (#34400) Design is documented at [go/windows-dns-resolver-issue](http://go/windows-dns-resolver-issue) (note that the design doc is slightly outdated regarding the shared ownership model of the virtual socket that was implemented in https://github.com/grpc/grpc/pull/34400/commits/13bd2b404eee1770c73f70d5ef49638f7b0e0dd2). Passed `//test/cpp/naming:resolver_component_tests_runner_invoker` and `//test/cpp/naming:cancel_ares_query_test`: ``` C:\Users\yijiem\projects\grpc>bazel --output_base=C:\bazel6 test --dynamic_mode=off --verbose_failures --test_env=GRPC_EXPERIMENTS=event_engine_dns --test_env=GRPC_VERBOSITY=debug --test_env=GRPC_TRACE=cares_resolver --enable_runfiles=yes --nocache_test_results //test/cpp/naming:resolver_component_tests_runner_invoker INFO: Analyzed target //test/cpp/naming:resolver_component_tests_runner_invoker (1 packages loaded, 8 targets configured). INFO: Found 1 test target... INFO: From Compiling src/core/lib/event_engine/windows/windows_engine.cc: C:\bazel6\execroot\com_github_grpc_grpc\src/core/lib/channel/channel_args.h(287): warning C4312: 'reinterpret_cast': conversion from 'int' to 'void *' of greater size Target //test/cpp/naming:resolver_component_tests_runner_invoker up-to-date: bazel-bin/test/cpp/naming/resolver_component_tests_runner_invoker.exe INFO: Elapsed time: 230.374s, Critical Path: 228.54s INFO: 9 processes: 2 internal, 7 local. INFO: Build completed successfully, 9 total actions //test/cpp/naming:resolver_component_tests_runner_invoker PASSED in 221.2s Executed 1 out of 1 test: 1 test passes. ``` ``` C:\Users\yijiem\projects\grpc>bazel --output_base=C:\bazel6 test --dynamic_mode=off --verbose_failures --test_env=GRPC_EXPERIMENTS=event_engine_dns --test_env=GRPC_VERBOSITY=debug --test_env=GRPC_TRACE=cares_resolver --enable_runfiles=yes --nocache_test_results //test/cpp/naming:cancel_ares_query_test INFO: Analyzed target //test/cpp/naming:cancel_ares_query_test (0 packages loaded, 0 targets configured). INFO: Found 1 test target... Target //test/cpp/naming:cancel_ares_query_test up-to-date: bazel-bin/test/cpp/naming/cancel_ares_query_test.exe INFO: Elapsed time: 49.656s, Critical Path: 48.00s INFO: 6 processes: 2 internal, 4 local. INFO: Build completed successfully, 6 total actions //test/cpp/naming:cancel_ares_query_test PASSED in 43.0s Executed 1 out of 1 test: 1 test passes. ``` <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
1 year ago
s.files += %w( src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc )
s.files += %w( src/core/lib/event_engine/windows/grpc_polled_fd_windows.h )
s.files += %w( src/core/lib/event_engine/windows/iocp.cc )
s.files += %w( src/core/lib/event_engine/windows/iocp.h )
s.files += %w( src/core/lib/event_engine/windows/native_windows_dns_resolver.cc )
s.files += %w( src/core/lib/event_engine/windows/native_windows_dns_resolver.h )
s.files += %w( src/core/lib/event_engine/windows/win_socket.cc )
s.files += %w( src/core/lib/event_engine/windows/win_socket.h )
s.files += %w( src/core/lib/event_engine/windows/windows_endpoint.cc )
s.files += %w( src/core/lib/event_engine/windows/windows_endpoint.h )
s.files += %w( src/core/lib/event_engine/windows/windows_engine.cc )
s.files += %w( src/core/lib/event_engine/windows/windows_engine.h )
s.files += %w( src/core/lib/event_engine/windows/windows_listener.cc )
s.files += %w( src/core/lib/event_engine/windows/windows_listener.h )
s.files += %w( src/core/lib/event_engine/work_queue/basic_work_queue.cc )
s.files += %w( src/core/lib/event_engine/work_queue/basic_work_queue.h )
s.files += %w( src/core/lib/event_engine/work_queue/work_queue.h )
s.files += %w( src/core/lib/experiments/config.cc )
s.files += %w( src/core/lib/experiments/config.h )
s.files += %w( src/core/lib/experiments/experiments.cc )
s.files += %w( src/core/lib/experiments/experiments.h )
7 years ago
s.files += %w( src/core/lib/iomgr/block_annotate.h )
s.files += %w( src/core/lib/iomgr/buffer_list.cc )
s.files += %w( src/core/lib/iomgr/buffer_list.h )
s.files += %w( src/core/lib/iomgr/call_combiner.cc )
s.files += %w( src/core/lib/iomgr/call_combiner.h )
s.files += %w( src/core/lib/iomgr/cfstream_handle.cc )
s.files += %w( src/core/lib/iomgr/cfstream_handle.h )
s.files += %w( src/core/lib/iomgr/closure.cc )
s.files += %w( src/core/lib/iomgr/closure.h )
s.files += %w( src/core/lib/iomgr/combiner.cc )
s.files += %w( src/core/lib/iomgr/combiner.h )
s.files += %w( src/core/lib/iomgr/dualstack_socket_posix.cc )
s.files += %w( src/core/lib/iomgr/dynamic_annotations.h )
s.files += %w( src/core/lib/iomgr/endpoint.cc )
s.files += %w( src/core/lib/iomgr/endpoint.h )
s.files += %w( src/core/lib/iomgr/endpoint_cfstream.cc )
s.files += %w( src/core/lib/iomgr/endpoint_cfstream.h )
s.files += %w( src/core/lib/iomgr/endpoint_pair.h )
s.files += %w( src/core/lib/iomgr/endpoint_pair_posix.cc )
s.files += %w( src/core/lib/iomgr/endpoint_pair_windows.cc )
s.files += %w( src/core/lib/iomgr/error.cc )
s.files += %w( src/core/lib/iomgr/error.h )
s.files += %w( src/core/lib/iomgr/error_cfstream.cc )
s.files += %w( src/core/lib/iomgr/error_cfstream.h )
s.files += %w( src/core/lib/iomgr/ev_apple.cc )
s.files += %w( src/core/lib/iomgr/ev_apple.h )
s.files += %w( src/core/lib/iomgr/ev_epoll1_linux.cc )
s.files += %w( src/core/lib/iomgr/ev_epoll1_linux.h )
s.files += %w( src/core/lib/iomgr/ev_poll_posix.cc )
s.files += %w( src/core/lib/iomgr/ev_poll_posix.h )
s.files += %w( src/core/lib/iomgr/ev_posix.cc )
s.files += %w( src/core/lib/iomgr/ev_posix.h )
[EventEngine] Modify iomgr to allow creation of posix event engine listeners and server side endpoints (#31928) * [WIP] EventEngine iomgr endpoint shims * [WIP] EventEngine::Endpoint iomgr shims for the PosixEventEngine * Util functions to help with posix engine listener implementation * sanity * update comments in posix_engine_listener_utils.h * review comments * iwyu * revert prev commit * iwyu * update build * update * regenerate projects * regenerate projects * minor fixes * update BUILD * sanity * update build * regenerate projects * fix unused parameter * sanity * update * sanity * regenerate_projects * remove unused variable * start * update * regenerate_projects * sanity * update * fixes * update * regenerate_projects * update * fix sanity and msan failure * more fixes * build failure * update * fix * sanity * fixes * update * regenerate projects * fix sanity * review comments * An EventEngine subclass to be implemented by all posix based event engines * sanity * comments * update * review comments * re-word * fix * update * review comments * regenerate projects * syntax fix * add lock free event benchmark * releasable mutex lock * fix build isue * update * start * regenerate projects * update * fix * windows build * update * windows portability issue * update * update * update * update * format * update * update * start * Update tcp server interface to move on_accept_cb to create method * update * start * update * update * update * update * update * update * update * update * sanity * update * update * update * windows build * fix msan * fix sanity * regenerate projects * update * iwyu * Fix resolved address length related bugs in tcp_socket_utils and listener_utils * iwyu * cleanup * cleanup src/core/lib/event_engine/tcp_socket_utils.cc * iwyu * fix * regenerate projects * fix sanity * re-write endpoint shim * more re-write * cleanup * update * regenerate projects * review comments * build issue * more build issue fixes plus adding event_engine_trace * even more build issue fixes * iwyu * add static_cast * fix sanity * update * update * sanity * fix * Fix * Review comments * fix * iwyu * fix build issue Co-authored-by: AJ Heller <hork@google.com>
2 years ago
s.files += %w( src/core/lib/iomgr/event_engine_shims/closure.cc )
s.files += %w( src/core/lib/iomgr/event_engine_shims/closure.h )
[EventEngine] Modify iomgr to allow creation of event engine clients and client side endpoints (#31661) * [WIP] EventEngine iomgr endpoint shims * [WIP] EventEngine::Endpoint iomgr shims for the PosixEventEngine * Util functions to help with posix engine listener implementation * sanity * update comments in posix_engine_listener_utils.h * review comments * iwyu * revert prev commit * iwyu * update build * update * regenerate projects * regenerate projects * minor fixes * update BUILD * sanity * update build * regenerate projects * fix unused parameter * sanity * update * sanity * regenerate_projects * remove unused variable * start * update * regenerate_projects * sanity * update * fixes * update * regenerate_projects * update * fix sanity and msan failure * more fixes * build failure * update * fix * sanity * fixes * update * regenerate projects * fix sanity * review comments * An EventEngine subclass to be implemented by all posix based event engines * sanity * comments * update * review comments * re-word * fix * update * review comments * regenerate projects * syntax fix * add lock free event benchmark * releasable mutex lock * fix build isue * update * start * regenerate projects * update * fix * windows build * update * windows portability issue * update * update * update * update * format * update * update * update * update * update * fix sanity * regenerate projects * update * iwyu * Fix resolved address length related bugs in tcp_socket_utils and listener_utils * iwyu * cleanup src/core/lib/event_engine/tcp_socket_utils.cc * iwyu * fix * regenerate projects * fix sanity * re-write endpoint shim * more re-write * cleanup * update * review comments * build issue * more build issue fixes plus adding event_engine_trace * even more build issue fixes * iwyu * add static_cast * update * remove redundant code * update * deduplicate * iwyu * Fix review comments and regenerate_projects * sanity * review comments * fix include guards Co-authored-by: AJ Heller <hork@google.com>
2 years ago
s.files += %w( src/core/lib/iomgr/event_engine_shims/endpoint.cc )
s.files += %w( src/core/lib/iomgr/event_engine_shims/endpoint.h )
s.files += %w( src/core/lib/iomgr/event_engine_shims/tcp_client.cc )
s.files += %w( src/core/lib/iomgr/event_engine_shims/tcp_client.h )
s.files += %w( src/core/lib/iomgr/exec_ctx.cc )
s.files += %w( src/core/lib/iomgr/exec_ctx.h )
s.files += %w( src/core/lib/iomgr/executor.cc )
s.files += %w( src/core/lib/iomgr/executor.h )
s.files += %w( src/core/lib/iomgr/fork_posix.cc )
s.files += %w( src/core/lib/iomgr/fork_windows.cc )
s.files += %w( src/core/lib/iomgr/internal_errqueue.cc )
s.files += %w( src/core/lib/iomgr/internal_errqueue.h )
s.files += %w( src/core/lib/iomgr/iocp_windows.cc )
s.files += %w( src/core/lib/iomgr/iocp_windows.h )
s.files += %w( src/core/lib/iomgr/iomgr.cc )
s.files += %w( src/core/lib/iomgr/iomgr.h )
s.files += %w( src/core/lib/iomgr/iomgr_fwd.h )
s.files += %w( src/core/lib/iomgr/iomgr_internal.cc )
s.files += %w( src/core/lib/iomgr/iomgr_internal.h )
s.files += %w( src/core/lib/iomgr/iomgr_posix.cc )
s.files += %w( src/core/lib/iomgr/iomgr_posix_cfstream.cc )
s.files += %w( src/core/lib/iomgr/iomgr_windows.cc )
s.files += %w( src/core/lib/iomgr/lockfree_event.cc )
s.files += %w( src/core/lib/iomgr/lockfree_event.h )
s.files += %w( src/core/lib/iomgr/nameser.h )
s.files += %w( src/core/lib/iomgr/polling_entity.cc )
s.files += %w( src/core/lib/iomgr/polling_entity.h )
s.files += %w( src/core/lib/iomgr/pollset.cc )
s.files += %w( src/core/lib/iomgr/pollset.h )
s.files += %w( src/core/lib/iomgr/pollset_set.cc )
s.files += %w( src/core/lib/iomgr/pollset_set.h )
s.files += %w( src/core/lib/iomgr/pollset_set_windows.cc )
s.files += %w( src/core/lib/iomgr/pollset_set_windows.h )
s.files += %w( src/core/lib/iomgr/pollset_windows.cc )
s.files += %w( src/core/lib/iomgr/pollset_windows.h )
s.files += %w( src/core/lib/iomgr/port.h )
s.files += %w( src/core/lib/iomgr/python_util.h )
s.files += %w( src/core/lib/iomgr/resolve_address.cc )
s.files += %w( src/core/lib/iomgr/resolve_address.h )
s.files += %w( src/core/lib/iomgr/resolve_address_impl.h )
s.files += %w( src/core/lib/iomgr/resolve_address_posix.cc )
s.files += %w( src/core/lib/iomgr/resolve_address_posix.h )
s.files += %w( src/core/lib/iomgr/resolve_address_windows.cc )
s.files += %w( src/core/lib/iomgr/resolve_address_windows.h )
s.files += %w( src/core/lib/iomgr/resolved_address.h )
s.files += %w( src/core/lib/iomgr/sockaddr.h )
s.files += %w( src/core/lib/iomgr/sockaddr_posix.h )
s.files += %w( src/core/lib/iomgr/sockaddr_utils_posix.cc )
s.files += %w( src/core/lib/iomgr/sockaddr_windows.h )
s.files += %w( src/core/lib/iomgr/socket_factory_posix.cc )
s.files += %w( src/core/lib/iomgr/socket_factory_posix.h )
s.files += %w( src/core/lib/iomgr/socket_mutator.cc )
s.files += %w( src/core/lib/iomgr/socket_mutator.h )
s.files += %w( src/core/lib/iomgr/socket_utils.h )
s.files += %w( src/core/lib/iomgr/socket_utils_common_posix.cc )
s.files += %w( src/core/lib/iomgr/socket_utils_linux.cc )
s.files += %w( src/core/lib/iomgr/socket_utils_posix.cc )
s.files += %w( src/core/lib/iomgr/socket_utils_posix.h )
s.files += %w( src/core/lib/iomgr/socket_utils_windows.cc )
s.files += %w( src/core/lib/iomgr/socket_windows.cc )
s.files += %w( src/core/lib/iomgr/socket_windows.h )
s.files += %w( src/core/lib/iomgr/systemd_utils.cc )
s.files += %w( src/core/lib/iomgr/systemd_utils.h )
s.files += %w( src/core/lib/iomgr/tcp_client.cc )
s.files += %w( src/core/lib/iomgr/tcp_client.h )
s.files += %w( src/core/lib/iomgr/tcp_client_cfstream.cc )
s.files += %w( src/core/lib/iomgr/tcp_client_posix.cc )
s.files += %w( src/core/lib/iomgr/tcp_client_posix.h )
s.files += %w( src/core/lib/iomgr/tcp_client_windows.cc )
s.files += %w( src/core/lib/iomgr/tcp_posix.cc )
s.files += %w( src/core/lib/iomgr/tcp_posix.h )
s.files += %w( src/core/lib/iomgr/tcp_server.cc )
s.files += %w( src/core/lib/iomgr/tcp_server.h )
s.files += %w( src/core/lib/iomgr/tcp_server_posix.cc )
s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix.h )
s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_common.cc )
s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc )
s.files += %w( src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc )
s.files += %w( src/core/lib/iomgr/tcp_server_windows.cc )
s.files += %w( src/core/lib/iomgr/tcp_windows.cc )
s.files += %w( src/core/lib/iomgr/tcp_windows.h )
s.files += %w( src/core/lib/iomgr/timer.cc )
s.files += %w( src/core/lib/iomgr/timer.h )
s.files += %w( src/core/lib/iomgr/timer_generic.cc )
s.files += %w( src/core/lib/iomgr/timer_generic.h )
s.files += %w( src/core/lib/iomgr/timer_heap.cc )
s.files += %w( src/core/lib/iomgr/timer_heap.h )
s.files += %w( src/core/lib/iomgr/timer_manager.cc )
s.files += %w( src/core/lib/iomgr/timer_manager.h )
s.files += %w( src/core/lib/iomgr/unix_sockets_posix.cc )
s.files += %w( src/core/lib/iomgr/unix_sockets_posix.h )
s.files += %w( src/core/lib/iomgr/unix_sockets_posix_noop.cc )
s.files += %w( src/core/lib/iomgr/vsock.cc )
s.files += %w( src/core/lib/iomgr/vsock.h )
s.files += %w( src/core/lib/iomgr/wakeup_fd_eventfd.cc )
s.files += %w( src/core/lib/iomgr/wakeup_fd_nospecial.cc )
s.files += %w( src/core/lib/iomgr/wakeup_fd_pipe.cc )
s.files += %w( src/core/lib/iomgr/wakeup_fd_pipe.h )
s.files += %w( src/core/lib/iomgr/wakeup_fd_posix.cc )
s.files += %w( src/core/lib/iomgr/wakeup_fd_posix.h )
s.files += %w( src/core/lib/promise/activity.cc )
s.files += %w( src/core/lib/promise/activity.h )
s.files += %w( src/core/lib/promise/all_ok.h )
s.files += %w( src/core/lib/promise/arena_promise.h )
OpenCensus: Use new CallTracer interfaces (#32618) This change mostly aims to get OpenCensus to use the new ServerCallTracer interface. Note that the interfaces nor the code are in their final states. There are a bunch of moving pieces, but I thought this might be a nice mid-step to check-in and make sure that our internal traces can also work with these changes. Overall changes - 1) call_tracer.h shows what the hierarchy of new call tracer interfaces looks like. Open to renaming suggestions. 2) Moved most of the common interface between `CallAttemptTracer` and `ServerCallTracer` into a common `CallTracerInterface`. We should be able to eventually move `RecordReceivedTrailingMetadata` and `RecordEnd` as well to these common interfaces, but it requires some additional work. 3) The compression filter is now responsible for recording the recv and send messages for both the subchannel call and the server, and adds in ability to record compressed and decompressed messages as well. 4) The OpenCensus server filter now uses the new `ServerCallTracer` interface, and so doesn't need to be a filter anymore. 5) A new ServerCallTracerFilter was added. Ideally, we should be able to move it to the current connected filter, but it is in a bit of an interesting state right now, so I would prefer making those changes in a separate PR with Craig's eyes on it. 6) A new context element `GRPC_CONTEXT_CALL_TRACER_ANNOTATION_INTERFACE` was created that replaces the old `GRPC_CONTEXT_CALL_TRACER`, and the new `GRPC_CONTEXT_CALL_TRACER` is mainly to pass the `CallAttemptTracer` down the stack. This should go away in the new promise-based world. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. --> <!-- Reviewable:start --> - - - This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/grpc/grpc/32618) <!-- Reviewable:end -->
2 years ago
s.files += %w( src/core/lib/promise/cancel_callback.h )
s.files += %w( src/core/lib/promise/context.h )
s.files += %w( src/core/lib/promise/detail/basic_seq.h )
s.files += %w( src/core/lib/promise/detail/join_state.h )
s.files += %w( src/core/lib/promise/detail/promise_factory.h )
s.files += %w( src/core/lib/promise/detail/promise_like.h )
s.files += %w( src/core/lib/promise/detail/seq_state.h )
s.files += %w( src/core/lib/promise/detail/status.h )
s.files += %w( src/core/lib/promise/exec_ctx_wakeup_scheduler.h )
s.files += %w( src/core/lib/promise/for_each.h )
s.files += %w( src/core/lib/promise/if.h )
s.files += %w( src/core/lib/promise/interceptor_list.h )
s.files += %w( src/core/lib/promise/latch.h )
s.files += %w( src/core/lib/promise/loop.h )
s.files += %w( src/core/lib/promise/map.h )
s.files += %w( src/core/lib/promise/observable.h )
s.files += %w( src/core/lib/promise/party.cc )
s.files += %w( src/core/lib/promise/party.h )
[promises] Promise based grpc_call (#29598) * Automated change: Fix sanity tests * fix * fixes * fixup allocator story - we should require a context * fixes * doodling * context scribbles * [arena] Add ManagedNew(), gtest-ify test Add a ManagedNew() method to Arena that calls the relevant destructor at Arena destruction time. There are some cases coming up in the promise based call work where this becomes super convenient, and I expect it's likely that there are other places that's true too. * Automated change: Fix sanity tests * progress * lalalal * progress * x * Automated change: Fix sanity tests * fixes * fix * fix * fix * fix * Automated change: Fix sanity tests * fix * Automated change: Fix sanity tests * fixes * fixes * fixes * Automated change: Fix sanity tests * progress * fix client streaming * handle invalid flags * Automated change: Fix sanity tests * no logging * progress * progress * channelz * tentative fix * fix * lalala * Automated change: Fix sanity tests * more readable trace * logging improvements, leading to bug fix in connected channel * fix * improve debuggability * fix * progress to better refcounting * progress * Automated change: Fix sanity tests * Automated change: Fix sanity tests * fix * fix * fix * threading * Automated change: Fix sanity tests * fix * fix * improve debuggability * fix * fix * Automated change: Fix sanity tests * fix * make promises runtime configurable * Automated change: Fix sanity tests * fix * fix build * fix broken test * clean up api * deal with stats better * peer string! * introduce fragments * Automated change: Fix sanity tests * use fragments * stuff * [promises] Add AtomicWaker type * Automated change: Fix sanity tests * fix * fix write path * fix * polling-entity-hell * review feedback * fix * fix * fix * fix * make an experiment * [experiments] Make output more diffable/readable * Automated change: Fix sanity tests * buildifier sized indentations * fix * fix * Automated change: Fix sanity tests * fix? * fix promise * prototype * progress * implement new api * Revert "fix promise" This reverts commit ded85e7d198da5d28ab75aa8126df248b9a68158. * Revert "Revert "fix promise"" This reverts commit c2acef195870782350d8e8daf1714dedca0efa48. * progress * done * Automated change: Fix sanity tests * fix * fix * fix * Automated change: Fix sanity tests * updates * review feedback * first pass feedback * Automated change: Fix sanity tests * review feedback * naming * better-logs * fix test * Automated change: Fix sanity tests * comments * fix * progress * validation * iwyu * fix * ugh this needs to be any * fix flakiness in asan * call tracing * cleanup unused args * fix windows * fix build * ugh * fix tsan race * threading-fix * bloat1 * bloat2 * bloat3 * fix * unused-args * sanity * iwyu * fix * fix * this is ok * iwyu, exchange * fix * Automated change: Fix sanity tests * fix ee lifetime issue * fix * review feedback * Automated change: Fix sanity tests * comment * x * fix tsan race * iwyu * Automated change: Fix sanity tests Co-authored-by: ctiller <ctiller@users.noreply.github.com>
2 years ago
s.files += %w( src/core/lib/promise/pipe.h )
s.files += %w( src/core/lib/promise/poll.h )
s.files += %w( src/core/lib/promise/prioritized_race.h )
s.files += %w( src/core/lib/promise/promise.h )
s.files += %w( src/core/lib/promise/race.h )
s.files += %w( src/core/lib/promise/seq.h )
s.files += %w( src/core/lib/promise/sleep.cc )
s.files += %w( src/core/lib/promise/sleep.h )
s.files += %w( src/core/lib/promise/status_flag.h )
s.files += %w( src/core/lib/promise/try_join.h )
s.files += %w( src/core/lib/promise/try_seq.h )
s.files += %w( src/core/lib/resource_quota/api.cc )
s.files += %w( src/core/lib/resource_quota/api.h )
s.files += %w( src/core/lib/resource_quota/arena.cc )
s.files += %w( src/core/lib/resource_quota/arena.h )
s.files += %w( src/core/lib/resource_quota/connection_quota.cc )
s.files += %w( src/core/lib/resource_quota/connection_quota.h )
s.files += %w( src/core/lib/resource_quota/memory_quota.cc )
s.files += %w( src/core/lib/resource_quota/memory_quota.h )
s.files += %w( src/core/lib/resource_quota/periodic_update.cc )
s.files += %w( src/core/lib/resource_quota/periodic_update.h )
s.files += %w( src/core/lib/resource_quota/resource_quota.cc )
s.files += %w( src/core/lib/resource_quota/resource_quota.h )
s.files += %w( src/core/lib/resource_quota/thread_quota.cc )
s.files += %w( src/core/lib/resource_quota/thread_quota.h )
s.files += %w( src/core/lib/security/authorization/audit_logging.cc )
s.files += %w( src/core/lib/security/authorization/audit_logging.h )
s.files += %w( src/core/lib/security/authorization/authorization_engine.h )
s.files += %w( src/core/lib/security/authorization/authorization_policy_provider.h )
s.files += %w( src/core/lib/security/authorization/authorization_policy_provider_vtable.cc )
s.files += %w( src/core/lib/security/authorization/evaluate_args.cc )
s.files += %w( src/core/lib/security/authorization/evaluate_args.h )
s.files += %w( src/core/lib/security/authorization/grpc_authorization_engine.cc )
s.files += %w( src/core/lib/security/authorization/grpc_authorization_engine.h )
s.files += %w( src/core/lib/security/authorization/grpc_server_authz_filter.cc )
s.files += %w( src/core/lib/security/authorization/grpc_server_authz_filter.h )
s.files += %w( src/core/lib/security/authorization/matchers.cc )
s.files += %w( src/core/lib/security/authorization/matchers.h )
s.files += %w( src/core/lib/security/authorization/rbac_policy.cc )
s.files += %w( src/core/lib/security/authorization/rbac_policy.h )
s.files += %w( src/core/lib/security/authorization/stdout_logger.cc )
s.files += %w( src/core/lib/security/authorization/stdout_logger.h )
s.files += %w( src/core/lib/security/certificate_provider/certificate_provider_factory.h )
s.files += %w( src/core/lib/security/certificate_provider/certificate_provider_registry.cc )
s.files += %w( src/core/lib/security/certificate_provider/certificate_provider_registry.h )
s.files += %w( src/core/lib/security/context/security_context.cc )
s.files += %w( src/core/lib/security/context/security_context.h )
s.files += %w( src/core/lib/security/credentials/alts/alts_credentials.cc )
s.files += %w( src/core/lib/security/credentials/alts/alts_credentials.h )
s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment.cc )
s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment.h )
s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc )
s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc )
s.files += %w( src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc )
s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc )
s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc )
s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h )
s.files += %w( src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc )
s.files += %w( src/core/lib/security/credentials/call_creds_util.cc )
s.files += %w( src/core/lib/security/credentials/call_creds_util.h )
s.files += %w( src/core/lib/security/credentials/channel_creds_registry.h )
s.files += %w( src/core/lib/security/credentials/channel_creds_registry_init.cc )
s.files += %w( src/core/lib/security/credentials/composite/composite_credentials.cc )
s.files += %w( src/core/lib/security/credentials/composite/composite_credentials.h )
s.files += %w( src/core/lib/security/credentials/credentials.cc )
s.files += %w( src/core/lib/security/credentials/credentials.h )
s.files += %w( src/core/lib/security/credentials/external/aws_external_account_credentials.cc )
s.files += %w( src/core/lib/security/credentials/external/aws_external_account_credentials.h )
s.files += %w( src/core/lib/security/credentials/external/aws_request_signer.cc )
s.files += %w( src/core/lib/security/credentials/external/aws_request_signer.h )
s.files += %w( src/core/lib/security/credentials/external/external_account_credentials.cc )
s.files += %w( src/core/lib/security/credentials/external/external_account_credentials.h )
s.files += %w( src/core/lib/security/credentials/external/file_external_account_credentials.cc )
s.files += %w( src/core/lib/security/credentials/external/file_external_account_credentials.h )
s.files += %w( src/core/lib/security/credentials/external/url_external_account_credentials.cc )
s.files += %w( src/core/lib/security/credentials/external/url_external_account_credentials.h )
s.files += %w( src/core/lib/security/credentials/fake/fake_credentials.cc )
s.files += %w( src/core/lib/security/credentials/fake/fake_credentials.h )
[xDS] implement GCP Auth filter (#37550) Final piece of gRFC A83 (https://github.com/grpc/proposal/pull/438): the GCP authentication filter itself. Infrastructure changes include: - Added a general-purpose LRU cache library that can be reused elsewhere. - Fixed the client channel code to use the channel args returned by the resolver for the dynamic filters. This was necessary so that the GCP auth filter could access the `XdsConfig` object, which is passed via a channel arg. - Unlike the other xDS HTTP filters we support, the GCP auth filter does not support config overrides, and its configuration includes a cache size parameter that we always need at the channel level, not per-call. As a result, I had to change the xDS HTTP filter API to give it the ability to set top-level fields in the service config, not just per-method fields. (We use the service config as a way of passing configuration down into xDS HTTP filters.) Note that for now, this works only on the client side, because we don't have machinery for a top-level service config on the server side. - The GCP auth filter is also the first case where the filter needs to know its instance name from the xDS config, so I changed the xDS HTTP filter API to plumb that through. - Fixed a bug in the HTTP client library that prevented the override functions from declining to override a particular request. Closes #37550 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37550 from markdroth:xds_gcp_auth_filter 19eaefb52f5954dcb680c04755d1e703d7f623e8 PiperOrigin-RevId: 669371249
3 months ago
s.files += %w( src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc )
s.files += %w( src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h )
s.files += %w( src/core/lib/security/credentials/google_default/credentials_generic.cc )
s.files += %w( src/core/lib/security/credentials/google_default/google_default_credentials.cc )
s.files += %w( src/core/lib/security/credentials/google_default/google_default_credentials.h )
s.files += %w( src/core/lib/security/credentials/iam/iam_credentials.cc )
s.files += %w( src/core/lib/security/credentials/iam/iam_credentials.h )
s.files += %w( src/core/lib/security/credentials/insecure/insecure_credentials.cc )
s.files += %w( src/core/lib/security/credentials/insecure/insecure_credentials.h )
s.files += %w( src/core/lib/security/credentials/jwt/json_token.cc )
s.files += %w( src/core/lib/security/credentials/jwt/json_token.h )
s.files += %w( src/core/lib/security/credentials/jwt/jwt_credentials.cc )
s.files += %w( src/core/lib/security/credentials/jwt/jwt_credentials.h )
s.files += %w( src/core/lib/security/credentials/jwt/jwt_verifier.cc )
s.files += %w( src/core/lib/security/credentials/jwt/jwt_verifier.h )
s.files += %w( src/core/lib/security/credentials/local/local_credentials.cc )
s.files += %w( src/core/lib/security/credentials/local/local_credentials.h )
s.files += %w( src/core/lib/security/credentials/oauth2/oauth2_credentials.cc )
s.files += %w( src/core/lib/security/credentials/oauth2/oauth2_credentials.h )
s.files += %w( src/core/lib/security/credentials/plugin/plugin_credentials.cc )
s.files += %w( src/core/lib/security/credentials/plugin/plugin_credentials.h )
s.files += %w( src/core/lib/security/credentials/ssl/ssl_credentials.cc )
s.files += %w( src/core/lib/security/credentials/ssl/ssl_credentials.h )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc )
s.files += %w( src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h )
s.files += %w( src/core/lib/security/credentials/tls/tls_credentials.cc )
s.files += %w( src/core/lib/security/credentials/tls/tls_credentials.h )
s.files += %w( src/core/lib/security/credentials/tls/tls_utils.cc )
s.files += %w( src/core/lib/security/credentials/tls/tls_utils.h )
[call creds] refactor token-fetching call creds to allow cleaner reuse (#37510) Previously, `grpc_oauth2_token_fetcher_credentials` provided functionality for on-demand token-fetching, but it was integrated into the oauth2 code, so it was not possible to use that same code for on-demand fetching of (e.g.) JWT tokens. This PR splits that class into two parts: 1. A base `TokenFetcherCredentials` class that provides a framework for on-demand fetching of any arbitrary type of auth token. 2. An `Oauth2TokenFetcherCredentials` subclass that derives from `TokenFetcherCredentials` and provides handling for oauth2 tokens. The `grpc_compute_engine_token_fetcher_credentials`, `StsTokenFetcherCredentials`, and `grpc_google_refresh_token_credentials` classes that previously derived from `grpc_oauth2_token_fetcher_credentials` now derive from `Oauth2TokenFetcherCredentials` instead, so there's not much change to those classes (other than a cleaner interface with the base class functionality). The `ExternalAccountCredentials` class and its subclasses got more extensive changes here. Previously, this class inheritted from `grpc_oauth2_token_fetcher_credentials` and fooled the base class into thinking that it directly fetched the oauth2 token, when in fact it actually performed a number of steps to gather data and then constructed a synthetic HTTP response to pass back to the base class. I have changed this to instead derive directly from `TokenFetcherCredentials` to provide a much cleaner interface with the parent class. In addition, I have changed `grpc_call_credentials` from `RefCounted<>` to `DualRefCounted<>` to provide a clean way to shut down any in-flight token fetch when the credentials are unreffed. This PR paves the way for subsequent work that will allow implementing an on-demand JWT token fetcher call credential, as part of gRFC A83 (https://github.com/grpc/proposal/pull/438). Closes #37510 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37510 from markdroth:token_fetcher_call_creds_refactor 3bd398a7622a7671f5560108e47da4d4095d8400 PiperOrigin-RevId: 666547985
3 months ago
s.files += %w( src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc )
s.files += %w( src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h )
s.files += %w( src/core/lib/security/credentials/xds/xds_credentials.cc )
s.files += %w( src/core/lib/security/credentials/xds/xds_credentials.h )
s.files += %w( src/core/lib/security/security_connector/alts/alts_security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/alts/alts_security_connector.h )
s.files += %w( src/core/lib/security/security_connector/fake/fake_security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/fake/fake_security_connector.h )
s.files += %w( src/core/lib/security/security_connector/insecure/insecure_security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/insecure/insecure_security_connector.h )
s.files += %w( src/core/lib/security/security_connector/load_system_roots.h )
s.files += %w( src/core/lib/security/security_connector/load_system_roots_fallback.cc )
s.files += %w( src/core/lib/security/security_connector/load_system_roots_supported.cc )
s.files += %w( src/core/lib/security/security_connector/load_system_roots_supported.h )
s.files += %w( src/core/lib/security/security_connector/load_system_roots_windows.cc )
s.files += %w( src/core/lib/security/security_connector/local/local_security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/local/local_security_connector.h )
s.files += %w( src/core/lib/security/security_connector/security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/security_connector.h )
s.files += %w( src/core/lib/security/security_connector/ssl/ssl_security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/ssl/ssl_security_connector.h )
s.files += %w( src/core/lib/security/security_connector/ssl_utils.cc )
s.files += %w( src/core/lib/security/security_connector/ssl_utils.h )
s.files += %w( src/core/lib/security/security_connector/tls/tls_security_connector.cc )
s.files += %w( src/core/lib/security/security_connector/tls/tls_security_connector.h )
s.files += %w( src/core/lib/security/transport/auth_filters.h )
s.files += %w( src/core/lib/security/transport/client_auth_filter.cc )
s.files += %w( src/core/lib/security/transport/server_auth_filter.cc )
s.files += %w( src/core/lib/security/util/json_util.cc )
s.files += %w( src/core/lib/security/util/json_util.h )
s.files += %w( src/core/lib/slice/percent_encoding.cc )
s.files += %w( src/core/lib/slice/percent_encoding.h )
s.files += %w( src/core/lib/slice/slice.cc )
s.files += %w( src/core/lib/slice/slice.h )
s.files += %w( src/core/lib/slice/slice_buffer.cc )
s.files += %w( src/core/lib/slice/slice_buffer.h )
s.files += %w( src/core/lib/slice/slice_internal.h )
s.files += %w( src/core/lib/slice/slice_refcount.h )
s.files += %w( src/core/lib/slice/slice_string_helpers.cc )
s.files += %w( src/core/lib/slice/slice_string_helpers.h )
s.files += %w( src/core/lib/surface/byte_buffer.cc )
s.files += %w( src/core/lib/surface/byte_buffer_reader.cc )
s.files += %w( src/core/lib/surface/call.cc )
s.files += %w( src/core/lib/surface/call.h )
s.files += %w( src/core/lib/surface/call_details.cc )
s.files += %w( src/core/lib/surface/call_log_batch.cc )
s.files += %w( src/core/lib/surface/call_test_only.h )
s.files += %w( src/core/lib/surface/call_utils.cc )
s.files += %w( src/core/lib/surface/call_utils.h )
s.files += %w( src/core/lib/surface/channel.cc )
s.files += %w( src/core/lib/surface/channel.h )
s.files += %w( src/core/lib/surface/channel_create.cc )
s.files += %w( src/core/lib/surface/channel_create.h )
s.files += %w( src/core/lib/surface/channel_init.cc )
s.files += %w( src/core/lib/surface/channel_init.h )
s.files += %w( src/core/lib/surface/channel_stack_type.cc )
s.files += %w( src/core/lib/surface/channel_stack_type.h )
s.files += %w( src/core/lib/surface/client_call.cc )
s.files += %w( src/core/lib/surface/client_call.h )
s.files += %w( src/core/lib/surface/completion_queue.cc )
s.files += %w( src/core/lib/surface/completion_queue.h )
s.files += %w( src/core/lib/surface/completion_queue_factory.cc )
s.files += %w( src/core/lib/surface/completion_queue_factory.h )
s.files += %w( src/core/lib/surface/event_string.cc )
s.files += %w( src/core/lib/surface/event_string.h )
s.files += %w( src/core/lib/surface/filter_stack_call.cc )
s.files += %w( src/core/lib/surface/filter_stack_call.h )
s.files += %w( src/core/lib/surface/init.cc )
s.files += %w( src/core/lib/surface/init.h )
s.files += %w( src/core/lib/surface/init_internally.cc )
s.files += %w( src/core/lib/surface/init_internally.h )
s.files += %w( src/core/lib/surface/lame_client.cc )
s.files += %w( src/core/lib/surface/lame_client.h )
s.files += %w( src/core/lib/surface/legacy_channel.cc )
s.files += %w( src/core/lib/surface/legacy_channel.h )
s.files += %w( src/core/lib/surface/metadata_array.cc )
s.files += %w( src/core/lib/surface/server_call.cc )
s.files += %w( src/core/lib/surface/server_call.h )
s.files += %w( src/core/lib/surface/validate_metadata.cc )
s.files += %w( src/core/lib/surface/validate_metadata.h )
s.files += %w( src/core/lib/surface/version.cc )
s.files += %w( src/core/lib/transport/bdp_estimator.cc )
s.files += %w( src/core/lib/transport/bdp_estimator.h )
s.files += %w( src/core/lib/transport/call_arena_allocator.cc )
s.files += %w( src/core/lib/transport/call_arena_allocator.h )
s.files += %w( src/core/lib/transport/call_destination.h )
s.files += %w( src/core/lib/transport/call_filters.cc )
s.files += %w( src/core/lib/transport/call_filters.h )
s.files += %w( src/core/lib/transport/call_final_info.cc )
s.files += %w( src/core/lib/transport/call_final_info.h )
s.files += %w( src/core/lib/transport/call_spine.cc )
s.files += %w( src/core/lib/transport/call_spine.h )
[call-v3] Separate out the CallState class from CallFilters (#37003) At the same time, inline all state machine functions and move the trace to its own (debug-only) trace var. Before: ``` ---------------------------------------------------------------------------------------------------- Benchmark Time CPU Iterations ---------------------------------------------------------------------------------------------------- grpc_core::BM_UnaryWithSpawnPerEnd<CallSpineFixture> 1171 ns 1171 ns 2373821 grpc_core::BM_UnaryWithSpawnPerOp<CallSpineFixture> 1326 ns 1326 ns 2124026 grpc_core::BM_ClientToServerStreaming<CallSpineFixture> 256 ns 256 ns 10512990 grpc_core::BM_UnaryWithSpawnPerEnd<ForwardCallFixture> 2957 ns 2957 ns 949121 grpc_core::BM_UnaryWithSpawnPerOp<ForwardCallFixture> 3172 ns 3172 ns 882463 grpc_core::BM_ClientToServerStreaming<ForwardCallFixture> 500 ns 500 ns 5765914 ``` After: ``` ---------------------------------------------------------------------------------------------------- Benchmark Time CPU Iterations ---------------------------------------------------------------------------------------------------- grpc_core::BM_UnaryWithSpawnPerEnd<CallSpineFixture> 1102 ns 1102 ns 2511682 grpc_core::BM_UnaryWithSpawnPerOp<CallSpineFixture> 1263 ns 1263 ns 2264222 grpc_core::BM_ClientToServerStreaming<CallSpineFixture> 252 ns 252 ns 11090774 grpc_core::BM_UnaryWithSpawnPerEnd<ForwardCallFixture> 2855 ns 2855 ns 987991 grpc_core::BM_UnaryWithSpawnPerOp<ForwardCallFixture> 3082 ns 3081 ns 901020 grpc_core::BM_ClientToServerStreaming<ForwardCallFixture> 490 ns 490 ns 5675073 ``` Closes #37003 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37003 from ctiller:excise-the-thing ab3943e828157e00d38a84f9652c08cea79dab02 PiperOrigin-RevId: 646493946
5 months ago
s.files += %w( src/core/lib/transport/call_state.cc )
s.files += %w( src/core/lib/transport/call_state.h )
s.files += %w( src/core/lib/transport/connectivity_state.cc )
s.files += %w( src/core/lib/transport/connectivity_state.h )
s.files += %w( src/core/lib/transport/custom_metadata.h )
s.files += %w( src/core/lib/transport/error_utils.cc )
s.files += %w( src/core/lib/transport/error_utils.h )
s.files += %w( src/core/lib/transport/http2_errors.h )
s.files += %w( src/core/lib/transport/interception_chain.cc )
s.files += %w( src/core/lib/transport/interception_chain.h )
s.files += %w( src/core/lib/transport/message.cc )
s.files += %w( src/core/lib/transport/message.h )
s.files += %w( src/core/lib/transport/metadata.cc )
s.files += %w( src/core/lib/transport/metadata.h )
s.files += %w( src/core/lib/transport/metadata_batch.cc )
s.files += %w( src/core/lib/transport/metadata_batch.h )
s.files += %w( src/core/lib/transport/metadata_compression_traits.h )
s.files += %w( src/core/lib/transport/metadata_info.cc )
s.files += %w( src/core/lib/transport/metadata_info.h )
s.files += %w( src/core/lib/transport/parsed_metadata.cc )
s.files += %w( src/core/lib/transport/parsed_metadata.h )
s.files += %w( src/core/lib/transport/simple_slice_based_metadata.h )
s.files += %w( src/core/lib/transport/status_conversion.cc )
s.files += %w( src/core/lib/transport/status_conversion.h )
s.files += %w( src/core/lib/transport/timeout_encoding.cc )
s.files += %w( src/core/lib/transport/timeout_encoding.h )
s.files += %w( src/core/lib/transport/transport.cc )
s.files += %w( src/core/lib/transport/transport.h )
s.files += %w( src/core/lib/transport/transport_framing_endpoint_extension.h )
s.files += %w( src/core/lib/transport/transport_fwd.h )
s.files += %w( src/core/lib/transport/transport_op_string.cc )
s.files += %w( src/core/load_balancing/address_filtering.cc )
s.files += %w( src/core/load_balancing/address_filtering.h )
s.files += %w( src/core/load_balancing/backend_metric_data.h )
s.files += %w( src/core/load_balancing/backend_metric_parser.cc )
s.files += %w( src/core/load_balancing/backend_metric_parser.h )
s.files += %w( src/core/load_balancing/child_policy_handler.cc )
s.files += %w( src/core/load_balancing/child_policy_handler.h )
s.files += %w( src/core/load_balancing/delegating_helper.h )
s.files += %w( src/core/load_balancing/endpoint_list.cc )
s.files += %w( src/core/load_balancing/endpoint_list.h )
s.files += %w( src/core/load_balancing/grpclb/client_load_reporting_filter.cc )
s.files += %w( src/core/load_balancing/grpclb/client_load_reporting_filter.h )
s.files += %w( src/core/load_balancing/grpclb/grpclb.cc )
s.files += %w( src/core/load_balancing/grpclb/grpclb.h )
s.files += %w( src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc )
s.files += %w( src/core/load_balancing/grpclb/grpclb_balancer_addresses.h )
s.files += %w( src/core/load_balancing/grpclb/grpclb_client_stats.cc )
s.files += %w( src/core/load_balancing/grpclb/grpclb_client_stats.h )
s.files += %w( src/core/load_balancing/grpclb/load_balancer_api.cc )
s.files += %w( src/core/load_balancing/grpclb/load_balancer_api.h )
s.files += %w( src/core/load_balancing/health_check_client.cc )
s.files += %w( src/core/load_balancing/health_check_client.h )
s.files += %w( src/core/load_balancing/health_check_client_internal.h )
s.files += %w( src/core/load_balancing/lb_policy.cc )
s.files += %w( src/core/load_balancing/lb_policy.h )
s.files += %w( src/core/load_balancing/lb_policy_factory.h )
s.files += %w( src/core/load_balancing/lb_policy_registry.cc )
s.files += %w( src/core/load_balancing/lb_policy_registry.h )
s.files += %w( src/core/load_balancing/oob_backend_metric.cc )
s.files += %w( src/core/load_balancing/oob_backend_metric.h )
s.files += %w( src/core/load_balancing/oob_backend_metric_internal.h )
s.files += %w( src/core/load_balancing/outlier_detection/outlier_detection.cc )
s.files += %w( src/core/load_balancing/outlier_detection/outlier_detection.h )
s.files += %w( src/core/load_balancing/pick_first/pick_first.cc )
s.files += %w( src/core/load_balancing/pick_first/pick_first.h )
s.files += %w( src/core/load_balancing/priority/priority.cc )
s.files += %w( src/core/load_balancing/ring_hash/ring_hash.cc )
s.files += %w( src/core/load_balancing/ring_hash/ring_hash.h )
s.files += %w( src/core/load_balancing/rls/rls.cc )
s.files += %w( src/core/load_balancing/rls/rls.h )
s.files += %w( src/core/load_balancing/round_robin/round_robin.cc )
s.files += %w( src/core/load_balancing/subchannel_interface.h )
s.files += %w( src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc )
s.files += %w( src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h )
s.files += %w( src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc )
s.files += %w( src/core/load_balancing/weighted_target/weighted_target.cc )
s.files += %w( src/core/load_balancing/weighted_target/weighted_target.h )
s.files += %w( src/core/load_balancing/xds/cds.cc )
s.files += %w( src/core/load_balancing/xds/xds_channel_args.h )
s.files += %w( src/core/load_balancing/xds/xds_cluster_impl.cc )
s.files += %w( src/core/load_balancing/xds/xds_cluster_manager.cc )
s.files += %w( src/core/load_balancing/xds/xds_override_host.cc )
s.files += %w( src/core/load_balancing/xds/xds_override_host.h )
s.files += %w( src/core/load_balancing/xds/xds_wrr_locality.cc )
s.files += %w( src/core/plugin_registry/grpc_plugin_registry.cc )
s.files += %w( src/core/plugin_registry/grpc_plugin_registry_extra.cc )
s.files += %w( src/core/resolver/dns/c_ares/dns_resolver_ares.cc )
s.files += %w( src/core/resolver/dns/c_ares/dns_resolver_ares.h )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_wrapper.h )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc )
s.files += %w( src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc )
s.files += %w( src/core/resolver/dns/dns_resolver_plugin.cc )
s.files += %w( src/core/resolver/dns/dns_resolver_plugin.h )
s.files += %w( src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc )
s.files += %w( src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h )
s.files += %w( src/core/resolver/dns/event_engine/service_config_helper.cc )
s.files += %w( src/core/resolver/dns/event_engine/service_config_helper.h )
s.files += %w( src/core/resolver/dns/native/dns_resolver.cc )
s.files += %w( src/core/resolver/dns/native/dns_resolver.h )
s.files += %w( src/core/resolver/endpoint_addresses.cc )
s.files += %w( src/core/resolver/endpoint_addresses.h )
s.files += %w( src/core/resolver/fake/fake_resolver.cc )
s.files += %w( src/core/resolver/fake/fake_resolver.h )
s.files += %w( src/core/resolver/google_c2p/google_c2p_resolver.cc )
s.files += %w( src/core/resolver/polling_resolver.cc )
s.files += %w( src/core/resolver/polling_resolver.h )
s.files += %w( src/core/resolver/resolver.cc )
s.files += %w( src/core/resolver/resolver.h )
s.files += %w( src/core/resolver/resolver_factory.h )
s.files += %w( src/core/resolver/resolver_registry.cc )
s.files += %w( src/core/resolver/resolver_registry.h )
s.files += %w( src/core/resolver/server_address.h )
s.files += %w( src/core/resolver/sockaddr/sockaddr_resolver.cc )
s.files += %w( src/core/resolver/xds/xds_config.cc )
s.files += %w( src/core/resolver/xds/xds_config.h )
s.files += %w( src/core/resolver/xds/xds_dependency_manager.cc )
s.files += %w( src/core/resolver/xds/xds_dependency_manager.h )
s.files += %w( src/core/resolver/xds/xds_resolver.cc )
s.files += %w( src/core/resolver/xds/xds_resolver_attributes.h )
s.files += %w( src/core/server/server.cc )
s.files += %w( src/core/server/server.h )
s.files += %w( src/core/server/server_call_tracer_filter.cc )
s.files += %w( src/core/server/server_call_tracer_filter.h )
s.files += %w( src/core/server/server_config_selector.h )
s.files += %w( src/core/server/server_config_selector_filter.cc )
s.files += %w( src/core/server/server_config_selector_filter.h )
s.files += %w( src/core/server/server_interface.h )
s.files += %w( src/core/server/xds_channel_stack_modifier.cc )
s.files += %w( src/core/server/xds_channel_stack_modifier.h )
s.files += %w( src/core/server/xds_server_config_fetcher.cc )
s.files += %w( src/core/service_config/service_config.h )
s.files += %w( src/core/service_config/service_config_call_data.h )
s.files += %w( src/core/service_config/service_config_channel_arg_filter.cc )
s.files += %w( src/core/service_config/service_config_impl.cc )
s.files += %w( src/core/service_config/service_config_impl.h )
s.files += %w( src/core/service_config/service_config_parser.cc )
s.files += %w( src/core/service_config/service_config_parser.h )
s.files += %w( src/core/telemetry/call_tracer.cc )
s.files += %w( src/core/telemetry/call_tracer.h )
s.files += %w( src/core/telemetry/histogram_view.cc )
s.files += %w( src/core/telemetry/histogram_view.h )
s.files += %w( src/core/telemetry/metrics.cc )
s.files += %w( src/core/telemetry/metrics.h )
s.files += %w( src/core/telemetry/stats.cc )
s.files += %w( src/core/telemetry/stats.h )
s.files += %w( src/core/telemetry/stats_data.cc )
s.files += %w( src/core/telemetry/stats_data.h )
s.files += %w( src/core/telemetry/tcp_tracer.h )
s.files += %w( src/core/tsi/alts/crypt/aes_gcm.cc )
s.files += %w( src/core/tsi/alts/crypt/gsec.cc )
s.files += %w( src/core/tsi/alts/crypt/gsec.h )
s.files += %w( src/core/tsi/alts/frame_protector/alts_counter.cc )
s.files += %w( src/core/tsi/alts/frame_protector/alts_counter.h )
s.files += %w( src/core/tsi/alts/frame_protector/alts_crypter.cc )
s.files += %w( src/core/tsi/alts/frame_protector/alts_crypter.h )
s.files += %w( src/core/tsi/alts/frame_protector/alts_frame_protector.cc )
s.files += %w( src/core/tsi/alts/frame_protector/alts_frame_protector.h )
s.files += %w( src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc )
s.files += %w( src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h )
s.files += %w( src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc )
s.files += %w( src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc )
s.files += %w( src/core/tsi/alts/frame_protector/frame_handler.cc )
s.files += %w( src/core/tsi/alts/frame_protector/frame_handler.h )
s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_client.cc )
s.files += %w( src/core/tsi/alts/handshaker/alts_handshaker_client.h )
s.files += %w( src/core/tsi/alts/handshaker/alts_shared_resource.cc )
s.files += %w( src/core/tsi/alts/handshaker/alts_shared_resource.h )
s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc )
s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker.h )
s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h )
s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_utils.cc )
s.files += %w( src/core/tsi/alts/handshaker/alts_tsi_utils.h )
s.files += %w( src/core/tsi/alts/handshaker/transport_security_common_api.cc )
s.files += %w( src/core/tsi/alts/handshaker/transport_security_common_api.h )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc )
s.files += %w( src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h )
s.files += %w( src/core/tsi/fake_transport_security.cc )
s.files += %w( src/core/tsi/fake_transport_security.h )
s.files += %w( src/core/tsi/local_transport_security.cc )
s.files += %w( src/core/tsi/local_transport_security.h )
TLS Session Keys export for GRPC C++ (#26812) * Adding TLS Key export logic to core and c++ wrappers * Adding and end2end cpp tls key export test and updating broken test due to interface changes * regenerate projects * updating tls key export core logic with addition of APIs to grpc_security.h * undoing changes to tls_security_connector_test * regenerate projects * changing the logging format enum name as per GRFC comments * regenerate projects * removing some commented code * updating changes as per review comments * adding GRPCAPI annotations to functions defined in grpc_security.h * regenerate projects * fixed some code styling issues * removing grpc_security.h include from tls_credentials_options.h * updating files as per review comments * minor fixes * moving some code around * removing key log format from tls session key log config and converting it to a simple string * regenerate projects * fixing mistakes in recent merge with master * regenerate projects * regenerate projects * fixing some distrib and snity errors * fixing formatting errors * fixing more sanity checks and raising supported openssl versions to 1.1.1 * updating min supported openssl version to 1.1.1 * updating min supported openssl version in tls_key_export_test * updating test to fix incorrect vector initialization * updating as per latest comments * fixing sanity checks * addressing review comments * fixing sanity checks * fixed c++ comment style * Automated change: Fix sanity tests * fixing review comments Co-authored-by: Vignesh2208 <Vignesh2208@users.noreply.github.com>
3 years ago
s.files += %w( src/core/tsi/ssl/key_logging/ssl_key_logging.cc )
s.files += %w( src/core/tsi/ssl/key_logging/ssl_key_logging.h )
s.files += %w( src/core/tsi/ssl/session_cache/ssl_session.h )
s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc )
s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_cache.cc )
s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_cache.h )
s.files += %w( src/core/tsi/ssl/session_cache/ssl_session_openssl.cc )
s.files += %w( src/core/tsi/ssl_transport_security.cc )
s.files += %w( src/core/tsi/ssl_transport_security.h )
s.files += %w( src/core/tsi/ssl_transport_security_utils.cc )
s.files += %w( src/core/tsi/ssl_transport_security_utils.h )
s.files += %w( src/core/tsi/ssl_types.h )
s.files += %w( src/core/tsi/transport_security.cc )
s.files += %w( src/core/tsi/transport_security.h )
s.files += %w( src/core/tsi/transport_security_grpc.cc )
s.files += %w( src/core/tsi/transport_security_grpc.h )
s.files += %w( src/core/tsi/transport_security_interface.h )
s.files += %w( src/core/util/alloc.cc )
s.files += %w( src/core/util/alloc.h )
s.files += %w( src/core/util/atm.cc )
s.files += %w( src/core/util/atomic_utils.h )
s.files += %w( src/core/util/avl.h )
s.files += %w( src/core/util/backoff.cc )
s.files += %w( src/core/util/backoff.h )
s.files += %w( src/core/util/bitset.h )
s.files += %w( src/core/util/chunked_vector.h )
s.files += %w( src/core/util/construct_destruct.h )
s.files += %w( src/core/util/cpp_impl_of.h )
s.files += %w( src/core/util/crash.cc )
s.files += %w( src/core/util/crash.h )
s.files += %w( src/core/util/debug_location.h )
s.files += %w( src/core/util/directory_reader.h )
s.files += %w( src/core/util/down_cast.h )
s.files += %w( src/core/util/dual_ref_counted.h )
s.files += %w( src/core/util/dump_args.cc )
s.files += %w( src/core/util/dump_args.h )
s.files += %w( src/core/util/env.h )
s.files += %w( src/core/util/event_log.cc )
s.files += %w( src/core/util/event_log.h )
s.files += %w( src/core/util/examine_stack.cc )
s.files += %w( src/core/util/examine_stack.h )
s.files += %w( src/core/util/fork.cc )
s.files += %w( src/core/util/fork.h )
s.files += %w( src/core/util/gcp_metadata_query.cc )
s.files += %w( src/core/util/gcp_metadata_query.h )
s.files += %w( src/core/util/gethostname.h )
s.files += %w( src/core/util/gethostname_fallback.cc )
s.files += %w( src/core/util/gethostname_host_name_max.cc )
s.files += %w( src/core/util/gethostname_sysconf.cc )
s.files += %w( src/core/util/glob.cc )
s.files += %w( src/core/util/glob.h )
s.files += %w( src/core/util/gpr_time.cc )
s.files += %w( src/core/util/grpc_if_nametoindex.h )
s.files += %w( src/core/util/grpc_if_nametoindex_posix.cc )
s.files += %w( src/core/util/grpc_if_nametoindex_unsupported.cc )
s.files += %w( src/core/util/host_port.cc )
s.files += %w( src/core/util/host_port.h )
s.files += %w( src/core/util/http_client/format_request.cc )
s.files += %w( src/core/util/http_client/format_request.h )
s.files += %w( src/core/util/http_client/httpcli.cc )
s.files += %w( src/core/util/http_client/httpcli.h )
s.files += %w( src/core/util/http_client/httpcli_security_connector.cc )
s.files += %w( src/core/util/http_client/httpcli_ssl_credentials.h )
s.files += %w( src/core/util/http_client/parser.cc )
s.files += %w( src/core/util/http_client/parser.h )
s.files += %w( src/core/util/if_list.h )
s.files += %w( src/core/util/iphone/cpu.cc )
s.files += %w( src/core/util/json/json.h )
s.files += %w( src/core/util/json/json_args.h )
s.files += %w( src/core/util/json/json_channel_args.h )
s.files += %w( src/core/util/json/json_object_loader.cc )
s.files += %w( src/core/util/json/json_object_loader.h )
s.files += %w( src/core/util/json/json_reader.cc )
s.files += %w( src/core/util/json/json_reader.h )
s.files += %w( src/core/util/json/json_util.cc )
s.files += %w( src/core/util/json/json_util.h )
s.files += %w( src/core/util/json/json_writer.cc )
s.files += %w( src/core/util/json/json_writer.h )
s.files += %w( src/core/util/latent_see.cc )
s.files += %w( src/core/util/latent_see.h )
s.files += %w( src/core/util/linux/cpu.cc )
s.files += %w( src/core/util/linux/env.cc )
s.files += %w( src/core/util/load_file.cc )
s.files += %w( src/core/util/load_file.h )
s.files += %w( src/core/util/log.cc )
[xDS] implement GCP Auth filter (#37550) Final piece of gRFC A83 (https://github.com/grpc/proposal/pull/438): the GCP authentication filter itself. Infrastructure changes include: - Added a general-purpose LRU cache library that can be reused elsewhere. - Fixed the client channel code to use the channel args returned by the resolver for the dynamic filters. This was necessary so that the GCP auth filter could access the `XdsConfig` object, which is passed via a channel arg. - Unlike the other xDS HTTP filters we support, the GCP auth filter does not support config overrides, and its configuration includes a cache size parameter that we always need at the channel level, not per-call. As a result, I had to change the xDS HTTP filter API to give it the ability to set top-level fields in the service config, not just per-method fields. (We use the service config as a way of passing configuration down into xDS HTTP filters.) Note that for now, this works only on the client side, because we don't have machinery for a top-level service config on the server side. - The GCP auth filter is also the first case where the filter needs to know its instance name from the xDS config, so I changed the xDS HTTP filter API to plumb that through. - Fixed a bug in the HTTP client library that prevented the override functions from declining to override a particular request. Closes #37550 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37550 from markdroth:xds_gcp_auth_filter 19eaefb52f5954dcb680c04755d1e703d7f623e8 PiperOrigin-RevId: 669371249
3 months ago
s.files += %w( src/core/util/lru_cache.h )
s.files += %w( src/core/util/manual_constructor.h )
s.files += %w( src/core/util/match.h )
s.files += %w( src/core/util/matchers.cc )
s.files += %w( src/core/util/matchers.h )
s.files += %w( src/core/util/memory.h )
s.files += %w( src/core/util/mpscq.cc )
s.files += %w( src/core/util/mpscq.h )
s.files += %w( src/core/util/msys/tmpfile.cc )
s.files += %w( src/core/util/no_destruct.h )
s.files += %w( src/core/util/notification.h )
s.files += %w( src/core/util/orphanable.h )
s.files += %w( src/core/util/overload.h )
s.files += %w( src/core/util/packed_table.h )
s.files += %w( src/core/util/per_cpu.cc )
s.files += %w( src/core/util/per_cpu.h )
s.files += %w( src/core/util/posix/cpu.cc )
s.files += %w( src/core/util/posix/directory_reader.cc )
s.files += %w( src/core/util/posix/env.cc )
s.files += %w( src/core/util/posix/stat.cc )
s.files += %w( src/core/util/posix/string.cc )
s.files += %w( src/core/util/posix/sync.cc )
s.files += %w( src/core/util/posix/thd.cc )
s.files += %w( src/core/util/posix/time.cc )
s.files += %w( src/core/util/posix/tmpfile.cc )
s.files += %w( src/core/util/random_early_detection.cc )
s.files += %w( src/core/util/random_early_detection.h )
s.files += %w( src/core/util/ref_counted.h )
s.files += %w( src/core/util/ref_counted_ptr.h )
s.files += %w( src/core/util/ref_counted_string.cc )
s.files += %w( src/core/util/ref_counted_string.h )
s.files += %w( src/core/util/ring_buffer.h )
s.files += %w( src/core/util/single_set_ptr.h )
s.files += %w( src/core/util/sorted_pack.h )
s.files += %w( src/core/util/spinlock.h )
s.files += %w( src/core/util/stat.h )
s.files += %w( src/core/util/status_helper.cc )
s.files += %w( src/core/util/status_helper.h )
s.files += %w( src/core/util/strerror.cc )
s.files += %w( src/core/util/strerror.h )
s.files += %w( src/core/util/string.cc )
s.files += %w( src/core/util/string.h )
s.files += %w( src/core/util/sync.cc )
s.files += %w( src/core/util/sync.h )
s.files += %w( src/core/util/sync_abseil.cc )
s.files += %w( src/core/util/table.h )
s.files += %w( src/core/util/tchar.cc )
s.files += %w( src/core/util/tchar.h )
s.files += %w( src/core/util/thd.h )
s.files += %w( src/core/util/time.cc )
s.files += %w( src/core/util/time.h )
s.files += %w( src/core/util/time_averaged_stats.cc )
s.files += %w( src/core/util/time_averaged_stats.h )
s.files += %w( src/core/util/time_precise.cc )
s.files += %w( src/core/util/time_precise.h )
s.files += %w( src/core/util/time_util.cc )
s.files += %w( src/core/util/time_util.h )
s.files += %w( src/core/util/tmpfile.h )
s.files += %w( src/core/util/type_list.h )
s.files += %w( src/core/util/unique_ptr_with_bitset.h )
s.files += %w( src/core/util/unique_type_name.h )
s.files += %w( src/core/util/upb_utils.h )
s.files += %w( src/core/util/uri.cc )
s.files += %w( src/core/util/uri.h )
s.files += %w( src/core/util/useful.h )
s.files += %w( src/core/util/uuid_v4.cc )
s.files += %w( src/core/util/uuid_v4.h )
s.files += %w( src/core/util/validation_errors.cc )
s.files += %w( src/core/util/validation_errors.h )
s.files += %w( src/core/util/windows/cpu.cc )
s.files += %w( src/core/util/windows/directory_reader.cc )
s.files += %w( src/core/util/windows/env.cc )
s.files += %w( src/core/util/windows/stat.cc )
s.files += %w( src/core/util/windows/string.cc )
s.files += %w( src/core/util/windows/string_util.cc )
s.files += %w( src/core/util/windows/sync.cc )
s.files += %w( src/core/util/windows/thd.cc )
s.files += %w( src/core/util/windows/time.cc )
s.files += %w( src/core/util/windows/tmpfile.cc )
s.files += %w( src/core/util/work_serializer.cc )
s.files += %w( src/core/util/work_serializer.h )
s.files += %w( src/core/util/xxhash_inline.h )
s.files += %w( src/core/xds/grpc/certificate_provider_store.cc )
s.files += %w( src/core/xds/grpc/certificate_provider_store.h )
s.files += %w( src/core/xds/grpc/file_watcher_certificate_provider_factory.cc )
s.files += %w( src/core/xds/grpc/file_watcher_certificate_provider_factory.h )
s.files += %w( src/core/xds/grpc/xds_audit_logger_registry.cc )
s.files += %w( src/core/xds/grpc/xds_audit_logger_registry.h )
s.files += %w( src/core/xds/grpc/xds_bootstrap_grpc.cc )
s.files += %w( src/core/xds/grpc/xds_bootstrap_grpc.h )
s.files += %w( src/core/xds/grpc/xds_certificate_provider.cc )
s.files += %w( src/core/xds/grpc/xds_certificate_provider.h )
s.files += %w( src/core/xds/grpc/xds_client_grpc.cc )
s.files += %w( src/core/xds/grpc/xds_client_grpc.h )
s.files += %w( src/core/xds/grpc/xds_cluster.cc )
s.files += %w( src/core/xds/grpc/xds_cluster.h )
s.files += %w( src/core/xds/grpc/xds_cluster_parser.cc )
s.files += %w( src/core/xds/grpc/xds_cluster_parser.h )
s.files += %w( src/core/xds/grpc/xds_cluster_specifier_plugin.cc )
s.files += %w( src/core/xds/grpc/xds_cluster_specifier_plugin.h )
s.files += %w( src/core/xds/grpc/xds_common_types.cc )
s.files += %w( src/core/xds/grpc/xds_common_types.h )
s.files += %w( src/core/xds/grpc/xds_common_types_parser.cc )
s.files += %w( src/core/xds/grpc/xds_common_types_parser.h )
s.files += %w( src/core/xds/grpc/xds_endpoint.cc )
s.files += %w( src/core/xds/grpc/xds_endpoint.h )
s.files += %w( src/core/xds/grpc/xds_endpoint_parser.cc )
s.files += %w( src/core/xds/grpc/xds_endpoint_parser.h )
s.files += %w( src/core/xds/grpc/xds_health_status.cc )
s.files += %w( src/core/xds/grpc/xds_health_status.h )
s.files += %w( src/core/xds/grpc/xds_http_fault_filter.cc )
s.files += %w( src/core/xds/grpc/xds_http_fault_filter.h )
s.files += %w( src/core/xds/grpc/xds_http_filter.h )
s.files += %w( src/core/xds/grpc/xds_http_filter_registry.cc )
s.files += %w( src/core/xds/grpc/xds_http_filter_registry.h )
[xDS] implement GCP Auth filter (#37550) Final piece of gRFC A83 (https://github.com/grpc/proposal/pull/438): the GCP authentication filter itself. Infrastructure changes include: - Added a general-purpose LRU cache library that can be reused elsewhere. - Fixed the client channel code to use the channel args returned by the resolver for the dynamic filters. This was necessary so that the GCP auth filter could access the `XdsConfig` object, which is passed via a channel arg. - Unlike the other xDS HTTP filters we support, the GCP auth filter does not support config overrides, and its configuration includes a cache size parameter that we always need at the channel level, not per-call. As a result, I had to change the xDS HTTP filter API to give it the ability to set top-level fields in the service config, not just per-method fields. (We use the service config as a way of passing configuration down into xDS HTTP filters.) Note that for now, this works only on the client side, because we don't have machinery for a top-level service config on the server side. - The GCP auth filter is also the first case where the filter needs to know its instance name from the xDS config, so I changed the xDS HTTP filter API to plumb that through. - Fixed a bug in the HTTP client library that prevented the override functions from declining to override a particular request. Closes #37550 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/37550 from markdroth:xds_gcp_auth_filter 19eaefb52f5954dcb680c04755d1e703d7f623e8 PiperOrigin-RevId: 669371249
3 months ago
s.files += %w( src/core/xds/grpc/xds_http_gcp_authn_filter.cc )
s.files += %w( src/core/xds/grpc/xds_http_gcp_authn_filter.h )
s.files += %w( src/core/xds/grpc/xds_http_rbac_filter.cc )
s.files += %w( src/core/xds/grpc/xds_http_rbac_filter.h )
s.files += %w( src/core/xds/grpc/xds_http_stateful_session_filter.cc )
s.files += %w( src/core/xds/grpc/xds_http_stateful_session_filter.h )
s.files += %w( src/core/xds/grpc/xds_lb_policy_registry.cc )
s.files += %w( src/core/xds/grpc/xds_lb_policy_registry.h )
s.files += %w( src/core/xds/grpc/xds_listener.cc )
s.files += %w( src/core/xds/grpc/xds_listener.h )
s.files += %w( src/core/xds/grpc/xds_listener_parser.cc )
s.files += %w( src/core/xds/grpc/xds_listener_parser.h )
s.files += %w( src/core/xds/grpc/xds_metadata.cc )
s.files += %w( src/core/xds/grpc/xds_metadata.h )
s.files += %w( src/core/xds/grpc/xds_metadata_parser.cc )
s.files += %w( src/core/xds/grpc/xds_metadata_parser.h )
s.files += %w( src/core/xds/grpc/xds_route_config.cc )
s.files += %w( src/core/xds/grpc/xds_route_config.h )
s.files += %w( src/core/xds/grpc/xds_route_config_parser.cc )
s.files += %w( src/core/xds/grpc/xds_route_config_parser.h )
s.files += %w( src/core/xds/grpc/xds_routing.cc )
s.files += %w( src/core/xds/grpc/xds_routing.h )
s.files += %w( src/core/xds/grpc/xds_server_grpc.cc )
s.files += %w( src/core/xds/grpc/xds_server_grpc.h )
s.files += %w( src/core/xds/grpc/xds_transport_grpc.cc )
s.files += %w( src/core/xds/grpc/xds_transport_grpc.h )
s.files += %w( src/core/xds/xds_client/lrs_client.cc )
s.files += %w( src/core/xds/xds_client/lrs_client.h )
s.files += %w( src/core/xds/xds_client/xds_api.cc )
s.files += %w( src/core/xds/xds_client/xds_api.h )
s.files += %w( src/core/xds/xds_client/xds_backend_metric_propagation.cc )
s.files += %w( src/core/xds/xds_client/xds_backend_metric_propagation.h )
s.files += %w( src/core/xds/xds_client/xds_bootstrap.cc )
s.files += %w( src/core/xds/xds_client/xds_bootstrap.h )
s.files += %w( src/core/xds/xds_client/xds_channel_args.h )
s.files += %w( src/core/xds/xds_client/xds_client.cc )
s.files += %w( src/core/xds/xds_client/xds_client.h )
s.files += %w( src/core/xds/xds_client/xds_locality.h )
s.files += %w( src/core/xds/xds_client/xds_metrics.h )
s.files += %w( src/core/xds/xds_client/xds_resource_type.h )
s.files += %w( src/core/xds/xds_client/xds_resource_type_impl.h )
s.files += %w( src/core/xds/xds_client/xds_transport.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/algorithm/algorithm.h )
s.files += %w( third_party/abseil-cpp/absl/algorithm/container.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/attributes.h )
s.files += %w( third_party/abseil-cpp/absl/base/call_once.h )
s.files += %w( third_party/abseil-cpp/absl/base/casts.h )
s.files += %w( third_party/abseil-cpp/absl/base/config.h )
s.files += %w( third_party/abseil-cpp/absl/base/const_init.h )
s.files += %w( third_party/abseil-cpp/absl/base/dynamic_annotations.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/atomic_hook.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/cycleclock.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/cycleclock.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/cycleclock_config.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/direct_mmap.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/dynamic_annotations.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/internal/endian.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/errno_saver.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/fast_type_id.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/internal/hide_ptr.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/identity.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/inline_variable.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/invoke.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/low_level_alloc.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/nullability_impl.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/internal/per_thread_tls.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/raw_logging.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/raw_logging.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/scheduling_mode.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock_wait.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock_wait.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/strerror.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/strerror.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/internal/sysinfo.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/sysinfo.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/thread_identity.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/thread_identity.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/throw_delegate.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/throw_delegate.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/tsan_mutex_interface.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/unaligned_access.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc )
s.files += %w( third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h )
s.files += %w( third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/log_severity.cc )
s.files += %w( third_party/abseil-cpp/absl/base/log_severity.h )
s.files += %w( third_party/abseil-cpp/absl/base/macros.h )
s.files += %w( third_party/abseil-cpp/absl/base/no_destructor.h )
s.files += %w( third_party/abseil-cpp/absl/base/nullability.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/optimization.h )
s.files += %w( third_party/abseil-cpp/absl/base/options.h )
s.files += %w( third_party/abseil-cpp/absl/base/policy_checks.h )
s.files += %w( third_party/abseil-cpp/absl/base/port.h )
s.files += %w( third_party/abseil-cpp/absl/base/prefetch.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/base/thread_annotations.h )
[promises] Promise based grpc_call (#29598) * Automated change: Fix sanity tests * fix * fixes * fixup allocator story - we should require a context * fixes * doodling * context scribbles * [arena] Add ManagedNew(), gtest-ify test Add a ManagedNew() method to Arena that calls the relevant destructor at Arena destruction time. There are some cases coming up in the promise based call work where this becomes super convenient, and I expect it's likely that there are other places that's true too. * Automated change: Fix sanity tests * progress * lalalal * progress * x * Automated change: Fix sanity tests * fixes * fix * fix * fix * fix * Automated change: Fix sanity tests * fix * Automated change: Fix sanity tests * fixes * fixes * fixes * Automated change: Fix sanity tests * progress * fix client streaming * handle invalid flags * Automated change: Fix sanity tests * no logging * progress * progress * channelz * tentative fix * fix * lalala * Automated change: Fix sanity tests * more readable trace * logging improvements, leading to bug fix in connected channel * fix * improve debuggability * fix * progress to better refcounting * progress * Automated change: Fix sanity tests * Automated change: Fix sanity tests * fix * fix * fix * threading * Automated change: Fix sanity tests * fix * fix * improve debuggability * fix * fix * Automated change: Fix sanity tests * fix * make promises runtime configurable * Automated change: Fix sanity tests * fix * fix build * fix broken test * clean up api * deal with stats better * peer string! * introduce fragments * Automated change: Fix sanity tests * use fragments * stuff * [promises] Add AtomicWaker type * Automated change: Fix sanity tests * fix * fix write path * fix * polling-entity-hell * review feedback * fix * fix * fix * fix * make an experiment * [experiments] Make output more diffable/readable * Automated change: Fix sanity tests * buildifier sized indentations * fix * fix * Automated change: Fix sanity tests * fix? * fix promise * prototype * progress * implement new api * Revert "fix promise" This reverts commit ded85e7d198da5d28ab75aa8126df248b9a68158. * Revert "Revert "fix promise"" This reverts commit c2acef195870782350d8e8daf1714dedca0efa48. * progress * done * Automated change: Fix sanity tests * fix * fix * fix * Automated change: Fix sanity tests * updates * review feedback * first pass feedback * Automated change: Fix sanity tests * review feedback * naming * better-logs * fix test * Automated change: Fix sanity tests * comments * fix * progress * validation * iwyu * fix * ugh this needs to be any * fix flakiness in asan * call tracing * cleanup unused args * fix windows * fix build * ugh * fix tsan race * threading-fix * bloat1 * bloat2 * bloat3 * fix * unused-args * sanity * iwyu * fix * fix * this is ok * iwyu, exchange * fix * Automated change: Fix sanity tests * fix ee lifetime issue * fix * review feedback * Automated change: Fix sanity tests * comment * x * fix tsan race * iwyu * Automated change: Fix sanity tests Co-authored-by: ctiller <ctiller@users.noreply.github.com>
2 years ago
s.files += %w( third_party/abseil-cpp/absl/cleanup/cleanup.h )
s.files += %w( third_party/abseil-cpp/absl/cleanup/internal/cleanup.h )
s.files += %w( third_party/abseil-cpp/absl/container/fixed_array.h )
s.files += %w( third_party/abseil-cpp/absl/container/flat_hash_map.h )
s.files += %w( third_party/abseil-cpp/absl/container/flat_hash_set.h )
s.files += %w( third_party/abseil-cpp/absl/container/hash_container_defaults.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/container/inlined_vector.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/common.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/common_policy_traits.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/container/internal/compressed_tuple.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/container_memory.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/hashtable_debug_hooks.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc )
s.files += %w( third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/container/internal/inlined_vector.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/layout.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/raw_hash_map.h )
s.files += %w( third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc )
s.files += %w( third_party/abseil-cpp/absl/container/internal/raw_hash_set.h )
s.files += %w( third_party/abseil-cpp/absl/crc/crc32c.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/crc32c.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/cpu_detect.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc32c.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc32c_inline.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_internal.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h )
s.files += %w( third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/address_is_readable.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/demangle.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/demangle.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/examine_stack.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_emscripten-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_unimplemented-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/symbolize.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/internal/vdso_support.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/stacktrace.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/stacktrace.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize.cc )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize.h )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize_elf.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize_unimplemented.inc )
s.files += %w( third_party/abseil-cpp/absl/debugging/symbolize_win32.inc )
s.files += %w( third_party/abseil-cpp/absl/flags/commandlineflag.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/commandlineflag.h )
s.files += %w( third_party/abseil-cpp/absl/flags/config.h )
s.files += %w( third_party/abseil-cpp/absl/flags/declare.h )
s.files += %w( third_party/abseil-cpp/absl/flags/flag.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/commandlineflag.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/flag.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/flag.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/path_util.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/program_name.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/program_name.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/registry.h )
s.files += %w( third_party/abseil-cpp/absl/flags/internal/sequence_lock.h )
s.files += %w( third_party/abseil-cpp/absl/flags/marshalling.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/marshalling.h )
s.files += %w( third_party/abseil-cpp/absl/flags/reflection.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/reflection.h )
s.files += %w( third_party/abseil-cpp/absl/flags/usage_config.cc )
s.files += %w( third_party/abseil-cpp/absl/flags/usage_config.h )
s.files += %w( third_party/abseil-cpp/absl/functional/any_invocable.h )
s.files += %w( third_party/abseil-cpp/absl/functional/bind_front.h )
s.files += %w( third_party/abseil-cpp/absl/functional/function_ref.h )
s.files += %w( third_party/abseil-cpp/absl/functional/internal/any_invocable.h )
s.files += %w( third_party/abseil-cpp/absl/functional/internal/front_binder.h )
s.files += %w( third_party/abseil-cpp/absl/functional/internal/function_ref.h )
s.files += %w( third_party/abseil-cpp/absl/hash/hash.h )
s.files += %w( third_party/abseil-cpp/absl/hash/internal/city.cc )
s.files += %w( third_party/abseil-cpp/absl/hash/internal/city.h )
s.files += %w( third_party/abseil-cpp/absl/hash/internal/hash.cc )
s.files += %w( third_party/abseil-cpp/absl/hash/internal/hash.h )
s.files += %w( third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc )
s.files += %w( third_party/abseil-cpp/absl/hash/internal/low_level_hash.h )
s.files += %w( third_party/abseil-cpp/absl/log/absl_vlog_is_on.h )
s.files += %w( third_party/abseil-cpp/absl/log/check.h )
s.files += %w( third_party/abseil-cpp/absl/log/globals.cc )
s.files += %w( third_party/abseil-cpp/absl/log/globals.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/append_truncated.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/check_impl.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/check_op.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/check_op.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/conditions.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/conditions.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/config.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/fnmatch.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/fnmatch.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/globals.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/globals.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_format.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_format.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_impl.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_message.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_message.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_sink_set.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/log_sink_set.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/nullguard.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/nullguard.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/nullstream.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/proto.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/proto.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/strip.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/vlog_config.cc )
s.files += %w( third_party/abseil-cpp/absl/log/internal/vlog_config.h )
s.files += %w( third_party/abseil-cpp/absl/log/internal/voidify.h )
s.files += %w( third_party/abseil-cpp/absl/log/log.h )
s.files += %w( third_party/abseil-cpp/absl/log/log_entry.cc )
s.files += %w( third_party/abseil-cpp/absl/log/log_entry.h )
s.files += %w( third_party/abseil-cpp/absl/log/log_sink.cc )
s.files += %w( third_party/abseil-cpp/absl/log/log_sink.h )
s.files += %w( third_party/abseil-cpp/absl/log/log_sink_registry.h )
s.files += %w( third_party/abseil-cpp/absl/log/vlog_is_on.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/memory/memory.h )
s.files += %w( third_party/abseil-cpp/absl/meta/type_traits.h )
s.files += %w( third_party/abseil-cpp/absl/numeric/bits.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/numeric/int128.cc )
s.files += %w( third_party/abseil-cpp/absl/numeric/int128.h )
s.files += %w( third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc )
s.files += %w( third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc )
s.files += %w( third_party/abseil-cpp/absl/numeric/internal/bits.h )
s.files += %w( third_party/abseil-cpp/absl/numeric/internal/representation.h )
s.files += %w( third_party/abseil-cpp/absl/profiling/internal/exponential_biased.cc )
s.files += %w( third_party/abseil-cpp/absl/profiling/internal/exponential_biased.h )
s.files += %w( third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h )
s.files += %w( third_party/abseil-cpp/absl/random/bernoulli_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/beta_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/bit_gen_ref.h )
s.files += %w( third_party/abseil-cpp/absl/random/discrete_distribution.cc )
s.files += %w( third_party/abseil-cpp/absl/random/discrete_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/distributions.h )
s.files += %w( third_party/abseil-cpp/absl/random/exponential_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/gaussian_distribution.cc )
s.files += %w( third_party/abseil-cpp/absl/random/gaussian_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/distribution_caller.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/fastmath.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/generate_real.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/iostream_state_saver.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/nonsecure_base.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/pcg_engine.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/platform.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/pool_urbg.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/pool_urbg.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_detect.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_detect.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_engine.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_hwaes.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_round_keys.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_slow.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_slow.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/randen_traits.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/seed_material.cc )
s.files += %w( third_party/abseil-cpp/absl/random/internal/seed_material.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/traits.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/uniform_helper.h )
s.files += %w( third_party/abseil-cpp/absl/random/internal/wide_multiply.h )
s.files += %w( third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/poisson_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/random.h )
s.files += %w( third_party/abseil-cpp/absl/random/seed_gen_exception.cc )
s.files += %w( third_party/abseil-cpp/absl/random/seed_gen_exception.h )
s.files += %w( third_party/abseil-cpp/absl/random/seed_sequences.cc )
s.files += %w( third_party/abseil-cpp/absl/random/seed_sequences.h )
s.files += %w( third_party/abseil-cpp/absl/random/uniform_int_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/uniform_real_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/random/zipf_distribution.h )
s.files += %w( third_party/abseil-cpp/absl/status/internal/status_internal.cc )
s.files += %w( third_party/abseil-cpp/absl/status/internal/status_internal.h )
s.files += %w( third_party/abseil-cpp/absl/status/internal/statusor_internal.h )
s.files += %w( third_party/abseil-cpp/absl/status/status.cc )
s.files += %w( third_party/abseil-cpp/absl/status/status.h )
s.files += %w( third_party/abseil-cpp/absl/status/status_payload_printer.cc )
s.files += %w( third_party/abseil-cpp/absl/status/status_payload_printer.h )
s.files += %w( third_party/abseil-cpp/absl/status/statusor.cc )
s.files += %w( third_party/abseil-cpp/absl/status/statusor.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/ascii.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/ascii.h )
s.files += %w( third_party/abseil-cpp/absl/strings/charconv.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/charconv.h )
s.files += %w( third_party/abseil-cpp/absl/strings/charset.h )
s.files += %w( third_party/abseil-cpp/absl/strings/cord.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/cord.h )
s.files += %w( third_party/abseil-cpp/absl/strings/cord_analysis.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/cord_analysis.h )
s.files += %w( third_party/abseil-cpp/absl/strings/cord_buffer.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/cord_buffer.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/escaping.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/escaping.h )
s.files += %w( third_party/abseil-cpp/absl/strings/has_absl_stringify.h )
s.files += %w( third_party/abseil-cpp/absl/strings/has_ostream_operator.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/charconv_parse.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_internal.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_internal.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_functions.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_handle.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_info.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_info.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_update_scope.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/escaping.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/escaping.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/internal/memutil.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/memutil.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/ostringstream.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/ostringstream.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/resize_uninitialized.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/arg.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/bind.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/checker.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/extension.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/output.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/output.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_format/parser.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_join_internal.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/str_split_internal.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/string_constant.h )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/stringify_sink.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/internal/utf8.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/internal/utf8.h )
s.files += %w( third_party/abseil-cpp/absl/strings/match.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/match.h )
s.files += %w( third_party/abseil-cpp/absl/strings/numbers.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/numbers.h )
s.files += %w( third_party/abseil-cpp/absl/strings/str_cat.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/str_cat.h )
s.files += %w( third_party/abseil-cpp/absl/strings/str_format.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/strings/str_join.h )
s.files += %w( third_party/abseil-cpp/absl/strings/str_replace.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/str_replace.h )
s.files += %w( third_party/abseil-cpp/absl/strings/str_split.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/str_split.h )
s.files += %w( third_party/abseil-cpp/absl/strings/string_view.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/string_view.h )
s.files += %w( third_party/abseil-cpp/absl/strings/strip.h )
s.files += %w( third_party/abseil-cpp/absl/strings/substitute.cc )
s.files += %w( third_party/abseil-cpp/absl/strings/substitute.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/barrier.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/barrier.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/blocking_counter.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/blocking_counter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/futex.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/waiter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/mutex.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/mutex.h )
s.files += %w( third_party/abseil-cpp/absl/synchronization/notification.cc )
s.files += %w( third_party/abseil-cpp/absl/synchronization/notification.h )
s.files += %w( third_party/abseil-cpp/absl/time/civil_time.cc )
s.files += %w( third_party/abseil-cpp/absl/time/civil_time.h )
s.files += %w( third_party/abseil-cpp/absl/time/clock.cc )
s.files += %w( third_party/abseil-cpp/absl/time/clock.h )
s.files += %w( third_party/abseil-cpp/absl/time/duration.cc )
s.files += %w( third_party/abseil-cpp/absl/time/format.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/zone_info_source.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/civil_time_detail.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h )
s.files += %w( third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/get_current_time_chrono.inc )
s.files += %w( third_party/abseil-cpp/absl/time/internal/get_current_time_posix.inc )
s.files += %w( third_party/abseil-cpp/absl/time/time.cc )
s.files += %w( third_party/abseil-cpp/absl/time/time.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/types/bad_optional_access.cc )
s.files += %w( third_party/abseil-cpp/absl/types/bad_optional_access.h )
s.files += %w( third_party/abseil-cpp/absl/types/bad_variant_access.cc )
s.files += %w( third_party/abseil-cpp/absl/types/bad_variant_access.h )
s.files += %w( third_party/abseil-cpp/absl/types/compare.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/types/internal/optional.h )
s.files += %w( third_party/abseil-cpp/absl/types/internal/span.h )
s.files += %w( third_party/abseil-cpp/absl/types/internal/variant.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/types/optional.h )
s.files += %w( third_party/abseil-cpp/absl/types/span.h )
s.files += %w( third_party/abseil-cpp/absl/types/variant.h )
5 years ago
s.files += %w( third_party/abseil-cpp/absl/utility/utility.h )
s.files += %w( third_party/address_sorting/address_sorting.c )
s.files += %w( third_party/address_sorting/address_sorting_internal.h )
s.files += %w( third_party/address_sorting/address_sorting_posix.c )
s.files += %w( third_party/address_sorting/address_sorting_windows.c )
s.files += %w( third_party/address_sorting/include/address_sorting/address_sorting.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/base64/base64.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bcm_support.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/bio.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/connect.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/errno.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/fd.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/file.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/pair.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/printf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/socket.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/buf/buf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/chacha/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/conf/conf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/conf/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/cpu_intel.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/crypto.c )
5 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c )
5 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/des/des.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/des/internal.h )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/dsa/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c )
5 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/engine/engine.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/err/err.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/err/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/evp.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/print.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/evp/sign.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/ex_data.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/add.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/x86_64-gcc.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/jacobi.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aesccm.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/cmac.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/digestsign.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz-table.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c.inc )
5 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/util.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/hrss/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/keccak/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/keccak/keccak.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/kyber/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/lhash/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/mem.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/obj/obj.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs7/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/poly1305/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pool/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/pool/pool.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/getrandom_fillin.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/refcount.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/address.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/address.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/fors.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/fors.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/merkle.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/merkle.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/params.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/spx.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/spx_util.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/spx_util.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/thash.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/thash.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/wots.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/spx/wots.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/stack/stack.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/thread.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/thread_none.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/thread_pthread.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/thread_win.c )
5 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/by_file.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/ext_dat.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/name_print.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/policy.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/t_req.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_akey.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_akeya.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_alt.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_bcons.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_bitst.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_conf.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_enum.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_extku.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_genn.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_ia5.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_int.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_ncons.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_ocsp.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_pcons.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_pmaps.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_prn.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_skey.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509name.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_all.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_name.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_req.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_val.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c )
s.files += %w( third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c )
s.files += %w( third_party/boringssl-with-bazel/src/gen/crypto/err_data.c )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/aead.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/aes.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/asm_base.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/asn1.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/asn1_mac.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/asn1t.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/base.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/base64.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/bio.h )
4 years ago
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/blake2.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/blowfish.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/bn.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/buf.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/buffer.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/bytestring.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/cast.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/chacha.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/cipher.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/cmac.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/conf.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/cpu.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/crypto.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/curve25519.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/des.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/dh.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/digest.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/dsa.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/dtls1.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/e_os2.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ec.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ec_key.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ecdh.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/engine.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/err.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/evp.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ex_data.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/hkdf.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/hmac.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/hpke.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/hrss.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/is_boringssl.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/kdf.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/lhash.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/md4.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/md5.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/mem.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/mldsa.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/mlkem.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/nid.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/obj.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/obj_mac.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/objects.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/opensslv.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ossl_typ.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/pem.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/pkcs12.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/poly1305.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/pool.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/posix_time.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/rand.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/rc4.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ripemd.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/rsa.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/safestack.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/sha.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/siphash.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/span.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/srtp.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ssl.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/ssl3.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/stack.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/target.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/thread.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/time.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/tls1.h )
5 years ago
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/trust_token.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/type_check.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/x509.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/x509v3.h )
s.files += %w( third_party/boringssl-with-bazel/src/include/openssl/x509v3_errors.h )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/d1_both.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/d1_lib.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/dtls_method.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/dtls_record.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/extensions.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/handoff.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/handshake.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/handshake_client.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/handshake_server.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/internal.h )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/s3_both.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/s3_lib.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_file.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_session.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/t1_enc.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/tls13_both.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/tls13_client.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/tls13_server.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/tls_method.cc )
s.files += %w( third_party/boringssl-with-bazel/src/ssl/tls_record.cc )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h )
s.files += %w( third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h )
s.files += %w( third_party/cares/ares_build.h )
s.files += %w( third_party/cares/cares/include/ares.h )
s.files += %w( third_party/cares/cares/include/ares_dns.h )
s.files += %w( third_party/cares/cares/include/ares_nameser.h )
s.files += %w( third_party/cares/cares/include/ares_rules.h )
s.files += %w( third_party/cares/cares/include/ares_version.h )
s.files += %w( third_party/cares/cares/src/lib/ares__addrinfo2hostent.c )
s.files += %w( third_party/cares/cares/src/lib/ares__addrinfo_localhost.c )
s.files += %w( third_party/cares/cares/src/lib/ares__close_sockets.c )
s.files += %w( third_party/cares/cares/src/lib/ares__get_hostent.c )
s.files += %w( third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c )
s.files += %w( third_party/cares/cares/src/lib/ares__read_line.c )
s.files += %w( third_party/cares/cares/src/lib/ares__readaddrinfo.c )
s.files += %w( third_party/cares/cares/src/lib/ares__sortaddrinfo.c )
s.files += %w( third_party/cares/cares/src/lib/ares__timeval.c )
s.files += %w( third_party/cares/cares/src/lib/ares_android.c )
s.files += %w( third_party/cares/cares/src/lib/ares_android.h )
s.files += %w( third_party/cares/cares/src/lib/ares_cancel.c )
s.files += %w( third_party/cares/cares/src/lib/ares_create_query.c )
s.files += %w( third_party/cares/cares/src/lib/ares_data.c )
s.files += %w( third_party/cares/cares/src/lib/ares_data.h )
s.files += %w( third_party/cares/cares/src/lib/ares_destroy.c )
s.files += %w( third_party/cares/cares/src/lib/ares_expand_name.c )
s.files += %w( third_party/cares/cares/src/lib/ares_expand_string.c )
s.files += %w( third_party/cares/cares/src/lib/ares_fds.c )
s.files += %w( third_party/cares/cares/src/lib/ares_free_hostent.c )
s.files += %w( third_party/cares/cares/src/lib/ares_free_string.c )
s.files += %w( third_party/cares/cares/src/lib/ares_freeaddrinfo.c )
s.files += %w( third_party/cares/cares/src/lib/ares_getaddrinfo.c )
s.files += %w( third_party/cares/cares/src/lib/ares_getenv.c )
s.files += %w( third_party/cares/cares/src/lib/ares_getenv.h )
s.files += %w( third_party/cares/cares/src/lib/ares_gethostbyaddr.c )
s.files += %w( third_party/cares/cares/src/lib/ares_gethostbyname.c )
s.files += %w( third_party/cares/cares/src/lib/ares_getnameinfo.c )
s.files += %w( third_party/cares/cares/src/lib/ares_getsock.c )
s.files += %w( third_party/cares/cares/src/lib/ares_inet_net_pton.h )
s.files += %w( third_party/cares/cares/src/lib/ares_init.c )
s.files += %w( third_party/cares/cares/src/lib/ares_iphlpapi.h )
s.files += %w( third_party/cares/cares/src/lib/ares_ipv6.h )
s.files += %w( third_party/cares/cares/src/lib/ares_library_init.c )
s.files += %w( third_party/cares/cares/src/lib/ares_llist.c )
s.files += %w( third_party/cares/cares/src/lib/ares_llist.h )
s.files += %w( third_party/cares/cares/src/lib/ares_mkquery.c )
s.files += %w( third_party/cares/cares/src/lib/ares_nowarn.c )
s.files += %w( third_party/cares/cares/src/lib/ares_nowarn.h )
s.files += %w( third_party/cares/cares/src/lib/ares_options.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_a_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_caa_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_mx_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_naptr_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_ns_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_ptr_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_soa_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_srv_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_txt_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_parse_uri_reply.c )
s.files += %w( third_party/cares/cares/src/lib/ares_platform.c )
s.files += %w( third_party/cares/cares/src/lib/ares_platform.h )
s.files += %w( third_party/cares/cares/src/lib/ares_private.h )
s.files += %w( third_party/cares/cares/src/lib/ares_process.c )
s.files += %w( third_party/cares/cares/src/lib/ares_query.c )
s.files += %w( third_party/cares/cares/src/lib/ares_rand.c )
s.files += %w( third_party/cares/cares/src/lib/ares_search.c )
s.files += %w( third_party/cares/cares/src/lib/ares_send.c )
s.files += %w( third_party/cares/cares/src/lib/ares_setup.h )
s.files += %w( third_party/cares/cares/src/lib/ares_strcasecmp.c )
s.files += %w( third_party/cares/cares/src/lib/ares_strcasecmp.h )
s.files += %w( third_party/cares/cares/src/lib/ares_strdup.c )
s.files += %w( third_party/cares/cares/src/lib/ares_strdup.h )
s.files += %w( third_party/cares/cares/src/lib/ares_strerror.c )
s.files += %w( third_party/cares/cares/src/lib/ares_strsplit.c )
s.files += %w( third_party/cares/cares/src/lib/ares_strsplit.h )
s.files += %w( third_party/cares/cares/src/lib/ares_timeout.c )
s.files += %w( third_party/cares/cares/src/lib/ares_version.c )
s.files += %w( third_party/cares/cares/src/lib/ares_writev.c )
s.files += %w( third_party/cares/cares/src/lib/ares_writev.h )
s.files += %w( third_party/cares/cares/src/lib/bitncmp.c )
s.files += %w( third_party/cares/cares/src/lib/bitncmp.h )
s.files += %w( third_party/cares/cares/src/lib/config-dos.h )
s.files += %w( third_party/cares/cares/src/lib/config-win32.h )
s.files += %w( third_party/cares/cares/src/lib/inet_net_pton.c )
s.files += %w( third_party/cares/cares/src/lib/inet_ntop.c )
s.files += %w( third_party/cares/cares/src/lib/setup_once.h )
s.files += %w( third_party/cares/cares/src/lib/windows_port.c )
s.files += %w( third_party/cares/cares/src/tools/ares_getopt.h )
s.files += %w( third_party/cares/config_darwin/ares_config.h )
s.files += %w( third_party/cares/config_freebsd/ares_config.h )
s.files += %w( third_party/cares/config_linux/ares_config.h )
s.files += %w( third_party/cares/config_openbsd/ares_config.h )
s.files += %w( third_party/re2/re2/bitmap256.h )
s.files += %w( third_party/re2/re2/bitstate.cc )
s.files += %w( third_party/re2/re2/compile.cc )
s.files += %w( third_party/re2/re2/dfa.cc )
s.files += %w( third_party/re2/re2/filtered_re2.cc )
s.files += %w( third_party/re2/re2/filtered_re2.h )
s.files += %w( third_party/re2/re2/mimics_pcre.cc )
s.files += %w( third_party/re2/re2/nfa.cc )
s.files += %w( third_party/re2/re2/onepass.cc )
s.files += %w( third_party/re2/re2/parse.cc )
s.files += %w( third_party/re2/re2/perl_groups.cc )
s.files += %w( third_party/re2/re2/pod_array.h )
s.files += %w( third_party/re2/re2/prefilter.cc )
s.files += %w( third_party/re2/re2/prefilter.h )
s.files += %w( third_party/re2/re2/prefilter_tree.cc )
s.files += %w( third_party/re2/re2/prefilter_tree.h )
s.files += %w( third_party/re2/re2/prog.cc )
s.files += %w( third_party/re2/re2/prog.h )
s.files += %w( third_party/re2/re2/re2.cc )
s.files += %w( third_party/re2/re2/re2.h )
s.files += %w( third_party/re2/re2/regexp.cc )
s.files += %w( third_party/re2/re2/regexp.h )
s.files += %w( third_party/re2/re2/set.cc )
s.files += %w( third_party/re2/re2/set.h )
s.files += %w( third_party/re2/re2/simplify.cc )
s.files += %w( third_party/re2/re2/sparse_array.h )
s.files += %w( third_party/re2/re2/sparse_set.h )
s.files += %w( third_party/re2/re2/stringpiece.cc )
s.files += %w( third_party/re2/re2/stringpiece.h )
s.files += %w( third_party/re2/re2/tostring.cc )
s.files += %w( third_party/re2/re2/unicode_casefold.cc )
s.files += %w( third_party/re2/re2/unicode_casefold.h )
s.files += %w( third_party/re2/re2/unicode_groups.cc )
s.files += %w( third_party/re2/re2/unicode_groups.h )
s.files += %w( third_party/re2/re2/walker-inl.h )
s.files += %w( third_party/re2/util/logging.h )
s.files += %w( third_party/re2/util/mix.h )
s.files += %w( third_party/re2/util/mutex.h )
s.files += %w( third_party/re2/util/rune.cc )
s.files += %w( third_party/re2/util/strutil.cc )
s.files += %w( third_party/re2/util/strutil.h )
s.files += %w( third_party/re2/util/utf.h )
s.files += %w( third_party/re2/util/util.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/base/descriptor_constants.h )
s.files += %w( third_party/upb/upb/base/internal/endian.h )
s.files += %w( third_party/upb/upb/base/internal/log2.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/base/status.c )
s.files += %w( third_party/upb/upb/base/status.h )
s.files += %w( third_party/upb/upb/base/status.hpp )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/base/string_view.h )
s.files += %w( third_party/upb/upb/base/upcast.h )
s.files += %w( third_party/upb/upb/generated_code_support.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/hash/common.c )
s.files += %w( third_party/upb/upb/hash/common.h )
s.files += %w( third_party/upb/upb/hash/int_table.h )
s.files += %w( third_party/upb/upb/hash/str_table.h )
s.files += %w( third_party/upb/upb/json/decode.c )
s.files += %w( third_party/upb/upb/json/decode.h )
s.files += %w( third_party/upb/upb/json/encode.c )
s.files += %w( third_party/upb/upb/json/encode.h )
s.files += %w( third_party/upb/upb/lex/atoi.c )
s.files += %w( third_party/upb/upb/lex/atoi.h )
s.files += %w( third_party/upb/upb/lex/round_trip.c )
s.files += %w( third_party/upb/upb/lex/round_trip.h )
s.files += %w( third_party/upb/upb/lex/strtod.c )
s.files += %w( third_party/upb/upb/lex/strtod.h )
s.files += %w( third_party/upb/upb/lex/unicode.c )
s.files += %w( third_party/upb/upb/lex/unicode.h )
s.files += %w( third_party/upb/upb/mem/alloc.c )
s.files += %w( third_party/upb/upb/mem/alloc.h )
s.files += %w( third_party/upb/upb/mem/arena.c )
s.files += %w( third_party/upb/upb/mem/arena.h )
s.files += %w( third_party/upb/upb/mem/arena.hpp )
s.files += %w( third_party/upb/upb/mem/internal/arena.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/message/accessors.c )
s.files += %w( third_party/upb/upb/message/accessors.h )
s.files += %w( third_party/upb/upb/message/array.c )
s.files += %w( third_party/upb/upb/message/array.h )
s.files += %w( third_party/upb/upb/message/compat.c )
s.files += %w( third_party/upb/upb/message/compat.h )
s.files += %w( third_party/upb/upb/message/copy.c )
s.files += %w( third_party/upb/upb/message/copy.h )
s.files += %w( third_party/upb/upb/message/internal/accessors.h )
s.files += %w( third_party/upb/upb/message/internal/array.h )
s.files += %w( third_party/upb/upb/message/internal/compare_unknown.c )
s.files += %w( third_party/upb/upb/message/internal/compare_unknown.h )
s.files += %w( third_party/upb/upb/message/internal/extension.c )
s.files += %w( third_party/upb/upb/message/internal/extension.h )
s.files += %w( third_party/upb/upb/message/internal/map.h )
s.files += %w( third_party/upb/upb/message/internal/map_entry.h )
s.files += %w( third_party/upb/upb/message/internal/map_sorter.h )
s.files += %w( third_party/upb/upb/message/internal/message.c )
s.files += %w( third_party/upb/upb/message/internal/message.h )
s.files += %w( third_party/upb/upb/message/internal/tagged_ptr.h )
s.files += %w( third_party/upb/upb/message/internal/types.h )
s.files += %w( third_party/upb/upb/message/map.c )
s.files += %w( third_party/upb/upb/message/map.h )
s.files += %w( third_party/upb/upb/message/map_gencode_util.h )
s.files += %w( third_party/upb/upb/message/map_sorter.c )
s.files += %w( third_party/upb/upb/message/merge.c )
s.files += %w( third_party/upb/upb/message/merge.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/message/message.c )
s.files += %w( third_party/upb/upb/message/message.h )
s.files += %w( third_party/upb/upb/message/tagged_ptr.h )
s.files += %w( third_party/upb/upb/message/value.h )
s.files += %w( third_party/upb/upb/mini_descriptor/build_enum.c )
s.files += %w( third_party/upb/upb/mini_descriptor/build_enum.h )
s.files += %w( third_party/upb/upb/mini_descriptor/decode.c )
s.files += %w( third_party/upb/upb/mini_descriptor/decode.h )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/base92.c )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/base92.h )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/decoder.h )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/encode.c )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/encode.h )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/encode.hpp )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/modifiers.h )
s.files += %w( third_party/upb/upb/mini_descriptor/internal/wire_constants.h )
s.files += %w( third_party/upb/upb/mini_descriptor/link.c )
s.files += %w( third_party/upb/upb/mini_descriptor/link.h )
s.files += %w( third_party/upb/upb/mini_table/enum.h )
s.files += %w( third_party/upb/upb/mini_table/extension.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/mini_table/extension_registry.c )
s.files += %w( third_party/upb/upb/mini_table/extension_registry.h )
s.files += %w( third_party/upb/upb/mini_table/field.h )
s.files += %w( third_party/upb/upb/mini_table/file.h )
s.files += %w( third_party/upb/upb/mini_table/internal/enum.h )
s.files += %w( third_party/upb/upb/mini_table/internal/extension.h )
s.files += %w( third_party/upb/upb/mini_table/internal/field.h )
s.files += %w( third_party/upb/upb/mini_table/internal/file.h )
s.files += %w( third_party/upb/upb/mini_table/internal/message.c )
s.files += %w( third_party/upb/upb/mini_table/internal/message.h )
s.files += %w( third_party/upb/upb/mini_table/internal/size_log2.h )
s.files += %w( third_party/upb/upb/mini_table/internal/sub.h )
s.files += %w( third_party/upb/upb/mini_table/message.c )
s.files += %w( third_party/upb/upb/mini_table/message.h )
s.files += %w( third_party/upb/upb/mini_table/sub.h )
s.files += %w( third_party/upb/upb/port/atomic.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/port/def.inc )
s.files += %w( third_party/upb/upb/port/undef.inc )
s.files += %w( third_party/upb/upb/port/vsnprintf_compat.h )
s.files += %w( third_party/upb/upb/reflection/common.h )
s.files += %w( third_party/upb/upb/reflection/def.h )
s.files += %w( third_party/upb/upb/reflection/def.hpp )
s.files += %w( third_party/upb/upb/reflection/def_pool.c )
s.files += %w( third_party/upb/upb/reflection/def_pool.h )
s.files += %w( third_party/upb/upb/reflection/def_type.c )
s.files += %w( third_party/upb/upb/reflection/def_type.h )
s.files += %w( third_party/upb/upb/reflection/desc_state.c )
s.files += %w( third_party/upb/upb/reflection/enum_def.c )
s.files += %w( third_party/upb/upb/reflection/enum_def.h )
s.files += %w( third_party/upb/upb/reflection/enum_reserved_range.c )
s.files += %w( third_party/upb/upb/reflection/enum_reserved_range.h )
s.files += %w( third_party/upb/upb/reflection/enum_value_def.c )
s.files += %w( third_party/upb/upb/reflection/enum_value_def.h )
s.files += %w( third_party/upb/upb/reflection/extension_range.c )
s.files += %w( third_party/upb/upb/reflection/extension_range.h )
s.files += %w( third_party/upb/upb/reflection/field_def.c )
s.files += %w( third_party/upb/upb/reflection/field_def.h )
s.files += %w( third_party/upb/upb/reflection/file_def.c )
s.files += %w( third_party/upb/upb/reflection/file_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/def_builder.c )
s.files += %w( third_party/upb/upb/reflection/internal/def_builder.h )
s.files += %w( third_party/upb/upb/reflection/internal/def_pool.h )
s.files += %w( third_party/upb/upb/reflection/internal/desc_state.h )
s.files += %w( third_party/upb/upb/reflection/internal/enum_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/enum_reserved_range.h )
s.files += %w( third_party/upb/upb/reflection/internal/enum_value_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/extension_range.h )
s.files += %w( third_party/upb/upb/reflection/internal/field_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/file_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/message_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/message_reserved_range.h )
s.files += %w( third_party/upb/upb/reflection/internal/method_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/oneof_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/service_def.h )
s.files += %w( third_party/upb/upb/reflection/internal/strdup2.c )
s.files += %w( third_party/upb/upb/reflection/internal/strdup2.h )
s.files += %w( third_party/upb/upb/reflection/internal/upb_edition_defaults.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/reflection/message.c )
s.files += %w( third_party/upb/upb/reflection/message.h )
s.files += %w( third_party/upb/upb/reflection/message.hpp )
s.files += %w( third_party/upb/upb/reflection/message_def.c )
s.files += %w( third_party/upb/upb/reflection/message_def.h )
s.files += %w( third_party/upb/upb/reflection/message_reserved_range.c )
s.files += %w( third_party/upb/upb/reflection/message_reserved_range.h )
s.files += %w( third_party/upb/upb/reflection/method_def.c )
s.files += %w( third_party/upb/upb/reflection/method_def.h )
s.files += %w( third_party/upb/upb/reflection/oneof_def.c )
s.files += %w( third_party/upb/upb/reflection/oneof_def.h )
s.files += %w( third_party/upb/upb/reflection/service_def.c )
s.files += %w( third_party/upb/upb/reflection/service_def.h )
s.files += %w( third_party/upb/upb/text/encode.c )
s.files += %w( third_party/upb/upb/text/encode.h )
s.files += %w( third_party/upb/upb/text/internal/encode.c )
s.files += %w( third_party/upb/upb/text/internal/encode.h )
s.files += %w( third_party/upb/upb/text/options.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/wire/decode.c )
s.files += %w( third_party/upb/upb/wire/decode.h )
s.files += %w( third_party/upb/upb/wire/encode.c )
s.files += %w( third_party/upb/upb/wire/encode.h )
s.files += %w( third_party/upb/upb/wire/eps_copy_input_stream.c )
s.files += %w( third_party/upb/upb/wire/eps_copy_input_stream.h )
s.files += %w( third_party/upb/upb/wire/internal/constants.h )
s.files += %w( third_party/upb/upb/wire/internal/decode_fast.c )
s.files += %w( third_party/upb/upb/wire/internal/decode_fast.h )
s.files += %w( third_party/upb/upb/wire/internal/decoder.h )
s.files += %w( third_party/upb/upb/wire/internal/reader.h )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/upb/upb/wire/reader.c )
s.files += %w( third_party/upb/upb/wire/reader.h )
s.files += %w( third_party/upb/upb/wire/types.h )
s.files += %w( third_party/utf8_range/utf8_range.c )
[protobuf] Upgrade third_party/protobuf to 22.x (#32606) The very non-trivial upgrade of third_party/protobuf to 22.x This PR strives to be as small as possible and many changes that were compatible with protobuf 21.x and didn't have to be merged atomically with the upgrade were already merged. Due to the complexity of the upgrade, this PR wasn't created automatically by a tool, but manually. Subsequent upgraded of third_party/protobuf with our OSS release script should work again once this change is merged. This is best reviewed commit-by-commit, I tried to group changes in logical areas. Notable changes: - the upgrade of third_party/protobuf submodule, the bazel protobuf dependency itself - upgrade of UPB dependency to 22.x (in the past, we used to always upgrade upb to "main", but upb now has release branch as well). UPB needs to be upgraded atomically with protobuf since there's a de-facto circular dependency (new protobuf depends on new upb, which depends on new protobuf for codegen). - some protobuf and upb bazel rules are now aliases, so ` extract_metadata_from_bazel_xml.py` and `gen_upb_api_from_bazel_xml.py` had to be modified to be able to follow aliases and reach the actual aliased targets. - some protobuf public headers were renamed, so especially `src/compiler` needed to be updated to use the new headers. - protobuf and upb now both depend on utf8_range project, so since we bundle upb with grpc in some languages, we now have to bundle utf8_range as well (hence changes in build for python, PHP, objC, cmake etc). - protoc now depends on absl and utf8_range (previously protobuf had absl dependency, but not for the codegen part), so python's make_grpcio_tools.py required partial rewrite to be able to handle those dependencies in the grpcio_tools build. - many updates and fixes required for C++ distribtests (currently they all pass, but we'll probably need to follow up, make protobuf's and grpc's handling of dependencies more aligned and revisit the distribtests) - bunch of other changes mostly due to overhaul of protobuf's and upb's internal build layout. TODOs: - [DONE] make sure IWYU and clang_tidy_code pass - create a list of followups (e.g. work to reenable the few tests I had to disable and to remove workaround I had to use) - [DONE in cl/523706129] figure out problem(s) with internal import --------- Co-authored-by: Craig Tiller <ctiller@google.com>
2 years ago
s.files += %w( third_party/utf8_range/utf8_range.h )
s.files += %w( third_party/xxhash/xxhash.h )
s.files += %w( third_party/zlib/adler32.c )
s.files += %w( third_party/zlib/compress.c )
s.files += %w( third_party/zlib/crc32.c )
s.files += %w( third_party/zlib/crc32.h )
s.files += %w( third_party/zlib/deflate.c )
s.files += %w( third_party/zlib/deflate.h )
s.files += %w( third_party/zlib/gzguts.h )
s.files += %w( third_party/zlib/infback.c )
s.files += %w( third_party/zlib/inffast.c )
s.files += %w( third_party/zlib/inffast.h )
s.files += %w( third_party/zlib/inffixed.h )
s.files += %w( third_party/zlib/inflate.c )
s.files += %w( third_party/zlib/inflate.h )
s.files += %w( third_party/zlib/inftrees.c )
s.files += %w( third_party/zlib/inftrees.h )
s.files += %w( third_party/zlib/trees.c )
s.files += %w( third_party/zlib/trees.h )
s.files += %w( third_party/zlib/uncompr.c )
s.files += %w( third_party/zlib/zconf.h )
s.files += %w( third_party/zlib/zlib.h )
s.files += %w( third_party/zlib/zutil.c )
s.files += %w( third_party/zlib/zutil.h )
end