Imported Upstream version 1.21.3
[platform/upstream/grpc.git] / gRPC-Core.podspec
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
22
23 Pod::Spec.new do |s|
24   s.name     = 'gRPC-Core'
25   version = '1.21.3'
26   s.version  = version
27   s.summary  = 'Core cross-platform gRPC library, written in C'
28   s.homepage = 'https://grpc.io'
29   s.license  = 'Apache License, Version 2.0'
30   s.authors  = { 'The gRPC contributors' => 'grpc-packages@google.com' }
31
32   s.source = {
33     :git => 'https://github.com/grpc/grpc.git',
34     :tag => "v#{version}",
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 = '7.0'
42   s.osx.deployment_target = '10.9'
43   s.tvos.deployment_target = '10.0'
44   
45   s.requires_arc = false
46
47   name = 'grpc'
48
49   # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
50   # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
51   # <gRPC-Core/grpc.h>`.
52   s.module_name = name
53
54   # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
55   # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
56   #
57   # TODO(jcanizales): Debug why this doesn't work on macOS.
58   s.header_mappings_dir = 'include/grpc'
59
60   # The above has an undesired effect when creating a static library: It forces users to write
61   # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
62   # because Cocoapods lets omit the pod name when including headers of static libraries, the
63   # following lets users write `#include <grpc/grpc.h>`.
64   s.header_dir = name
65
66   # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
67   s.module_map = 'include/grpc/module.modulemap'
68
69   # To compile the library, we need the user headers search path (quoted includes) to point to the
70   # root of the repo, and the system headers search path (angled includes) to point to `include/`.
71   # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
72   # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
73   #
74   # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
75   # is taken as an implementation detail. We've asked for an alternative, and have been told that
76   # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
77   #
78   # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
79   # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
80   # that assumption is wrong. In such case, the following settings need to be reset with the
81   # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
82   # Podfile; see `src/objective-c/tests/Podfile` for an example.
83   src_root = '$(PODS_ROOT)/gRPC-Core'
84   s.pod_target_xcconfig = {
85     'GRPC_SRC_ROOT' => src_root,
86     'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
87     'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
88     # If we don't set these two settings, `include/grpc/support/time.h` and
89     # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
90     # build.
91     'USE_HEADERMAP' => 'NO',
92     'ALWAYS_SEARCH_USER_PATHS' => 'NO',
93     'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"',
94     'CLANG_WARN_STRICT_PROTOTYPES' => 'NO',
95   }
96
97   s.default_subspecs = 'Interface', 'Implementation'
98   s.compiler_flags = '-DGRPC_ARES=0', '-DPB_FIELD_32BIT'
99   s.libraries = 'c++'
100
101   # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
102   # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
103   # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
104   # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
105   # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
106   # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
107   # making the linter happy.
108   #
109   # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
110   # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
111   s.subspec 'Interface' do |ss|
112     ss.header_mappings_dir = 'include/grpc'
113
114     ss.source_files = 'include/grpc/support/alloc.h',
115                       'include/grpc/support/atm.h',
116                       'include/grpc/support/atm_gcc_atomic.h',
117                       'include/grpc/support/atm_gcc_sync.h',
118                       'include/grpc/support/atm_windows.h',
119                       'include/grpc/support/cpu.h',
120                       'include/grpc/support/log.h',
121                       'include/grpc/support/log_windows.h',
122                       'include/grpc/support/port_platform.h',
123                       'include/grpc/support/string_util.h',
124                       'include/grpc/support/sync.h',
125                       'include/grpc/support/sync_custom.h',
126                       'include/grpc/support/sync_generic.h',
127                       'include/grpc/support/sync_posix.h',
128                       'include/grpc/support/sync_windows.h',
129                       'include/grpc/support/thd_id.h',
130                       'include/grpc/support/time.h',
131                       'include/grpc/impl/codegen/atm.h',
132                       'include/grpc/impl/codegen/atm_gcc_atomic.h',
133                       'include/grpc/impl/codegen/atm_gcc_sync.h',
134                       'include/grpc/impl/codegen/atm_windows.h',
135                       'include/grpc/impl/codegen/fork.h',
136                       'include/grpc/impl/codegen/gpr_slice.h',
137                       'include/grpc/impl/codegen/gpr_types.h',
138                       'include/grpc/impl/codegen/log.h',
139                       'include/grpc/impl/codegen/port_platform.h',
140                       'include/grpc/impl/codegen/sync.h',
141                       'include/grpc/impl/codegen/sync_custom.h',
142                       'include/grpc/impl/codegen/sync_generic.h',
143                       'include/grpc/impl/codegen/sync_posix.h',
144                       'include/grpc/impl/codegen/sync_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/grpc_types.h',
150                       'include/grpc/impl/codegen/propagation_bits.h',
151                       'include/grpc/impl/codegen/slice.h',
152                       'include/grpc/impl/codegen/status.h',
153                       'include/grpc/impl/codegen/atm.h',
154                       'include/grpc/impl/codegen/atm_gcc_atomic.h',
155                       'include/grpc/impl/codegen/atm_gcc_sync.h',
156                       'include/grpc/impl/codegen/atm_windows.h',
157                       'include/grpc/impl/codegen/fork.h',
158                       'include/grpc/impl/codegen/gpr_slice.h',
159                       'include/grpc/impl/codegen/gpr_types.h',
160                       'include/grpc/impl/codegen/log.h',
161                       'include/grpc/impl/codegen/port_platform.h',
162                       'include/grpc/impl/codegen/sync.h',
163                       'include/grpc/impl/codegen/sync_custom.h',
164                       'include/grpc/impl/codegen/sync_generic.h',
165                       'include/grpc/impl/codegen/sync_posix.h',
166                       'include/grpc/impl/codegen/sync_windows.h',
167                       'include/grpc/grpc_security.h',
168                       'include/grpc/byte_buffer.h',
169                       'include/grpc/byte_buffer_reader.h',
170                       'include/grpc/compression.h',
171                       'include/grpc/fork.h',
172                       'include/grpc/grpc.h',
173                       'include/grpc/grpc_posix.h',
174                       'include/grpc/grpc_security_constants.h',
175                       'include/grpc/load_reporting.h',
176                       'include/grpc/slice.h',
177                       'include/grpc/slice_buffer.h',
178                       'include/grpc/status.h',
179                       'include/grpc/support/workaround_list.h',
180                       'include/grpc/census.h'
181   end
182   s.subspec 'Implementation' do |ss|
183     ss.header_mappings_dir = '.'
184     ss.libraries = 'z'
185     ss.dependency "#{s.name}/Interface", version
186     ss.dependency 'BoringSSL-GRPC', '0.0.3'
187     ss.dependency 'nanopb', '~> 0.3'
188     ss.compiler_flags = '-DGRPC_SHADOW_BORINGSSL_SYMBOLS'
189
190     # To save you from scrolling, this is the last part of the podspec.
191     ss.source_files = 'src/core/lib/gpr/alloc.h',
192                       'src/core/lib/gpr/arena.h',
193                       'src/core/lib/gpr/env.h',
194                       'src/core/lib/gpr/host_port.h',
195                       'src/core/lib/gpr/mpscq.h',
196                       'src/core/lib/gpr/murmur_hash.h',
197                       'src/core/lib/gpr/spinlock.h',
198                       'src/core/lib/gpr/string.h',
199                       'src/core/lib/gpr/string_windows.h',
200                       'src/core/lib/gpr/time_precise.h',
201                       'src/core/lib/gpr/tls.h',
202                       'src/core/lib/gpr/tls_gcc.h',
203                       'src/core/lib/gpr/tls_msvc.h',
204                       'src/core/lib/gpr/tls_pthread.h',
205                       'src/core/lib/gpr/tmpfile.h',
206                       'src/core/lib/gpr/useful.h',
207                       'src/core/lib/gprpp/abstract.h',
208                       'src/core/lib/gprpp/arena.h',
209                       'src/core/lib/gprpp/atomic.h',
210                       'src/core/lib/gprpp/fork.h',
211                       'src/core/lib/gprpp/global_config.h',
212                       'src/core/lib/gprpp/global_config_custom.h',
213                       'src/core/lib/gprpp/global_config_env.h',
214                       'src/core/lib/gprpp/global_config_generic.h',
215                       'src/core/lib/gprpp/manual_constructor.h',
216                       'src/core/lib/gprpp/map.h',
217                       'src/core/lib/gprpp/memory.h',
218                       'src/core/lib/gprpp/pair.h',
219                       'src/core/lib/gprpp/sync.h',
220                       'src/core/lib/gprpp/thd.h',
221                       'src/core/lib/profiling/timers.h',
222                       'src/core/lib/gpr/alloc.cc',
223                       'src/core/lib/gpr/atm.cc',
224                       'src/core/lib/gpr/cpu_iphone.cc',
225                       'src/core/lib/gpr/cpu_linux.cc',
226                       'src/core/lib/gpr/cpu_posix.cc',
227                       'src/core/lib/gpr/cpu_windows.cc',
228                       'src/core/lib/gpr/env_linux.cc',
229                       'src/core/lib/gpr/env_posix.cc',
230                       'src/core/lib/gpr/env_windows.cc',
231                       'src/core/lib/gpr/host_port.cc',
232                       'src/core/lib/gpr/log.cc',
233                       'src/core/lib/gpr/log_android.cc',
234                       'src/core/lib/gpr/log_linux.cc',
235                       'src/core/lib/gpr/log_posix.cc',
236                       'src/core/lib/gpr/log_windows.cc',
237                       'src/core/lib/gpr/mpscq.cc',
238                       'src/core/lib/gpr/murmur_hash.cc',
239                       'src/core/lib/gpr/string.cc',
240                       'src/core/lib/gpr/string_posix.cc',
241                       'src/core/lib/gpr/string_util_windows.cc',
242                       'src/core/lib/gpr/string_windows.cc',
243                       'src/core/lib/gpr/sync.cc',
244                       'src/core/lib/gpr/sync_posix.cc',
245                       'src/core/lib/gpr/sync_windows.cc',
246                       'src/core/lib/gpr/time.cc',
247                       'src/core/lib/gpr/time_posix.cc',
248                       'src/core/lib/gpr/time_precise.cc',
249                       'src/core/lib/gpr/time_windows.cc',
250                       'src/core/lib/gpr/tls_pthread.cc',
251                       'src/core/lib/gpr/tmpfile_msys.cc',
252                       'src/core/lib/gpr/tmpfile_posix.cc',
253                       'src/core/lib/gpr/tmpfile_windows.cc',
254                       'src/core/lib/gpr/wrap_memcpy.cc',
255                       'src/core/lib/gprpp/arena.cc',
256                       'src/core/lib/gprpp/fork.cc',
257                       'src/core/lib/gprpp/global_config_env.cc',
258                       'src/core/lib/gprpp/thd_posix.cc',
259                       'src/core/lib/gprpp/thd_windows.cc',
260                       'src/core/lib/profiling/basic_timers.cc',
261                       'src/core/lib/profiling/stap_timers.cc',
262                       'src/core/ext/transport/chttp2/transport/bin_decoder.h',
263                       'src/core/ext/transport/chttp2/transport/bin_encoder.h',
264                       'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
265                       'src/core/ext/transport/chttp2/transport/context_list.h',
266                       'src/core/ext/transport/chttp2/transport/flow_control.h',
267                       'src/core/ext/transport/chttp2/transport/frame.h',
268                       'src/core/ext/transport/chttp2/transport/frame_data.h',
269                       'src/core/ext/transport/chttp2/transport/frame_goaway.h',
270                       'src/core/ext/transport/chttp2/transport/frame_ping.h',
271                       'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
272                       'src/core/ext/transport/chttp2/transport/frame_settings.h',
273                       'src/core/ext/transport/chttp2/transport/frame_window_update.h',
274                       'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
275                       'src/core/ext/transport/chttp2/transport/hpack_parser.h',
276                       'src/core/ext/transport/chttp2/transport/hpack_table.h',
277                       'src/core/ext/transport/chttp2/transport/http2_settings.h',
278                       'src/core/ext/transport/chttp2/transport/huffsyms.h',
279                       'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
280                       'src/core/ext/transport/chttp2/transport/internal.h',
281                       'src/core/ext/transport/chttp2/transport/stream_map.h',
282                       'src/core/ext/transport/chttp2/transport/varint.h',
283                       'src/core/ext/transport/chttp2/alpn/alpn.h',
284                       'src/core/ext/filters/http/client/http_client_filter.h',
285                       'src/core/ext/filters/http/message_compress/message_compress_filter.h',
286                       'src/core/ext/filters/http/server/http_server_filter.h',
287                       'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
288                       'src/core/ext/filters/client_channel/lb_policy/xds/xds.h',
289                       'src/core/lib/security/context/security_context.h',
290                       'src/core/lib/security/credentials/alts/alts_credentials.h',
291                       'src/core/lib/security/credentials/composite/composite_credentials.h',
292                       'src/core/lib/security/credentials/credentials.h',
293                       'src/core/lib/security/credentials/fake/fake_credentials.h',
294                       'src/core/lib/security/credentials/google_default/google_default_credentials.h',
295                       'src/core/lib/security/credentials/iam/iam_credentials.h',
296                       'src/core/lib/security/credentials/jwt/json_token.h',
297                       'src/core/lib/security/credentials/jwt/jwt_credentials.h',
298                       'src/core/lib/security/credentials/jwt/jwt_verifier.h',
299                       'src/core/lib/security/credentials/local/local_credentials.h',
300                       'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
301                       'src/core/lib/security/credentials/plugin/plugin_credentials.h',
302                       'src/core/lib/security/credentials/ssl/ssl_credentials.h',
303                       'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h',
304                       'src/core/lib/security/credentials/tls/spiffe_credentials.h',
305                       'src/core/lib/security/security_connector/alts/alts_security_connector.h',
306                       'src/core/lib/security/security_connector/fake/fake_security_connector.h',
307                       'src/core/lib/security/security_connector/load_system_roots.h',
308                       'src/core/lib/security/security_connector/load_system_roots_linux.h',
309                       'src/core/lib/security/security_connector/local/local_security_connector.h',
310                       'src/core/lib/security/security_connector/security_connector.h',
311                       'src/core/lib/security/security_connector/ssl/ssl_security_connector.h',
312                       'src/core/lib/security/security_connector/ssl_utils.h',
313                       'src/core/lib/security/security_connector/tls/spiffe_security_connector.h',
314                       'src/core/lib/security/transport/auth_filters.h',
315                       'src/core/lib/security/transport/secure_endpoint.h',
316                       'src/core/lib/security/transport/security_handshaker.h',
317                       'src/core/lib/security/transport/target_authority_table.h',
318                       'src/core/lib/security/transport/tsi_error.h',
319                       'src/core/lib/security/util/json_util.h',
320                       'src/core/tsi/alts/crypt/gsec.h',
321                       'src/core/tsi/alts/frame_protector/alts_counter.h',
322                       'src/core/tsi/alts/frame_protector/alts_crypter.h',
323                       'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
324                       'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
325                       'src/core/tsi/alts/frame_protector/frame_handler.h',
326                       'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
327                       'src/core/tsi/alts/handshaker/alts_shared_resource.h',
328                       'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
329                       'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
330                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
331                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
332                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
333                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
334                       'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
335                       'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
336                       'src/core/lib/security/credentials/alts/check_gcp_environment.h',
337                       'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
338                       'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
339                       'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
340                       'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
341                       'src/core/tsi/alts/handshaker/transport_security_common_api.h',
342                       'src/core/tsi/alts/handshaker/altscontext.pb.h',
343                       'src/core/tsi/alts/handshaker/handshaker.pb.h',
344                       'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
345                       'src/core/tsi/transport_security.h',
346                       'src/core/tsi/transport_security_interface.h',
347                       'src/core/ext/transport/chttp2/client/authority.h',
348                       'src/core/ext/transport/chttp2/client/chttp2_connector.h',
349                       'src/core/ext/filters/client_channel/backup_poller.h',
350                       'src/core/ext/filters/client_channel/client_channel.h',
351                       'src/core/ext/filters/client_channel/client_channel_channelz.h',
352                       'src/core/ext/filters/client_channel/client_channel_factory.h',
353                       'src/core/ext/filters/client_channel/connector.h',
354                       'src/core/ext/filters/client_channel/global_subchannel_pool.h',
355                       'src/core/ext/filters/client_channel/health/health_check_client.h',
356                       'src/core/ext/filters/client_channel/http_connect_handshaker.h',
357                       'src/core/ext/filters/client_channel/http_proxy.h',
358                       'src/core/ext/filters/client_channel/lb_policy.h',
359                       'src/core/ext/filters/client_channel/lb_policy_factory.h',
360                       'src/core/ext/filters/client_channel/lb_policy_registry.h',
361                       'src/core/ext/filters/client_channel/local_subchannel_pool.h',
362                       'src/core/ext/filters/client_channel/parse_address.h',
363                       'src/core/ext/filters/client_channel/proxy_mapper.h',
364                       'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
365                       'src/core/ext/filters/client_channel/resolver.h',
366                       'src/core/ext/filters/client_channel/resolver_factory.h',
367                       'src/core/ext/filters/client_channel/resolver_registry.h',
368                       'src/core/ext/filters/client_channel/resolver_result_parsing.h',
369                       'src/core/ext/filters/client_channel/resolving_lb_policy.h',
370                       'src/core/ext/filters/client_channel/retry_throttle.h',
371                       'src/core/ext/filters/client_channel/server_address.h',
372                       'src/core/ext/filters/client_channel/service_config.h',
373                       'src/core/ext/filters/client_channel/subchannel.h',
374                       'src/core/ext/filters/client_channel/subchannel_pool_interface.h',
375                       'src/core/ext/filters/deadline/deadline_filter.h',
376                       'src/core/ext/filters/client_channel/health/health.pb.h',
377                       'src/core/tsi/fake_transport_security.h',
378                       'src/core/tsi/local_transport_security.h',
379                       'src/core/tsi/ssl/session_cache/ssl_session.h',
380                       'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
381                       'src/core/tsi/ssl_transport_security.h',
382                       'src/core/tsi/ssl_types.h',
383                       'src/core/tsi/transport_security_grpc.h',
384                       'src/core/tsi/grpc_shadow_boringssl.h',
385                       'src/core/ext/transport/chttp2/server/chttp2_server.h',
386                       'src/core/ext/transport/inproc/inproc_transport.h',
387                       'src/core/lib/avl/avl.h',
388                       'src/core/lib/backoff/backoff.h',
389                       'src/core/lib/channel/channel_args.h',
390                       'src/core/lib/channel/channel_stack.h',
391                       'src/core/lib/channel/channel_stack_builder.h',
392                       'src/core/lib/channel/channel_trace.h',
393                       'src/core/lib/channel/channelz.h',
394                       'src/core/lib/channel/channelz_registry.h',
395                       'src/core/lib/channel/connected_channel.h',
396                       'src/core/lib/channel/context.h',
397                       'src/core/lib/channel/handshaker.h',
398                       'src/core/lib/channel/handshaker_factory.h',
399                       'src/core/lib/channel/handshaker_registry.h',
400                       'src/core/lib/channel/status_util.h',
401                       'src/core/lib/compression/algorithm_metadata.h',
402                       'src/core/lib/compression/compression_args.h',
403                       'src/core/lib/compression/compression_internal.h',
404                       'src/core/lib/compression/message_compress.h',
405                       'src/core/lib/compression/stream_compression.h',
406                       'src/core/lib/compression/stream_compression_gzip.h',
407                       'src/core/lib/compression/stream_compression_identity.h',
408                       'src/core/lib/debug/stats.h',
409                       'src/core/lib/debug/stats_data.h',
410                       'src/core/lib/gprpp/debug_location.h',
411                       'src/core/lib/gprpp/inlined_vector.h',
412                       'src/core/lib/gprpp/optional.h',
413                       'src/core/lib/gprpp/orphanable.h',
414                       'src/core/lib/gprpp/ref_counted.h',
415                       'src/core/lib/gprpp/ref_counted_ptr.h',
416                       'src/core/lib/http/format_request.h',
417                       'src/core/lib/http/httpcli.h',
418                       'src/core/lib/http/parser.h',
419                       'src/core/lib/iomgr/block_annotate.h',
420                       'src/core/lib/iomgr/buffer_list.h',
421                       'src/core/lib/iomgr/call_combiner.h',
422                       'src/core/lib/iomgr/cfstream_handle.h',
423                       'src/core/lib/iomgr/closure.h',
424                       'src/core/lib/iomgr/combiner.h',
425                       'src/core/lib/iomgr/dynamic_annotations.h',
426                       'src/core/lib/iomgr/endpoint.h',
427                       'src/core/lib/iomgr/endpoint_cfstream.h',
428                       'src/core/lib/iomgr/endpoint_pair.h',
429                       'src/core/lib/iomgr/error.h',
430                       'src/core/lib/iomgr/error_cfstream.h',
431                       'src/core/lib/iomgr/error_internal.h',
432                       'src/core/lib/iomgr/ev_epoll1_linux.h',
433                       'src/core/lib/iomgr/ev_epollex_linux.h',
434                       'src/core/lib/iomgr/ev_poll_posix.h',
435                       'src/core/lib/iomgr/ev_posix.h',
436                       'src/core/lib/iomgr/exec_ctx.h',
437                       'src/core/lib/iomgr/executor.h',
438                       'src/core/lib/iomgr/gethostname.h',
439                       'src/core/lib/iomgr/grpc_if_nametoindex.h',
440                       'src/core/lib/iomgr/internal_errqueue.h',
441                       'src/core/lib/iomgr/iocp_windows.h',
442                       'src/core/lib/iomgr/iomgr.h',
443                       'src/core/lib/iomgr/iomgr_custom.h',
444                       'src/core/lib/iomgr/iomgr_internal.h',
445                       'src/core/lib/iomgr/iomgr_posix.h',
446                       'src/core/lib/iomgr/is_epollexclusive_available.h',
447                       'src/core/lib/iomgr/load_file.h',
448                       'src/core/lib/iomgr/lockfree_event.h',
449                       'src/core/lib/iomgr/nameser.h',
450                       'src/core/lib/iomgr/polling_entity.h',
451                       'src/core/lib/iomgr/pollset.h',
452                       'src/core/lib/iomgr/pollset_custom.h',
453                       'src/core/lib/iomgr/pollset_set.h',
454                       'src/core/lib/iomgr/pollset_set_custom.h',
455                       'src/core/lib/iomgr/pollset_set_windows.h',
456                       'src/core/lib/iomgr/pollset_windows.h',
457                       'src/core/lib/iomgr/port.h',
458                       'src/core/lib/iomgr/resolve_address.h',
459                       'src/core/lib/iomgr/resolve_address_custom.h',
460                       'src/core/lib/iomgr/resource_quota.h',
461                       'src/core/lib/iomgr/sockaddr.h',
462                       'src/core/lib/iomgr/sockaddr_custom.h',
463                       'src/core/lib/iomgr/sockaddr_posix.h',
464                       'src/core/lib/iomgr/sockaddr_utils.h',
465                       'src/core/lib/iomgr/sockaddr_windows.h',
466                       'src/core/lib/iomgr/socket_factory_posix.h',
467                       'src/core/lib/iomgr/socket_mutator.h',
468                       'src/core/lib/iomgr/socket_utils.h',
469                       'src/core/lib/iomgr/socket_utils_posix.h',
470                       'src/core/lib/iomgr/socket_windows.h',
471                       'src/core/lib/iomgr/sys_epoll_wrapper.h',
472                       'src/core/lib/iomgr/tcp_client.h',
473                       'src/core/lib/iomgr/tcp_client_posix.h',
474                       'src/core/lib/iomgr/tcp_custom.h',
475                       'src/core/lib/iomgr/tcp_posix.h',
476                       'src/core/lib/iomgr/tcp_server.h',
477                       'src/core/lib/iomgr/tcp_server_utils_posix.h',
478                       'src/core/lib/iomgr/tcp_windows.h',
479                       'src/core/lib/iomgr/time_averaged_stats.h',
480                       'src/core/lib/iomgr/timer.h',
481                       'src/core/lib/iomgr/timer_custom.h',
482                       'src/core/lib/iomgr/timer_heap.h',
483                       'src/core/lib/iomgr/timer_manager.h',
484                       'src/core/lib/iomgr/udp_server.h',
485                       'src/core/lib/iomgr/unix_sockets_posix.h',
486                       'src/core/lib/iomgr/wakeup_fd_pipe.h',
487                       'src/core/lib/iomgr/wakeup_fd_posix.h',
488                       'src/core/lib/json/json.h',
489                       'src/core/lib/json/json_common.h',
490                       'src/core/lib/json/json_reader.h',
491                       'src/core/lib/json/json_writer.h',
492                       'src/core/lib/slice/b64.h',
493                       'src/core/lib/slice/percent_encoding.h',
494                       'src/core/lib/slice/slice_hash_table.h',
495                       'src/core/lib/slice/slice_internal.h',
496                       'src/core/lib/slice/slice_string_helpers.h',
497                       'src/core/lib/slice/slice_weak_hash_table.h',
498                       'src/core/lib/surface/api_trace.h',
499                       'src/core/lib/surface/call.h',
500                       'src/core/lib/surface/call_test_only.h',
501                       'src/core/lib/surface/channel.h',
502                       'src/core/lib/surface/channel_init.h',
503                       'src/core/lib/surface/channel_stack_type.h',
504                       'src/core/lib/surface/completion_queue.h',
505                       'src/core/lib/surface/completion_queue_factory.h',
506                       'src/core/lib/surface/event_string.h',
507                       'src/core/lib/surface/init.h',
508                       'src/core/lib/surface/lame_client.h',
509                       'src/core/lib/surface/server.h',
510                       'src/core/lib/surface/validate_metadata.h',
511                       'src/core/lib/transport/bdp_estimator.h',
512                       'src/core/lib/transport/byte_stream.h',
513                       'src/core/lib/transport/connectivity_state.h',
514                       'src/core/lib/transport/error_utils.h',
515                       'src/core/lib/transport/http2_errors.h',
516                       'src/core/lib/transport/metadata.h',
517                       'src/core/lib/transport/metadata_batch.h',
518                       'src/core/lib/transport/pid_controller.h',
519                       'src/core/lib/transport/static_metadata.h',
520                       'src/core/lib/transport/status_conversion.h',
521                       'src/core/lib/transport/status_metadata.h',
522                       'src/core/lib/transport/timeout_encoding.h',
523                       'src/core/lib/transport/transport.h',
524                       'src/core/lib/transport/transport_impl.h',
525                       'src/core/lib/uri/uri_parser.h',
526                       'src/core/lib/debug/trace.h',
527                       'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
528                       'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
529                       'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
530                       'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
531                       'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
532                       'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h',
533                       'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h',
534                       'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
535                       'src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h',
536                       'src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h',
537                       'src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h',
538                       'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
539                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
540                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
541                       'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h',
542                       'src/core/ext/filters/max_age/max_age_filter.h',
543                       'src/core/ext/filters/message_size/message_size_filter.h',
544                       'src/core/ext/filters/http/client_authority_filter.h',
545                       'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
546                       'src/core/ext/filters/workarounds/workaround_utils.h',
547                       'src/core/lib/surface/init.cc',
548                       'src/core/lib/avl/avl.cc',
549                       'src/core/lib/backoff/backoff.cc',
550                       'src/core/lib/channel/channel_args.cc',
551                       'src/core/lib/channel/channel_stack.cc',
552                       'src/core/lib/channel/channel_stack_builder.cc',
553                       'src/core/lib/channel/channel_trace.cc',
554                       'src/core/lib/channel/channelz.cc',
555                       'src/core/lib/channel/channelz_registry.cc',
556                       'src/core/lib/channel/connected_channel.cc',
557                       'src/core/lib/channel/handshaker.cc',
558                       'src/core/lib/channel/handshaker_registry.cc',
559                       'src/core/lib/channel/status_util.cc',
560                       'src/core/lib/compression/compression.cc',
561                       'src/core/lib/compression/compression_args.cc',
562                       'src/core/lib/compression/compression_internal.cc',
563                       'src/core/lib/compression/message_compress.cc',
564                       'src/core/lib/compression/stream_compression.cc',
565                       'src/core/lib/compression/stream_compression_gzip.cc',
566                       'src/core/lib/compression/stream_compression_identity.cc',
567                       'src/core/lib/debug/stats.cc',
568                       'src/core/lib/debug/stats_data.cc',
569                       'src/core/lib/http/format_request.cc',
570                       'src/core/lib/http/httpcli.cc',
571                       'src/core/lib/http/parser.cc',
572                       'src/core/lib/iomgr/buffer_list.cc',
573                       'src/core/lib/iomgr/call_combiner.cc',
574                       'src/core/lib/iomgr/cfstream_handle.cc',
575                       'src/core/lib/iomgr/combiner.cc',
576                       'src/core/lib/iomgr/endpoint.cc',
577                       'src/core/lib/iomgr/endpoint_cfstream.cc',
578                       'src/core/lib/iomgr/endpoint_pair_posix.cc',
579                       'src/core/lib/iomgr/endpoint_pair_uv.cc',
580                       'src/core/lib/iomgr/endpoint_pair_windows.cc',
581                       'src/core/lib/iomgr/error.cc',
582                       'src/core/lib/iomgr/error_cfstream.cc',
583                       'src/core/lib/iomgr/ev_epoll1_linux.cc',
584                       'src/core/lib/iomgr/ev_epollex_linux.cc',
585                       'src/core/lib/iomgr/ev_poll_posix.cc',
586                       'src/core/lib/iomgr/ev_posix.cc',
587                       'src/core/lib/iomgr/ev_windows.cc',
588                       'src/core/lib/iomgr/exec_ctx.cc',
589                       'src/core/lib/iomgr/executor.cc',
590                       'src/core/lib/iomgr/fork_posix.cc',
591                       'src/core/lib/iomgr/fork_windows.cc',
592                       'src/core/lib/iomgr/gethostname_fallback.cc',
593                       'src/core/lib/iomgr/gethostname_host_name_max.cc',
594                       'src/core/lib/iomgr/gethostname_sysconf.cc',
595                       'src/core/lib/iomgr/grpc_if_nametoindex_posix.cc',
596                       'src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc',
597                       'src/core/lib/iomgr/internal_errqueue.cc',
598                       'src/core/lib/iomgr/iocp_windows.cc',
599                       'src/core/lib/iomgr/iomgr.cc',
600                       'src/core/lib/iomgr/iomgr_custom.cc',
601                       'src/core/lib/iomgr/iomgr_internal.cc',
602                       'src/core/lib/iomgr/iomgr_posix.cc',
603                       'src/core/lib/iomgr/iomgr_posix_cfstream.cc',
604                       'src/core/lib/iomgr/iomgr_uv.cc',
605                       'src/core/lib/iomgr/iomgr_windows.cc',
606                       'src/core/lib/iomgr/is_epollexclusive_available.cc',
607                       'src/core/lib/iomgr/load_file.cc',
608                       'src/core/lib/iomgr/lockfree_event.cc',
609                       'src/core/lib/iomgr/polling_entity.cc',
610                       'src/core/lib/iomgr/pollset.cc',
611                       'src/core/lib/iomgr/pollset_custom.cc',
612                       'src/core/lib/iomgr/pollset_set.cc',
613                       'src/core/lib/iomgr/pollset_set_custom.cc',
614                       'src/core/lib/iomgr/pollset_set_windows.cc',
615                       'src/core/lib/iomgr/pollset_uv.cc',
616                       'src/core/lib/iomgr/pollset_windows.cc',
617                       'src/core/lib/iomgr/resolve_address.cc',
618                       'src/core/lib/iomgr/resolve_address_custom.cc',
619                       'src/core/lib/iomgr/resolve_address_posix.cc',
620                       'src/core/lib/iomgr/resolve_address_windows.cc',
621                       'src/core/lib/iomgr/resource_quota.cc',
622                       'src/core/lib/iomgr/sockaddr_utils.cc',
623                       'src/core/lib/iomgr/socket_factory_posix.cc',
624                       'src/core/lib/iomgr/socket_mutator.cc',
625                       'src/core/lib/iomgr/socket_utils_common_posix.cc',
626                       'src/core/lib/iomgr/socket_utils_linux.cc',
627                       'src/core/lib/iomgr/socket_utils_posix.cc',
628                       'src/core/lib/iomgr/socket_utils_uv.cc',
629                       'src/core/lib/iomgr/socket_utils_windows.cc',
630                       'src/core/lib/iomgr/socket_windows.cc',
631                       'src/core/lib/iomgr/tcp_client.cc',
632                       'src/core/lib/iomgr/tcp_client_cfstream.cc',
633                       'src/core/lib/iomgr/tcp_client_custom.cc',
634                       'src/core/lib/iomgr/tcp_client_posix.cc',
635                       'src/core/lib/iomgr/tcp_client_windows.cc',
636                       'src/core/lib/iomgr/tcp_custom.cc',
637                       'src/core/lib/iomgr/tcp_posix.cc',
638                       'src/core/lib/iomgr/tcp_server.cc',
639                       'src/core/lib/iomgr/tcp_server_custom.cc',
640                       'src/core/lib/iomgr/tcp_server_posix.cc',
641                       'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
642                       'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
643                       'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
644                       'src/core/lib/iomgr/tcp_server_windows.cc',
645                       'src/core/lib/iomgr/tcp_uv.cc',
646                       'src/core/lib/iomgr/tcp_windows.cc',
647                       'src/core/lib/iomgr/time_averaged_stats.cc',
648                       'src/core/lib/iomgr/timer.cc',
649                       'src/core/lib/iomgr/timer_custom.cc',
650                       'src/core/lib/iomgr/timer_generic.cc',
651                       'src/core/lib/iomgr/timer_heap.cc',
652                       'src/core/lib/iomgr/timer_manager.cc',
653                       'src/core/lib/iomgr/timer_uv.cc',
654                       'src/core/lib/iomgr/udp_server.cc',
655                       'src/core/lib/iomgr/unix_sockets_posix.cc',
656                       'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
657                       'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
658                       'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
659                       'src/core/lib/iomgr/wakeup_fd_pipe.cc',
660                       'src/core/lib/iomgr/wakeup_fd_posix.cc',
661                       'src/core/lib/json/json.cc',
662                       'src/core/lib/json/json_reader.cc',
663                       'src/core/lib/json/json_string.cc',
664                       'src/core/lib/json/json_writer.cc',
665                       'src/core/lib/slice/b64.cc',
666                       'src/core/lib/slice/percent_encoding.cc',
667                       'src/core/lib/slice/slice.cc',
668                       'src/core/lib/slice/slice_buffer.cc',
669                       'src/core/lib/slice/slice_intern.cc',
670                       'src/core/lib/slice/slice_string_helpers.cc',
671                       'src/core/lib/surface/api_trace.cc',
672                       'src/core/lib/surface/byte_buffer.cc',
673                       'src/core/lib/surface/byte_buffer_reader.cc',
674                       'src/core/lib/surface/call.cc',
675                       'src/core/lib/surface/call_details.cc',
676                       'src/core/lib/surface/call_log_batch.cc',
677                       'src/core/lib/surface/channel.cc',
678                       'src/core/lib/surface/channel_init.cc',
679                       'src/core/lib/surface/channel_ping.cc',
680                       'src/core/lib/surface/channel_stack_type.cc',
681                       'src/core/lib/surface/completion_queue.cc',
682                       'src/core/lib/surface/completion_queue_factory.cc',
683                       'src/core/lib/surface/event_string.cc',
684                       'src/core/lib/surface/lame_client.cc',
685                       'src/core/lib/surface/metadata_array.cc',
686                       'src/core/lib/surface/server.cc',
687                       'src/core/lib/surface/validate_metadata.cc',
688                       'src/core/lib/surface/version.cc',
689                       'src/core/lib/transport/bdp_estimator.cc',
690                       'src/core/lib/transport/byte_stream.cc',
691                       'src/core/lib/transport/connectivity_state.cc',
692                       'src/core/lib/transport/error_utils.cc',
693                       'src/core/lib/transport/metadata.cc',
694                       'src/core/lib/transport/metadata_batch.cc',
695                       'src/core/lib/transport/pid_controller.cc',
696                       'src/core/lib/transport/static_metadata.cc',
697                       'src/core/lib/transport/status_conversion.cc',
698                       'src/core/lib/transport/status_metadata.cc',
699                       'src/core/lib/transport/timeout_encoding.cc',
700                       'src/core/lib/transport/transport.cc',
701                       'src/core/lib/transport/transport_op_string.cc',
702                       'src/core/lib/uri/uri_parser.cc',
703                       'src/core/lib/debug/trace.cc',
704                       'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
705                       'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
706                       'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
707                       'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
708                       'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
709                       'src/core/ext/transport/chttp2/transport/context_list.cc',
710                       'src/core/ext/transport/chttp2/transport/flow_control.cc',
711                       'src/core/ext/transport/chttp2/transport/frame_data.cc',
712                       'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
713                       'src/core/ext/transport/chttp2/transport/frame_ping.cc',
714                       'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
715                       'src/core/ext/transport/chttp2/transport/frame_settings.cc',
716                       'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
717                       'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
718                       'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
719                       'src/core/ext/transport/chttp2/transport/hpack_table.cc',
720                       'src/core/ext/transport/chttp2/transport/http2_settings.cc',
721                       'src/core/ext/transport/chttp2/transport/huffsyms.cc',
722                       'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
723                       'src/core/ext/transport/chttp2/transport/parsing.cc',
724                       'src/core/ext/transport/chttp2/transport/stream_lists.cc',
725                       'src/core/ext/transport/chttp2/transport/stream_map.cc',
726                       'src/core/ext/transport/chttp2/transport/varint.cc',
727                       'src/core/ext/transport/chttp2/transport/writing.cc',
728                       'src/core/ext/transport/chttp2/alpn/alpn.cc',
729                       'src/core/ext/filters/http/client/http_client_filter.cc',
730                       'src/core/ext/filters/http/http_filters_plugin.cc',
731                       'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
732                       'src/core/ext/filters/http/server/http_server_filter.cc',
733                       'src/core/lib/http/httpcli_security_connector.cc',
734                       'src/core/lib/security/context/security_context.cc',
735                       'src/core/lib/security/credentials/alts/alts_credentials.cc',
736                       'src/core/lib/security/credentials/composite/composite_credentials.cc',
737                       'src/core/lib/security/credentials/credentials.cc',
738                       'src/core/lib/security/credentials/credentials_metadata.cc',
739                       'src/core/lib/security/credentials/fake/fake_credentials.cc',
740                       'src/core/lib/security/credentials/google_default/credentials_generic.cc',
741                       'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
742                       'src/core/lib/security/credentials/iam/iam_credentials.cc',
743                       'src/core/lib/security/credentials/jwt/json_token.cc',
744                       'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
745                       'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
746                       'src/core/lib/security/credentials/local/local_credentials.cc',
747                       'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
748                       'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
749                       'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
750                       'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc',
751                       'src/core/lib/security/credentials/tls/spiffe_credentials.cc',
752                       'src/core/lib/security/security_connector/alts/alts_security_connector.cc',
753                       'src/core/lib/security/security_connector/fake/fake_security_connector.cc',
754                       'src/core/lib/security/security_connector/load_system_roots_fallback.cc',
755                       'src/core/lib/security/security_connector/load_system_roots_linux.cc',
756                       'src/core/lib/security/security_connector/local/local_security_connector.cc',
757                       'src/core/lib/security/security_connector/security_connector.cc',
758                       'src/core/lib/security/security_connector/ssl/ssl_security_connector.cc',
759                       'src/core/lib/security/security_connector/ssl_utils.cc',
760                       'src/core/lib/security/security_connector/tls/spiffe_security_connector.cc',
761                       'src/core/lib/security/transport/client_auth_filter.cc',
762                       'src/core/lib/security/transport/secure_endpoint.cc',
763                       'src/core/lib/security/transport/security_handshaker.cc',
764                       'src/core/lib/security/transport/server_auth_filter.cc',
765                       'src/core/lib/security/transport/target_authority_table.cc',
766                       'src/core/lib/security/transport/tsi_error.cc',
767                       'src/core/lib/security/util/json_util.cc',
768                       'src/core/lib/surface/init_secure.cc',
769                       'src/core/tsi/alts/crypt/aes_gcm.cc',
770                       'src/core/tsi/alts/crypt/gsec.cc',
771                       'src/core/tsi/alts/frame_protector/alts_counter.cc',
772                       'src/core/tsi/alts/frame_protector/alts_crypter.cc',
773                       'src/core/tsi/alts/frame_protector/alts_frame_protector.cc',
774                       'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc',
775                       'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc',
776                       'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc',
777                       'src/core/tsi/alts/frame_protector/frame_handler.cc',
778                       'src/core/tsi/alts/handshaker/alts_handshaker_client.cc',
779                       'src/core/tsi/alts/handshaker/alts_shared_resource.cc',
780                       'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc',
781                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc',
782                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc',
783                       'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc',
784                       'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc',
785                       'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc',
786                       'src/core/lib/security/credentials/alts/check_gcp_environment.cc',
787                       'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc',
788                       'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc',
789                       'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc',
790                       'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc',
791                       'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc',
792                       'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc',
793                       'src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc',
794                       'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc',
795                       'src/core/tsi/alts/handshaker/alts_tsi_utils.cc',
796                       'src/core/tsi/alts/handshaker/transport_security_common_api.cc',
797                       'src/core/tsi/alts/handshaker/altscontext.pb.c',
798                       'src/core/tsi/alts/handshaker/handshaker.pb.c',
799                       'src/core/tsi/alts/handshaker/transport_security_common.pb.c',
800                       'src/core/tsi/transport_security.cc',
801                       'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
802                       'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
803                       'src/core/ext/transport/chttp2/client/authority.cc',
804                       'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
805                       'src/core/ext/filters/client_channel/backup_poller.cc',
806                       'src/core/ext/filters/client_channel/channel_connectivity.cc',
807                       'src/core/ext/filters/client_channel/client_channel.cc',
808                       'src/core/ext/filters/client_channel/client_channel_channelz.cc',
809                       'src/core/ext/filters/client_channel/client_channel_factory.cc',
810                       'src/core/ext/filters/client_channel/client_channel_plugin.cc',
811                       'src/core/ext/filters/client_channel/connector.cc',
812                       'src/core/ext/filters/client_channel/global_subchannel_pool.cc',
813                       'src/core/ext/filters/client_channel/health/health_check_client.cc',
814                       'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
815                       'src/core/ext/filters/client_channel/http_proxy.cc',
816                       'src/core/ext/filters/client_channel/lb_policy.cc',
817                       'src/core/ext/filters/client_channel/lb_policy_registry.cc',
818                       'src/core/ext/filters/client_channel/local_subchannel_pool.cc',
819                       'src/core/ext/filters/client_channel/parse_address.cc',
820                       'src/core/ext/filters/client_channel/proxy_mapper.cc',
821                       'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
822                       'src/core/ext/filters/client_channel/resolver.cc',
823                       'src/core/ext/filters/client_channel/resolver_registry.cc',
824                       'src/core/ext/filters/client_channel/resolver_result_parsing.cc',
825                       'src/core/ext/filters/client_channel/resolving_lb_policy.cc',
826                       'src/core/ext/filters/client_channel/retry_throttle.cc',
827                       'src/core/ext/filters/client_channel/server_address.cc',
828                       'src/core/ext/filters/client_channel/service_config.cc',
829                       'src/core/ext/filters/client_channel/subchannel.cc',
830                       'src/core/ext/filters/client_channel/subchannel_pool_interface.cc',
831                       'src/core/ext/filters/deadline/deadline_filter.cc',
832                       'src/core/ext/filters/client_channel/health/health.pb.c',
833                       'src/core/tsi/fake_transport_security.cc',
834                       'src/core/tsi/local_transport_security.cc',
835                       'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc',
836                       'src/core/tsi/ssl/session_cache/ssl_session_cache.cc',
837                       'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc',
838                       'src/core/tsi/ssl_transport_security.cc',
839                       'src/core/tsi/transport_security_grpc.cc',
840                       'src/core/ext/transport/chttp2/server/chttp2_server.cc',
841                       'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
842                       'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
843                       'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
844                       'src/core/ext/transport/inproc/inproc_plugin.cc',
845                       'src/core/ext/transport/inproc/inproc_transport.cc',
846                       'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
847                       'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
848                       'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc',
849                       'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
850                       'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
851                       'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
852                       'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c',
853                       'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c',
854                       'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
855                       'src/core/ext/filters/client_channel/lb_policy/xds/xds.cc',
856                       'src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc',
857                       'src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.cc',
858                       'src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc',
859                       'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
860                       'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
861                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
862                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc',
863                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc',
864                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
865                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc',
866                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
867                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
868                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc',
869                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc',
870                       'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc',
871                       'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc',
872                       'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
873                       'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
874                       'src/core/ext/filters/census/grpc_context.cc',
875                       'src/core/ext/filters/max_age/max_age_filter.cc',
876                       'src/core/ext/filters/message_size/message_size_filter.cc',
877                       'src/core/ext/filters/http/client_authority_filter.cc',
878                       'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
879                       'src/core/ext/filters/workarounds/workaround_utils.cc',
880                       'src/core/plugin_registry/grpc_plugin_registry.cc'
881
882     ss.private_header_files = 'src/core/lib/gpr/alloc.h',
883                               'src/core/lib/gpr/arena.h',
884                               'src/core/lib/gpr/env.h',
885                               'src/core/lib/gpr/host_port.h',
886                               'src/core/lib/gpr/mpscq.h',
887                               'src/core/lib/gpr/murmur_hash.h',
888                               'src/core/lib/gpr/spinlock.h',
889                               'src/core/lib/gpr/string.h',
890                               'src/core/lib/gpr/string_windows.h',
891                               'src/core/lib/gpr/time_precise.h',
892                               'src/core/lib/gpr/tls.h',
893                               'src/core/lib/gpr/tls_gcc.h',
894                               'src/core/lib/gpr/tls_msvc.h',
895                               'src/core/lib/gpr/tls_pthread.h',
896                               'src/core/lib/gpr/tmpfile.h',
897                               'src/core/lib/gpr/useful.h',
898                               'src/core/lib/gprpp/abstract.h',
899                               'src/core/lib/gprpp/arena.h',
900                               'src/core/lib/gprpp/atomic.h',
901                               'src/core/lib/gprpp/fork.h',
902                               'src/core/lib/gprpp/global_config.h',
903                               'src/core/lib/gprpp/global_config_custom.h',
904                               'src/core/lib/gprpp/global_config_env.h',
905                               'src/core/lib/gprpp/global_config_generic.h',
906                               'src/core/lib/gprpp/manual_constructor.h',
907                               'src/core/lib/gprpp/map.h',
908                               'src/core/lib/gprpp/memory.h',
909                               'src/core/lib/gprpp/pair.h',
910                               'src/core/lib/gprpp/sync.h',
911                               'src/core/lib/gprpp/thd.h',
912                               'src/core/lib/profiling/timers.h',
913                               'src/core/ext/transport/chttp2/transport/bin_decoder.h',
914                               'src/core/ext/transport/chttp2/transport/bin_encoder.h',
915                               'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
916                               'src/core/ext/transport/chttp2/transport/context_list.h',
917                               'src/core/ext/transport/chttp2/transport/flow_control.h',
918                               'src/core/ext/transport/chttp2/transport/frame.h',
919                               'src/core/ext/transport/chttp2/transport/frame_data.h',
920                               'src/core/ext/transport/chttp2/transport/frame_goaway.h',
921                               'src/core/ext/transport/chttp2/transport/frame_ping.h',
922                               'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
923                               'src/core/ext/transport/chttp2/transport/frame_settings.h',
924                               'src/core/ext/transport/chttp2/transport/frame_window_update.h',
925                               'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
926                               'src/core/ext/transport/chttp2/transport/hpack_parser.h',
927                               'src/core/ext/transport/chttp2/transport/hpack_table.h',
928                               'src/core/ext/transport/chttp2/transport/http2_settings.h',
929                               'src/core/ext/transport/chttp2/transport/huffsyms.h',
930                               'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
931                               'src/core/ext/transport/chttp2/transport/internal.h',
932                               'src/core/ext/transport/chttp2/transport/stream_map.h',
933                               'src/core/ext/transport/chttp2/transport/varint.h',
934                               'src/core/ext/transport/chttp2/alpn/alpn.h',
935                               'src/core/ext/filters/http/client/http_client_filter.h',
936                               'src/core/ext/filters/http/message_compress/message_compress_filter.h',
937                               'src/core/ext/filters/http/server/http_server_filter.h',
938                               'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
939                               'src/core/ext/filters/client_channel/lb_policy/xds/xds.h',
940                               'src/core/lib/security/context/security_context.h',
941                               'src/core/lib/security/credentials/alts/alts_credentials.h',
942                               'src/core/lib/security/credentials/composite/composite_credentials.h',
943                               'src/core/lib/security/credentials/credentials.h',
944                               'src/core/lib/security/credentials/fake/fake_credentials.h',
945                               'src/core/lib/security/credentials/google_default/google_default_credentials.h',
946                               'src/core/lib/security/credentials/iam/iam_credentials.h',
947                               'src/core/lib/security/credentials/jwt/json_token.h',
948                               'src/core/lib/security/credentials/jwt/jwt_credentials.h',
949                               'src/core/lib/security/credentials/jwt/jwt_verifier.h',
950                               'src/core/lib/security/credentials/local/local_credentials.h',
951                               'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
952                               'src/core/lib/security/credentials/plugin/plugin_credentials.h',
953                               'src/core/lib/security/credentials/ssl/ssl_credentials.h',
954                               'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h',
955                               'src/core/lib/security/credentials/tls/spiffe_credentials.h',
956                               'src/core/lib/security/security_connector/alts/alts_security_connector.h',
957                               'src/core/lib/security/security_connector/fake/fake_security_connector.h',
958                               'src/core/lib/security/security_connector/load_system_roots.h',
959                               'src/core/lib/security/security_connector/load_system_roots_linux.h',
960                               'src/core/lib/security/security_connector/local/local_security_connector.h',
961                               'src/core/lib/security/security_connector/security_connector.h',
962                               'src/core/lib/security/security_connector/ssl/ssl_security_connector.h',
963                               'src/core/lib/security/security_connector/ssl_utils.h',
964                               'src/core/lib/security/security_connector/tls/spiffe_security_connector.h',
965                               'src/core/lib/security/transport/auth_filters.h',
966                               'src/core/lib/security/transport/secure_endpoint.h',
967                               'src/core/lib/security/transport/security_handshaker.h',
968                               'src/core/lib/security/transport/target_authority_table.h',
969                               'src/core/lib/security/transport/tsi_error.h',
970                               'src/core/lib/security/util/json_util.h',
971                               'src/core/tsi/alts/crypt/gsec.h',
972                               'src/core/tsi/alts/frame_protector/alts_counter.h',
973                               'src/core/tsi/alts/frame_protector/alts_crypter.h',
974                               'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
975                               'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
976                               'src/core/tsi/alts/frame_protector/frame_handler.h',
977                               'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
978                               'src/core/tsi/alts/handshaker/alts_shared_resource.h',
979                               'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
980                               'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
981                               'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
982                               'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
983                               'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
984                               'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
985                               'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
986                               'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
987                               'src/core/lib/security/credentials/alts/check_gcp_environment.h',
988                               'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
989                               'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
990                               'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
991                               'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
992                               'src/core/tsi/alts/handshaker/transport_security_common_api.h',
993                               'src/core/tsi/alts/handshaker/altscontext.pb.h',
994                               'src/core/tsi/alts/handshaker/handshaker.pb.h',
995                               'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
996                               'src/core/tsi/transport_security.h',
997                               'src/core/tsi/transport_security_interface.h',
998                               'src/core/ext/transport/chttp2/client/authority.h',
999                               'src/core/ext/transport/chttp2/client/chttp2_connector.h',
1000                               'src/core/ext/filters/client_channel/backup_poller.h',
1001                               'src/core/ext/filters/client_channel/client_channel.h',
1002                               'src/core/ext/filters/client_channel/client_channel_channelz.h',
1003                               'src/core/ext/filters/client_channel/client_channel_factory.h',
1004                               'src/core/ext/filters/client_channel/connector.h',
1005                               'src/core/ext/filters/client_channel/global_subchannel_pool.h',
1006                               'src/core/ext/filters/client_channel/health/health_check_client.h',
1007                               'src/core/ext/filters/client_channel/http_connect_handshaker.h',
1008                               'src/core/ext/filters/client_channel/http_proxy.h',
1009                               'src/core/ext/filters/client_channel/lb_policy.h',
1010                               'src/core/ext/filters/client_channel/lb_policy_factory.h',
1011                               'src/core/ext/filters/client_channel/lb_policy_registry.h',
1012                               'src/core/ext/filters/client_channel/local_subchannel_pool.h',
1013                               'src/core/ext/filters/client_channel/parse_address.h',
1014                               'src/core/ext/filters/client_channel/proxy_mapper.h',
1015                               'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
1016                               'src/core/ext/filters/client_channel/resolver.h',
1017                               'src/core/ext/filters/client_channel/resolver_factory.h',
1018                               'src/core/ext/filters/client_channel/resolver_registry.h',
1019                               'src/core/ext/filters/client_channel/resolver_result_parsing.h',
1020                               'src/core/ext/filters/client_channel/resolving_lb_policy.h',
1021                               'src/core/ext/filters/client_channel/retry_throttle.h',
1022                               'src/core/ext/filters/client_channel/server_address.h',
1023                               'src/core/ext/filters/client_channel/service_config.h',
1024                               'src/core/ext/filters/client_channel/subchannel.h',
1025                               'src/core/ext/filters/client_channel/subchannel_pool_interface.h',
1026                               'src/core/ext/filters/deadline/deadline_filter.h',
1027                               'src/core/ext/filters/client_channel/health/health.pb.h',
1028                               'src/core/tsi/fake_transport_security.h',
1029                               'src/core/tsi/local_transport_security.h',
1030                               'src/core/tsi/ssl/session_cache/ssl_session.h',
1031                               'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
1032                               'src/core/tsi/ssl_transport_security.h',
1033                               'src/core/tsi/ssl_types.h',
1034                               'src/core/tsi/transport_security_grpc.h',
1035                               'src/core/tsi/grpc_shadow_boringssl.h',
1036                               'src/core/ext/transport/chttp2/server/chttp2_server.h',
1037                               'src/core/ext/transport/inproc/inproc_transport.h',
1038                               'src/core/lib/avl/avl.h',
1039                               'src/core/lib/backoff/backoff.h',
1040                               'src/core/lib/channel/channel_args.h',
1041                               'src/core/lib/channel/channel_stack.h',
1042                               'src/core/lib/channel/channel_stack_builder.h',
1043                               'src/core/lib/channel/channel_trace.h',
1044                               'src/core/lib/channel/channelz.h',
1045                               'src/core/lib/channel/channelz_registry.h',
1046                               'src/core/lib/channel/connected_channel.h',
1047                               'src/core/lib/channel/context.h',
1048                               'src/core/lib/channel/handshaker.h',
1049                               'src/core/lib/channel/handshaker_factory.h',
1050                               'src/core/lib/channel/handshaker_registry.h',
1051                               'src/core/lib/channel/status_util.h',
1052                               'src/core/lib/compression/algorithm_metadata.h',
1053                               'src/core/lib/compression/compression_args.h',
1054                               'src/core/lib/compression/compression_internal.h',
1055                               'src/core/lib/compression/message_compress.h',
1056                               'src/core/lib/compression/stream_compression.h',
1057                               'src/core/lib/compression/stream_compression_gzip.h',
1058                               'src/core/lib/compression/stream_compression_identity.h',
1059                               'src/core/lib/debug/stats.h',
1060                               'src/core/lib/debug/stats_data.h',
1061                               'src/core/lib/gprpp/debug_location.h',
1062                               'src/core/lib/gprpp/inlined_vector.h',
1063                               'src/core/lib/gprpp/optional.h',
1064                               'src/core/lib/gprpp/orphanable.h',
1065                               'src/core/lib/gprpp/ref_counted.h',
1066                               'src/core/lib/gprpp/ref_counted_ptr.h',
1067                               'src/core/lib/http/format_request.h',
1068                               'src/core/lib/http/httpcli.h',
1069                               'src/core/lib/http/parser.h',
1070                               'src/core/lib/iomgr/block_annotate.h',
1071                               'src/core/lib/iomgr/buffer_list.h',
1072                               'src/core/lib/iomgr/call_combiner.h',
1073                               'src/core/lib/iomgr/cfstream_handle.h',
1074                               'src/core/lib/iomgr/closure.h',
1075                               'src/core/lib/iomgr/combiner.h',
1076                               'src/core/lib/iomgr/dynamic_annotations.h',
1077                               'src/core/lib/iomgr/endpoint.h',
1078                               'src/core/lib/iomgr/endpoint_cfstream.h',
1079                               'src/core/lib/iomgr/endpoint_pair.h',
1080                               'src/core/lib/iomgr/error.h',
1081                               'src/core/lib/iomgr/error_cfstream.h',
1082                               'src/core/lib/iomgr/error_internal.h',
1083                               'src/core/lib/iomgr/ev_epoll1_linux.h',
1084                               'src/core/lib/iomgr/ev_epollex_linux.h',
1085                               'src/core/lib/iomgr/ev_poll_posix.h',
1086                               'src/core/lib/iomgr/ev_posix.h',
1087                               'src/core/lib/iomgr/exec_ctx.h',
1088                               'src/core/lib/iomgr/executor.h',
1089                               'src/core/lib/iomgr/gethostname.h',
1090                               'src/core/lib/iomgr/grpc_if_nametoindex.h',
1091                               'src/core/lib/iomgr/internal_errqueue.h',
1092                               'src/core/lib/iomgr/iocp_windows.h',
1093                               'src/core/lib/iomgr/iomgr.h',
1094                               'src/core/lib/iomgr/iomgr_custom.h',
1095                               'src/core/lib/iomgr/iomgr_internal.h',
1096                               'src/core/lib/iomgr/iomgr_posix.h',
1097                               'src/core/lib/iomgr/is_epollexclusive_available.h',
1098                               'src/core/lib/iomgr/load_file.h',
1099                               'src/core/lib/iomgr/lockfree_event.h',
1100                               'src/core/lib/iomgr/nameser.h',
1101                               'src/core/lib/iomgr/polling_entity.h',
1102                               'src/core/lib/iomgr/pollset.h',
1103                               'src/core/lib/iomgr/pollset_custom.h',
1104                               'src/core/lib/iomgr/pollset_set.h',
1105                               'src/core/lib/iomgr/pollset_set_custom.h',
1106                               'src/core/lib/iomgr/pollset_set_windows.h',
1107                               'src/core/lib/iomgr/pollset_windows.h',
1108                               'src/core/lib/iomgr/port.h',
1109                               'src/core/lib/iomgr/resolve_address.h',
1110                               'src/core/lib/iomgr/resolve_address_custom.h',
1111                               'src/core/lib/iomgr/resource_quota.h',
1112                               'src/core/lib/iomgr/sockaddr.h',
1113                               'src/core/lib/iomgr/sockaddr_custom.h',
1114                               'src/core/lib/iomgr/sockaddr_posix.h',
1115                               'src/core/lib/iomgr/sockaddr_utils.h',
1116                               'src/core/lib/iomgr/sockaddr_windows.h',
1117                               'src/core/lib/iomgr/socket_factory_posix.h',
1118                               'src/core/lib/iomgr/socket_mutator.h',
1119                               'src/core/lib/iomgr/socket_utils.h',
1120                               'src/core/lib/iomgr/socket_utils_posix.h',
1121                               'src/core/lib/iomgr/socket_windows.h',
1122                               'src/core/lib/iomgr/sys_epoll_wrapper.h',
1123                               'src/core/lib/iomgr/tcp_client.h',
1124                               'src/core/lib/iomgr/tcp_client_posix.h',
1125                               'src/core/lib/iomgr/tcp_custom.h',
1126                               'src/core/lib/iomgr/tcp_posix.h',
1127                               'src/core/lib/iomgr/tcp_server.h',
1128                               'src/core/lib/iomgr/tcp_server_utils_posix.h',
1129                               'src/core/lib/iomgr/tcp_windows.h',
1130                               'src/core/lib/iomgr/time_averaged_stats.h',
1131                               'src/core/lib/iomgr/timer.h',
1132                               'src/core/lib/iomgr/timer_custom.h',
1133                               'src/core/lib/iomgr/timer_heap.h',
1134                               'src/core/lib/iomgr/timer_manager.h',
1135                               'src/core/lib/iomgr/udp_server.h',
1136                               'src/core/lib/iomgr/unix_sockets_posix.h',
1137                               'src/core/lib/iomgr/wakeup_fd_pipe.h',
1138                               'src/core/lib/iomgr/wakeup_fd_posix.h',
1139                               'src/core/lib/json/json.h',
1140                               'src/core/lib/json/json_common.h',
1141                               'src/core/lib/json/json_reader.h',
1142                               'src/core/lib/json/json_writer.h',
1143                               'src/core/lib/slice/b64.h',
1144                               'src/core/lib/slice/percent_encoding.h',
1145                               'src/core/lib/slice/slice_hash_table.h',
1146                               'src/core/lib/slice/slice_internal.h',
1147                               'src/core/lib/slice/slice_string_helpers.h',
1148                               'src/core/lib/slice/slice_weak_hash_table.h',
1149                               'src/core/lib/surface/api_trace.h',
1150                               'src/core/lib/surface/call.h',
1151                               'src/core/lib/surface/call_test_only.h',
1152                               'src/core/lib/surface/channel.h',
1153                               'src/core/lib/surface/channel_init.h',
1154                               'src/core/lib/surface/channel_stack_type.h',
1155                               'src/core/lib/surface/completion_queue.h',
1156                               'src/core/lib/surface/completion_queue_factory.h',
1157                               'src/core/lib/surface/event_string.h',
1158                               'src/core/lib/surface/init.h',
1159                               'src/core/lib/surface/lame_client.h',
1160                               'src/core/lib/surface/server.h',
1161                               'src/core/lib/surface/validate_metadata.h',
1162                               'src/core/lib/transport/bdp_estimator.h',
1163                               'src/core/lib/transport/byte_stream.h',
1164                               'src/core/lib/transport/connectivity_state.h',
1165                               'src/core/lib/transport/error_utils.h',
1166                               'src/core/lib/transport/http2_errors.h',
1167                               'src/core/lib/transport/metadata.h',
1168                               'src/core/lib/transport/metadata_batch.h',
1169                               'src/core/lib/transport/pid_controller.h',
1170                               'src/core/lib/transport/static_metadata.h',
1171                               'src/core/lib/transport/status_conversion.h',
1172                               'src/core/lib/transport/status_metadata.h',
1173                               'src/core/lib/transport/timeout_encoding.h',
1174                               'src/core/lib/transport/transport.h',
1175                               'src/core/lib/transport/transport_impl.h',
1176                               'src/core/lib/uri/uri_parser.h',
1177                               'src/core/lib/debug/trace.h',
1178                               'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
1179                               'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
1180                               'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
1181                               'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
1182                               'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
1183                               'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h',
1184                               'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h',
1185                               'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
1186                               'src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h',
1187                               'src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h',
1188                               'src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h',
1189                               'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
1190                               'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
1191                               'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
1192                               'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h',
1193                               'src/core/ext/filters/max_age/max_age_filter.h',
1194                               'src/core/ext/filters/message_size/message_size_filter.h',
1195                               'src/core/ext/filters/http/client_authority_filter.h',
1196                               'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
1197                               'src/core/ext/filters/workarounds/workaround_utils.h'
1198   end
1199
1200   # CFStream is now default. Leaving this subspec only for compatibility purpose.
1201   s.subspec 'CFStream-Implementation' do |ss|
1202     ss.dependency "#{s.name}/Implementation", version
1203   end
1204
1205   s.subspec 'Cronet-Interface' do |ss|
1206     ss.header_mappings_dir = 'include/grpc'
1207     ss.source_files = 'include/grpc/grpc_cronet.h'
1208   end
1209
1210   s.subspec 'Cronet-Implementation' do |ss|
1211     ss.header_mappings_dir = '.'
1212
1213     ss.dependency "#{s.name}/Interface", version
1214     ss.dependency "#{s.name}/Implementation", version
1215     ss.dependency "#{s.name}/Cronet-Interface", version
1216
1217     ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc',
1218                       'src/core/ext/transport/cronet/transport/cronet_transport.cc',
1219                       'third_party/nanopb/pb_common.c',
1220                       'third_party/nanopb/pb_decode.c',
1221                       'third_party/nanopb/pb_encode.c',
1222                       'src/core/ext/transport/cronet/transport/cronet_transport.h',
1223                       'third_party/objective_c/Cronet/bidirectional_stream_c.h',
1224                       'third_party/nanopb/pb.h',
1225                       'third_party/nanopb/pb_common.h',
1226                       'third_party/nanopb/pb_decode.h',
1227                       'third_party/nanopb/pb_encode.h'
1228   end
1229
1230   s.subspec 'Tests' do |ss|
1231     ss.header_mappings_dir = '.'
1232
1233     ss.dependency "#{s.name}/Interface", version
1234     ss.dependency "#{s.name}/Implementation", version
1235
1236     ss.source_files = 'test/core/end2end/data/client_certs.cc',
1237                       'test/core/end2end/data/server1_cert.cc',
1238                       'test/core/end2end/data/server1_key.cc',
1239                       'test/core/end2end/data/test_root_cert.cc',
1240                       'test/core/security/oauth2_utils.cc',
1241                       'test/core/end2end/cq_verifier.cc',
1242                       'test/core/end2end/fixtures/http_proxy_fixture.cc',
1243                       'test/core/end2end/fixtures/local_util.cc',
1244                       'test/core/end2end/fixtures/proxy.cc',
1245                       'test/core/iomgr/endpoint_tests.cc',
1246                       'test/core/util/debugger_macros.cc',
1247                       'test/core/util/fuzzer_util.cc',
1248                       'test/core/util/grpc_profiler.cc',
1249                       'test/core/util/histogram.cc',
1250                       'test/core/util/memory_counters.cc',
1251                       'test/core/util/mock_endpoint.cc',
1252                       'test/core/util/parse_hexstring.cc',
1253                       'test/core/util/passthru_endpoint.cc',
1254                       'test/core/util/port.cc',
1255                       'test/core/util/port_isolated_runtime_environment.cc',
1256                       'test/core/util/port_server_client.cc',
1257                       'test/core/util/slice_splitter.cc',
1258                       'test/core/util/subprocess_windows.cc',
1259                       'test/core/util/test_config.cc',
1260                       'test/core/util/test_lb_policies.cc',
1261                       'test/core/util/tracer_util.cc',
1262                       'test/core/util/trickle_endpoint.cc',
1263                       'test/core/util/cmdline.cc',
1264                       'third_party/nanopb/pb_common.c',
1265                       'third_party/nanopb/pb_decode.c',
1266                       'third_party/nanopb/pb_encode.c',
1267                       'test/core/end2end/data/ssl_test_data.h',
1268                       'test/core/security/oauth2_utils.h',
1269                       'test/core/end2end/cq_verifier.h',
1270                       'test/core/end2end/fixtures/http_proxy_fixture.h',
1271                       'test/core/end2end/fixtures/local_util.h',
1272                       'test/core/end2end/fixtures/proxy.h',
1273                       'test/core/iomgr/endpoint_tests.h',
1274                       'test/core/util/debugger_macros.h',
1275                       'test/core/util/fuzzer_util.h',
1276                       'test/core/util/grpc_profiler.h',
1277                       'test/core/util/histogram.h',
1278                       'test/core/util/memory_counters.h',
1279                       'test/core/util/mock_endpoint.h',
1280                       'test/core/util/parse_hexstring.h',
1281                       'test/core/util/passthru_endpoint.h',
1282                       'test/core/util/port.h',
1283                       'test/core/util/port_server_client.h',
1284                       'test/core/util/slice_splitter.h',
1285                       'test/core/util/subprocess.h',
1286                       'test/core/util/test_config.h',
1287                       'test/core/util/test_lb_policies.h',
1288                       'test/core/util/tracer_util.h',
1289                       'test/core/util/trickle_endpoint.h',
1290                       'test/core/util/cmdline.h',
1291                       'third_party/nanopb/pb.h',
1292                       'third_party/nanopb/pb_common.h',
1293                       'third_party/nanopb/pb_decode.h',
1294                       'third_party/nanopb/pb_encode.h',
1295                       'test/core/end2end/end2end_tests.cc',
1296                       'test/core/end2end/end2end_test_utils.cc',
1297                       'test/core/end2end/tests/authority_not_supported.cc',
1298                       'test/core/end2end/tests/bad_hostname.cc',
1299                       'test/core/end2end/tests/bad_ping.cc',
1300                       'test/core/end2end/tests/binary_metadata.cc',
1301                       'test/core/end2end/tests/call_creds.cc',
1302                       'test/core/end2end/tests/call_host_override.cc',
1303                       'test/core/end2end/tests/cancel_after_accept.cc',
1304                       'test/core/end2end/tests/cancel_after_client_done.cc',
1305                       'test/core/end2end/tests/cancel_after_invoke.cc',
1306                       'test/core/end2end/tests/cancel_after_round_trip.cc',
1307                       'test/core/end2end/tests/cancel_before_invoke.cc',
1308                       'test/core/end2end/tests/cancel_in_a_vacuum.cc',
1309                       'test/core/end2end/tests/cancel_with_status.cc',
1310                       'test/core/end2end/tests/channelz.cc',
1311                       'test/core/end2end/tests/compressed_payload.cc',
1312                       'test/core/end2end/tests/connectivity.cc',
1313                       'test/core/end2end/tests/default_host.cc',
1314                       'test/core/end2end/tests/disappearing_server.cc',
1315                       'test/core/end2end/tests/empty_batch.cc',
1316                       'test/core/end2end/tests/filter_call_init_fails.cc',
1317                       'test/core/end2end/tests/filter_causes_close.cc',
1318                       'test/core/end2end/tests/filter_context.cc',
1319                       'test/core/end2end/tests/filter_latency.cc',
1320                       'test/core/end2end/tests/filter_status_code.cc',
1321                       'test/core/end2end/tests/graceful_server_shutdown.cc',
1322                       'test/core/end2end/tests/high_initial_seqno.cc',
1323                       'test/core/end2end/tests/hpack_size.cc',
1324                       'test/core/end2end/tests/idempotent_request.cc',
1325                       'test/core/end2end/tests/invoke_large_request.cc',
1326                       'test/core/end2end/tests/keepalive_timeout.cc',
1327                       'test/core/end2end/tests/large_metadata.cc',
1328                       'test/core/end2end/tests/max_concurrent_streams.cc',
1329                       'test/core/end2end/tests/max_connection_age.cc',
1330                       'test/core/end2end/tests/max_connection_idle.cc',
1331                       'test/core/end2end/tests/max_message_length.cc',
1332                       'test/core/end2end/tests/negative_deadline.cc',
1333                       'test/core/end2end/tests/no_error_on_hotpath.cc',
1334                       'test/core/end2end/tests/no_logging.cc',
1335                       'test/core/end2end/tests/no_op.cc',
1336                       'test/core/end2end/tests/payload.cc',
1337                       'test/core/end2end/tests/ping.cc',
1338                       'test/core/end2end/tests/ping_pong_streaming.cc',
1339                       'test/core/end2end/tests/proxy_auth.cc',
1340                       'test/core/end2end/tests/registered_call.cc',
1341                       'test/core/end2end/tests/request_with_flags.cc',
1342                       'test/core/end2end/tests/request_with_payload.cc',
1343                       'test/core/end2end/tests/resource_quota_server.cc',
1344                       'test/core/end2end/tests/retry.cc',
1345                       'test/core/end2end/tests/retry_cancellation.cc',
1346                       'test/core/end2end/tests/retry_disabled.cc',
1347                       'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc',
1348                       'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc',
1349                       'test/core/end2end/tests/retry_non_retriable_status.cc',
1350                       'test/core/end2end/tests/retry_non_retriable_status_before_recv_trailing_metadata_started.cc',
1351                       'test/core/end2end/tests/retry_recv_initial_metadata.cc',
1352                       'test/core/end2end/tests/retry_recv_message.cc',
1353                       'test/core/end2end/tests/retry_server_pushback_delay.cc',
1354                       'test/core/end2end/tests/retry_server_pushback_disabled.cc',
1355                       'test/core/end2end/tests/retry_streaming.cc',
1356                       'test/core/end2end/tests/retry_streaming_after_commit.cc',
1357                       'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc',
1358                       'test/core/end2end/tests/retry_throttled.cc',
1359                       'test/core/end2end/tests/retry_too_many_attempts.cc',
1360                       'test/core/end2end/tests/server_finishes_request.cc',
1361                       'test/core/end2end/tests/shutdown_finishes_calls.cc',
1362                       'test/core/end2end/tests/shutdown_finishes_tags.cc',
1363                       'test/core/end2end/tests/simple_cacheable_request.cc',
1364                       'test/core/end2end/tests/simple_delayed_request.cc',
1365                       'test/core/end2end/tests/simple_metadata.cc',
1366                       'test/core/end2end/tests/simple_request.cc',
1367                       'test/core/end2end/tests/stream_compression_compressed_payload.cc',
1368                       'test/core/end2end/tests/stream_compression_payload.cc',
1369                       'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc',
1370                       'test/core/end2end/tests/streaming_error_response.cc',
1371                       'test/core/end2end/tests/trailing_metadata.cc',
1372                       'test/core/end2end/tests/workaround_cronet_compression.cc',
1373                       'test/core/end2end/tests/write_buffering.cc',
1374                       'test/core/end2end/tests/write_buffering_at_end.cc',
1375                       'test/core/end2end/tests/cancel_test_helpers.h',
1376                       'test/core/end2end/end2end_tests.h'
1377   end
1378
1379   # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
1380   s.prepare_command = <<-END_OF_COMMAND
1381     find src/core/ -type f ! -path '*.grpc_back' -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include "(pb(_.*)?\\.h)";#include <nanopb/\\1>;g'
1382     find src/core/ -type f -path '*.grpc_back' -print0 | xargs -0 rm
1383     find src/core/ -type f \\( -path '*.h' -or -path '*.cc' \\) -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include <openssl/;#include <openssl_grpc/;g'
1384   END_OF_COMMAND
1385 end