xref: /aosp_15_r20/external/grpc-grpc/gRPC-Core.podspec (revision cc02d7e222339f7a4f6ba5f422e6413f4bd931f2)
1# This file has been automatically generated from a template file.
2# Please make modifications to `templates/gRPC-Core.podspec.template`
3# instead. This file can be regenerated from the template by running
4# `tools/buildgen/generate_projects.sh`.
5
6# gRPC Core CocoaPods podspec
7#
8# Copyright 2015 gRPC authors.
9#
10# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
13#
14#     http://www.apache.org/licenses/LICENSE-2.0
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
21
22Pod::Spec.new do |s|
23  s.name     = 'gRPC-Core'
24  version = '1.63.1'
25  s.version  = version
26  s.summary  = 'Core cross-platform gRPC library, written in C'
27  s.homepage = 'https://grpc.io'
28  s.license  = 'Apache License, Version 2.0'
29  s.authors  = { 'The gRPC contributors' => '[email protected]' }
30
31  s.source = {
32    :git => 'https://github.com/grpc/grpc.git',
33    :tag => "v#{version}",
34    :submodules => true,
35  }
36
37  # gRPC podspecs depend on fix for https://github.com/CocoaPods/CocoaPods/issues/6024,
38  # which was released in Cocoapods v1.2.0.
39  s.cocoapods_version = '>= 1.2.0'
40
41  s.ios.deployment_target = '10.0'
42  s.osx.deployment_target = '10.12'
43  s.tvos.deployment_target = '12.0'
44  s.watchos.deployment_target = '6.0'
45
46  s.requires_arc = false
47
48  name = 'grpc'
49  abseil_version = '1.20240116.1'
50
51  # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
52  # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
53  # <gRPC-Core/grpc.h>`.
54  s.module_name = name
55
56  # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
57  # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
58  #
59  # TODO(jcanizales): Debug why this doesn't work on macOS.
60  s.header_mappings_dir = 'include/grpc'
61
62  # The above has an undesired effect when creating a static library: It forces users to write
63  # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
64  # because Cocoapods lets omit the pod name when including headers of static libraries, the
65  # following lets users write `#include <grpc/grpc.h>`.
66  s.header_dir = name
67
68  # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
69  s.module_map = 'include/grpc/module.modulemap'
70
71  # To compile the library, we need the user headers search path (quoted includes) to point to the
72  # root of the repo, third_party/** and two upb generated directories, and the system headers
73  # search path (angled includes) to point to `include/`.
74  s.pod_target_xcconfig = {
75    'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(PODS_TARGET_SRCROOT)/include"',
76    'USER_HEADER_SEARCH_PATHS' => '"$(PODS_TARGET_SRCROOT)"'\
77        ' "$(PODS_TARGET_SRCROOT)/src/core/ext/upb-gen"'\
78        ' "$(PODS_TARGET_SRCROOT)/src/core/ext/upbdefs-gen"'\
79        ' "$(PODS_TARGET_SRCROOT)/third_party/re2"'\
80        ' "$(PODS_TARGET_SRCROOT)/third_party/upb"'\
81        ' "$(PODS_TARGET_SRCROOT)/third_party/utf8_range"'\
82        ' "$(PODS_TARGET_SRCROOT)/third_party/xxhash"',
83    # If we don't set these two settings, `include/grpc/support/time.h` and
84    # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
85    # build.
86    'USE_HEADERMAP' => 'NO',
87    'ALWAYS_SEARCH_USER_PATHS' => 'NO',
88    'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1"',
89    'CLANG_WARN_STRICT_PROTOTYPES' => 'NO',
90    'CLANG_CXX_LANGUAGE_STANDARD' => 'c++14',
91  }
92
93  s.default_subspecs = 'Interface', 'Implementation'
94  s.compiler_flags = '-DGRPC_ARES=0 -Wno-comma'
95  s.libraries = 'c++'
96
97  # Exposes the privacy manifest. Depended on by any subspecs containing
98  # non-interface files.
99  s.subspec 'Privacy' do |ss|
100    ss.resource_bundles = {
101      s.module_name => 'src/objective-c/PrivacyInfo.xcprivacy'
102    }
103  end
104
105  # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
106  # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
107  # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
108  # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
109  # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
110  # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
111  # making the linter happy.
112  #
113  # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
114  # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
115  s.subspec 'Interface' do |ss|
116    ss.header_mappings_dir = 'include/grpc'
117
118    ss.source_files = 'include/grpc/byte_buffer.h',
119                      'include/grpc/byte_buffer_reader.h',
120                      'include/grpc/census.h',
121                      'include/grpc/compression.h',
122                      'include/grpc/event_engine/endpoint_config.h',
123                      'include/grpc/event_engine/event_engine.h',
124                      'include/grpc/event_engine/extensible.h',
125                      'include/grpc/event_engine/internal/memory_allocator_impl.h',
126                      'include/grpc/event_engine/internal/slice_cast.h',
127                      'include/grpc/event_engine/memory_allocator.h',
128                      'include/grpc/event_engine/memory_request.h',
129                      'include/grpc/event_engine/port.h',
130                      'include/grpc/event_engine/slice.h',
131                      'include/grpc/event_engine/slice_buffer.h',
132                      'include/grpc/fork.h',
133                      'include/grpc/grpc.h',
134                      'include/grpc/grpc_audit_logging.h',
135                      'include/grpc/grpc_crl_provider.h',
136                      'include/grpc/grpc_posix.h',
137                      'include/grpc/grpc_security.h',
138                      'include/grpc/grpc_security_constants.h',
139                      'include/grpc/impl/call.h',
140                      'include/grpc/impl/channel_arg_names.h',
141                      'include/grpc/impl/codegen/atm.h',
142                      'include/grpc/impl/codegen/atm_gcc_atomic.h',
143                      'include/grpc/impl/codegen/atm_gcc_sync.h',
144                      'include/grpc/impl/codegen/atm_windows.h',
145                      'include/grpc/impl/codegen/byte_buffer.h',
146                      'include/grpc/impl/codegen/byte_buffer_reader.h',
147                      'include/grpc/impl/codegen/compression_types.h',
148                      'include/grpc/impl/codegen/connectivity_state.h',
149                      'include/grpc/impl/codegen/fork.h',
150                      'include/grpc/impl/codegen/gpr_types.h',
151                      'include/grpc/impl/codegen/grpc_types.h',
152                      'include/grpc/impl/codegen/log.h',
153                      'include/grpc/impl/codegen/port_platform.h',
154                      'include/grpc/impl/codegen/propagation_bits.h',
155                      'include/grpc/impl/codegen/slice.h',
156                      'include/grpc/impl/codegen/status.h',
157                      'include/grpc/impl/codegen/sync.h',
158                      'include/grpc/impl/codegen/sync_abseil.h',
159                      'include/grpc/impl/codegen/sync_custom.h',
160                      'include/grpc/impl/codegen/sync_generic.h',
161                      'include/grpc/impl/codegen/sync_posix.h',
162                      'include/grpc/impl/codegen/sync_windows.h',
163                      'include/grpc/impl/compression_types.h',
164                      'include/grpc/impl/connectivity_state.h',
165                      'include/grpc/impl/grpc_types.h',
166                      'include/grpc/impl/propagation_bits.h',
167                      'include/grpc/impl/slice_type.h',
168                      'include/grpc/load_reporting.h',
169                      'include/grpc/slice.h',
170                      'include/grpc/slice_buffer.h',
171                      'include/grpc/status.h',
172                      'include/grpc/support/alloc.h',
173                      'include/grpc/support/atm.h',
174                      'include/grpc/support/atm_gcc_atomic.h',
175                      'include/grpc/support/atm_gcc_sync.h',
176                      'include/grpc/support/atm_windows.h',
177                      'include/grpc/support/cpu.h',
178                      'include/grpc/support/json.h',
179                      'include/grpc/support/log.h',
180                      'include/grpc/support/log_windows.h',
181                      'include/grpc/support/metrics.h',
182                      'include/grpc/support/port_platform.h',
183                      'include/grpc/support/string_util.h',
184                      'include/grpc/support/sync.h',
185                      'include/grpc/support/sync_abseil.h',
186                      'include/grpc/support/sync_custom.h',
187                      'include/grpc/support/sync_generic.h',
188                      'include/grpc/support/sync_posix.h',
189                      'include/grpc/support/sync_windows.h',
190                      'include/grpc/support/thd_id.h',
191                      'include/grpc/support/time.h',
192                      'include/grpc/support/workaround_list.h'
193  end
194  s.subspec 'Implementation' do |ss|
195    ss.header_mappings_dir = '.'
196    ss.libraries = 'z'
197    ss.dependency "#{s.name}/Interface", version
198    ss.dependency "#{s.name}/Privacy", version
199    ss.dependency 'BoringSSL-GRPC', '0.0.33'
200    ss.dependency 'abseil/algorithm/container', abseil_version
201    ss.dependency 'abseil/base/base', abseil_version
202    ss.dependency 'abseil/base/config', abseil_version
203    ss.dependency 'abseil/base/core_headers', abseil_version
204    ss.dependency 'abseil/base/log_severity', abseil_version
205    ss.dependency 'abseil/base/no_destructor', abseil_version
206    ss.dependency 'abseil/cleanup/cleanup', abseil_version
207    ss.dependency 'abseil/container/flat_hash_map', abseil_version
208    ss.dependency 'abseil/container/flat_hash_set', abseil_version
209    ss.dependency 'abseil/container/inlined_vector', abseil_version
210    ss.dependency 'abseil/flags/flag', abseil_version
211    ss.dependency 'abseil/flags/marshalling', abseil_version
212    ss.dependency 'abseil/functional/any_invocable', abseil_version
213    ss.dependency 'abseil/functional/bind_front', abseil_version
214    ss.dependency 'abseil/functional/function_ref', abseil_version
215    ss.dependency 'abseil/hash/hash', abseil_version
216    ss.dependency 'abseil/log/log', abseil_version
217    ss.dependency 'abseil/memory/memory', abseil_version
218    ss.dependency 'abseil/meta/type_traits', abseil_version
219    ss.dependency 'abseil/random/bit_gen_ref', abseil_version
220    ss.dependency 'abseil/random/distributions', abseil_version
221    ss.dependency 'abseil/random/random', abseil_version
222    ss.dependency 'abseil/status/status', abseil_version
223    ss.dependency 'abseil/status/statusor', abseil_version
224    ss.dependency 'abseil/strings/cord', abseil_version
225    ss.dependency 'abseil/strings/str_format', abseil_version
226    ss.dependency 'abseil/strings/strings', abseil_version
227    ss.dependency 'abseil/synchronization/synchronization', abseil_version
228    ss.dependency 'abseil/time/time', abseil_version
229    ss.dependency 'abseil/types/optional', abseil_version
230    ss.dependency 'abseil/types/span', abseil_version
231    ss.dependency 'abseil/types/variant', abseil_version
232    ss.dependency 'abseil/utility/utility', abseil_version
233    ss.compiler_flags = '-DBORINGSSL_PREFIX=GRPC -Wno-unreachable-code -Wno-shorten-64-to-32'
234
235    ss.source_files = 'src/core/client_channel/backup_poller.cc',
236                      'src/core/client_channel/backup_poller.h',
237                      'src/core/client_channel/client_channel_channelz.cc',
238                      'src/core/client_channel/client_channel_channelz.h',
239                      'src/core/client_channel/client_channel_factory.cc',
240                      'src/core/client_channel/client_channel_factory.h',
241                      'src/core/client_channel/client_channel_filter.cc',
242                      'src/core/client_channel/client_channel_filter.h',
243                      'src/core/client_channel/client_channel_internal.h',
244                      'src/core/client_channel/client_channel_plugin.cc',
245                      'src/core/client_channel/client_channel_service_config.cc',
246                      'src/core/client_channel/client_channel_service_config.h',
247                      'src/core/client_channel/config_selector.cc',
248                      'src/core/client_channel/config_selector.h',
249                      'src/core/client_channel/connector.h',
250                      'src/core/client_channel/dynamic_filters.cc',
251                      'src/core/client_channel/dynamic_filters.h',
252                      'src/core/client_channel/global_subchannel_pool.cc',
253                      'src/core/client_channel/global_subchannel_pool.h',
254                      'src/core/client_channel/http_proxy_mapper.cc',
255                      'src/core/client_channel/http_proxy_mapper.h',
256                      'src/core/client_channel/local_subchannel_pool.cc',
257                      'src/core/client_channel/local_subchannel_pool.h',
258                      'src/core/client_channel/retry_filter.cc',
259                      'src/core/client_channel/retry_filter.h',
260                      'src/core/client_channel/retry_filter_legacy_call_data.cc',
261                      'src/core/client_channel/retry_filter_legacy_call_data.h',
262                      'src/core/client_channel/retry_service_config.cc',
263                      'src/core/client_channel/retry_service_config.h',
264                      'src/core/client_channel/retry_throttle.cc',
265                      'src/core/client_channel/retry_throttle.h',
266                      'src/core/client_channel/subchannel.cc',
267                      'src/core/client_channel/subchannel.h',
268                      'src/core/client_channel/subchannel_interface_internal.h',
269                      'src/core/client_channel/subchannel_pool_interface.cc',
270                      'src/core/client_channel/subchannel_pool_interface.h',
271                      'src/core/client_channel/subchannel_stream_client.cc',
272                      'src/core/client_channel/subchannel_stream_client.h',
273                      'src/core/ext/filters/backend_metrics/backend_metric_filter.cc',
274                      'src/core/ext/filters/backend_metrics/backend_metric_filter.h',
275                      'src/core/ext/filters/backend_metrics/backend_metric_provider.h',
276                      'src/core/ext/filters/census/grpc_context.cc',
277                      'src/core/ext/filters/channel_idle/idle_filter_state.cc',
278                      'src/core/ext/filters/channel_idle/idle_filter_state.h',
279                      'src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc',
280                      'src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h',
281                      'src/core/ext/filters/deadline/deadline_filter.cc',
282                      'src/core/ext/filters/deadline/deadline_filter.h',
283                      'src/core/ext/filters/fault_injection/fault_injection_filter.cc',
284                      'src/core/ext/filters/fault_injection/fault_injection_filter.h',
285                      'src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc',
286                      'src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h',
287                      'src/core/ext/filters/http/client/http_client_filter.cc',
288                      'src/core/ext/filters/http/client/http_client_filter.h',
289                      'src/core/ext/filters/http/client_authority_filter.cc',
290                      'src/core/ext/filters/http/client_authority_filter.h',
291                      'src/core/ext/filters/http/http_filters_plugin.cc',
292                      'src/core/ext/filters/http/message_compress/compression_filter.cc',
293                      'src/core/ext/filters/http/message_compress/compression_filter.h',
294                      'src/core/ext/filters/http/server/http_server_filter.cc',
295                      'src/core/ext/filters/http/server/http_server_filter.h',
296                      'src/core/ext/filters/message_size/message_size_filter.cc',
297                      'src/core/ext/filters/message_size/message_size_filter.h',
298                      'src/core/ext/filters/rbac/rbac_filter.cc',
299                      'src/core/ext/filters/rbac/rbac_filter.h',
300                      'src/core/ext/filters/rbac/rbac_service_config_parser.cc',
301                      'src/core/ext/filters/rbac/rbac_service_config_parser.h',
302                      'src/core/ext/filters/server_config_selector/server_config_selector.h',
303                      'src/core/ext/filters/server_config_selector/server_config_selector_filter.cc',
304                      'src/core/ext/filters/server_config_selector/server_config_selector_filter.h',
305                      'src/core/ext/filters/stateful_session/stateful_session_filter.cc',
306                      'src/core/ext/filters/stateful_session/stateful_session_filter.h',
307                      'src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc',
308                      'src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h',
309                      'src/core/ext/gcp/metadata_query.cc',
310                      'src/core/ext/gcp/metadata_query.h',
311                      'src/core/ext/transport/chttp2/alpn/alpn.cc',
312                      'src/core/ext/transport/chttp2/alpn/alpn.h',
313                      'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
314                      'src/core/ext/transport/chttp2/client/chttp2_connector.h',
315                      'src/core/ext/transport/chttp2/server/chttp2_server.cc',
316                      'src/core/ext/transport/chttp2/server/chttp2_server.h',
317                      'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
318                      'src/core/ext/transport/chttp2/transport/bin_decoder.h',
319                      'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
320                      'src/core/ext/transport/chttp2/transport/bin_encoder.h',
321                      'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
322                      'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
323                      'src/core/ext/transport/chttp2/transport/context_list_entry.h',
324                      'src/core/ext/transport/chttp2/transport/decode_huff.cc',
325                      'src/core/ext/transport/chttp2/transport/decode_huff.h',
326                      'src/core/ext/transport/chttp2/transport/flow_control.cc',
327                      'src/core/ext/transport/chttp2/transport/flow_control.h',
328                      'src/core/ext/transport/chttp2/transport/frame.cc',
329                      'src/core/ext/transport/chttp2/transport/frame.h',
330                      'src/core/ext/transport/chttp2/transport/frame_data.cc',
331                      'src/core/ext/transport/chttp2/transport/frame_data.h',
332                      'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
333                      'src/core/ext/transport/chttp2/transport/frame_goaway.h',
334                      'src/core/ext/transport/chttp2/transport/frame_ping.cc',
335                      'src/core/ext/transport/chttp2/transport/frame_ping.h',
336                      'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
337                      'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
338                      'src/core/ext/transport/chttp2/transport/frame_settings.cc',
339                      'src/core/ext/transport/chttp2/transport/frame_settings.h',
340                      'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
341                      'src/core/ext/transport/chttp2/transport/frame_window_update.h',
342                      'src/core/ext/transport/chttp2/transport/hpack_constants.h',
343                      'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
344                      'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
345                      'src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc',
346                      'src/core/ext/transport/chttp2/transport/hpack_encoder_table.h',
347                      'src/core/ext/transport/chttp2/transport/hpack_parse_result.cc',
348                      'src/core/ext/transport/chttp2/transport/hpack_parse_result.h',
349                      'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
350                      'src/core/ext/transport/chttp2/transport/hpack_parser.h',
351                      'src/core/ext/transport/chttp2/transport/hpack_parser_table.cc',
352                      'src/core/ext/transport/chttp2/transport/hpack_parser_table.h',
353                      'src/core/ext/transport/chttp2/transport/http2_settings.cc',
354                      'src/core/ext/transport/chttp2/transport/http2_settings.h',
355                      'src/core/ext/transport/chttp2/transport/http_trace.cc',
356                      'src/core/ext/transport/chttp2/transport/http_trace.h',
357                      'src/core/ext/transport/chttp2/transport/huffsyms.cc',
358                      'src/core/ext/transport/chttp2/transport/huffsyms.h',
359                      'src/core/ext/transport/chttp2/transport/internal.h',
360                      'src/core/ext/transport/chttp2/transport/legacy_frame.h',
361                      'src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc',
362                      'src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h',
363                      'src/core/ext/transport/chttp2/transport/parsing.cc',
364                      'src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc',
365                      'src/core/ext/transport/chttp2/transport/ping_abuse_policy.h',
366                      'src/core/ext/transport/chttp2/transport/ping_callbacks.cc',
367                      'src/core/ext/transport/chttp2/transport/ping_callbacks.h',
368                      'src/core/ext/transport/chttp2/transport/ping_rate_policy.cc',
369                      'src/core/ext/transport/chttp2/transport/ping_rate_policy.h',
370                      'src/core/ext/transport/chttp2/transport/stream_lists.cc',
371                      'src/core/ext/transport/chttp2/transport/varint.cc',
372                      'src/core/ext/transport/chttp2/transport/varint.h',
373                      'src/core/ext/transport/chttp2/transport/write_size_policy.cc',
374                      'src/core/ext/transport/chttp2/transport/write_size_policy.h',
375                      'src/core/ext/transport/chttp2/transport/writing.cc',
376                      'src/core/ext/transport/inproc/inproc_plugin.cc',
377                      'src/core/ext/transport/inproc/inproc_transport.cc',
378                      'src/core/ext/transport/inproc/inproc_transport.h',
379                      'src/core/ext/transport/inproc/legacy_inproc_transport.cc',
380                      'src/core/ext/transport/inproc/legacy_inproc_transport.h',
381                      'src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h',
382                      'src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c',
383                      'src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h',
384                      'src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h',
385                      'src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c',
386                      'src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h',
387                      'src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h',
388                      'src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c',
389                      'src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h',
390                      'src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h',
391                      'src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c',
392                      'src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h',
393                      'src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h',
394                      'src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c',
395                      'src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h',
396                      'src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h',
397                      'src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c',
398                      'src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h',
399                      'src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h',
400                      'src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c',
401                      'src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h',
402                      'src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h',
403                      'src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c',
404                      'src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h',
405                      'src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h',
406                      'src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c',
407                      'src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h',
408                      'src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h',
409                      'src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c',
410                      'src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h',
411                      'src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h',
412                      'src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c',
413                      'src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h',
414                      'src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h',
415                      'src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c',
416                      'src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h',
417                      'src/core/ext/upb-gen/envoy/annotations/resource.upb.h',
418                      'src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c',
419                      'src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h',
420                      'src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h',
421                      'src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c',
422                      'src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h',
423                      'src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h',
424                      'src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c',
425                      'src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h',
426                      'src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h',
427                      'src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c',
428                      'src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h',
429                      'src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h',
430                      'src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c',
431                      'src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h',
432                      'src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h',
433                      'src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c',
434                      'src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h',
435                      'src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h',
436                      'src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c',
437                      'src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h',
438                      'src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h',
439                      'src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c',
440                      'src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h',
441                      'src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h',
442                      'src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c',
443                      'src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h',
444                      'src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h',
445                      'src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c',
446                      'src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h',
447                      'src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h',
448                      'src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c',
449                      'src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h',
450                      'src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h',
451                      'src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c',
452                      'src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h',
453                      'src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h',
454                      'src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c',
455                      'src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h',
456                      'src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h',
457                      'src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c',
458                      'src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h',
459                      'src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h',
460                      'src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c',
461                      'src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h',
462                      'src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h',
463                      'src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c',
464                      'src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h',
465                      'src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h',
466                      'src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c',
467                      'src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h',
468                      'src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h',
469                      'src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c',
470                      'src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h',
471                      'src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h',
472                      'src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c',
473                      'src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h',
474                      'src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h',
475                      'src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c',
476                      'src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h',
477                      'src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h',
478                      'src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c',
479                      'src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h',
480                      'src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h',
481                      'src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c',
482                      'src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h',
483                      'src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h',
484                      'src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c',
485                      'src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h',
486                      'src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h',
487                      'src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c',
488                      'src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h',
489                      'src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h',
490                      'src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c',
491                      'src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h',
492                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h',
493                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c',
494                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h',
495                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h',
496                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c',
497                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h',
498                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h',
499                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c',
500                      'src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h',
501                      'src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h',
502                      'src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c',
503                      'src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h',
504                      'src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h',
505                      'src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c',
506                      'src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h',
507                      'src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h',
508                      'src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c',
509                      'src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h',
510                      'src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h',
511                      'src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c',
512                      'src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h',
513                      'src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h',
514                      'src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c',
515                      'src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h',
516                      'src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h',
517                      'src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c',
518                      'src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h',
519                      'src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h',
520                      'src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c',
521                      'src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h',
522                      'src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h',
523                      'src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c',
524                      'src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h',
525                      'src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h',
526                      'src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c',
527                      'src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h',
528                      'src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h',
529                      'src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c',
530                      'src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h',
531                      'src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h',
532                      'src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c',
533                      'src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h',
534                      'src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h',
535                      'src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c',
536                      'src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h',
537                      'src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h',
538                      'src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c',
539                      'src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h',
540                      'src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h',
541                      'src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c',
542                      'src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h',
543                      'src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h',
544                      'src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c',
545                      'src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h',
546                      'src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h',
547                      'src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c',
548                      'src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h',
549                      'src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h',
550                      'src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c',
551                      'src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h',
552                      'src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h',
553                      'src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c',
554                      'src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h',
555                      'src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h',
556                      'src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c',
557                      'src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h',
558                      'src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h',
559                      'src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c',
560                      'src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h',
561                      'src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h',
562                      'src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c',
563                      'src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h',
564                      'src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h',
565                      'src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c',
566                      'src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h',
567                      'src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h',
568                      'src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c',
569                      'src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h',
570                      'src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h',
571                      'src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c',
572                      'src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h',
573                      'src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h',
574                      'src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c',
575                      'src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h',
576                      'src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h',
577                      'src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c',
578                      'src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h',
579                      'src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h',
580                      'src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c',
581                      'src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h',
582                      'src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h',
583                      'src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c',
584                      'src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h',
585                      'src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h',
586                      'src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c',
587                      'src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h',
588                      'src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h',
589                      'src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c',
590                      'src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h',
591                      'src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h',
592                      'src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c',
593                      'src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h',
594                      'src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h',
595                      'src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c',
596                      'src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h',
597                      'src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h',
598                      'src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c',
599                      'src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h',
600                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h',
601                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c',
602                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h',
603                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h',
604                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c',
605                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h',
606                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h',
607                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c',
608                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h',
609                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h',
610                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c',
611                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h',
612                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h',
613                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c',
614                      'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h',
615                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h',
616                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c',
617                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h',
618                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h',
619                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c',
620                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h',
621                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h',
622                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c',
623                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h',
624                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h',
625                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c',
626                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h',
627                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h',
628                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c',
629                      'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h',
630                      'src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h',
631                      'src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c',
632                      'src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h',
633                      'src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h',
634                      'src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c',
635                      'src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h',
636                      'src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h',
637                      'src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c',
638                      'src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h',
639                      'src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h',
640                      'src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c',
641                      'src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h',
642                      'src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h',
643                      'src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c',
644                      'src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h',
645                      'src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h',
646                      'src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c',
647                      'src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h',
648                      'src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h',
649                      'src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c',
650                      'src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h',
651                      'src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h',
652                      'src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c',
653                      'src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h',
654                      'src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h',
655                      'src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c',
656                      'src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h',
657                      'src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h',
658                      'src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c',
659                      'src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h',
660                      'src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h',
661                      'src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c',
662                      'src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h',
663                      'src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h',
664                      'src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c',
665                      'src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h',
666                      'src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h',
667                      'src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c',
668                      'src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h',
669                      'src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h',
670                      'src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c',
671                      'src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h',
672                      'src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h',
673                      'src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c',
674                      'src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h',
675                      'src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h',
676                      'src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c',
677                      'src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h',
678                      'src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h',
679                      'src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c',
680                      'src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h',
681                      'src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h',
682                      'src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c',
683                      'src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h',
684                      'src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h',
685                      'src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c',
686                      'src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h',
687                      'src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h',
688                      'src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c',
689                      'src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h',
690                      'src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h',
691                      'src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c',
692                      'src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h',
693                      'src/core/ext/upb-gen/envoy/type/v3/http.upb.h',
694                      'src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c',
695                      'src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h',
696                      'src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h',
697                      'src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c',
698                      'src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h',
699                      'src/core/ext/upb-gen/envoy/type/v3/percent.upb.h',
700                      'src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c',
701                      'src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h',
702                      'src/core/ext/upb-gen/envoy/type/v3/range.upb.h',
703                      'src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c',
704                      'src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h',
705                      'src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h',
706                      'src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c',
707                      'src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h',
708                      'src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h',
709                      'src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c',
710                      'src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h',
711                      'src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h',
712                      'src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c',
713                      'src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h',
714                      'src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h',
715                      'src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c',
716                      'src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h',
717                      'src/core/ext/upb-gen/google/api/annotations.upb.h',
718                      'src/core/ext/upb-gen/google/api/annotations.upb_minitable.c',
719                      'src/core/ext/upb-gen/google/api/annotations.upb_minitable.h',
720                      'src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h',
721                      'src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c',
722                      'src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h',
723                      'src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h',
724                      'src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c',
725                      'src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h',
726                      'src/core/ext/upb-gen/google/api/http.upb.h',
727                      'src/core/ext/upb-gen/google/api/http.upb_minitable.c',
728                      'src/core/ext/upb-gen/google/api/http.upb_minitable.h',
729                      'src/core/ext/upb-gen/google/api/httpbody.upb.h',
730                      'src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c',
731                      'src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h',
732                      'src/core/ext/upb-gen/google/protobuf/any.upb.h',
733                      'src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c',
734                      'src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h',
735                      'src/core/ext/upb-gen/google/protobuf/descriptor.upb.h',
736                      'src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c',
737                      'src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h',
738                      'src/core/ext/upb-gen/google/protobuf/duration.upb.h',
739                      'src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c',
740                      'src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h',
741                      'src/core/ext/upb-gen/google/protobuf/empty.upb.h',
742                      'src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c',
743                      'src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h',
744                      'src/core/ext/upb-gen/google/protobuf/struct.upb.h',
745                      'src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c',
746                      'src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h',
747                      'src/core/ext/upb-gen/google/protobuf/timestamp.upb.h',
748                      'src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c',
749                      'src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h',
750                      'src/core/ext/upb-gen/google/protobuf/wrappers.upb.h',
751                      'src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c',
752                      'src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h',
753                      'src/core/ext/upb-gen/google/rpc/status.upb.h',
754                      'src/core/ext/upb-gen/google/rpc/status.upb_minitable.c',
755                      'src/core/ext/upb-gen/google/rpc/status.upb_minitable.h',
756                      'src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h',
757                      'src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c',
758                      'src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h',
759                      'src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h',
760                      'src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c',
761                      'src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h',
762                      'src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h',
763                      'src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c',
764                      'src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h',
765                      'src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h',
766                      'src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c',
767                      'src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h',
768                      'src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h',
769                      'src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c',
770                      'src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h',
771                      'src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h',
772                      'src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c',
773                      'src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h',
774                      'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h',
775                      'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c',
776                      'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h',
777                      'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h',
778                      'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c',
779                      'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h',
780                      'src/core/ext/upb-gen/udpa/annotations/migrate.upb.h',
781                      'src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c',
782                      'src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h',
783                      'src/core/ext/upb-gen/udpa/annotations/security.upb.h',
784                      'src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c',
785                      'src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h',
786                      'src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h',
787                      'src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c',
788                      'src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h',
789                      'src/core/ext/upb-gen/udpa/annotations/status.upb.h',
790                      'src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c',
791                      'src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h',
792                      'src/core/ext/upb-gen/udpa/annotations/versioning.upb.h',
793                      'src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c',
794                      'src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h',
795                      'src/core/ext/upb-gen/validate/validate.upb.h',
796                      'src/core/ext/upb-gen/validate/validate.upb_minitable.c',
797                      'src/core/ext/upb-gen/validate/validate.upb_minitable.h',
798                      'src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h',
799                      'src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c',
800                      'src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h',
801                      'src/core/ext/upb-gen/xds/annotations/v3/security.upb.h',
802                      'src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c',
803                      'src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h',
804                      'src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h',
805                      'src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c',
806                      'src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h',
807                      'src/core/ext/upb-gen/xds/annotations/v3/status.upb.h',
808                      'src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c',
809                      'src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h',
810                      'src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h',
811                      'src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c',
812                      'src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h',
813                      'src/core/ext/upb-gen/xds/core/v3/authority.upb.h',
814                      'src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c',
815                      'src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h',
816                      'src/core/ext/upb-gen/xds/core/v3/cidr.upb.h',
817                      'src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c',
818                      'src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h',
819                      'src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h',
820                      'src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c',
821                      'src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h',
822                      'src/core/ext/upb-gen/xds/core/v3/context_params.upb.h',
823                      'src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c',
824                      'src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h',
825                      'src/core/ext/upb-gen/xds/core/v3/extension.upb.h',
826                      'src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c',
827                      'src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h',
828                      'src/core/ext/upb-gen/xds/core/v3/resource.upb.h',
829                      'src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c',
830                      'src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h',
831                      'src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h',
832                      'src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c',
833                      'src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h',
834                      'src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h',
835                      'src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c',
836                      'src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h',
837                      'src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h',
838                      'src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c',
839                      'src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h',
840                      'src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h',
841                      'src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c',
842                      'src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h',
843                      'src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h',
844                      'src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c',
845                      'src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h',
846                      'src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h',
847                      'src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c',
848                      'src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h',
849                      'src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h',
850                      'src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c',
851                      'src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h',
852                      'src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h',
853                      'src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c',
854                      'src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h',
855                      'src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h',
856                      'src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c',
857                      'src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h',
858                      'src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h',
859                      'src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c',
860                      'src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h',
861                      'src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h',
862                      'src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c',
863                      'src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h',
864                      'src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h',
865                      'src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c',
866                      'src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h',
867                      'src/core/ext/upb-gen/xds/type/v3/cel.upb.h',
868                      'src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c',
869                      'src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h',
870                      'src/core/ext/upb-gen/xds/type/v3/range.upb.h',
871                      'src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c',
872                      'src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h',
873                      'src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h',
874                      'src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c',
875                      'src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h',
876                      'src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c',
877                      'src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h',
878                      'src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c',
879                      'src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h',
880                      'src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c',
881                      'src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h',
882                      'src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c',
883                      'src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h',
884                      'src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c',
885                      'src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h',
886                      'src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c',
887                      'src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h',
888                      'src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c',
889                      'src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h',
890                      'src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c',
891                      'src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h',
892                      'src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c',
893                      'src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h',
894                      'src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c',
895                      'src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h',
896                      'src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c',
897                      'src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h',
898                      'src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c',
899                      'src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h',
900                      'src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c',
901                      'src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h',
902                      'src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c',
903                      'src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h',
904                      'src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c',
905                      'src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h',
906                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c',
907                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h',
908                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c',
909                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h',
910                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c',
911                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h',
912                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c',
913                      'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h',
914                      'src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c',
915                      'src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h',
916                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c',
917                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h',
918                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c',
919                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h',
920                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c',
921                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h',
922                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c',
923                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h',
924                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c',
925                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h',
926                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c',
927                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h',
928                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c',
929                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h',
930                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c',
931                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h',
932                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c',
933                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h',
934                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c',
935                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h',
936                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c',
937                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h',
938                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c',
939                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h',
940                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c',
941                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h',
942                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c',
943                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h',
944                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c',
945                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h',
946                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c',
947                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h',
948                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c',
949                      'src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h',
950                      'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c',
951                      'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h',
952                      'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c',
953                      'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h',
954                      'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c',
955                      'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h',
956                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c',
957                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h',
958                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c',
959                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h',
960                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c',
961                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h',
962                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c',
963                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h',
964                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c',
965                      'src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h',
966                      'src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c',
967                      'src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h',
968                      'src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c',
969                      'src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h',
970                      'src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c',
971                      'src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h',
972                      'src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c',
973                      'src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h',
974                      'src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c',
975                      'src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h',
976                      'src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c',
977                      'src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h',
978                      'src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c',
979                      'src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h',
980                      'src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c',
981                      'src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h',
982                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c',
983                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h',
984                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c',
985                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h',
986                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c',
987                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h',
988                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c',
989                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h',
990                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c',
991                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h',
992                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c',
993                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h',
994                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c',
995                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h',
996                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c',
997                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h',
998                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c',
999                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h',
1000                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c',
1001                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h',
1002                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c',
1003                      'src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h',
1004                      'src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c',
1005                      'src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h',
1006                      'src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c',
1007                      'src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h',
1008                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c',
1009                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h',
1010                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c',
1011                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h',
1012                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c',
1013                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h',
1014                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c',
1015                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h',
1016                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c',
1017                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h',
1018                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c',
1019                      'src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h',
1020                      'src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c',
1021                      'src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h',
1022                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c',
1023                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h',
1024                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c',
1025                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h',
1026                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c',
1027                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h',
1028                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c',
1029                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h',
1030                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c',
1031                      'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h',
1032                      'src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c',
1033                      'src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h',
1034                      'src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c',
1035                      'src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h',
1036                      'src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c',
1037                      'src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h',
1038                      'src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c',
1039                      'src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h',
1040                      'src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c',
1041                      'src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h',
1042                      'src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c',
1043                      'src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h',
1044                      'src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c',
1045                      'src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h',
1046                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c',
1047                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h',
1048                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c',
1049                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h',
1050                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c',
1051                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h',
1052                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c',
1053                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h',
1054                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c',
1055                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h',
1056                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c',
1057                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h',
1058                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c',
1059                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h',
1060                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c',
1061                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h',
1062                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c',
1063                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h',
1064                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c',
1065                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h',
1066                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c',
1067                      'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h',
1068                      'src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c',
1069                      'src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h',
1070                      'src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c',
1071                      'src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h',
1072                      'src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c',
1073                      'src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h',
1074                      'src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c',
1075                      'src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h',
1076                      'src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c',
1077                      'src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h',
1078                      'src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c',
1079                      'src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h',
1080                      'src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c',
1081                      'src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h',
1082                      'src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c',
1083                      'src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h',
1084                      'src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c',
1085                      'src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h',
1086                      'src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c',
1087                      'src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h',
1088                      'src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c',
1089                      'src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h',
1090                      'src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c',
1091                      'src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h',
1092                      'src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c',
1093                      'src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h',
1094                      'src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c',
1095                      'src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h',
1096                      'src/core/ext/upbdefs-gen/google/api/http.upbdefs.c',
1097                      'src/core/ext/upbdefs-gen/google/api/http.upbdefs.h',
1098                      'src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c',
1099                      'src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h',
1100                      'src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c',
1101                      'src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h',
1102                      'src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c',
1103                      'src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h',
1104                      'src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c',
1105                      'src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h',
1106                      'src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c',
1107                      'src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h',
1108                      'src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c',
1109                      'src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h',
1110                      'src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c',
1111                      'src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h',
1112                      'src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c',
1113                      'src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h',
1114                      'src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c',
1115                      'src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h',
1116                      'src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c',
1117                      'src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h',
1118                      'src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c',
1119                      'src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h',
1120                      'src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c',
1121                      'src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h',
1122                      'src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c',
1123                      'src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h',
1124                      'src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c',
1125                      'src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h',
1126                      'src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c',
1127                      'src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h',
1128                      'src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c',
1129                      'src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h',
1130                      'src/core/ext/upbdefs-gen/validate/validate.upbdefs.c',
1131                      'src/core/ext/upbdefs-gen/validate/validate.upbdefs.h',
1132                      'src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c',
1133                      'src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h',
1134                      'src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c',
1135                      'src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h',
1136                      'src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c',
1137                      'src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h',
1138                      'src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c',
1139                      'src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h',
1140                      'src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c',
1141                      'src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h',
1142                      'src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c',
1143                      'src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h',
1144                      'src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c',
1145                      'src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h',
1146                      'src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c',
1147                      'src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h',
1148                      'src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c',
1149                      'src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h',
1150                      'src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c',
1151                      'src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h',
1152                      'src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c',
1153                      'src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h',
1154                      'src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c',
1155                      'src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h',
1156                      'src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c',
1157                      'src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h',
1158                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c',
1159                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h',
1160                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c',
1161                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h',
1162                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c',
1163                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h',
1164                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c',
1165                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h',
1166                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c',
1167                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h',
1168                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c',
1169                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h',
1170                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c',
1171                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h',
1172                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c',
1173                      'src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h',
1174                      'src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c',
1175                      'src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h',
1176                      'src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c',
1177                      'src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h',
1178                      'src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c',
1179                      'src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h',
1180                      'src/core/ext/xds/certificate_provider_store.cc',
1181                      'src/core/ext/xds/certificate_provider_store.h',
1182                      'src/core/ext/xds/file_watcher_certificate_provider_factory.cc',
1183                      'src/core/ext/xds/file_watcher_certificate_provider_factory.h',
1184                      'src/core/ext/xds/upb_utils.h',
1185                      'src/core/ext/xds/xds_api.cc',
1186                      'src/core/ext/xds/xds_api.h',
1187                      'src/core/ext/xds/xds_audit_logger_registry.cc',
1188                      'src/core/ext/xds/xds_audit_logger_registry.h',
1189                      'src/core/ext/xds/xds_bootstrap.cc',
1190                      'src/core/ext/xds/xds_bootstrap.h',
1191                      'src/core/ext/xds/xds_bootstrap_grpc.cc',
1192                      'src/core/ext/xds/xds_bootstrap_grpc.h',
1193                      'src/core/ext/xds/xds_certificate_provider.cc',
1194                      'src/core/ext/xds/xds_certificate_provider.h',
1195                      'src/core/ext/xds/xds_channel_args.h',
1196                      'src/core/ext/xds/xds_channel_stack_modifier.cc',
1197                      'src/core/ext/xds/xds_channel_stack_modifier.h',
1198                      'src/core/ext/xds/xds_client.cc',
1199                      'src/core/ext/xds/xds_client.h',
1200                      'src/core/ext/xds/xds_client_grpc.cc',
1201                      'src/core/ext/xds/xds_client_grpc.h',
1202                      'src/core/ext/xds/xds_client_stats.cc',
1203                      'src/core/ext/xds/xds_client_stats.h',
1204                      'src/core/ext/xds/xds_cluster.cc',
1205                      'src/core/ext/xds/xds_cluster.h',
1206                      'src/core/ext/xds/xds_cluster_specifier_plugin.cc',
1207                      'src/core/ext/xds/xds_cluster_specifier_plugin.h',
1208                      'src/core/ext/xds/xds_common_types.cc',
1209                      'src/core/ext/xds/xds_common_types.h',
1210                      'src/core/ext/xds/xds_endpoint.cc',
1211                      'src/core/ext/xds/xds_endpoint.h',
1212                      'src/core/ext/xds/xds_health_status.cc',
1213                      'src/core/ext/xds/xds_health_status.h',
1214                      'src/core/ext/xds/xds_http_fault_filter.cc',
1215                      'src/core/ext/xds/xds_http_fault_filter.h',
1216                      'src/core/ext/xds/xds_http_filters.cc',
1217                      'src/core/ext/xds/xds_http_filters.h',
1218                      'src/core/ext/xds/xds_http_rbac_filter.cc',
1219                      'src/core/ext/xds/xds_http_rbac_filter.h',
1220                      'src/core/ext/xds/xds_http_stateful_session_filter.cc',
1221                      'src/core/ext/xds/xds_http_stateful_session_filter.h',
1222                      'src/core/ext/xds/xds_lb_policy_registry.cc',
1223                      'src/core/ext/xds/xds_lb_policy_registry.h',
1224                      'src/core/ext/xds/xds_listener.cc',
1225                      'src/core/ext/xds/xds_listener.h',
1226                      'src/core/ext/xds/xds_metrics.h',
1227                      'src/core/ext/xds/xds_resource_type.h',
1228                      'src/core/ext/xds/xds_resource_type_impl.h',
1229                      'src/core/ext/xds/xds_route_config.cc',
1230                      'src/core/ext/xds/xds_route_config.h',
1231                      'src/core/ext/xds/xds_routing.cc',
1232                      'src/core/ext/xds/xds_routing.h',
1233                      'src/core/ext/xds/xds_server_config_fetcher.cc',
1234                      'src/core/ext/xds/xds_transport.h',
1235                      'src/core/ext/xds/xds_transport_grpc.cc',
1236                      'src/core/ext/xds/xds_transport_grpc.h',
1237                      'src/core/lib/address_utils/parse_address.cc',
1238                      'src/core/lib/address_utils/parse_address.h',
1239                      'src/core/lib/address_utils/sockaddr_utils.cc',
1240                      'src/core/lib/address_utils/sockaddr_utils.h',
1241                      'src/core/lib/avl/avl.h',
1242                      'src/core/lib/backoff/backoff.cc',
1243                      'src/core/lib/backoff/backoff.h',
1244                      'src/core/lib/backoff/random_early_detection.cc',
1245                      'src/core/lib/backoff/random_early_detection.h',
1246                      'src/core/lib/channel/call_finalization.h',
1247                      'src/core/lib/channel/call_tracer.cc',
1248                      'src/core/lib/channel/call_tracer.h',
1249                      'src/core/lib/channel/channel_args.cc',
1250                      'src/core/lib/channel/channel_args.h',
1251                      'src/core/lib/channel/channel_args_preconditioning.cc',
1252                      'src/core/lib/channel/channel_args_preconditioning.h',
1253                      'src/core/lib/channel/channel_fwd.h',
1254                      'src/core/lib/channel/channel_stack.cc',
1255                      'src/core/lib/channel/channel_stack.h',
1256                      'src/core/lib/channel/channel_stack_builder.cc',
1257                      'src/core/lib/channel/channel_stack_builder.h',
1258                      'src/core/lib/channel/channel_stack_builder_impl.cc',
1259                      'src/core/lib/channel/channel_stack_builder_impl.h',
1260                      'src/core/lib/channel/channel_stack_trace.cc',
1261                      'src/core/lib/channel/channel_stack_trace.h',
1262                      'src/core/lib/channel/channel_trace.cc',
1263                      'src/core/lib/channel/channel_trace.h',
1264                      'src/core/lib/channel/channelz.cc',
1265                      'src/core/lib/channel/channelz.h',
1266                      'src/core/lib/channel/channelz_registry.cc',
1267                      'src/core/lib/channel/channelz_registry.h',
1268                      'src/core/lib/channel/connected_channel.cc',
1269                      'src/core/lib/channel/connected_channel.h',
1270                      'src/core/lib/channel/context.h',
1271                      'src/core/lib/channel/metrics.cc',
1272                      'src/core/lib/channel/metrics.h',
1273                      'src/core/lib/channel/promise_based_filter.cc',
1274                      'src/core/lib/channel/promise_based_filter.h',
1275                      'src/core/lib/channel/server_call_tracer_filter.cc',
1276                      'src/core/lib/channel/server_call_tracer_filter.h',
1277                      'src/core/lib/channel/status_util.cc',
1278                      'src/core/lib/channel/status_util.h',
1279                      'src/core/lib/channel/tcp_tracer.h',
1280                      'src/core/lib/compression/compression.cc',
1281                      'src/core/lib/compression/compression_internal.cc',
1282                      'src/core/lib/compression/compression_internal.h',
1283                      'src/core/lib/compression/message_compress.cc',
1284                      'src/core/lib/compression/message_compress.h',
1285                      'src/core/lib/config/config_vars.cc',
1286                      'src/core/lib/config/config_vars.h',
1287                      'src/core/lib/config/config_vars_non_generated.cc',
1288                      'src/core/lib/config/core_configuration.cc',
1289                      'src/core/lib/config/core_configuration.h',
1290                      'src/core/lib/config/load_config.cc',
1291                      'src/core/lib/config/load_config.h',
1292                      'src/core/lib/debug/event_log.cc',
1293                      'src/core/lib/debug/event_log.h',
1294                      'src/core/lib/debug/histogram_view.cc',
1295                      'src/core/lib/debug/histogram_view.h',
1296                      'src/core/lib/debug/stats.cc',
1297                      'src/core/lib/debug/stats.h',
1298                      'src/core/lib/debug/stats_data.cc',
1299                      'src/core/lib/debug/stats_data.h',
1300                      'src/core/lib/debug/trace.cc',
1301                      'src/core/lib/debug/trace.h',
1302                      'src/core/lib/event_engine/ares_resolver.cc',
1303                      'src/core/lib/event_engine/ares_resolver.h',
1304                      'src/core/lib/event_engine/cf_engine/cf_engine.cc',
1305                      'src/core/lib/event_engine/cf_engine/cf_engine.h',
1306                      'src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc',
1307                      'src/core/lib/event_engine/cf_engine/cfstream_endpoint.h',
1308                      'src/core/lib/event_engine/cf_engine/cftype_unique_ref.h',
1309                      'src/core/lib/event_engine/cf_engine/dns_service_resolver.cc',
1310                      'src/core/lib/event_engine/cf_engine/dns_service_resolver.h',
1311                      'src/core/lib/event_engine/channel_args_endpoint_config.cc',
1312                      'src/core/lib/event_engine/channel_args_endpoint_config.h',
1313                      'src/core/lib/event_engine/common_closures.h',
1314                      'src/core/lib/event_engine/default_event_engine.cc',
1315                      'src/core/lib/event_engine/default_event_engine.h',
1316                      'src/core/lib/event_engine/default_event_engine_factory.cc',
1317                      'src/core/lib/event_engine/default_event_engine_factory.h',
1318                      'src/core/lib/event_engine/event_engine.cc',
1319                      'src/core/lib/event_engine/event_engine_context.h',
1320                      'src/core/lib/event_engine/extensions/can_track_errors.h',
1321                      'src/core/lib/event_engine/extensions/chaotic_good_extension.h',
1322                      'src/core/lib/event_engine/extensions/supports_fd.h',
1323                      'src/core/lib/event_engine/forkable.cc',
1324                      'src/core/lib/event_engine/forkable.h',
1325                      'src/core/lib/event_engine/grpc_polled_fd.h',
1326                      'src/core/lib/event_engine/handle_containers.h',
1327                      'src/core/lib/event_engine/memory_allocator_factory.h',
1328                      'src/core/lib/event_engine/nameser.h',
1329                      'src/core/lib/event_engine/poller.h',
1330                      'src/core/lib/event_engine/posix.h',
1331                      'src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc',
1332                      'src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h',
1333                      'src/core/lib/event_engine/posix_engine/ev_poll_posix.cc',
1334                      'src/core/lib/event_engine/posix_engine/ev_poll_posix.h',
1335                      'src/core/lib/event_engine/posix_engine/event_poller.h',
1336                      'src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc',
1337                      'src/core/lib/event_engine/posix_engine/event_poller_posix_default.h',
1338                      'src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h',
1339                      'src/core/lib/event_engine/posix_engine/internal_errqueue.cc',
1340                      'src/core/lib/event_engine/posix_engine/internal_errqueue.h',
1341                      'src/core/lib/event_engine/posix_engine/lockfree_event.cc',
1342                      'src/core/lib/event_engine/posix_engine/lockfree_event.h',
1343                      'src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc',
1344                      'src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h',
1345                      'src/core/lib/event_engine/posix_engine/posix_endpoint.cc',
1346                      'src/core/lib/event_engine/posix_engine/posix_endpoint.h',
1347                      'src/core/lib/event_engine/posix_engine/posix_engine.cc',
1348                      'src/core/lib/event_engine/posix_engine/posix_engine.h',
1349                      'src/core/lib/event_engine/posix_engine/posix_engine_closure.h',
1350                      'src/core/lib/event_engine/posix_engine/posix_engine_listener.cc',
1351                      'src/core/lib/event_engine/posix_engine/posix_engine_listener.h',
1352                      'src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc',
1353                      'src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h',
1354                      'src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc',
1355                      'src/core/lib/event_engine/posix_engine/tcp_socket_utils.h',
1356                      'src/core/lib/event_engine/posix_engine/timer.cc',
1357                      'src/core/lib/event_engine/posix_engine/timer.h',
1358                      'src/core/lib/event_engine/posix_engine/timer_heap.cc',
1359                      'src/core/lib/event_engine/posix_engine/timer_heap.h',
1360                      'src/core/lib/event_engine/posix_engine/timer_manager.cc',
1361                      'src/core/lib/event_engine/posix_engine/timer_manager.h',
1362                      'src/core/lib/event_engine/posix_engine/traced_buffer_list.cc',
1363                      'src/core/lib/event_engine/posix_engine/traced_buffer_list.h',
1364                      'src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc',
1365                      'src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h',
1366                      'src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc',
1367                      'src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h',
1368                      'src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h',
1369                      'src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc',
1370                      'src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h',
1371                      'src/core/lib/event_engine/query_extensions.h',
1372                      'src/core/lib/event_engine/ref_counted_dns_resolver_interface.h',
1373                      'src/core/lib/event_engine/resolved_address.cc',
1374                      'src/core/lib/event_engine/resolved_address_internal.h',
1375                      'src/core/lib/event_engine/shim.cc',
1376                      'src/core/lib/event_engine/shim.h',
1377                      'src/core/lib/event_engine/slice.cc',
1378                      'src/core/lib/event_engine/slice_buffer.cc',
1379                      'src/core/lib/event_engine/tcp_socket_utils.cc',
1380                      'src/core/lib/event_engine/tcp_socket_utils.h',
1381                      'src/core/lib/event_engine/thread_local.cc',
1382                      'src/core/lib/event_engine/thread_local.h',
1383                      'src/core/lib/event_engine/thread_pool/thread_count.cc',
1384                      'src/core/lib/event_engine/thread_pool/thread_count.h',
1385                      'src/core/lib/event_engine/thread_pool/thread_pool.h',
1386                      'src/core/lib/event_engine/thread_pool/thread_pool_factory.cc',
1387                      'src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc',
1388                      'src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h',
1389                      'src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc',
1390                      'src/core/lib/event_engine/thready_event_engine/thready_event_engine.h',
1391                      'src/core/lib/event_engine/time_util.cc',
1392                      'src/core/lib/event_engine/time_util.h',
1393                      'src/core/lib/event_engine/trace.cc',
1394                      'src/core/lib/event_engine/trace.h',
1395                      'src/core/lib/event_engine/utils.cc',
1396                      'src/core/lib/event_engine/utils.h',
1397                      'src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc',
1398                      'src/core/lib/event_engine/windows/grpc_polled_fd_windows.h',
1399                      'src/core/lib/event_engine/windows/iocp.cc',
1400                      'src/core/lib/event_engine/windows/iocp.h',
1401                      'src/core/lib/event_engine/windows/native_windows_dns_resolver.cc',
1402                      'src/core/lib/event_engine/windows/native_windows_dns_resolver.h',
1403                      'src/core/lib/event_engine/windows/win_socket.cc',
1404                      'src/core/lib/event_engine/windows/win_socket.h',
1405                      'src/core/lib/event_engine/windows/windows_endpoint.cc',
1406                      'src/core/lib/event_engine/windows/windows_endpoint.h',
1407                      'src/core/lib/event_engine/windows/windows_engine.cc',
1408                      'src/core/lib/event_engine/windows/windows_engine.h',
1409                      'src/core/lib/event_engine/windows/windows_listener.cc',
1410                      'src/core/lib/event_engine/windows/windows_listener.h',
1411                      'src/core/lib/event_engine/work_queue/basic_work_queue.cc',
1412                      'src/core/lib/event_engine/work_queue/basic_work_queue.h',
1413                      'src/core/lib/event_engine/work_queue/work_queue.h',
1414                      'src/core/lib/experiments/config.cc',
1415                      'src/core/lib/experiments/config.h',
1416                      'src/core/lib/experiments/experiments.cc',
1417                      'src/core/lib/experiments/experiments.h',
1418                      'src/core/lib/gpr/alloc.cc',
1419                      'src/core/lib/gpr/alloc.h',
1420                      'src/core/lib/gpr/android/log.cc',
1421                      'src/core/lib/gpr/atm.cc',
1422                      'src/core/lib/gpr/iphone/cpu.cc',
1423                      'src/core/lib/gpr/linux/cpu.cc',
1424                      'src/core/lib/gpr/linux/log.cc',
1425                      'src/core/lib/gpr/log.cc',
1426                      'src/core/lib/gpr/log_internal.h',
1427                      'src/core/lib/gpr/msys/tmpfile.cc',
1428                      'src/core/lib/gpr/posix/cpu.cc',
1429                      'src/core/lib/gpr/posix/log.cc',
1430                      'src/core/lib/gpr/posix/string.cc',
1431                      'src/core/lib/gpr/posix/sync.cc',
1432                      'src/core/lib/gpr/posix/time.cc',
1433                      'src/core/lib/gpr/posix/tmpfile.cc',
1434                      'src/core/lib/gpr/spinlock.h',
1435                      'src/core/lib/gpr/string.cc',
1436                      'src/core/lib/gpr/string.h',
1437                      'src/core/lib/gpr/sync.cc',
1438                      'src/core/lib/gpr/sync_abseil.cc',
1439                      'src/core/lib/gpr/time.cc',
1440                      'src/core/lib/gpr/time_precise.cc',
1441                      'src/core/lib/gpr/time_precise.h',
1442                      'src/core/lib/gpr/tmpfile.h',
1443                      'src/core/lib/gpr/useful.h',
1444                      'src/core/lib/gpr/windows/cpu.cc',
1445                      'src/core/lib/gpr/windows/log.cc',
1446                      'src/core/lib/gpr/windows/string.cc',
1447                      'src/core/lib/gpr/windows/string_util.cc',
1448                      'src/core/lib/gpr/windows/sync.cc',
1449                      'src/core/lib/gpr/windows/time.cc',
1450                      'src/core/lib/gpr/windows/tmpfile.cc',
1451                      'src/core/lib/gprpp/atomic_utils.h',
1452                      'src/core/lib/gprpp/bitset.h',
1453                      'src/core/lib/gprpp/chunked_vector.h',
1454                      'src/core/lib/gprpp/construct_destruct.h',
1455                      'src/core/lib/gprpp/cpp_impl_of.h',
1456                      'src/core/lib/gprpp/crash.cc',
1457                      'src/core/lib/gprpp/crash.h',
1458                      'src/core/lib/gprpp/debug_location.h',
1459                      'src/core/lib/gprpp/directory_reader.h',
1460                      'src/core/lib/gprpp/down_cast.h',
1461                      'src/core/lib/gprpp/dual_ref_counted.h',
1462                      'src/core/lib/gprpp/env.h',
1463                      'src/core/lib/gprpp/examine_stack.cc',
1464                      'src/core/lib/gprpp/examine_stack.h',
1465                      'src/core/lib/gprpp/fork.cc',
1466                      'src/core/lib/gprpp/fork.h',
1467                      'src/core/lib/gprpp/host_port.cc',
1468                      'src/core/lib/gprpp/host_port.h',
1469                      'src/core/lib/gprpp/if_list.h',
1470                      'src/core/lib/gprpp/linux/env.cc',
1471                      'src/core/lib/gprpp/load_file.cc',
1472                      'src/core/lib/gprpp/load_file.h',
1473                      'src/core/lib/gprpp/manual_constructor.h',
1474                      'src/core/lib/gprpp/match.h',
1475                      'src/core/lib/gprpp/memory.h',
1476                      'src/core/lib/gprpp/mpscq.cc',
1477                      'src/core/lib/gprpp/mpscq.h',
1478                      'src/core/lib/gprpp/no_destruct.h',
1479                      'src/core/lib/gprpp/notification.h',
1480                      'src/core/lib/gprpp/orphanable.h',
1481                      'src/core/lib/gprpp/overload.h',
1482                      'src/core/lib/gprpp/packed_table.h',
1483                      'src/core/lib/gprpp/per_cpu.cc',
1484                      'src/core/lib/gprpp/per_cpu.h',
1485                      'src/core/lib/gprpp/posix/directory_reader.cc',
1486                      'src/core/lib/gprpp/posix/env.cc',
1487                      'src/core/lib/gprpp/posix/stat.cc',
1488                      'src/core/lib/gprpp/posix/thd.cc',
1489                      'src/core/lib/gprpp/ref_counted.h',
1490                      'src/core/lib/gprpp/ref_counted_ptr.h',
1491                      'src/core/lib/gprpp/ref_counted_string.cc',
1492                      'src/core/lib/gprpp/ref_counted_string.h',
1493                      'src/core/lib/gprpp/single_set_ptr.h',
1494                      'src/core/lib/gprpp/sorted_pack.h',
1495                      'src/core/lib/gprpp/stat.h',
1496                      'src/core/lib/gprpp/status_helper.cc',
1497                      'src/core/lib/gprpp/status_helper.h',
1498                      'src/core/lib/gprpp/strerror.cc',
1499                      'src/core/lib/gprpp/strerror.h',
1500                      'src/core/lib/gprpp/sync.h',
1501                      'src/core/lib/gprpp/table.h',
1502                      'src/core/lib/gprpp/tchar.cc',
1503                      'src/core/lib/gprpp/tchar.h',
1504                      'src/core/lib/gprpp/thd.h',
1505                      'src/core/lib/gprpp/time.cc',
1506                      'src/core/lib/gprpp/time.h',
1507                      'src/core/lib/gprpp/time_averaged_stats.cc',
1508                      'src/core/lib/gprpp/time_averaged_stats.h',
1509                      'src/core/lib/gprpp/time_util.cc',
1510                      'src/core/lib/gprpp/time_util.h',
1511                      'src/core/lib/gprpp/type_list.h',
1512                      'src/core/lib/gprpp/unique_type_name.h',
1513                      'src/core/lib/gprpp/uuid_v4.cc',
1514                      'src/core/lib/gprpp/uuid_v4.h',
1515                      'src/core/lib/gprpp/validation_errors.cc',
1516                      'src/core/lib/gprpp/validation_errors.h',
1517                      'src/core/lib/gprpp/windows/directory_reader.cc',
1518                      'src/core/lib/gprpp/windows/env.cc',
1519                      'src/core/lib/gprpp/windows/stat.cc',
1520                      'src/core/lib/gprpp/windows/thd.cc',
1521                      'src/core/lib/gprpp/work_serializer.cc',
1522                      'src/core/lib/gprpp/work_serializer.h',
1523                      'src/core/lib/gprpp/xxhash_inline.h',
1524                      'src/core/lib/handshaker/proxy_mapper.h',
1525                      'src/core/lib/handshaker/proxy_mapper_registry.cc',
1526                      'src/core/lib/handshaker/proxy_mapper_registry.h',
1527                      'src/core/lib/http/format_request.cc',
1528                      'src/core/lib/http/format_request.h',
1529                      'src/core/lib/http/httpcli.cc',
1530                      'src/core/lib/http/httpcli.h',
1531                      'src/core/lib/http/httpcli_security_connector.cc',
1532                      'src/core/lib/http/httpcli_ssl_credentials.h',
1533                      'src/core/lib/http/parser.cc',
1534                      'src/core/lib/http/parser.h',
1535                      'src/core/lib/iomgr/block_annotate.h',
1536                      'src/core/lib/iomgr/buffer_list.cc',
1537                      'src/core/lib/iomgr/buffer_list.h',
1538                      'src/core/lib/iomgr/call_combiner.cc',
1539                      'src/core/lib/iomgr/call_combiner.h',
1540                      'src/core/lib/iomgr/cfstream_handle.cc',
1541                      'src/core/lib/iomgr/cfstream_handle.h',
1542                      'src/core/lib/iomgr/closure.cc',
1543                      'src/core/lib/iomgr/closure.h',
1544                      'src/core/lib/iomgr/combiner.cc',
1545                      'src/core/lib/iomgr/combiner.h',
1546                      'src/core/lib/iomgr/dualstack_socket_posix.cc',
1547                      'src/core/lib/iomgr/dynamic_annotations.h',
1548                      'src/core/lib/iomgr/endpoint.cc',
1549                      'src/core/lib/iomgr/endpoint.h',
1550                      'src/core/lib/iomgr/endpoint_cfstream.cc',
1551                      'src/core/lib/iomgr/endpoint_cfstream.h',
1552                      'src/core/lib/iomgr/endpoint_pair.h',
1553                      'src/core/lib/iomgr/endpoint_pair_posix.cc',
1554                      'src/core/lib/iomgr/endpoint_pair_windows.cc',
1555                      'src/core/lib/iomgr/error.cc',
1556                      'src/core/lib/iomgr/error.h',
1557                      'src/core/lib/iomgr/error_cfstream.cc',
1558                      'src/core/lib/iomgr/error_cfstream.h',
1559                      'src/core/lib/iomgr/ev_apple.cc',
1560                      'src/core/lib/iomgr/ev_apple.h',
1561                      'src/core/lib/iomgr/ev_epoll1_linux.cc',
1562                      'src/core/lib/iomgr/ev_epoll1_linux.h',
1563                      'src/core/lib/iomgr/ev_poll_posix.cc',
1564                      'src/core/lib/iomgr/ev_poll_posix.h',
1565                      'src/core/lib/iomgr/ev_posix.cc',
1566                      'src/core/lib/iomgr/ev_posix.h',
1567                      'src/core/lib/iomgr/ev_windows.cc',
1568                      'src/core/lib/iomgr/event_engine_shims/closure.cc',
1569                      'src/core/lib/iomgr/event_engine_shims/closure.h',
1570                      'src/core/lib/iomgr/event_engine_shims/endpoint.cc',
1571                      'src/core/lib/iomgr/event_engine_shims/endpoint.h',
1572                      'src/core/lib/iomgr/event_engine_shims/tcp_client.cc',
1573                      'src/core/lib/iomgr/event_engine_shims/tcp_client.h',
1574                      'src/core/lib/iomgr/exec_ctx.cc',
1575                      'src/core/lib/iomgr/exec_ctx.h',
1576                      'src/core/lib/iomgr/executor.cc',
1577                      'src/core/lib/iomgr/executor.h',
1578                      'src/core/lib/iomgr/fork_posix.cc',
1579                      'src/core/lib/iomgr/fork_windows.cc',
1580                      'src/core/lib/iomgr/gethostname.h',
1581                      'src/core/lib/iomgr/gethostname_fallback.cc',
1582                      'src/core/lib/iomgr/gethostname_host_name_max.cc',
1583                      'src/core/lib/iomgr/gethostname_sysconf.cc',
1584                      'src/core/lib/iomgr/grpc_if_nametoindex.h',
1585                      'src/core/lib/iomgr/grpc_if_nametoindex_posix.cc',
1586                      'src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc',
1587                      'src/core/lib/iomgr/internal_errqueue.cc',
1588                      'src/core/lib/iomgr/internal_errqueue.h',
1589                      'src/core/lib/iomgr/iocp_windows.cc',
1590                      'src/core/lib/iomgr/iocp_windows.h',
1591                      'src/core/lib/iomgr/iomgr.cc',
1592                      'src/core/lib/iomgr/iomgr.h',
1593                      'src/core/lib/iomgr/iomgr_fwd.h',
1594                      'src/core/lib/iomgr/iomgr_internal.cc',
1595                      'src/core/lib/iomgr/iomgr_internal.h',
1596                      'src/core/lib/iomgr/iomgr_posix.cc',
1597                      'src/core/lib/iomgr/iomgr_posix_cfstream.cc',
1598                      'src/core/lib/iomgr/iomgr_windows.cc',
1599                      'src/core/lib/iomgr/lockfree_event.cc',
1600                      'src/core/lib/iomgr/lockfree_event.h',
1601                      'src/core/lib/iomgr/nameser.h',
1602                      'src/core/lib/iomgr/polling_entity.cc',
1603                      'src/core/lib/iomgr/polling_entity.h',
1604                      'src/core/lib/iomgr/pollset.cc',
1605                      'src/core/lib/iomgr/pollset.h',
1606                      'src/core/lib/iomgr/pollset_set.cc',
1607                      'src/core/lib/iomgr/pollset_set.h',
1608                      'src/core/lib/iomgr/pollset_set_windows.cc',
1609                      'src/core/lib/iomgr/pollset_set_windows.h',
1610                      'src/core/lib/iomgr/pollset_windows.cc',
1611                      'src/core/lib/iomgr/pollset_windows.h',
1612                      'src/core/lib/iomgr/port.h',
1613                      'src/core/lib/iomgr/python_util.h',
1614                      'src/core/lib/iomgr/resolve_address.cc',
1615                      'src/core/lib/iomgr/resolve_address.h',
1616                      'src/core/lib/iomgr/resolve_address_impl.h',
1617                      'src/core/lib/iomgr/resolve_address_posix.cc',
1618                      'src/core/lib/iomgr/resolve_address_posix.h',
1619                      'src/core/lib/iomgr/resolve_address_windows.cc',
1620                      'src/core/lib/iomgr/resolve_address_windows.h',
1621                      'src/core/lib/iomgr/resolved_address.h',
1622                      'src/core/lib/iomgr/sockaddr.h',
1623                      'src/core/lib/iomgr/sockaddr_posix.h',
1624                      'src/core/lib/iomgr/sockaddr_utils_posix.cc',
1625                      'src/core/lib/iomgr/sockaddr_windows.h',
1626                      'src/core/lib/iomgr/socket_factory_posix.cc',
1627                      'src/core/lib/iomgr/socket_factory_posix.h',
1628                      'src/core/lib/iomgr/socket_mutator.cc',
1629                      'src/core/lib/iomgr/socket_mutator.h',
1630                      'src/core/lib/iomgr/socket_utils.h',
1631                      'src/core/lib/iomgr/socket_utils_common_posix.cc',
1632                      'src/core/lib/iomgr/socket_utils_linux.cc',
1633                      'src/core/lib/iomgr/socket_utils_posix.cc',
1634                      'src/core/lib/iomgr/socket_utils_posix.h',
1635                      'src/core/lib/iomgr/socket_utils_windows.cc',
1636                      'src/core/lib/iomgr/socket_windows.cc',
1637                      'src/core/lib/iomgr/socket_windows.h',
1638                      'src/core/lib/iomgr/systemd_utils.cc',
1639                      'src/core/lib/iomgr/systemd_utils.h',
1640                      'src/core/lib/iomgr/tcp_client.cc',
1641                      'src/core/lib/iomgr/tcp_client.h',
1642                      'src/core/lib/iomgr/tcp_client_cfstream.cc',
1643                      'src/core/lib/iomgr/tcp_client_posix.cc',
1644                      'src/core/lib/iomgr/tcp_client_posix.h',
1645                      'src/core/lib/iomgr/tcp_client_windows.cc',
1646                      'src/core/lib/iomgr/tcp_posix.cc',
1647                      'src/core/lib/iomgr/tcp_posix.h',
1648                      'src/core/lib/iomgr/tcp_server.cc',
1649                      'src/core/lib/iomgr/tcp_server.h',
1650                      'src/core/lib/iomgr/tcp_server_posix.cc',
1651                      'src/core/lib/iomgr/tcp_server_utils_posix.h',
1652                      'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
1653                      'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
1654                      'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
1655                      'src/core/lib/iomgr/tcp_server_windows.cc',
1656                      'src/core/lib/iomgr/tcp_windows.cc',
1657                      'src/core/lib/iomgr/tcp_windows.h',
1658                      'src/core/lib/iomgr/timer.cc',
1659                      'src/core/lib/iomgr/timer.h',
1660                      'src/core/lib/iomgr/timer_generic.cc',
1661                      'src/core/lib/iomgr/timer_generic.h',
1662                      'src/core/lib/iomgr/timer_heap.cc',
1663                      'src/core/lib/iomgr/timer_heap.h',
1664                      'src/core/lib/iomgr/timer_manager.cc',
1665                      'src/core/lib/iomgr/timer_manager.h',
1666                      'src/core/lib/iomgr/unix_sockets_posix.cc',
1667                      'src/core/lib/iomgr/unix_sockets_posix.h',
1668                      'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
1669                      'src/core/lib/iomgr/vsock.cc',
1670                      'src/core/lib/iomgr/vsock.h',
1671                      'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
1672                      'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
1673                      'src/core/lib/iomgr/wakeup_fd_pipe.cc',
1674                      'src/core/lib/iomgr/wakeup_fd_pipe.h',
1675                      'src/core/lib/iomgr/wakeup_fd_posix.cc',
1676                      'src/core/lib/iomgr/wakeup_fd_posix.h',
1677                      'src/core/lib/json/json.h',
1678                      'src/core/lib/json/json_args.h',
1679                      'src/core/lib/json/json_channel_args.h',
1680                      'src/core/lib/json/json_object_loader.cc',
1681                      'src/core/lib/json/json_object_loader.h',
1682                      'src/core/lib/json/json_reader.cc',
1683                      'src/core/lib/json/json_reader.h',
1684                      'src/core/lib/json/json_util.cc',
1685                      'src/core/lib/json/json_util.h',
1686                      'src/core/lib/json/json_writer.cc',
1687                      'src/core/lib/json/json_writer.h',
1688                      'src/core/lib/matchers/matchers.cc',
1689                      'src/core/lib/matchers/matchers.h',
1690                      'src/core/lib/promise/activity.cc',
1691                      'src/core/lib/promise/activity.h',
1692                      'src/core/lib/promise/all_ok.h',
1693                      'src/core/lib/promise/arena_promise.h',
1694                      'src/core/lib/promise/cancel_callback.h',
1695                      'src/core/lib/promise/context.h',
1696                      'src/core/lib/promise/detail/basic_seq.h',
1697                      'src/core/lib/promise/detail/join_state.h',
1698                      'src/core/lib/promise/detail/promise_factory.h',
1699                      'src/core/lib/promise/detail/promise_like.h',
1700                      'src/core/lib/promise/detail/seq_state.h',
1701                      'src/core/lib/promise/detail/status.h',
1702                      'src/core/lib/promise/exec_ctx_wakeup_scheduler.h',
1703                      'src/core/lib/promise/for_each.h',
1704                      'src/core/lib/promise/if.h',
1705                      'src/core/lib/promise/interceptor_list.h',
1706                      'src/core/lib/promise/latch.h',
1707                      'src/core/lib/promise/loop.h',
1708                      'src/core/lib/promise/map.h',
1709                      'src/core/lib/promise/party.cc',
1710                      'src/core/lib/promise/party.h',
1711                      'src/core/lib/promise/pipe.h',
1712                      'src/core/lib/promise/poll.h',
1713                      'src/core/lib/promise/prioritized_race.h',
1714                      'src/core/lib/promise/promise.h',
1715                      'src/core/lib/promise/race.h',
1716                      'src/core/lib/promise/seq.h',
1717                      'src/core/lib/promise/sleep.cc',
1718                      'src/core/lib/promise/sleep.h',
1719                      'src/core/lib/promise/status_flag.h',
1720                      'src/core/lib/promise/trace.cc',
1721                      'src/core/lib/promise/trace.h',
1722                      'src/core/lib/promise/try_join.h',
1723                      'src/core/lib/promise/try_seq.h',
1724                      'src/core/lib/resource_quota/api.cc',
1725                      'src/core/lib/resource_quota/api.h',
1726                      'src/core/lib/resource_quota/arena.cc',
1727                      'src/core/lib/resource_quota/arena.h',
1728                      'src/core/lib/resource_quota/connection_quota.cc',
1729                      'src/core/lib/resource_quota/connection_quota.h',
1730                      'src/core/lib/resource_quota/memory_quota.cc',
1731                      'src/core/lib/resource_quota/memory_quota.h',
1732                      'src/core/lib/resource_quota/periodic_update.cc',
1733                      'src/core/lib/resource_quota/periodic_update.h',
1734                      'src/core/lib/resource_quota/resource_quota.cc',
1735                      'src/core/lib/resource_quota/resource_quota.h',
1736                      'src/core/lib/resource_quota/thread_quota.cc',
1737                      'src/core/lib/resource_quota/thread_quota.h',
1738                      'src/core/lib/resource_quota/trace.cc',
1739                      'src/core/lib/resource_quota/trace.h',
1740                      'src/core/lib/security/authorization/audit_logging.cc',
1741                      'src/core/lib/security/authorization/audit_logging.h',
1742                      'src/core/lib/security/authorization/authorization_engine.h',
1743                      'src/core/lib/security/authorization/authorization_policy_provider.h',
1744                      'src/core/lib/security/authorization/authorization_policy_provider_vtable.cc',
1745                      'src/core/lib/security/authorization/evaluate_args.cc',
1746                      'src/core/lib/security/authorization/evaluate_args.h',
1747                      'src/core/lib/security/authorization/grpc_authorization_engine.cc',
1748                      'src/core/lib/security/authorization/grpc_authorization_engine.h',
1749                      'src/core/lib/security/authorization/grpc_server_authz_filter.cc',
1750                      'src/core/lib/security/authorization/grpc_server_authz_filter.h',
1751                      'src/core/lib/security/authorization/matchers.cc',
1752                      'src/core/lib/security/authorization/matchers.h',
1753                      'src/core/lib/security/authorization/rbac_policy.cc',
1754                      'src/core/lib/security/authorization/rbac_policy.h',
1755                      'src/core/lib/security/authorization/stdout_logger.cc',
1756                      'src/core/lib/security/authorization/stdout_logger.h',
1757                      'src/core/lib/security/certificate_provider/certificate_provider_factory.h',
1758                      'src/core/lib/security/certificate_provider/certificate_provider_registry.cc',
1759                      'src/core/lib/security/certificate_provider/certificate_provider_registry.h',
1760                      'src/core/lib/security/context/security_context.cc',
1761                      'src/core/lib/security/context/security_context.h',
1762                      'src/core/lib/security/credentials/alts/alts_credentials.cc',
1763                      'src/core/lib/security/credentials/alts/alts_credentials.h',
1764                      'src/core/lib/security/credentials/alts/check_gcp_environment.cc',
1765                      'src/core/lib/security/credentials/alts/check_gcp_environment.h',
1766                      'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc',
1767                      'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc',
1768                      'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc',
1769                      'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc',
1770                      'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc',
1771                      'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
1772                      'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc',
1773                      'src/core/lib/security/credentials/call_creds_util.cc',
1774                      'src/core/lib/security/credentials/call_creds_util.h',
1775                      'src/core/lib/security/credentials/channel_creds_registry.h',
1776                      'src/core/lib/security/credentials/channel_creds_registry_init.cc',
1777                      'src/core/lib/security/credentials/composite/composite_credentials.cc',
1778                      'src/core/lib/security/credentials/composite/composite_credentials.h',
1779                      'src/core/lib/security/credentials/credentials.cc',
1780                      'src/core/lib/security/credentials/credentials.h',
1781                      'src/core/lib/security/credentials/external/aws_external_account_credentials.cc',
1782                      'src/core/lib/security/credentials/external/aws_external_account_credentials.h',
1783                      'src/core/lib/security/credentials/external/aws_request_signer.cc',
1784                      'src/core/lib/security/credentials/external/aws_request_signer.h',
1785                      'src/core/lib/security/credentials/external/external_account_credentials.cc',
1786                      'src/core/lib/security/credentials/external/external_account_credentials.h',
1787                      'src/core/lib/security/credentials/external/file_external_account_credentials.cc',
1788                      'src/core/lib/security/credentials/external/file_external_account_credentials.h',
1789                      'src/core/lib/security/credentials/external/url_external_account_credentials.cc',
1790                      'src/core/lib/security/credentials/external/url_external_account_credentials.h',
1791                      'src/core/lib/security/credentials/fake/fake_credentials.cc',
1792                      'src/core/lib/security/credentials/fake/fake_credentials.h',
1793                      'src/core/lib/security/credentials/google_default/credentials_generic.cc',
1794                      'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
1795                      'src/core/lib/security/credentials/google_default/google_default_credentials.h',
1796                      'src/core/lib/security/credentials/iam/iam_credentials.cc',
1797                      'src/core/lib/security/credentials/iam/iam_credentials.h',
1798                      'src/core/lib/security/credentials/insecure/insecure_credentials.cc',
1799                      'src/core/lib/security/credentials/insecure/insecure_credentials.h',
1800                      'src/core/lib/security/credentials/jwt/json_token.cc',
1801                      'src/core/lib/security/credentials/jwt/json_token.h',
1802                      'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
1803                      'src/core/lib/security/credentials/jwt/jwt_credentials.h',
1804                      'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
1805                      'src/core/lib/security/credentials/jwt/jwt_verifier.h',
1806                      'src/core/lib/security/credentials/local/local_credentials.cc',
1807                      'src/core/lib/security/credentials/local/local_credentials.h',
1808                      'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
1809                      'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
1810                      'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
1811                      'src/core/lib/security/credentials/plugin/plugin_credentials.h',
1812                      'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
1813                      'src/core/lib/security/credentials/ssl/ssl_credentials.h',
1814                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc',
1815                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h',
1816                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc',
1817                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc',
1818                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h',
1819                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc',
1820                      'src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h',
1821                      'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc',
1822                      'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h',
1823                      'src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc',
1824                      'src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h',
1825                      'src/core/lib/security/credentials/tls/tls_credentials.cc',
1826                      'src/core/lib/security/credentials/tls/tls_credentials.h',
1827                      'src/core/lib/security/credentials/tls/tls_utils.cc',
1828                      'src/core/lib/security/credentials/tls/tls_utils.h',
1829                      'src/core/lib/security/credentials/xds/xds_credentials.cc',
1830                      'src/core/lib/security/credentials/xds/xds_credentials.h',
1831                      'src/core/lib/security/security_connector/alts/alts_security_connector.cc',
1832                      'src/core/lib/security/security_connector/alts/alts_security_connector.h',
1833                      'src/core/lib/security/security_connector/fake/fake_security_connector.cc',
1834                      'src/core/lib/security/security_connector/fake/fake_security_connector.h',
1835                      'src/core/lib/security/security_connector/insecure/insecure_security_connector.cc',
1836                      'src/core/lib/security/security_connector/insecure/insecure_security_connector.h',
1837                      'src/core/lib/security/security_connector/load_system_roots.h',
1838                      'src/core/lib/security/security_connector/load_system_roots_fallback.cc',
1839                      'src/core/lib/security/security_connector/load_system_roots_supported.cc',
1840                      'src/core/lib/security/security_connector/load_system_roots_supported.h',
1841                      'src/core/lib/security/security_connector/load_system_roots_windows.cc',
1842                      'src/core/lib/security/security_connector/local/local_security_connector.cc',
1843                      'src/core/lib/security/security_connector/local/local_security_connector.h',
1844                      'src/core/lib/security/security_connector/security_connector.cc',
1845                      'src/core/lib/security/security_connector/security_connector.h',
1846                      'src/core/lib/security/security_connector/ssl/ssl_security_connector.cc',
1847                      'src/core/lib/security/security_connector/ssl/ssl_security_connector.h',
1848                      'src/core/lib/security/security_connector/ssl_utils.cc',
1849                      'src/core/lib/security/security_connector/ssl_utils.h',
1850                      'src/core/lib/security/security_connector/tls/tls_security_connector.cc',
1851                      'src/core/lib/security/security_connector/tls/tls_security_connector.h',
1852                      'src/core/lib/security/transport/auth_filters.h',
1853                      'src/core/lib/security/transport/client_auth_filter.cc',
1854                      'src/core/lib/security/transport/secure_endpoint.cc',
1855                      'src/core/lib/security/transport/secure_endpoint.h',
1856                      'src/core/lib/security/transport/security_handshaker.cc',
1857                      'src/core/lib/security/transport/security_handshaker.h',
1858                      'src/core/lib/security/transport/server_auth_filter.cc',
1859                      'src/core/lib/security/transport/tsi_error.cc',
1860                      'src/core/lib/security/transport/tsi_error.h',
1861                      'src/core/lib/security/util/json_util.cc',
1862                      'src/core/lib/security/util/json_util.h',
1863                      'src/core/lib/slice/percent_encoding.cc',
1864                      'src/core/lib/slice/percent_encoding.h',
1865                      'src/core/lib/slice/slice.cc',
1866                      'src/core/lib/slice/slice.h',
1867                      'src/core/lib/slice/slice_buffer.cc',
1868                      'src/core/lib/slice/slice_buffer.h',
1869                      'src/core/lib/slice/slice_internal.h',
1870                      'src/core/lib/slice/slice_refcount.cc',
1871                      'src/core/lib/slice/slice_refcount.h',
1872                      'src/core/lib/slice/slice_string_helpers.cc',
1873                      'src/core/lib/slice/slice_string_helpers.h',
1874                      'src/core/lib/surface/api_trace.cc',
1875                      'src/core/lib/surface/api_trace.h',
1876                      'src/core/lib/surface/byte_buffer.cc',
1877                      'src/core/lib/surface/byte_buffer_reader.cc',
1878                      'src/core/lib/surface/call.cc',
1879                      'src/core/lib/surface/call.h',
1880                      'src/core/lib/surface/call_details.cc',
1881                      'src/core/lib/surface/call_log_batch.cc',
1882                      'src/core/lib/surface/call_test_only.h',
1883                      'src/core/lib/surface/call_trace.h',
1884                      'src/core/lib/surface/channel.cc',
1885                      'src/core/lib/surface/channel.h',
1886                      'src/core/lib/surface/channel_create.cc',
1887                      'src/core/lib/surface/channel_create.h',
1888                      'src/core/lib/surface/channel_init.cc',
1889                      'src/core/lib/surface/channel_init.h',
1890                      'src/core/lib/surface/channel_stack_type.cc',
1891                      'src/core/lib/surface/channel_stack_type.h',
1892                      'src/core/lib/surface/completion_queue.cc',
1893                      'src/core/lib/surface/completion_queue.h',
1894                      'src/core/lib/surface/completion_queue_factory.cc',
1895                      'src/core/lib/surface/completion_queue_factory.h',
1896                      'src/core/lib/surface/event_string.cc',
1897                      'src/core/lib/surface/event_string.h',
1898                      'src/core/lib/surface/init.cc',
1899                      'src/core/lib/surface/init.h',
1900                      'src/core/lib/surface/init_internally.cc',
1901                      'src/core/lib/surface/init_internally.h',
1902                      'src/core/lib/surface/lame_client.cc',
1903                      'src/core/lib/surface/lame_client.h',
1904                      'src/core/lib/surface/legacy_channel.cc',
1905                      'src/core/lib/surface/legacy_channel.h',
1906                      'src/core/lib/surface/metadata_array.cc',
1907                      'src/core/lib/surface/server.cc',
1908                      'src/core/lib/surface/server.h',
1909                      'src/core/lib/surface/server_interface.h',
1910                      'src/core/lib/surface/validate_metadata.cc',
1911                      'src/core/lib/surface/validate_metadata.h',
1912                      'src/core/lib/surface/version.cc',
1913                      'src/core/lib/surface/wait_for_cq_end_op.cc',
1914                      'src/core/lib/surface/wait_for_cq_end_op.h',
1915                      'src/core/lib/transport/batch_builder.cc',
1916                      'src/core/lib/transport/batch_builder.h',
1917                      'src/core/lib/transport/bdp_estimator.cc',
1918                      'src/core/lib/transport/bdp_estimator.h',
1919                      'src/core/lib/transport/call_filters.cc',
1920                      'src/core/lib/transport/call_filters.h',
1921                      'src/core/lib/transport/call_final_info.cc',
1922                      'src/core/lib/transport/call_final_info.h',
1923                      'src/core/lib/transport/call_size_estimator.cc',
1924                      'src/core/lib/transport/call_size_estimator.h',
1925                      'src/core/lib/transport/call_spine.cc',
1926                      'src/core/lib/transport/call_spine.h',
1927                      'src/core/lib/transport/connectivity_state.cc',
1928                      'src/core/lib/transport/connectivity_state.h',
1929                      'src/core/lib/transport/custom_metadata.h',
1930                      'src/core/lib/transport/endpoint_info_handshaker.cc',
1931                      'src/core/lib/transport/endpoint_info_handshaker.h',
1932                      'src/core/lib/transport/error_utils.cc',
1933                      'src/core/lib/transport/error_utils.h',
1934                      'src/core/lib/transport/handshaker.cc',
1935                      'src/core/lib/transport/handshaker.h',
1936                      'src/core/lib/transport/handshaker_factory.h',
1937                      'src/core/lib/transport/handshaker_registry.cc',
1938                      'src/core/lib/transport/handshaker_registry.h',
1939                      'src/core/lib/transport/http2_errors.h',
1940                      'src/core/lib/transport/http_connect_handshaker.cc',
1941                      'src/core/lib/transport/http_connect_handshaker.h',
1942                      'src/core/lib/transport/message.cc',
1943                      'src/core/lib/transport/message.h',
1944                      'src/core/lib/transport/metadata.cc',
1945                      'src/core/lib/transport/metadata.h',
1946                      'src/core/lib/transport/metadata_batch.cc',
1947                      'src/core/lib/transport/metadata_batch.h',
1948                      'src/core/lib/transport/metadata_compression_traits.h',
1949                      'src/core/lib/transport/metadata_info.cc',
1950                      'src/core/lib/transport/metadata_info.h',
1951                      'src/core/lib/transport/parsed_metadata.cc',
1952                      'src/core/lib/transport/parsed_metadata.h',
1953                      'src/core/lib/transport/simple_slice_based_metadata.h',
1954                      'src/core/lib/transport/status_conversion.cc',
1955                      'src/core/lib/transport/status_conversion.h',
1956                      'src/core/lib/transport/tcp_connect_handshaker.cc',
1957                      'src/core/lib/transport/tcp_connect_handshaker.h',
1958                      'src/core/lib/transport/timeout_encoding.cc',
1959                      'src/core/lib/transport/timeout_encoding.h',
1960                      'src/core/lib/transport/transport.cc',
1961                      'src/core/lib/transport/transport.h',
1962                      'src/core/lib/transport/transport_fwd.h',
1963                      'src/core/lib/transport/transport_op_string.cc',
1964                      'src/core/lib/uri/uri_parser.cc',
1965                      'src/core/lib/uri/uri_parser.h',
1966                      'src/core/load_balancing/address_filtering.cc',
1967                      'src/core/load_balancing/address_filtering.h',
1968                      'src/core/load_balancing/backend_metric_data.h',
1969                      'src/core/load_balancing/backend_metric_parser.cc',
1970                      'src/core/load_balancing/backend_metric_parser.h',
1971                      'src/core/load_balancing/child_policy_handler.cc',
1972                      'src/core/load_balancing/child_policy_handler.h',
1973                      'src/core/load_balancing/delegating_helper.h',
1974                      'src/core/load_balancing/endpoint_list.cc',
1975                      'src/core/load_balancing/endpoint_list.h',
1976                      'src/core/load_balancing/grpclb/client_load_reporting_filter.cc',
1977                      'src/core/load_balancing/grpclb/client_load_reporting_filter.h',
1978                      'src/core/load_balancing/grpclb/grpclb.cc',
1979                      'src/core/load_balancing/grpclb/grpclb.h',
1980                      'src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc',
1981                      'src/core/load_balancing/grpclb/grpclb_balancer_addresses.h',
1982                      'src/core/load_balancing/grpclb/grpclb_client_stats.cc',
1983                      'src/core/load_balancing/grpclb/grpclb_client_stats.h',
1984                      'src/core/load_balancing/grpclb/load_balancer_api.cc',
1985                      'src/core/load_balancing/grpclb/load_balancer_api.h',
1986                      'src/core/load_balancing/health_check_client.cc',
1987                      'src/core/load_balancing/health_check_client.h',
1988                      'src/core/load_balancing/health_check_client_internal.h',
1989                      'src/core/load_balancing/lb_policy.cc',
1990                      'src/core/load_balancing/lb_policy.h',
1991                      'src/core/load_balancing/lb_policy_factory.h',
1992                      'src/core/load_balancing/lb_policy_registry.cc',
1993                      'src/core/load_balancing/lb_policy_registry.h',
1994                      'src/core/load_balancing/oob_backend_metric.cc',
1995                      'src/core/load_balancing/oob_backend_metric.h',
1996                      'src/core/load_balancing/oob_backend_metric_internal.h',
1997                      'src/core/load_balancing/outlier_detection/outlier_detection.cc',
1998                      'src/core/load_balancing/outlier_detection/outlier_detection.h',
1999                      'src/core/load_balancing/pick_first/pick_first.cc',
2000                      'src/core/load_balancing/pick_first/pick_first.h',
2001                      'src/core/load_balancing/priority/priority.cc',
2002                      'src/core/load_balancing/ring_hash/ring_hash.cc',
2003                      'src/core/load_balancing/ring_hash/ring_hash.h',
2004                      'src/core/load_balancing/rls/rls.cc',
2005                      'src/core/load_balancing/rls/rls.h',
2006                      'src/core/load_balancing/round_robin/round_robin.cc',
2007                      'src/core/load_balancing/subchannel_interface.h',
2008                      'src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc',
2009                      'src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h',
2010                      'src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc',
2011                      'src/core/load_balancing/weighted_target/weighted_target.cc',
2012                      'src/core/load_balancing/weighted_target/weighted_target.h',
2013                      'src/core/load_balancing/xds/cds.cc',
2014                      'src/core/load_balancing/xds/xds_channel_args.h',
2015                      'src/core/load_balancing/xds/xds_cluster_impl.cc',
2016                      'src/core/load_balancing/xds/xds_cluster_manager.cc',
2017                      'src/core/load_balancing/xds/xds_override_host.cc',
2018                      'src/core/load_balancing/xds/xds_override_host.h',
2019                      'src/core/load_balancing/xds/xds_wrr_locality.cc',
2020                      'src/core/plugin_registry/grpc_plugin_registry.cc',
2021                      'src/core/plugin_registry/grpc_plugin_registry_extra.cc',
2022                      'src/core/resolver/binder/binder_resolver.cc',
2023                      'src/core/resolver/dns/c_ares/dns_resolver_ares.cc',
2024                      'src/core/resolver/dns/c_ares/dns_resolver_ares.h',
2025                      'src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h',
2026                      'src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
2027                      'src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc',
2028                      'src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc',
2029                      'src/core/resolver/dns/c_ares/grpc_ares_wrapper.h',
2030                      'src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc',
2031                      'src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc',
2032                      'src/core/resolver/dns/dns_resolver_plugin.cc',
2033                      'src/core/resolver/dns/dns_resolver_plugin.h',
2034                      'src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc',
2035                      'src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h',
2036                      'src/core/resolver/dns/event_engine/service_config_helper.cc',
2037                      'src/core/resolver/dns/event_engine/service_config_helper.h',
2038                      'src/core/resolver/dns/native/dns_resolver.cc',
2039                      'src/core/resolver/dns/native/dns_resolver.h',
2040                      'src/core/resolver/endpoint_addresses.cc',
2041                      'src/core/resolver/endpoint_addresses.h',
2042                      'src/core/resolver/fake/fake_resolver.cc',
2043                      'src/core/resolver/fake/fake_resolver.h',
2044                      'src/core/resolver/google_c2p/google_c2p_resolver.cc',
2045                      'src/core/resolver/polling_resolver.cc',
2046                      'src/core/resolver/polling_resolver.h',
2047                      'src/core/resolver/resolver.cc',
2048                      'src/core/resolver/resolver.h',
2049                      'src/core/resolver/resolver_factory.h',
2050                      'src/core/resolver/resolver_registry.cc',
2051                      'src/core/resolver/resolver_registry.h',
2052                      'src/core/resolver/server_address.h',
2053                      'src/core/resolver/sockaddr/sockaddr_resolver.cc',
2054                      'src/core/resolver/xds/xds_dependency_manager.cc',
2055                      'src/core/resolver/xds/xds_dependency_manager.h',
2056                      'src/core/resolver/xds/xds_resolver.cc',
2057                      'src/core/resolver/xds/xds_resolver_attributes.h',
2058                      'src/core/resolver/xds/xds_resolver_trace.cc',
2059                      'src/core/resolver/xds/xds_resolver_trace.h',
2060                      'src/core/service_config/service_config.h',
2061                      'src/core/service_config/service_config_call_data.h',
2062                      'src/core/service_config/service_config_channel_arg_filter.cc',
2063                      'src/core/service_config/service_config_impl.cc',
2064                      'src/core/service_config/service_config_impl.h',
2065                      'src/core/service_config/service_config_parser.cc',
2066                      'src/core/service_config/service_config_parser.h',
2067                      'src/core/tsi/alts/crypt/aes_gcm.cc',
2068                      'src/core/tsi/alts/crypt/gsec.cc',
2069                      'src/core/tsi/alts/crypt/gsec.h',
2070                      'src/core/tsi/alts/frame_protector/alts_counter.cc',
2071                      'src/core/tsi/alts/frame_protector/alts_counter.h',
2072                      'src/core/tsi/alts/frame_protector/alts_crypter.cc',
2073                      'src/core/tsi/alts/frame_protector/alts_crypter.h',
2074                      'src/core/tsi/alts/frame_protector/alts_frame_protector.cc',
2075                      'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
2076                      'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc',
2077                      'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
2078                      'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc',
2079                      'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc',
2080                      'src/core/tsi/alts/frame_protector/frame_handler.cc',
2081                      'src/core/tsi/alts/frame_protector/frame_handler.h',
2082                      'src/core/tsi/alts/handshaker/alts_handshaker_client.cc',
2083                      'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
2084                      'src/core/tsi/alts/handshaker/alts_shared_resource.cc',
2085                      'src/core/tsi/alts/handshaker/alts_shared_resource.h',
2086                      'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc',
2087                      'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
2088                      'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
2089                      'src/core/tsi/alts/handshaker/alts_tsi_utils.cc',
2090                      'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
2091                      'src/core/tsi/alts/handshaker/transport_security_common_api.cc',
2092                      'src/core/tsi/alts/handshaker/transport_security_common_api.h',
2093                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc',
2094                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
2095                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc',
2096                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
2097                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
2098                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc',
2099                      'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
2100                      'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc',
2101                      'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
2102                      'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc',
2103                      'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
2104                      'src/core/tsi/fake_transport_security.cc',
2105                      'src/core/tsi/fake_transport_security.h',
2106                      'src/core/tsi/local_transport_security.cc',
2107                      'src/core/tsi/local_transport_security.h',
2108                      'src/core/tsi/ssl/key_logging/ssl_key_logging.cc',
2109                      'src/core/tsi/ssl/key_logging/ssl_key_logging.h',
2110                      'src/core/tsi/ssl/session_cache/ssl_session.h',
2111                      'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc',
2112                      'src/core/tsi/ssl/session_cache/ssl_session_cache.cc',
2113                      'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
2114                      'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc',
2115                      'src/core/tsi/ssl_transport_security.cc',
2116                      'src/core/tsi/ssl_transport_security.h',
2117                      'src/core/tsi/ssl_transport_security_utils.cc',
2118                      'src/core/tsi/ssl_transport_security_utils.h',
2119                      'src/core/tsi/ssl_types.h',
2120                      'src/core/tsi/transport_security.cc',
2121                      'src/core/tsi/transport_security.h',
2122                      'src/core/tsi/transport_security_grpc.cc',
2123                      'src/core/tsi/transport_security_grpc.h',
2124                      'src/core/tsi/transport_security_interface.h',
2125                      'third_party/re2/re2/bitmap256.h',
2126                      'third_party/re2/re2/bitstate.cc',
2127                      'third_party/re2/re2/compile.cc',
2128                      'third_party/re2/re2/dfa.cc',
2129                      'third_party/re2/re2/filtered_re2.cc',
2130                      'third_party/re2/re2/filtered_re2.h',
2131                      'third_party/re2/re2/mimics_pcre.cc',
2132                      'third_party/re2/re2/nfa.cc',
2133                      'third_party/re2/re2/onepass.cc',
2134                      'third_party/re2/re2/parse.cc',
2135                      'third_party/re2/re2/perl_groups.cc',
2136                      'third_party/re2/re2/pod_array.h',
2137                      'third_party/re2/re2/prefilter.cc',
2138                      'third_party/re2/re2/prefilter.h',
2139                      'third_party/re2/re2/prefilter_tree.cc',
2140                      'third_party/re2/re2/prefilter_tree.h',
2141                      'third_party/re2/re2/prog.cc',
2142                      'third_party/re2/re2/prog.h',
2143                      'third_party/re2/re2/re2.cc',
2144                      'third_party/re2/re2/re2.h',
2145                      'third_party/re2/re2/regexp.cc',
2146                      'third_party/re2/re2/regexp.h',
2147                      'third_party/re2/re2/set.cc',
2148                      'third_party/re2/re2/set.h',
2149                      'third_party/re2/re2/simplify.cc',
2150                      'third_party/re2/re2/sparse_array.h',
2151                      'third_party/re2/re2/sparse_set.h',
2152                      'third_party/re2/re2/stringpiece.cc',
2153                      'third_party/re2/re2/stringpiece.h',
2154                      'third_party/re2/re2/tostring.cc',
2155                      'third_party/re2/re2/unicode_casefold.cc',
2156                      'third_party/re2/re2/unicode_casefold.h',
2157                      'third_party/re2/re2/unicode_groups.cc',
2158                      'third_party/re2/re2/unicode_groups.h',
2159                      'third_party/re2/re2/walker-inl.h',
2160                      'third_party/re2/util/logging.h',
2161                      'third_party/re2/util/mix.h',
2162                      'third_party/re2/util/mutex.h',
2163                      'third_party/re2/util/rune.cc',
2164                      'third_party/re2/util/strutil.cc',
2165                      'third_party/re2/util/strutil.h',
2166                      'third_party/re2/util/utf.h',
2167                      'third_party/re2/util/util.h',
2168                      'third_party/upb/upb/base/descriptor_constants.h',
2169                      'third_party/upb/upb/base/internal/endian.h',
2170                      'third_party/upb/upb/base/internal/log2.h',
2171                      'third_party/upb/upb/base/status.c',
2172                      'third_party/upb/upb/base/status.h',
2173                      'third_party/upb/upb/base/status.hpp',
2174                      'third_party/upb/upb/base/string_view.h',
2175                      'third_party/upb/upb/base/upcast.h',
2176                      'third_party/upb/upb/generated_code_support.h',
2177                      'third_party/upb/upb/hash/common.c',
2178                      'third_party/upb/upb/hash/common.h',
2179                      'third_party/upb/upb/hash/int_table.h',
2180                      'third_party/upb/upb/hash/str_table.h',
2181                      'third_party/upb/upb/json/decode.c',
2182                      'third_party/upb/upb/json/decode.h',
2183                      'third_party/upb/upb/json/encode.c',
2184                      'third_party/upb/upb/json/encode.h',
2185                      'third_party/upb/upb/lex/atoi.c',
2186                      'third_party/upb/upb/lex/atoi.h',
2187                      'third_party/upb/upb/lex/round_trip.c',
2188                      'third_party/upb/upb/lex/round_trip.h',
2189                      'third_party/upb/upb/lex/strtod.c',
2190                      'third_party/upb/upb/lex/strtod.h',
2191                      'third_party/upb/upb/lex/unicode.c',
2192                      'third_party/upb/upb/lex/unicode.h',
2193                      'third_party/upb/upb/mem/alloc.c',
2194                      'third_party/upb/upb/mem/alloc.h',
2195                      'third_party/upb/upb/mem/arena.c',
2196                      'third_party/upb/upb/mem/arena.h',
2197                      'third_party/upb/upb/mem/arena.hpp',
2198                      'third_party/upb/upb/mem/internal/arena.h',
2199                      'third_party/upb/upb/message/accessors.c',
2200                      'third_party/upb/upb/message/accessors.h',
2201                      'third_party/upb/upb/message/array.c',
2202                      'third_party/upb/upb/message/array.h',
2203                      'third_party/upb/upb/message/compat.c',
2204                      'third_party/upb/upb/message/compat.h',
2205                      'third_party/upb/upb/message/copy.c',
2206                      'third_party/upb/upb/message/copy.h',
2207                      'third_party/upb/upb/message/internal/accessors.h',
2208                      'third_party/upb/upb/message/internal/array.h',
2209                      'third_party/upb/upb/message/internal/extension.c',
2210                      'third_party/upb/upb/message/internal/extension.h',
2211                      'third_party/upb/upb/message/internal/map.h',
2212                      'third_party/upb/upb/message/internal/map_entry.h',
2213                      'third_party/upb/upb/message/internal/map_sorter.h',
2214                      'third_party/upb/upb/message/internal/message.c',
2215                      'third_party/upb/upb/message/internal/message.h',
2216                      'third_party/upb/upb/message/internal/tagged_ptr.h',
2217                      'third_party/upb/upb/message/internal/types.h',
2218                      'third_party/upb/upb/message/map.c',
2219                      'third_party/upb/upb/message/map.h',
2220                      'third_party/upb/upb/message/map_gencode_util.h',
2221                      'third_party/upb/upb/message/map_sorter.c',
2222                      'third_party/upb/upb/message/message.c',
2223                      'third_party/upb/upb/message/message.h',
2224                      'third_party/upb/upb/message/tagged_ptr.h',
2225                      'third_party/upb/upb/message/value.h',
2226                      'third_party/upb/upb/mini_descriptor/build_enum.c',
2227                      'third_party/upb/upb/mini_descriptor/build_enum.h',
2228                      'third_party/upb/upb/mini_descriptor/decode.c',
2229                      'third_party/upb/upb/mini_descriptor/decode.h',
2230                      'third_party/upb/upb/mini_descriptor/internal/base92.c',
2231                      'third_party/upb/upb/mini_descriptor/internal/base92.h',
2232                      'third_party/upb/upb/mini_descriptor/internal/decoder.h',
2233                      'third_party/upb/upb/mini_descriptor/internal/encode.c',
2234                      'third_party/upb/upb/mini_descriptor/internal/encode.h',
2235                      'third_party/upb/upb/mini_descriptor/internal/encode.hpp',
2236                      'third_party/upb/upb/mini_descriptor/internal/modifiers.h',
2237                      'third_party/upb/upb/mini_descriptor/internal/wire_constants.h',
2238                      'third_party/upb/upb/mini_descriptor/link.c',
2239                      'third_party/upb/upb/mini_descriptor/link.h',
2240                      'third_party/upb/upb/mini_table/enum.h',
2241                      'third_party/upb/upb/mini_table/extension.h',
2242                      'third_party/upb/upb/mini_table/extension_registry.c',
2243                      'third_party/upb/upb/mini_table/extension_registry.h',
2244                      'third_party/upb/upb/mini_table/field.h',
2245                      'third_party/upb/upb/mini_table/file.h',
2246                      'third_party/upb/upb/mini_table/internal/enum.h',
2247                      'third_party/upb/upb/mini_table/internal/extension.h',
2248                      'third_party/upb/upb/mini_table/internal/field.h',
2249                      'third_party/upb/upb/mini_table/internal/file.h',
2250                      'third_party/upb/upb/mini_table/internal/message.c',
2251                      'third_party/upb/upb/mini_table/internal/message.h',
2252                      'third_party/upb/upb/mini_table/internal/size_log2.h',
2253                      'third_party/upb/upb/mini_table/internal/sub.h',
2254                      'third_party/upb/upb/mini_table/message.c',
2255                      'third_party/upb/upb/mini_table/message.h',
2256                      'third_party/upb/upb/mini_table/sub.h',
2257                      'third_party/upb/upb/port/atomic.h',
2258                      'third_party/upb/upb/port/def.inc',
2259                      'third_party/upb/upb/port/undef.inc',
2260                      'third_party/upb/upb/port/vsnprintf_compat.h',
2261                      'third_party/upb/upb/reflection/common.h',
2262                      'third_party/upb/upb/reflection/def.h',
2263                      'third_party/upb/upb/reflection/def.hpp',
2264                      'third_party/upb/upb/reflection/def_pool.c',
2265                      'third_party/upb/upb/reflection/def_pool.h',
2266                      'third_party/upb/upb/reflection/def_type.c',
2267                      'third_party/upb/upb/reflection/def_type.h',
2268                      'third_party/upb/upb/reflection/desc_state.c',
2269                      'third_party/upb/upb/reflection/enum_def.c',
2270                      'third_party/upb/upb/reflection/enum_def.h',
2271                      'third_party/upb/upb/reflection/enum_reserved_range.c',
2272                      'third_party/upb/upb/reflection/enum_reserved_range.h',
2273                      'third_party/upb/upb/reflection/enum_value_def.c',
2274                      'third_party/upb/upb/reflection/enum_value_def.h',
2275                      'third_party/upb/upb/reflection/extension_range.c',
2276                      'third_party/upb/upb/reflection/extension_range.h',
2277                      'third_party/upb/upb/reflection/field_def.c',
2278                      'third_party/upb/upb/reflection/field_def.h',
2279                      'third_party/upb/upb/reflection/file_def.c',
2280                      'third_party/upb/upb/reflection/file_def.h',
2281                      'third_party/upb/upb/reflection/internal/def_builder.c',
2282                      'third_party/upb/upb/reflection/internal/def_builder.h',
2283                      'third_party/upb/upb/reflection/internal/def_pool.h',
2284                      'third_party/upb/upb/reflection/internal/desc_state.h',
2285                      'third_party/upb/upb/reflection/internal/enum_def.h',
2286                      'third_party/upb/upb/reflection/internal/enum_reserved_range.h',
2287                      'third_party/upb/upb/reflection/internal/enum_value_def.h',
2288                      'third_party/upb/upb/reflection/internal/extension_range.h',
2289                      'third_party/upb/upb/reflection/internal/field_def.h',
2290                      'third_party/upb/upb/reflection/internal/file_def.h',
2291                      'third_party/upb/upb/reflection/internal/message_def.h',
2292                      'third_party/upb/upb/reflection/internal/message_reserved_range.h',
2293                      'third_party/upb/upb/reflection/internal/method_def.h',
2294                      'third_party/upb/upb/reflection/internal/oneof_def.h',
2295                      'third_party/upb/upb/reflection/internal/service_def.h',
2296                      'third_party/upb/upb/reflection/internal/strdup2.c',
2297                      'third_party/upb/upb/reflection/internal/strdup2.h',
2298                      'third_party/upb/upb/reflection/internal/upb_edition_defaults.h',
2299                      'third_party/upb/upb/reflection/message.c',
2300                      'third_party/upb/upb/reflection/message.h',
2301                      'third_party/upb/upb/reflection/message.hpp',
2302                      'third_party/upb/upb/reflection/message_def.c',
2303                      'third_party/upb/upb/reflection/message_def.h',
2304                      'third_party/upb/upb/reflection/message_reserved_range.c',
2305                      'third_party/upb/upb/reflection/message_reserved_range.h',
2306                      'third_party/upb/upb/reflection/method_def.c',
2307                      'third_party/upb/upb/reflection/method_def.h',
2308                      'third_party/upb/upb/reflection/oneof_def.c',
2309                      'third_party/upb/upb/reflection/oneof_def.h',
2310                      'third_party/upb/upb/reflection/service_def.c',
2311                      'third_party/upb/upb/reflection/service_def.h',
2312                      'third_party/upb/upb/text/encode.c',
2313                      'third_party/upb/upb/text/encode.h',
2314                      'third_party/upb/upb/wire/decode.c',
2315                      'third_party/upb/upb/wire/decode.h',
2316                      'third_party/upb/upb/wire/encode.c',
2317                      'third_party/upb/upb/wire/encode.h',
2318                      'third_party/upb/upb/wire/eps_copy_input_stream.c',
2319                      'third_party/upb/upb/wire/eps_copy_input_stream.h',
2320                      'third_party/upb/upb/wire/internal/constants.h',
2321                      'third_party/upb/upb/wire/internal/decode_fast.c',
2322                      'third_party/upb/upb/wire/internal/decode_fast.h',
2323                      'third_party/upb/upb/wire/internal/decoder.h',
2324                      'third_party/upb/upb/wire/internal/reader.h',
2325                      'third_party/upb/upb/wire/reader.c',
2326                      'third_party/upb/upb/wire/reader.h',
2327                      'third_party/upb/upb/wire/types.h',
2328                      'third_party/utf8_range/utf8_range.c',
2329                      'third_party/utf8_range/utf8_range.h',
2330                      'third_party/xxhash/xxhash.h',
2331                      'third_party/zlib/adler32.c',
2332                      'third_party/zlib/compress.c',
2333                      'third_party/zlib/crc32.c',
2334                      'third_party/zlib/crc32.h',
2335                      'third_party/zlib/deflate.c',
2336                      'third_party/zlib/deflate.h',
2337                      'third_party/zlib/gzguts.h',
2338                      'third_party/zlib/infback.c',
2339                      'third_party/zlib/inffast.c',
2340                      'third_party/zlib/inffast.h',
2341                      'third_party/zlib/inffixed.h',
2342                      'third_party/zlib/inflate.c',
2343                      'third_party/zlib/inflate.h',
2344                      'third_party/zlib/inftrees.c',
2345                      'third_party/zlib/inftrees.h',
2346                      'third_party/zlib/trees.c',
2347                      'third_party/zlib/trees.h',
2348                      'third_party/zlib/uncompr.c',
2349                      'third_party/zlib/zconf.h',
2350                      'third_party/zlib/zlib.h',
2351                      'third_party/zlib/zutil.c',
2352                      'third_party/zlib/zutil.h'
2353    ss.private_header_files = 'src/core/client_channel/backup_poller.h',
2354                              'src/core/client_channel/client_channel_channelz.h',
2355                              'src/core/client_channel/client_channel_factory.h',
2356                              'src/core/client_channel/client_channel_filter.h',
2357                              'src/core/client_channel/client_channel_internal.h',
2358                              'src/core/client_channel/client_channel_service_config.h',
2359                              'src/core/client_channel/config_selector.h',
2360                              'src/core/client_channel/connector.h',
2361                              'src/core/client_channel/dynamic_filters.h',
2362                              'src/core/client_channel/global_subchannel_pool.h',
2363                              'src/core/client_channel/http_proxy_mapper.h',
2364                              'src/core/client_channel/local_subchannel_pool.h',
2365                              'src/core/client_channel/retry_filter.h',
2366                              'src/core/client_channel/retry_filter_legacy_call_data.h',
2367                              'src/core/client_channel/retry_service_config.h',
2368                              'src/core/client_channel/retry_throttle.h',
2369                              'src/core/client_channel/subchannel.h',
2370                              'src/core/client_channel/subchannel_interface_internal.h',
2371                              'src/core/client_channel/subchannel_pool_interface.h',
2372                              'src/core/client_channel/subchannel_stream_client.h',
2373                              'src/core/ext/filters/backend_metrics/backend_metric_filter.h',
2374                              'src/core/ext/filters/backend_metrics/backend_metric_provider.h',
2375                              'src/core/ext/filters/channel_idle/idle_filter_state.h',
2376                              'src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h',
2377                              'src/core/ext/filters/deadline/deadline_filter.h',
2378                              'src/core/ext/filters/fault_injection/fault_injection_filter.h',
2379                              'src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h',
2380                              'src/core/ext/filters/http/client/http_client_filter.h',
2381                              'src/core/ext/filters/http/client_authority_filter.h',
2382                              'src/core/ext/filters/http/message_compress/compression_filter.h',
2383                              'src/core/ext/filters/http/server/http_server_filter.h',
2384                              'src/core/ext/filters/message_size/message_size_filter.h',
2385                              'src/core/ext/filters/rbac/rbac_filter.h',
2386                              'src/core/ext/filters/rbac/rbac_service_config_parser.h',
2387                              'src/core/ext/filters/server_config_selector/server_config_selector.h',
2388                              'src/core/ext/filters/server_config_selector/server_config_selector_filter.h',
2389                              'src/core/ext/filters/stateful_session/stateful_session_filter.h',
2390                              'src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h',
2391                              'src/core/ext/gcp/metadata_query.h',
2392                              'src/core/ext/transport/chttp2/alpn/alpn.h',
2393                              'src/core/ext/transport/chttp2/client/chttp2_connector.h',
2394                              'src/core/ext/transport/chttp2/server/chttp2_server.h',
2395                              'src/core/ext/transport/chttp2/transport/bin_decoder.h',
2396                              'src/core/ext/transport/chttp2/transport/bin_encoder.h',
2397                              'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
2398                              'src/core/ext/transport/chttp2/transport/context_list_entry.h',
2399                              'src/core/ext/transport/chttp2/transport/decode_huff.h',
2400                              'src/core/ext/transport/chttp2/transport/flow_control.h',
2401                              'src/core/ext/transport/chttp2/transport/frame.h',
2402                              'src/core/ext/transport/chttp2/transport/frame_data.h',
2403                              'src/core/ext/transport/chttp2/transport/frame_goaway.h',
2404                              'src/core/ext/transport/chttp2/transport/frame_ping.h',
2405                              'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
2406                              'src/core/ext/transport/chttp2/transport/frame_settings.h',
2407                              'src/core/ext/transport/chttp2/transport/frame_window_update.h',
2408                              'src/core/ext/transport/chttp2/transport/hpack_constants.h',
2409                              'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
2410                              'src/core/ext/transport/chttp2/transport/hpack_encoder_table.h',
2411                              'src/core/ext/transport/chttp2/transport/hpack_parse_result.h',
2412                              'src/core/ext/transport/chttp2/transport/hpack_parser.h',
2413                              'src/core/ext/transport/chttp2/transport/hpack_parser_table.h',
2414                              'src/core/ext/transport/chttp2/transport/http2_settings.h',
2415                              'src/core/ext/transport/chttp2/transport/http_trace.h',
2416                              'src/core/ext/transport/chttp2/transport/huffsyms.h',
2417                              'src/core/ext/transport/chttp2/transport/internal.h',
2418                              'src/core/ext/transport/chttp2/transport/legacy_frame.h',
2419                              'src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h',
2420                              'src/core/ext/transport/chttp2/transport/ping_abuse_policy.h',
2421                              'src/core/ext/transport/chttp2/transport/ping_callbacks.h',
2422                              'src/core/ext/transport/chttp2/transport/ping_rate_policy.h',
2423                              'src/core/ext/transport/chttp2/transport/varint.h',
2424                              'src/core/ext/transport/chttp2/transport/write_size_policy.h',
2425                              'src/core/ext/transport/inproc/inproc_transport.h',
2426                              'src/core/ext/transport/inproc/legacy_inproc_transport.h',
2427                              'src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h',
2428                              'src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h',
2429                              'src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h',
2430                              'src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h',
2431                              'src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h',
2432                              'src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h',
2433                              'src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h',
2434                              'src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h',
2435                              'src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h',
2436                              'src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h',
2437                              'src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h',
2438                              'src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h',
2439                              'src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h',
2440                              'src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h',
2441                              'src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h',
2442                              'src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h',
2443                              'src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h',
2444                              'src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h',
2445                              'src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h',
2446                              'src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h',
2447                              'src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h',
2448                              'src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h',
2449                              'src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h',
2450                              'src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h',
2451                              'src/core/ext/upb-gen/envoy/annotations/resource.upb.h',
2452                              'src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h',
2453                              'src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h',
2454                              'src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h',
2455                              'src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h',
2456                              'src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h',
2457                              'src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h',
2458                              'src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h',
2459                              'src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h',
2460                              'src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h',
2461                              'src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h',
2462                              'src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h',
2463                              'src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h',
2464                              'src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h',
2465                              'src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h',
2466                              'src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h',
2467                              'src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h',
2468                              'src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h',
2469                              'src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h',
2470                              'src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h',
2471                              'src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h',
2472                              'src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h',
2473                              'src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h',
2474                              'src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h',
2475                              'src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h',
2476                              'src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h',
2477                              'src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h',
2478                              'src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h',
2479                              'src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h',
2480                              'src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h',
2481                              'src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h',
2482                              'src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h',
2483                              'src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h',
2484                              'src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h',
2485                              'src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h',
2486                              'src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h',
2487                              'src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h',
2488                              'src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h',
2489                              'src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h',
2490                              'src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h',
2491                              'src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h',
2492                              'src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h',
2493                              'src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h',
2494                              'src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h',
2495                              'src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h',
2496                              'src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h',
2497                              'src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h',
2498                              'src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h',
2499                              'src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h',
2500                              'src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h',
2501                              'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h',
2502                              'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h',
2503                              'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h',
2504                              'src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h',
2505                              'src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h',
2506                              'src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h',
2507                              'src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h',
2508                              'src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h',
2509                              'src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h',
2510                              'src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h',
2511                              'src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h',
2512                              'src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h',
2513                              'src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h',
2514                              'src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h',
2515                              'src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h',
2516                              'src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h',
2517                              'src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h',
2518                              'src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h',
2519                              'src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h',
2520                              'src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h',
2521                              'src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h',
2522                              'src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h',
2523                              'src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h',
2524                              'src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h',
2525                              'src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h',
2526                              'src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h',
2527                              'src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h',
2528                              'src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h',
2529                              'src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h',
2530                              'src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h',
2531                              'src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h',
2532                              'src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h',
2533                              'src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h',
2534                              'src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h',
2535                              'src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h',
2536                              'src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h',
2537                              'src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h',
2538                              'src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h',
2539                              'src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h',
2540                              'src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h',
2541                              'src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h',
2542                              'src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h',
2543                              'src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h',
2544                              'src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h',
2545                              'src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h',
2546                              'src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h',
2547                              'src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h',
2548                              'src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h',
2549                              'src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h',
2550                              'src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h',
2551                              'src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h',
2552                              'src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h',
2553                              'src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h',
2554                              'src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h',
2555                              'src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h',
2556                              'src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h',
2557                              'src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h',
2558                              'src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h',
2559                              'src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h',
2560                              'src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h',
2561                              'src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h',
2562                              'src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h',
2563                              'src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h',
2564                              'src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h',
2565                              'src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h',
2566                              'src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h',
2567                              'src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h',
2568                              'src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h',
2569                              'src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h',
2570                              'src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h',
2571                              'src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h',
2572                              'src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h',
2573                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h',
2574                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h',
2575                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h',
2576                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h',
2577                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h',
2578                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h',
2579                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h',
2580                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h',
2581                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h',
2582                              'src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h',
2583                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h',
2584                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h',
2585                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h',
2586                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h',
2587                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h',
2588                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h',
2589                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h',
2590                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h',
2591                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h',
2592                              'src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h',
2593                              'src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h',
2594                              'src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h',
2595                              'src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h',
2596                              'src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h',
2597                              'src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h',
2598                              'src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h',
2599                              'src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h',
2600                              'src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h',
2601                              'src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h',
2602                              'src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h',
2603                              'src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h',
2604                              'src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h',
2605                              'src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h',
2606                              'src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h',
2607                              'src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h',
2608                              'src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h',
2609                              'src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h',
2610                              'src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h',
2611                              'src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h',
2612                              'src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h',
2613                              'src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h',
2614                              'src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h',
2615                              'src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h',
2616                              'src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h',
2617                              'src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h',
2618                              'src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h',
2619                              'src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h',
2620                              'src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h',
2621                              'src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h',
2622                              'src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h',
2623                              'src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h',
2624                              'src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h',
2625                              'src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h',
2626                              'src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h',
2627                              'src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h',
2628                              'src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h',
2629                              'src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h',
2630                              'src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h',
2631                              'src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h',
2632                              'src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h',
2633                              'src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h',
2634                              'src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h',
2635                              'src/core/ext/upb-gen/envoy/type/v3/http.upb.h',
2636                              'src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h',
2637                              'src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h',
2638                              'src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h',
2639                              'src/core/ext/upb-gen/envoy/type/v3/percent.upb.h',
2640                              'src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h',
2641                              'src/core/ext/upb-gen/envoy/type/v3/range.upb.h',
2642                              'src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h',
2643                              'src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h',
2644                              'src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h',
2645                              'src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h',
2646                              'src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h',
2647                              'src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h',
2648                              'src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h',
2649                              'src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h',
2650                              'src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h',
2651                              'src/core/ext/upb-gen/google/api/annotations.upb.h',
2652                              'src/core/ext/upb-gen/google/api/annotations.upb_minitable.h',
2653                              'src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h',
2654                              'src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h',
2655                              'src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h',
2656                              'src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h',
2657                              'src/core/ext/upb-gen/google/api/http.upb.h',
2658                              'src/core/ext/upb-gen/google/api/http.upb_minitable.h',
2659                              'src/core/ext/upb-gen/google/api/httpbody.upb.h',
2660                              'src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h',
2661                              'src/core/ext/upb-gen/google/protobuf/any.upb.h',
2662                              'src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h',
2663                              'src/core/ext/upb-gen/google/protobuf/descriptor.upb.h',
2664                              'src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h',
2665                              'src/core/ext/upb-gen/google/protobuf/duration.upb.h',
2666                              'src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h',
2667                              'src/core/ext/upb-gen/google/protobuf/empty.upb.h',
2668                              'src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h',
2669                              'src/core/ext/upb-gen/google/protobuf/struct.upb.h',
2670                              'src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h',
2671                              'src/core/ext/upb-gen/google/protobuf/timestamp.upb.h',
2672                              'src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h',
2673                              'src/core/ext/upb-gen/google/protobuf/wrappers.upb.h',
2674                              'src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h',
2675                              'src/core/ext/upb-gen/google/rpc/status.upb.h',
2676                              'src/core/ext/upb-gen/google/rpc/status.upb_minitable.h',
2677                              'src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h',
2678                              'src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h',
2679                              'src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h',
2680                              'src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h',
2681                              'src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h',
2682                              'src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h',
2683                              'src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h',
2684                              'src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h',
2685                              'src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h',
2686                              'src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h',
2687                              'src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h',
2688                              'src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h',
2689                              'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h',
2690                              'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h',
2691                              'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h',
2692                              'src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h',
2693                              'src/core/ext/upb-gen/udpa/annotations/migrate.upb.h',
2694                              'src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h',
2695                              'src/core/ext/upb-gen/udpa/annotations/security.upb.h',
2696                              'src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h',
2697                              'src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h',
2698                              'src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h',
2699                              'src/core/ext/upb-gen/udpa/annotations/status.upb.h',
2700                              'src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h',
2701                              'src/core/ext/upb-gen/udpa/annotations/versioning.upb.h',
2702                              'src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h',
2703                              'src/core/ext/upb-gen/validate/validate.upb.h',
2704                              'src/core/ext/upb-gen/validate/validate.upb_minitable.h',
2705                              'src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h',
2706                              'src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h',
2707                              'src/core/ext/upb-gen/xds/annotations/v3/security.upb.h',
2708                              'src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h',
2709                              'src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h',
2710                              'src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h',
2711                              'src/core/ext/upb-gen/xds/annotations/v3/status.upb.h',
2712                              'src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h',
2713                              'src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h',
2714                              'src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h',
2715                              'src/core/ext/upb-gen/xds/core/v3/authority.upb.h',
2716                              'src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h',
2717                              'src/core/ext/upb-gen/xds/core/v3/cidr.upb.h',
2718                              'src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h',
2719                              'src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h',
2720                              'src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h',
2721                              'src/core/ext/upb-gen/xds/core/v3/context_params.upb.h',
2722                              'src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h',
2723                              'src/core/ext/upb-gen/xds/core/v3/extension.upb.h',
2724                              'src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h',
2725                              'src/core/ext/upb-gen/xds/core/v3/resource.upb.h',
2726                              'src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h',
2727                              'src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h',
2728                              'src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h',
2729                              'src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h',
2730                              'src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h',
2731                              'src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h',
2732                              'src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h',
2733                              'src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h',
2734                              'src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h',
2735                              'src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h',
2736                              'src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h',
2737                              'src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h',
2738                              'src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h',
2739                              'src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h',
2740                              'src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h',
2741                              'src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h',
2742                              'src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h',
2743                              'src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h',
2744                              'src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h',
2745                              'src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h',
2746                              'src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h',
2747                              'src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h',
2748                              'src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h',
2749                              'src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h',
2750                              'src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h',
2751                              'src/core/ext/upb-gen/xds/type/v3/cel.upb.h',
2752                              'src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h',
2753                              'src/core/ext/upb-gen/xds/type/v3/range.upb.h',
2754                              'src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h',
2755                              'src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h',
2756                              'src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h',
2757                              'src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h',
2758                              'src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h',
2759                              'src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h',
2760                              'src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h',
2761                              'src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h',
2762                              'src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h',
2763                              'src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h',
2764                              'src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h',
2765                              'src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h',
2766                              'src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h',
2767                              'src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h',
2768                              'src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h',
2769                              'src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h',
2770                              'src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h',
2771                              'src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h',
2772                              'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h',
2773                              'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h',
2774                              'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h',
2775                              'src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h',
2776                              'src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h',
2777                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h',
2778                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h',
2779                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h',
2780                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h',
2781                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h',
2782                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h',
2783                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h',
2784                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h',
2785                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h',
2786                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h',
2787                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h',
2788                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h',
2789                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h',
2790                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h',
2791                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h',
2792                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h',
2793                              'src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h',
2794                              'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h',
2795                              'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h',
2796                              'src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h',
2797                              'src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h',
2798                              'src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h',
2799                              'src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h',
2800                              'src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h',
2801                              'src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h',
2802                              'src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h',
2803                              'src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h',
2804                              'src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h',
2805                              'src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h',
2806                              'src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h',
2807                              'src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h',
2808                              'src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h',
2809                              'src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h',
2810                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h',
2811                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h',
2812                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h',
2813                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h',
2814                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h',
2815                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h',
2816                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h',
2817                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h',
2818                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h',
2819                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h',
2820                              'src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h',
2821                              'src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h',
2822                              'src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h',
2823                              'src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h',
2824                              'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h',
2825                              'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h',
2826                              'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h',
2827                              'src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h',
2828                              'src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h',
2829                              'src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h',
2830                              'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h',
2831                              'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h',
2832                              'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h',
2833                              'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h',
2834                              'src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h',
2835                              'src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h',
2836                              'src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h',
2837                              'src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h',
2838                              'src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h',
2839                              'src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h',
2840                              'src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h',
2841                              'src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h',
2842                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h',
2843                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h',
2844                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h',
2845                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h',
2846                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h',
2847                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h',
2848                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h',
2849                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h',
2850                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h',
2851                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h',
2852                              'src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h',
2853                              'src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h',
2854                              'src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h',
2855                              'src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h',
2856                              'src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h',
2857                              'src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h',
2858                              'src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h',
2859                              'src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h',
2860                              'src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h',
2861                              'src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h',
2862                              'src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h',
2863                              'src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h',
2864                              'src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h',
2865                              'src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h',
2866                              'src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h',
2867                              'src/core/ext/upbdefs-gen/google/api/http.upbdefs.h',
2868                              'src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h',
2869                              'src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h',
2870                              'src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h',
2871                              'src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h',
2872                              'src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h',
2873                              'src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h',
2874                              'src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h',
2875                              'src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h',
2876                              'src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h',
2877                              'src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h',
2878                              'src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h',
2879                              'src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h',
2880                              'src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h',
2881                              'src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h',
2882                              'src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h',
2883                              'src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h',
2884                              'src/core/ext/upbdefs-gen/validate/validate.upbdefs.h',
2885                              'src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h',
2886                              'src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h',
2887                              'src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h',
2888                              'src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h',
2889                              'src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h',
2890                              'src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h',
2891                              'src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h',
2892                              'src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h',
2893                              'src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h',
2894                              'src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h',
2895                              'src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h',
2896                              'src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h',
2897                              'src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h',
2898                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h',
2899                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h',
2900                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h',
2901                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h',
2902                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h',
2903                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h',
2904                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h',
2905                              'src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h',
2906                              'src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h',
2907                              'src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h',
2908                              'src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h',
2909                              'src/core/ext/xds/certificate_provider_store.h',
2910                              'src/core/ext/xds/file_watcher_certificate_provider_factory.h',
2911                              'src/core/ext/xds/upb_utils.h',
2912                              'src/core/ext/xds/xds_api.h',
2913                              'src/core/ext/xds/xds_audit_logger_registry.h',
2914                              'src/core/ext/xds/xds_bootstrap.h',
2915                              'src/core/ext/xds/xds_bootstrap_grpc.h',
2916                              'src/core/ext/xds/xds_certificate_provider.h',
2917                              'src/core/ext/xds/xds_channel_args.h',
2918                              'src/core/ext/xds/xds_channel_stack_modifier.h',
2919                              'src/core/ext/xds/xds_client.h',
2920                              'src/core/ext/xds/xds_client_grpc.h',
2921                              'src/core/ext/xds/xds_client_stats.h',
2922                              'src/core/ext/xds/xds_cluster.h',
2923                              'src/core/ext/xds/xds_cluster_specifier_plugin.h',
2924                              'src/core/ext/xds/xds_common_types.h',
2925                              'src/core/ext/xds/xds_endpoint.h',
2926                              'src/core/ext/xds/xds_health_status.h',
2927                              'src/core/ext/xds/xds_http_fault_filter.h',
2928                              'src/core/ext/xds/xds_http_filters.h',
2929                              'src/core/ext/xds/xds_http_rbac_filter.h',
2930                              'src/core/ext/xds/xds_http_stateful_session_filter.h',
2931                              'src/core/ext/xds/xds_lb_policy_registry.h',
2932                              'src/core/ext/xds/xds_listener.h',
2933                              'src/core/ext/xds/xds_metrics.h',
2934                              'src/core/ext/xds/xds_resource_type.h',
2935                              'src/core/ext/xds/xds_resource_type_impl.h',
2936                              'src/core/ext/xds/xds_route_config.h',
2937                              'src/core/ext/xds/xds_routing.h',
2938                              'src/core/ext/xds/xds_transport.h',
2939                              'src/core/ext/xds/xds_transport_grpc.h',
2940                              'src/core/lib/address_utils/parse_address.h',
2941                              'src/core/lib/address_utils/sockaddr_utils.h',
2942                              'src/core/lib/avl/avl.h',
2943                              'src/core/lib/backoff/backoff.h',
2944                              'src/core/lib/backoff/random_early_detection.h',
2945                              'src/core/lib/channel/call_finalization.h',
2946                              'src/core/lib/channel/call_tracer.h',
2947                              'src/core/lib/channel/channel_args.h',
2948                              'src/core/lib/channel/channel_args_preconditioning.h',
2949                              'src/core/lib/channel/channel_fwd.h',
2950                              'src/core/lib/channel/channel_stack.h',
2951                              'src/core/lib/channel/channel_stack_builder.h',
2952                              'src/core/lib/channel/channel_stack_builder_impl.h',
2953                              'src/core/lib/channel/channel_stack_trace.h',
2954                              'src/core/lib/channel/channel_trace.h',
2955                              'src/core/lib/channel/channelz.h',
2956                              'src/core/lib/channel/channelz_registry.h',
2957                              'src/core/lib/channel/connected_channel.h',
2958                              'src/core/lib/channel/context.h',
2959                              'src/core/lib/channel/metrics.h',
2960                              'src/core/lib/channel/promise_based_filter.h',
2961                              'src/core/lib/channel/server_call_tracer_filter.h',
2962                              'src/core/lib/channel/status_util.h',
2963                              'src/core/lib/channel/tcp_tracer.h',
2964                              'src/core/lib/compression/compression_internal.h',
2965                              'src/core/lib/compression/message_compress.h',
2966                              'src/core/lib/config/config_vars.h',
2967                              'src/core/lib/config/core_configuration.h',
2968                              'src/core/lib/config/load_config.h',
2969                              'src/core/lib/debug/event_log.h',
2970                              'src/core/lib/debug/histogram_view.h',
2971                              'src/core/lib/debug/stats.h',
2972                              'src/core/lib/debug/stats_data.h',
2973                              'src/core/lib/debug/trace.h',
2974                              'src/core/lib/event_engine/ares_resolver.h',
2975                              'src/core/lib/event_engine/cf_engine/cf_engine.h',
2976                              'src/core/lib/event_engine/cf_engine/cfstream_endpoint.h',
2977                              'src/core/lib/event_engine/cf_engine/cftype_unique_ref.h',
2978                              'src/core/lib/event_engine/cf_engine/dns_service_resolver.h',
2979                              'src/core/lib/event_engine/channel_args_endpoint_config.h',
2980                              'src/core/lib/event_engine/common_closures.h',
2981                              'src/core/lib/event_engine/default_event_engine.h',
2982                              'src/core/lib/event_engine/default_event_engine_factory.h',
2983                              'src/core/lib/event_engine/event_engine_context.h',
2984                              'src/core/lib/event_engine/extensions/can_track_errors.h',
2985                              'src/core/lib/event_engine/extensions/chaotic_good_extension.h',
2986                              'src/core/lib/event_engine/extensions/supports_fd.h',
2987                              'src/core/lib/event_engine/forkable.h',
2988                              'src/core/lib/event_engine/grpc_polled_fd.h',
2989                              'src/core/lib/event_engine/handle_containers.h',
2990                              'src/core/lib/event_engine/memory_allocator_factory.h',
2991                              'src/core/lib/event_engine/nameser.h',
2992                              'src/core/lib/event_engine/poller.h',
2993                              'src/core/lib/event_engine/posix.h',
2994                              'src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h',
2995                              'src/core/lib/event_engine/posix_engine/ev_poll_posix.h',
2996                              'src/core/lib/event_engine/posix_engine/event_poller.h',
2997                              'src/core/lib/event_engine/posix_engine/event_poller_posix_default.h',
2998                              'src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h',
2999                              'src/core/lib/event_engine/posix_engine/internal_errqueue.h',
3000                              'src/core/lib/event_engine/posix_engine/lockfree_event.h',
3001                              'src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h',
3002                              'src/core/lib/event_engine/posix_engine/posix_endpoint.h',
3003                              'src/core/lib/event_engine/posix_engine/posix_engine.h',
3004                              'src/core/lib/event_engine/posix_engine/posix_engine_closure.h',
3005                              'src/core/lib/event_engine/posix_engine/posix_engine_listener.h',
3006                              'src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h',
3007                              'src/core/lib/event_engine/posix_engine/tcp_socket_utils.h',
3008                              'src/core/lib/event_engine/posix_engine/timer.h',
3009                              'src/core/lib/event_engine/posix_engine/timer_heap.h',
3010                              'src/core/lib/event_engine/posix_engine/timer_manager.h',
3011                              'src/core/lib/event_engine/posix_engine/traced_buffer_list.h',
3012                              'src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h',
3013                              'src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h',
3014                              'src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h',
3015                              'src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h',
3016                              'src/core/lib/event_engine/query_extensions.h',
3017                              'src/core/lib/event_engine/ref_counted_dns_resolver_interface.h',
3018                              'src/core/lib/event_engine/resolved_address_internal.h',
3019                              'src/core/lib/event_engine/shim.h',
3020                              'src/core/lib/event_engine/tcp_socket_utils.h',
3021                              'src/core/lib/event_engine/thread_local.h',
3022                              'src/core/lib/event_engine/thread_pool/thread_count.h',
3023                              'src/core/lib/event_engine/thread_pool/thread_pool.h',
3024                              'src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h',
3025                              'src/core/lib/event_engine/thready_event_engine/thready_event_engine.h',
3026                              'src/core/lib/event_engine/time_util.h',
3027                              'src/core/lib/event_engine/trace.h',
3028                              'src/core/lib/event_engine/utils.h',
3029                              'src/core/lib/event_engine/windows/grpc_polled_fd_windows.h',
3030                              'src/core/lib/event_engine/windows/iocp.h',
3031                              'src/core/lib/event_engine/windows/native_windows_dns_resolver.h',
3032                              'src/core/lib/event_engine/windows/win_socket.h',
3033                              'src/core/lib/event_engine/windows/windows_endpoint.h',
3034                              'src/core/lib/event_engine/windows/windows_engine.h',
3035                              'src/core/lib/event_engine/windows/windows_listener.h',
3036                              'src/core/lib/event_engine/work_queue/basic_work_queue.h',
3037                              'src/core/lib/event_engine/work_queue/work_queue.h',
3038                              'src/core/lib/experiments/config.h',
3039                              'src/core/lib/experiments/experiments.h',
3040                              'src/core/lib/gpr/alloc.h',
3041                              'src/core/lib/gpr/log_internal.h',
3042                              'src/core/lib/gpr/spinlock.h',
3043                              'src/core/lib/gpr/string.h',
3044                              'src/core/lib/gpr/time_precise.h',
3045                              'src/core/lib/gpr/tmpfile.h',
3046                              'src/core/lib/gpr/useful.h',
3047                              'src/core/lib/gprpp/atomic_utils.h',
3048                              'src/core/lib/gprpp/bitset.h',
3049                              'src/core/lib/gprpp/chunked_vector.h',
3050                              'src/core/lib/gprpp/construct_destruct.h',
3051                              'src/core/lib/gprpp/cpp_impl_of.h',
3052                              'src/core/lib/gprpp/crash.h',
3053                              'src/core/lib/gprpp/debug_location.h',
3054                              'src/core/lib/gprpp/directory_reader.h',
3055                              'src/core/lib/gprpp/down_cast.h',
3056                              'src/core/lib/gprpp/dual_ref_counted.h',
3057                              'src/core/lib/gprpp/env.h',
3058                              'src/core/lib/gprpp/examine_stack.h',
3059                              'src/core/lib/gprpp/fork.h',
3060                              'src/core/lib/gprpp/host_port.h',
3061                              'src/core/lib/gprpp/if_list.h',
3062                              'src/core/lib/gprpp/load_file.h',
3063                              'src/core/lib/gprpp/manual_constructor.h',
3064                              'src/core/lib/gprpp/match.h',
3065                              'src/core/lib/gprpp/memory.h',
3066                              'src/core/lib/gprpp/mpscq.h',
3067                              'src/core/lib/gprpp/no_destruct.h',
3068                              'src/core/lib/gprpp/notification.h',
3069                              'src/core/lib/gprpp/orphanable.h',
3070                              'src/core/lib/gprpp/overload.h',
3071                              'src/core/lib/gprpp/packed_table.h',
3072                              'src/core/lib/gprpp/per_cpu.h',
3073                              'src/core/lib/gprpp/ref_counted.h',
3074                              'src/core/lib/gprpp/ref_counted_ptr.h',
3075                              'src/core/lib/gprpp/ref_counted_string.h',
3076                              'src/core/lib/gprpp/single_set_ptr.h',
3077                              'src/core/lib/gprpp/sorted_pack.h',
3078                              'src/core/lib/gprpp/stat.h',
3079                              'src/core/lib/gprpp/status_helper.h',
3080                              'src/core/lib/gprpp/strerror.h',
3081                              'src/core/lib/gprpp/sync.h',
3082                              'src/core/lib/gprpp/table.h',
3083                              'src/core/lib/gprpp/tchar.h',
3084                              'src/core/lib/gprpp/thd.h',
3085                              'src/core/lib/gprpp/time.h',
3086                              'src/core/lib/gprpp/time_averaged_stats.h',
3087                              'src/core/lib/gprpp/time_util.h',
3088                              'src/core/lib/gprpp/type_list.h',
3089                              'src/core/lib/gprpp/unique_type_name.h',
3090                              'src/core/lib/gprpp/uuid_v4.h',
3091                              'src/core/lib/gprpp/validation_errors.h',
3092                              'src/core/lib/gprpp/work_serializer.h',
3093                              'src/core/lib/gprpp/xxhash_inline.h',
3094                              'src/core/lib/handshaker/proxy_mapper.h',
3095                              'src/core/lib/handshaker/proxy_mapper_registry.h',
3096                              'src/core/lib/http/format_request.h',
3097                              'src/core/lib/http/httpcli.h',
3098                              'src/core/lib/http/httpcli_ssl_credentials.h',
3099                              'src/core/lib/http/parser.h',
3100                              'src/core/lib/iomgr/block_annotate.h',
3101                              'src/core/lib/iomgr/buffer_list.h',
3102                              'src/core/lib/iomgr/call_combiner.h',
3103                              'src/core/lib/iomgr/cfstream_handle.h',
3104                              'src/core/lib/iomgr/closure.h',
3105                              'src/core/lib/iomgr/combiner.h',
3106                              'src/core/lib/iomgr/dynamic_annotations.h',
3107                              'src/core/lib/iomgr/endpoint.h',
3108                              'src/core/lib/iomgr/endpoint_cfstream.h',
3109                              'src/core/lib/iomgr/endpoint_pair.h',
3110                              'src/core/lib/iomgr/error.h',
3111                              'src/core/lib/iomgr/error_cfstream.h',
3112                              'src/core/lib/iomgr/ev_apple.h',
3113                              'src/core/lib/iomgr/ev_epoll1_linux.h',
3114                              'src/core/lib/iomgr/ev_poll_posix.h',
3115                              'src/core/lib/iomgr/ev_posix.h',
3116                              'src/core/lib/iomgr/event_engine_shims/closure.h',
3117                              'src/core/lib/iomgr/event_engine_shims/endpoint.h',
3118                              'src/core/lib/iomgr/event_engine_shims/tcp_client.h',
3119                              'src/core/lib/iomgr/exec_ctx.h',
3120                              'src/core/lib/iomgr/executor.h',
3121                              'src/core/lib/iomgr/gethostname.h',
3122                              'src/core/lib/iomgr/grpc_if_nametoindex.h',
3123                              'src/core/lib/iomgr/internal_errqueue.h',
3124                              'src/core/lib/iomgr/iocp_windows.h',
3125                              'src/core/lib/iomgr/iomgr.h',
3126                              'src/core/lib/iomgr/iomgr_fwd.h',
3127                              'src/core/lib/iomgr/iomgr_internal.h',
3128                              'src/core/lib/iomgr/lockfree_event.h',
3129                              'src/core/lib/iomgr/nameser.h',
3130                              'src/core/lib/iomgr/polling_entity.h',
3131                              'src/core/lib/iomgr/pollset.h',
3132                              'src/core/lib/iomgr/pollset_set.h',
3133                              'src/core/lib/iomgr/pollset_set_windows.h',
3134                              'src/core/lib/iomgr/pollset_windows.h',
3135                              'src/core/lib/iomgr/port.h',
3136                              'src/core/lib/iomgr/python_util.h',
3137                              'src/core/lib/iomgr/resolve_address.h',
3138                              'src/core/lib/iomgr/resolve_address_impl.h',
3139                              'src/core/lib/iomgr/resolve_address_posix.h',
3140                              'src/core/lib/iomgr/resolve_address_windows.h',
3141                              'src/core/lib/iomgr/resolved_address.h',
3142                              'src/core/lib/iomgr/sockaddr.h',
3143                              'src/core/lib/iomgr/sockaddr_posix.h',
3144                              'src/core/lib/iomgr/sockaddr_windows.h',
3145                              'src/core/lib/iomgr/socket_factory_posix.h',
3146                              'src/core/lib/iomgr/socket_mutator.h',
3147                              'src/core/lib/iomgr/socket_utils.h',
3148                              'src/core/lib/iomgr/socket_utils_posix.h',
3149                              'src/core/lib/iomgr/socket_windows.h',
3150                              'src/core/lib/iomgr/systemd_utils.h',
3151                              'src/core/lib/iomgr/tcp_client.h',
3152                              'src/core/lib/iomgr/tcp_client_posix.h',
3153                              'src/core/lib/iomgr/tcp_posix.h',
3154                              'src/core/lib/iomgr/tcp_server.h',
3155                              'src/core/lib/iomgr/tcp_server_utils_posix.h',
3156                              'src/core/lib/iomgr/tcp_windows.h',
3157                              'src/core/lib/iomgr/timer.h',
3158                              'src/core/lib/iomgr/timer_generic.h',
3159                              'src/core/lib/iomgr/timer_heap.h',
3160                              'src/core/lib/iomgr/timer_manager.h',
3161                              'src/core/lib/iomgr/unix_sockets_posix.h',
3162                              'src/core/lib/iomgr/vsock.h',
3163                              'src/core/lib/iomgr/wakeup_fd_pipe.h',
3164                              'src/core/lib/iomgr/wakeup_fd_posix.h',
3165                              'src/core/lib/json/json.h',
3166                              'src/core/lib/json/json_args.h',
3167                              'src/core/lib/json/json_channel_args.h',
3168                              'src/core/lib/json/json_object_loader.h',
3169                              'src/core/lib/json/json_reader.h',
3170                              'src/core/lib/json/json_util.h',
3171                              'src/core/lib/json/json_writer.h',
3172                              'src/core/lib/matchers/matchers.h',
3173                              'src/core/lib/promise/activity.h',
3174                              'src/core/lib/promise/all_ok.h',
3175                              'src/core/lib/promise/arena_promise.h',
3176                              'src/core/lib/promise/cancel_callback.h',
3177                              'src/core/lib/promise/context.h',
3178                              'src/core/lib/promise/detail/basic_seq.h',
3179                              'src/core/lib/promise/detail/join_state.h',
3180                              'src/core/lib/promise/detail/promise_factory.h',
3181                              'src/core/lib/promise/detail/promise_like.h',
3182                              'src/core/lib/promise/detail/seq_state.h',
3183                              'src/core/lib/promise/detail/status.h',
3184                              'src/core/lib/promise/exec_ctx_wakeup_scheduler.h',
3185                              'src/core/lib/promise/for_each.h',
3186                              'src/core/lib/promise/if.h',
3187                              'src/core/lib/promise/interceptor_list.h',
3188                              'src/core/lib/promise/latch.h',
3189                              'src/core/lib/promise/loop.h',
3190                              'src/core/lib/promise/map.h',
3191                              'src/core/lib/promise/party.h',
3192                              'src/core/lib/promise/pipe.h',
3193                              'src/core/lib/promise/poll.h',
3194                              'src/core/lib/promise/prioritized_race.h',
3195                              'src/core/lib/promise/promise.h',
3196                              'src/core/lib/promise/race.h',
3197                              'src/core/lib/promise/seq.h',
3198                              'src/core/lib/promise/sleep.h',
3199                              'src/core/lib/promise/status_flag.h',
3200                              'src/core/lib/promise/trace.h',
3201                              'src/core/lib/promise/try_join.h',
3202                              'src/core/lib/promise/try_seq.h',
3203                              'src/core/lib/resource_quota/api.h',
3204                              'src/core/lib/resource_quota/arena.h',
3205                              'src/core/lib/resource_quota/connection_quota.h',
3206                              'src/core/lib/resource_quota/memory_quota.h',
3207                              'src/core/lib/resource_quota/periodic_update.h',
3208                              'src/core/lib/resource_quota/resource_quota.h',
3209                              'src/core/lib/resource_quota/thread_quota.h',
3210                              'src/core/lib/resource_quota/trace.h',
3211                              'src/core/lib/security/authorization/audit_logging.h',
3212                              'src/core/lib/security/authorization/authorization_engine.h',
3213                              'src/core/lib/security/authorization/authorization_policy_provider.h',
3214                              'src/core/lib/security/authorization/evaluate_args.h',
3215                              'src/core/lib/security/authorization/grpc_authorization_engine.h',
3216                              'src/core/lib/security/authorization/grpc_server_authz_filter.h',
3217                              'src/core/lib/security/authorization/matchers.h',
3218                              'src/core/lib/security/authorization/rbac_policy.h',
3219                              'src/core/lib/security/authorization/stdout_logger.h',
3220                              'src/core/lib/security/certificate_provider/certificate_provider_factory.h',
3221                              'src/core/lib/security/certificate_provider/certificate_provider_registry.h',
3222                              'src/core/lib/security/context/security_context.h',
3223                              'src/core/lib/security/credentials/alts/alts_credentials.h',
3224                              'src/core/lib/security/credentials/alts/check_gcp_environment.h',
3225                              'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
3226                              'src/core/lib/security/credentials/call_creds_util.h',
3227                              'src/core/lib/security/credentials/channel_creds_registry.h',
3228                              'src/core/lib/security/credentials/composite/composite_credentials.h',
3229                              'src/core/lib/security/credentials/credentials.h',
3230                              'src/core/lib/security/credentials/external/aws_external_account_credentials.h',
3231                              'src/core/lib/security/credentials/external/aws_request_signer.h',
3232                              'src/core/lib/security/credentials/external/external_account_credentials.h',
3233                              'src/core/lib/security/credentials/external/file_external_account_credentials.h',
3234                              'src/core/lib/security/credentials/external/url_external_account_credentials.h',
3235                              'src/core/lib/security/credentials/fake/fake_credentials.h',
3236                              'src/core/lib/security/credentials/google_default/google_default_credentials.h',
3237                              'src/core/lib/security/credentials/iam/iam_credentials.h',
3238                              'src/core/lib/security/credentials/insecure/insecure_credentials.h',
3239                              'src/core/lib/security/credentials/jwt/json_token.h',
3240                              'src/core/lib/security/credentials/jwt/jwt_credentials.h',
3241                              'src/core/lib/security/credentials/jwt/jwt_verifier.h',
3242                              'src/core/lib/security/credentials/local/local_credentials.h',
3243                              'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
3244                              'src/core/lib/security/credentials/plugin/plugin_credentials.h',
3245                              'src/core/lib/security/credentials/ssl/ssl_credentials.h',
3246                              'src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h',
3247                              'src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h',
3248                              'src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h',
3249                              'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h',
3250                              'src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h',
3251                              'src/core/lib/security/credentials/tls/tls_credentials.h',
3252                              'src/core/lib/security/credentials/tls/tls_utils.h',
3253                              'src/core/lib/security/credentials/xds/xds_credentials.h',
3254                              'src/core/lib/security/security_connector/alts/alts_security_connector.h',
3255                              'src/core/lib/security/security_connector/fake/fake_security_connector.h',
3256                              'src/core/lib/security/security_connector/insecure/insecure_security_connector.h',
3257                              'src/core/lib/security/security_connector/load_system_roots.h',
3258                              'src/core/lib/security/security_connector/load_system_roots_supported.h',
3259                              'src/core/lib/security/security_connector/local/local_security_connector.h',
3260                              'src/core/lib/security/security_connector/security_connector.h',
3261                              'src/core/lib/security/security_connector/ssl/ssl_security_connector.h',
3262                              'src/core/lib/security/security_connector/ssl_utils.h',
3263                              'src/core/lib/security/security_connector/tls/tls_security_connector.h',
3264                              'src/core/lib/security/transport/auth_filters.h',
3265                              'src/core/lib/security/transport/secure_endpoint.h',
3266                              'src/core/lib/security/transport/security_handshaker.h',
3267                              'src/core/lib/security/transport/tsi_error.h',
3268                              'src/core/lib/security/util/json_util.h',
3269                              'src/core/lib/slice/percent_encoding.h',
3270                              'src/core/lib/slice/slice.h',
3271                              'src/core/lib/slice/slice_buffer.h',
3272                              'src/core/lib/slice/slice_internal.h',
3273                              'src/core/lib/slice/slice_refcount.h',
3274                              'src/core/lib/slice/slice_string_helpers.h',
3275                              'src/core/lib/surface/api_trace.h',
3276                              'src/core/lib/surface/call.h',
3277                              'src/core/lib/surface/call_test_only.h',
3278                              'src/core/lib/surface/call_trace.h',
3279                              'src/core/lib/surface/channel.h',
3280                              'src/core/lib/surface/channel_create.h',
3281                              'src/core/lib/surface/channel_init.h',
3282                              'src/core/lib/surface/channel_stack_type.h',
3283                              'src/core/lib/surface/completion_queue.h',
3284                              'src/core/lib/surface/completion_queue_factory.h',
3285                              'src/core/lib/surface/event_string.h',
3286                              'src/core/lib/surface/init.h',
3287                              'src/core/lib/surface/init_internally.h',
3288                              'src/core/lib/surface/lame_client.h',
3289                              'src/core/lib/surface/legacy_channel.h',
3290                              'src/core/lib/surface/server.h',
3291                              'src/core/lib/surface/server_interface.h',
3292                              'src/core/lib/surface/validate_metadata.h',
3293                              'src/core/lib/surface/wait_for_cq_end_op.h',
3294                              'src/core/lib/transport/batch_builder.h',
3295                              'src/core/lib/transport/bdp_estimator.h',
3296                              'src/core/lib/transport/call_filters.h',
3297                              'src/core/lib/transport/call_final_info.h',
3298                              'src/core/lib/transport/call_size_estimator.h',
3299                              'src/core/lib/transport/call_spine.h',
3300                              'src/core/lib/transport/connectivity_state.h',
3301                              'src/core/lib/transport/custom_metadata.h',
3302                              'src/core/lib/transport/endpoint_info_handshaker.h',
3303                              'src/core/lib/transport/error_utils.h',
3304                              'src/core/lib/transport/handshaker.h',
3305                              'src/core/lib/transport/handshaker_factory.h',
3306                              'src/core/lib/transport/handshaker_registry.h',
3307                              'src/core/lib/transport/http2_errors.h',
3308                              'src/core/lib/transport/http_connect_handshaker.h',
3309                              'src/core/lib/transport/message.h',
3310                              'src/core/lib/transport/metadata.h',
3311                              'src/core/lib/transport/metadata_batch.h',
3312                              'src/core/lib/transport/metadata_compression_traits.h',
3313                              'src/core/lib/transport/metadata_info.h',
3314                              'src/core/lib/transport/parsed_metadata.h',
3315                              'src/core/lib/transport/simple_slice_based_metadata.h',
3316                              'src/core/lib/transport/status_conversion.h',
3317                              'src/core/lib/transport/tcp_connect_handshaker.h',
3318                              'src/core/lib/transport/timeout_encoding.h',
3319                              'src/core/lib/transport/transport.h',
3320                              'src/core/lib/transport/transport_fwd.h',
3321                              'src/core/lib/uri/uri_parser.h',
3322                              'src/core/load_balancing/address_filtering.h',
3323                              'src/core/load_balancing/backend_metric_data.h',
3324                              'src/core/load_balancing/backend_metric_parser.h',
3325                              'src/core/load_balancing/child_policy_handler.h',
3326                              'src/core/load_balancing/delegating_helper.h',
3327                              'src/core/load_balancing/endpoint_list.h',
3328                              'src/core/load_balancing/grpclb/client_load_reporting_filter.h',
3329                              'src/core/load_balancing/grpclb/grpclb.h',
3330                              'src/core/load_balancing/grpclb/grpclb_balancer_addresses.h',
3331                              'src/core/load_balancing/grpclb/grpclb_client_stats.h',
3332                              'src/core/load_balancing/grpclb/load_balancer_api.h',
3333                              'src/core/load_balancing/health_check_client.h',
3334                              'src/core/load_balancing/health_check_client_internal.h',
3335                              'src/core/load_balancing/lb_policy.h',
3336                              'src/core/load_balancing/lb_policy_factory.h',
3337                              'src/core/load_balancing/lb_policy_registry.h',
3338                              'src/core/load_balancing/oob_backend_metric.h',
3339                              'src/core/load_balancing/oob_backend_metric_internal.h',
3340                              'src/core/load_balancing/outlier_detection/outlier_detection.h',
3341                              'src/core/load_balancing/pick_first/pick_first.h',
3342                              'src/core/load_balancing/ring_hash/ring_hash.h',
3343                              'src/core/load_balancing/rls/rls.h',
3344                              'src/core/load_balancing/subchannel_interface.h',
3345                              'src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h',
3346                              'src/core/load_balancing/weighted_target/weighted_target.h',
3347                              'src/core/load_balancing/xds/xds_channel_args.h',
3348                              'src/core/load_balancing/xds/xds_override_host.h',
3349                              'src/core/resolver/dns/c_ares/dns_resolver_ares.h',
3350                              'src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h',
3351                              'src/core/resolver/dns/c_ares/grpc_ares_wrapper.h',
3352                              'src/core/resolver/dns/dns_resolver_plugin.h',
3353                              'src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h',
3354                              'src/core/resolver/dns/event_engine/service_config_helper.h',
3355                              'src/core/resolver/dns/native/dns_resolver.h',
3356                              'src/core/resolver/endpoint_addresses.h',
3357                              'src/core/resolver/fake/fake_resolver.h',
3358                              'src/core/resolver/polling_resolver.h',
3359                              'src/core/resolver/resolver.h',
3360                              'src/core/resolver/resolver_factory.h',
3361                              'src/core/resolver/resolver_registry.h',
3362                              'src/core/resolver/server_address.h',
3363                              'src/core/resolver/xds/xds_dependency_manager.h',
3364                              'src/core/resolver/xds/xds_resolver_attributes.h',
3365                              'src/core/resolver/xds/xds_resolver_trace.h',
3366                              'src/core/service_config/service_config.h',
3367                              'src/core/service_config/service_config_call_data.h',
3368                              'src/core/service_config/service_config_impl.h',
3369                              'src/core/service_config/service_config_parser.h',
3370                              'src/core/tsi/alts/crypt/gsec.h',
3371                              'src/core/tsi/alts/frame_protector/alts_counter.h',
3372                              'src/core/tsi/alts/frame_protector/alts_crypter.h',
3373                              'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
3374                              'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
3375                              'src/core/tsi/alts/frame_protector/frame_handler.h',
3376                              'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
3377                              'src/core/tsi/alts/handshaker/alts_shared_resource.h',
3378                              'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
3379                              'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
3380                              'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
3381                              'src/core/tsi/alts/handshaker/transport_security_common_api.h',
3382                              'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
3383                              'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
3384                              'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
3385                              'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
3386                              'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
3387                              'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
3388                              'src/core/tsi/fake_transport_security.h',
3389                              'src/core/tsi/local_transport_security.h',
3390                              'src/core/tsi/ssl/key_logging/ssl_key_logging.h',
3391                              'src/core/tsi/ssl/session_cache/ssl_session.h',
3392                              'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
3393                              'src/core/tsi/ssl_transport_security.h',
3394                              'src/core/tsi/ssl_transport_security_utils.h',
3395                              'src/core/tsi/ssl_types.h',
3396                              'src/core/tsi/transport_security.h',
3397                              'src/core/tsi/transport_security_grpc.h',
3398                              'src/core/tsi/transport_security_interface.h',
3399                              'third_party/re2/re2/bitmap256.h',
3400                              'third_party/re2/re2/filtered_re2.h',
3401                              'third_party/re2/re2/pod_array.h',
3402                              'third_party/re2/re2/prefilter.h',
3403                              'third_party/re2/re2/prefilter_tree.h',
3404                              'third_party/re2/re2/prog.h',
3405                              'third_party/re2/re2/re2.h',
3406                              'third_party/re2/re2/regexp.h',
3407                              'third_party/re2/re2/set.h',
3408                              'third_party/re2/re2/sparse_array.h',
3409                              'third_party/re2/re2/sparse_set.h',
3410                              'third_party/re2/re2/stringpiece.h',
3411                              'third_party/re2/re2/unicode_casefold.h',
3412                              'third_party/re2/re2/unicode_groups.h',
3413                              'third_party/re2/re2/walker-inl.h',
3414                              'third_party/re2/util/logging.h',
3415                              'third_party/re2/util/mix.h',
3416                              'third_party/re2/util/mutex.h',
3417                              'third_party/re2/util/strutil.h',
3418                              'third_party/re2/util/utf.h',
3419                              'third_party/re2/util/util.h',
3420                              'third_party/upb/upb/base/descriptor_constants.h',
3421                              'third_party/upb/upb/base/internal/endian.h',
3422                              'third_party/upb/upb/base/internal/log2.h',
3423                              'third_party/upb/upb/base/status.h',
3424                              'third_party/upb/upb/base/status.hpp',
3425                              'third_party/upb/upb/base/string_view.h',
3426                              'third_party/upb/upb/base/upcast.h',
3427                              'third_party/upb/upb/generated_code_support.h',
3428                              'third_party/upb/upb/hash/common.h',
3429                              'third_party/upb/upb/hash/int_table.h',
3430                              'third_party/upb/upb/hash/str_table.h',
3431                              'third_party/upb/upb/json/decode.h',
3432                              'third_party/upb/upb/json/encode.h',
3433                              'third_party/upb/upb/lex/atoi.h',
3434                              'third_party/upb/upb/lex/round_trip.h',
3435                              'third_party/upb/upb/lex/strtod.h',
3436                              'third_party/upb/upb/lex/unicode.h',
3437                              'third_party/upb/upb/mem/alloc.h',
3438                              'third_party/upb/upb/mem/arena.h',
3439                              'third_party/upb/upb/mem/arena.hpp',
3440                              'third_party/upb/upb/mem/internal/arena.h',
3441                              'third_party/upb/upb/message/accessors.h',
3442                              'third_party/upb/upb/message/array.h',
3443                              'third_party/upb/upb/message/compat.h',
3444                              'third_party/upb/upb/message/copy.h',
3445                              'third_party/upb/upb/message/internal/accessors.h',
3446                              'third_party/upb/upb/message/internal/array.h',
3447                              'third_party/upb/upb/message/internal/extension.h',
3448                              'third_party/upb/upb/message/internal/map.h',
3449                              'third_party/upb/upb/message/internal/map_entry.h',
3450                              'third_party/upb/upb/message/internal/map_sorter.h',
3451                              'third_party/upb/upb/message/internal/message.h',
3452                              'third_party/upb/upb/message/internal/tagged_ptr.h',
3453                              'third_party/upb/upb/message/internal/types.h',
3454                              'third_party/upb/upb/message/map.h',
3455                              'third_party/upb/upb/message/map_gencode_util.h',
3456                              'third_party/upb/upb/message/message.h',
3457                              'third_party/upb/upb/message/tagged_ptr.h',
3458                              'third_party/upb/upb/message/value.h',
3459                              'third_party/upb/upb/mini_descriptor/build_enum.h',
3460                              'third_party/upb/upb/mini_descriptor/decode.h',
3461                              'third_party/upb/upb/mini_descriptor/internal/base92.h',
3462                              'third_party/upb/upb/mini_descriptor/internal/decoder.h',
3463                              'third_party/upb/upb/mini_descriptor/internal/encode.h',
3464                              'third_party/upb/upb/mini_descriptor/internal/encode.hpp',
3465                              'third_party/upb/upb/mini_descriptor/internal/modifiers.h',
3466                              'third_party/upb/upb/mini_descriptor/internal/wire_constants.h',
3467                              'third_party/upb/upb/mini_descriptor/link.h',
3468                              'third_party/upb/upb/mini_table/enum.h',
3469                              'third_party/upb/upb/mini_table/extension.h',
3470                              'third_party/upb/upb/mini_table/extension_registry.h',
3471                              'third_party/upb/upb/mini_table/field.h',
3472                              'third_party/upb/upb/mini_table/file.h',
3473                              'third_party/upb/upb/mini_table/internal/enum.h',
3474                              'third_party/upb/upb/mini_table/internal/extension.h',
3475                              'third_party/upb/upb/mini_table/internal/field.h',
3476                              'third_party/upb/upb/mini_table/internal/file.h',
3477                              'third_party/upb/upb/mini_table/internal/message.h',
3478                              'third_party/upb/upb/mini_table/internal/size_log2.h',
3479                              'third_party/upb/upb/mini_table/internal/sub.h',
3480                              'third_party/upb/upb/mini_table/message.h',
3481                              'third_party/upb/upb/mini_table/sub.h',
3482                              'third_party/upb/upb/port/atomic.h',
3483                              'third_party/upb/upb/port/def.inc',
3484                              'third_party/upb/upb/port/undef.inc',
3485                              'third_party/upb/upb/port/vsnprintf_compat.h',
3486                              'third_party/upb/upb/reflection/common.h',
3487                              'third_party/upb/upb/reflection/def.h',
3488                              'third_party/upb/upb/reflection/def.hpp',
3489                              'third_party/upb/upb/reflection/def_pool.h',
3490                              'third_party/upb/upb/reflection/def_type.h',
3491                              'third_party/upb/upb/reflection/enum_def.h',
3492                              'third_party/upb/upb/reflection/enum_reserved_range.h',
3493                              'third_party/upb/upb/reflection/enum_value_def.h',
3494                              'third_party/upb/upb/reflection/extension_range.h',
3495                              'third_party/upb/upb/reflection/field_def.h',
3496                              'third_party/upb/upb/reflection/file_def.h',
3497                              'third_party/upb/upb/reflection/internal/def_builder.h',
3498                              'third_party/upb/upb/reflection/internal/def_pool.h',
3499                              'third_party/upb/upb/reflection/internal/desc_state.h',
3500                              'third_party/upb/upb/reflection/internal/enum_def.h',
3501                              'third_party/upb/upb/reflection/internal/enum_reserved_range.h',
3502                              'third_party/upb/upb/reflection/internal/enum_value_def.h',
3503                              'third_party/upb/upb/reflection/internal/extension_range.h',
3504                              'third_party/upb/upb/reflection/internal/field_def.h',
3505                              'third_party/upb/upb/reflection/internal/file_def.h',
3506                              'third_party/upb/upb/reflection/internal/message_def.h',
3507                              'third_party/upb/upb/reflection/internal/message_reserved_range.h',
3508                              'third_party/upb/upb/reflection/internal/method_def.h',
3509                              'third_party/upb/upb/reflection/internal/oneof_def.h',
3510                              'third_party/upb/upb/reflection/internal/service_def.h',
3511                              'third_party/upb/upb/reflection/internal/strdup2.h',
3512                              'third_party/upb/upb/reflection/internal/upb_edition_defaults.h',
3513                              'third_party/upb/upb/reflection/message.h',
3514                              'third_party/upb/upb/reflection/message.hpp',
3515                              'third_party/upb/upb/reflection/message_def.h',
3516                              'third_party/upb/upb/reflection/message_reserved_range.h',
3517                              'third_party/upb/upb/reflection/method_def.h',
3518                              'third_party/upb/upb/reflection/oneof_def.h',
3519                              'third_party/upb/upb/reflection/service_def.h',
3520                              'third_party/upb/upb/text/encode.h',
3521                              'third_party/upb/upb/wire/decode.h',
3522                              'third_party/upb/upb/wire/encode.h',
3523                              'third_party/upb/upb/wire/eps_copy_input_stream.h',
3524                              'third_party/upb/upb/wire/internal/constants.h',
3525                              'third_party/upb/upb/wire/internal/decode_fast.h',
3526                              'third_party/upb/upb/wire/internal/decoder.h',
3527                              'third_party/upb/upb/wire/internal/reader.h',
3528                              'third_party/upb/upb/wire/reader.h',
3529                              'third_party/upb/upb/wire/types.h',
3530                              'third_party/utf8_range/utf8_range.h',
3531                              'third_party/xxhash/xxhash.h',
3532                              'third_party/zlib/crc32.h',
3533                              'third_party/zlib/deflate.h',
3534                              'third_party/zlib/gzguts.h',
3535                              'third_party/zlib/inffast.h',
3536                              'third_party/zlib/inffixed.h',
3537                              'third_party/zlib/inflate.h',
3538                              'third_party/zlib/inftrees.h',
3539                              'third_party/zlib/trees.h',
3540                              'third_party/zlib/zconf.h',
3541                              'third_party/zlib/zlib.h',
3542                              'third_party/zlib/zutil.h'
3543  end
3544
3545  # CFStream is now default. Leaving this subspec only for compatibility purpose.
3546  s.subspec 'CFStream-Implementation' do |ss|
3547    ss.dependency "#{s.name}/Implementation", version
3548  end
3549
3550  s.subspec 'Cronet-Interface' do |ss|
3551    ss.header_mappings_dir = 'include/grpc'
3552    ss.source_files = 'include/grpc/grpc_cronet.h'
3553  end
3554
3555  s.subspec 'Cronet-Implementation' do |ss|
3556    ss.header_mappings_dir = '.'
3557
3558    ss.dependency "#{s.name}/Interface", version
3559    ss.dependency "#{s.name}/Implementation", version
3560    ss.dependency "#{s.name}/Privacy", version
3561    ss.dependency "#{s.name}/Cronet-Interface", version
3562
3563    ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc',
3564                      'src/core/ext/transport/cronet/client/secure/cronet_channel_create.h',
3565                      'src/core/ext/transport/cronet/transport/cronet_status.cc',
3566                      'src/core/ext/transport/cronet/transport/cronet_status.h',
3567                      'src/core/ext/transport/cronet/transport/cronet_transport.cc',
3568                      'src/core/ext/transport/cronet/transport/cronet_transport.h',
3569                      'third_party/objective_c/Cronet/bidirectional_stream_c.h'
3570  end
3571
3572  # patch include of openssl to openssl_grpc
3573  s.prepare_command = <<-END_OF_COMMAND
3574    set -e
3575    find src/core -type f \\( -path '*.h' -or -path '*.cc' \\) -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include <openssl/(.*)>;#if COCOAPODS==1\\\n  #include <openssl_grpc/\\1>\\\n#else\\\n  #include <openssl/\\1>\\\n#endif;g'
3576    find src/core/ -type f -name '*.grpc_back' -print0 | xargs -0 rm
3577  END_OF_COMMAND
3578end
3579