blob: e033164c56ef7f920b9270d477b8c4ec203c9663 [file] [log] [blame]
Muxi Yan27e9db42017-01-30 09:21:05 -08001# 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`.
Jorge Canizalese487a722016-04-30 12:05:26 -07005
Muxi Yan27e9db42017-01-30 09:21:05 -08006# gRPC Core CocoaPods podspec
7#
Jorge Canizalese487a722016-04-30 12:05:26 -07008# Copyright 2015, Google Inc.
9# All rights reserved.
10#
11# Redistribution and use in source and binary forms, with or without
12# modification, are permitted provided that the following conditions are
13# met:
14#
15# * Redistributions of source code must retain the above copyright
16# notice, this list of conditions and the following disclaimer.
17# * Redistributions in binary form must reproduce the above
18# copyright notice, this list of conditions and the following disclaimer
19# in the documentation and/or other materials provided with the
20# distribution.
21# * Neither the name of Google Inc. nor the names of its
22# contributors may be used to endorse or promote products derived from
23# this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
37
38Pod::Spec.new do |s|
39 s.name = 'gRPC-Core'
David Garcia Quintas74cec102017-03-09 15:00:26 -080040 version = '1.3.0-dev'
Jorge Canizalese487a722016-04-30 12:05:26 -070041 s.version = version
42 s.summary = 'Core cross-platform gRPC library, written in C'
43 s.homepage = 'http://www.grpc.io'
44 s.license = 'New BSD'
45 s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
46
47 s.source = {
48 :git => 'https://github.com/grpc/grpc.git',
Muxi Yan690aee62017-01-27 02:52:47 +000049 :tag => "v#{version}",
Jorge Canizalescc074d92016-06-28 09:52:43 -070050 # TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
Jorge Canizales66c8ddd2016-06-08 17:39:40 -070051 :submodules => true,
Jorge Canizalese487a722016-04-30 12:05:26 -070052 }
53
Muxi Yan37d3fba2017-02-28 16:14:40 -080054 s.ios.deployment_target = '7.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070055 s.osx.deployment_target = '10.9'
56 s.requires_arc = false
57
58 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070059
Jorge Canizalescc074d92016-06-28 09:52:43 -070060 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
61 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
62 # <gRPC-Core/grpc.h>`.
63 s.module_name = name
64
65 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
66 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
67 #
68 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizales37750742016-06-08 20:10:20 -070069 s.header_mappings_dir = 'include/grpc'
70
Jorge Canizalescc074d92016-06-28 09:52:43 -070071 # The above has an undesired effect when creating a static library: It forces users to write
72 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
73 # because Cocoapods lets omit the pod name when including headers of static libraries, the
74 # following lets users write `#include <grpc/grpc.h>`.
75 s.header_dir = name
Jorge Canizales37750742016-06-08 20:10:20 -070076
Jorge Canizalescc074d92016-06-28 09:52:43 -070077 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales547f0652016-05-01 19:52:21 -070078 s.module_map = 'include/grpc/module.modulemap'
79
Jorge Canizalescc074d92016-06-28 09:52:43 -070080 # To compile the library, we need the user headers search path (quoted includes) to point to the
81 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
82 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
83 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
84 #
85 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
86 # is taken as an implementation detail. We've asked for an alternative, and have been told that
87 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
88 #
89 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
90 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
91 # that assumption is wrong. In such case, the following settings need to be reset with the
92 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
93 # Podfile; see `src/objective-c/tests/Podfile` for an example.
94 src_root = '$(PODS_ROOT)/gRPC-Core'
95 s.pod_target_xcconfig = {
96 'GRPC_SRC_ROOT' => src_root,
97 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
98 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
99 # If we don't set these two settings, `include/grpc/support/time.h` and
100 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
101 # build.
102 'USE_HEADERMAP' => 'NO',
103 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
104 }
Jorge Canizalese487a722016-04-30 12:05:26 -0700105
Muxi Yane04089e2016-07-15 16:35:20 -0700106 s.default_subspecs = 'Interface', 'Implementation'
Yuchen Zeng9e4c8eb2016-11-18 01:06:57 -0800107 s.compiler_flags = '-DGRPC_ARES=0'
Muxi Yane04089e2016-07-15 16:35:20 -0700108
Jorge Canizalescc074d92016-06-28 09:52:43 -0700109 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
110 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
111 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
112 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
113 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
114 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
115 # making the linter happy.
116 #
117 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
118 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
119 s.subspec 'Interface' do |ss|
120 ss.header_mappings_dir = 'include/grpc'
121
122 ss.source_files = 'include/grpc/support/alloc.h',
123 'include/grpc/support/atm.h',
124 'include/grpc/support/atm_gcc_atomic.h',
125 'include/grpc/support/atm_gcc_sync.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700126 'include/grpc/support/atm_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700127 'include/grpc/support/avl.h',
128 'include/grpc/support/cmdline.h',
129 'include/grpc/support/cpu.h',
130 'include/grpc/support/histogram.h',
131 'include/grpc/support/host_port.h',
132 'include/grpc/support/log.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700133 'include/grpc/support/log_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700134 'include/grpc/support/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700135 'include/grpc/support/string_util.h',
136 'include/grpc/support/subprocess.h',
137 'include/grpc/support/sync.h',
138 'include/grpc/support/sync_generic.h',
139 'include/grpc/support/sync_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700140 'include/grpc/support/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700141 'include/grpc/support/thd.h',
142 'include/grpc/support/time.h',
143 'include/grpc/support/tls.h',
144 'include/grpc/support/tls_gcc.h',
145 'include/grpc/support/tls_msvc.h',
146 'include/grpc/support/tls_pthread.h',
147 'include/grpc/support/useful.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700148 'include/grpc/impl/codegen/atm.h',
149 'include/grpc/impl/codegen/atm_gcc_atomic.h',
150 'include/grpc/impl/codegen/atm_gcc_sync.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700151 'include/grpc/impl/codegen/atm_windows.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800152 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700153 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700154 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700155 'include/grpc/impl/codegen/sync.h',
156 'include/grpc/impl/codegen/sync_generic.h',
157 'include/grpc/impl/codegen/sync_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700158 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700159 'include/grpc/byte_buffer.h',
160 'include/grpc/byte_buffer_reader.h',
161 'include/grpc/compression.h',
162 'include/grpc/grpc.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700163 'include/grpc/grpc_posix.h',
Nicolas "Pixel" Noblea469e5d2016-08-16 22:09:27 +0200164 'include/grpc/grpc_security_constants.h',
David Garcia Quintasf31f0962017-02-10 14:53:58 -0800165 'include/grpc/load_reporting.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700166 'include/grpc/slice.h',
167 'include/grpc/slice_buffer.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700168 'include/grpc/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700169 'include/grpc/impl/codegen/byte_buffer_reader.h',
170 'include/grpc/impl/codegen/compression_types.h',
171 'include/grpc/impl/codegen/connectivity_state.h',
Craig Tillerb995e8b2016-12-12 06:36:43 -0800172 'include/grpc/impl/codegen/exec_ctx_fwd.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700173 'include/grpc/impl/codegen/grpc_types.h',
174 'include/grpc/impl/codegen/propagation_bits.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700175 'include/grpc/impl/codegen/slice.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700176 'include/grpc/impl/codegen/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700177 'include/grpc/impl/codegen/atm.h',
178 'include/grpc/impl/codegen/atm_gcc_atomic.h',
179 'include/grpc/impl/codegen/atm_gcc_sync.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700180 'include/grpc/impl/codegen/atm_windows.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800181 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700182 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700183 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700184 'include/grpc/impl/codegen/sync.h',
185 'include/grpc/impl/codegen/sync_generic.h',
186 'include/grpc/impl/codegen/sync_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700187 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700188 'include/grpc/grpc_security.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700189 'include/grpc/census.h'
190 end
191 s.subspec 'Implementation' do |ss|
192 ss.header_mappings_dir = '.'
193 ss.libraries = 'z'
194 ss.dependency "#{s.name}/Interface", version
Muxi Yan690aee62017-01-27 02:52:47 +0000195 ss.dependency 'BoringSSL', '~> 8.0'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700196
197 # To save you from scrolling, this is the last part of the podspec.
198 ss.source_files = 'src/core/lib/profiling/timers.h',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700199 'src/core/lib/support/arena.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700200 'src/core/lib/support/backoff.h',
201 'src/core/lib/support/block_annotate.h',
202 'src/core/lib/support/env.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700203 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700204 'src/core/lib/support/murmur_hash.h',
Craig Tilleredbf2b92017-02-27 07:24:00 -0800205 'src/core/lib/support/spinlock.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700206 'src/core/lib/support/stack_lockfree.h',
207 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700208 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700209 'src/core/lib/support/thd_internal.h',
210 'src/core/lib/support/time_precise.h',
211 'src/core/lib/support/tmpfile.h',
212 'src/core/lib/profiling/basic_timers.c',
213 'src/core/lib/profiling/stap_timers.c',
214 'src/core/lib/support/alloc.c',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700215 'src/core/lib/support/arena.c',
Mark D. Rothfecba532017-03-17 09:50:48 -0700216 'src/core/lib/support/atm.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700217 'src/core/lib/support/avl.c',
218 'src/core/lib/support/backoff.c',
219 'src/core/lib/support/cmdline.c',
220 'src/core/lib/support/cpu_iphone.c',
221 'src/core/lib/support/cpu_linux.c',
222 'src/core/lib/support/cpu_posix.c',
223 'src/core/lib/support/cpu_windows.c',
224 'src/core/lib/support/env_linux.c',
225 'src/core/lib/support/env_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700226 'src/core/lib/support/env_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700227 'src/core/lib/support/histogram.c',
228 'src/core/lib/support/host_port.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700229 'src/core/lib/support/log.c',
230 'src/core/lib/support/log_android.c',
231 'src/core/lib/support/log_linux.c',
232 'src/core/lib/support/log_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700233 'src/core/lib/support/log_windows.c',
Craig Tiller57726ca2016-09-12 11:59:45 -0700234 'src/core/lib/support/mpscq.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700235 'src/core/lib/support/murmur_hash.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700236 'src/core/lib/support/stack_lockfree.c',
237 'src/core/lib/support/string.c',
238 'src/core/lib/support/string_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700239 'src/core/lib/support/string_util_windows.c',
240 'src/core/lib/support/string_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700241 'src/core/lib/support/subprocess_posix.c',
242 'src/core/lib/support/subprocess_windows.c',
243 'src/core/lib/support/sync.c',
244 'src/core/lib/support/sync_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700245 'src/core/lib/support/sync_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700246 'src/core/lib/support/thd.c',
247 'src/core/lib/support/thd_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700248 'src/core/lib/support/thd_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700249 'src/core/lib/support/time.c',
250 'src/core/lib/support/time_posix.c',
251 'src/core/lib/support/time_precise.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700252 'src/core/lib/support/time_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700253 'src/core/lib/support/tls_pthread.c',
254 'src/core/lib/support/tmpfile_msys.c',
255 'src/core/lib/support/tmpfile_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700256 'src/core/lib/support/tmpfile_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700257 'src/core/lib/support/wrap_memcpy.c',
258 'src/core/lib/channel/channel_args.h',
259 'src/core/lib/channel/channel_stack.h',
260 'src/core/lib/channel/channel_stack_builder.h',
261 'src/core/lib/channel/compress_filter.h',
262 'src/core/lib/channel/connected_channel.h',
263 'src/core/lib/channel/context.h',
Mark D. Roth14c072c2016-08-26 08:31:34 -0700264 'src/core/lib/channel/deadline_filter.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700265 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800266 'src/core/lib/channel/handshaker_factory.h',
267 'src/core/lib/channel/handshaker_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700268 'src/core/lib/channel/http_client_filter.h',
269 'src/core/lib/channel/http_server_filter.h',
Yuchen Zenga809ea52017-03-28 02:02:45 -0700270 'src/core/lib/channel/max_age_filter.h',
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700271 'src/core/lib/channel/message_size_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700272 'src/core/lib/compression/algorithm_metadata.h',
273 'src/core/lib/compression/message_compress.h',
274 'src/core/lib/debug/trace.h',
275 'src/core/lib/http/format_request.h',
276 'src/core/lib/http/httpcli.h',
277 'src/core/lib/http/parser.h',
278 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700279 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700280 'src/core/lib/iomgr/endpoint.h',
281 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700282 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800283 'src/core/lib/iomgr/error_internal.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700284 'src/core/lib/iomgr/ev_epoll_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700285 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700286 'src/core/lib/iomgr/ev_posix.h',
287 'src/core/lib/iomgr/exec_ctx.h',
288 'src/core/lib/iomgr/executor.h',
289 'src/core/lib/iomgr/iocp_windows.h',
290 'src/core/lib/iomgr/iomgr.h',
291 'src/core/lib/iomgr/iomgr_internal.h',
292 'src/core/lib/iomgr/iomgr_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700293 'src/core/lib/iomgr/load_file.h',
294 'src/core/lib/iomgr/network_status_tracker.h',
295 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700296 'src/core/lib/iomgr/pollset.h',
297 'src/core/lib/iomgr/pollset_set.h',
298 'src/core/lib/iomgr/pollset_set_windows.h',
murgatroid999030c812016-09-16 13:25:08 -0700299 'src/core/lib/iomgr/pollset_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700300 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700301 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700302 'src/core/lib/iomgr/resolve_address.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700303 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700304 'src/core/lib/iomgr/sockaddr.h',
305 'src/core/lib/iomgr/sockaddr_posix.h',
306 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700307 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500308 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700309 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700310 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700311 'src/core/lib/iomgr/socket_utils_posix.h',
312 'src/core/lib/iomgr/socket_windows.h',
313 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700314 'src/core/lib/iomgr/tcp_client_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700315 'src/core/lib/iomgr/tcp_posix.h',
316 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700317 'src/core/lib/iomgr/tcp_server_utils_posix.h',
murgatroid999030c812016-09-16 13:25:08 -0700318 'src/core/lib/iomgr/tcp_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700319 'src/core/lib/iomgr/tcp_windows.h',
320 'src/core/lib/iomgr/time_averaged_stats.h',
321 'src/core/lib/iomgr/timer.h',
murgatroid999030c812016-09-16 13:25:08 -0700322 'src/core/lib/iomgr/timer_generic.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700323 'src/core/lib/iomgr/timer_heap.h',
murgatroid999030c812016-09-16 13:25:08 -0700324 'src/core/lib/iomgr/timer_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700325 'src/core/lib/iomgr/udp_server.h',
326 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700327 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700328 'src/core/lib/iomgr/wakeup_fd_pipe.h',
329 'src/core/lib/iomgr/wakeup_fd_posix.h',
330 'src/core/lib/iomgr/workqueue.h',
murgatroid999030c812016-09-16 13:25:08 -0700331 'src/core/lib/iomgr/workqueue_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700332 'src/core/lib/iomgr/workqueue_windows.h',
333 'src/core/lib/json/json.h',
334 'src/core/lib/json/json_common.h',
335 'src/core/lib/json/json_reader.h',
336 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700337 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700338 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800339 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800340 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700341 'src/core/lib/slice/slice_string_helpers.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700342 'src/core/lib/surface/api_trace.h',
343 'src/core/lib/surface/call.h',
344 'src/core/lib/surface/call_test_only.h',
345 'src/core/lib/surface/channel.h',
346 'src/core/lib/surface/channel_init.h',
347 'src/core/lib/surface/channel_stack_type.h',
348 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700349 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700350 'src/core/lib/surface/event_string.h',
351 'src/core/lib/surface/init.h',
352 'src/core/lib/surface/lame_client.h',
353 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800354 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700355 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700356 'src/core/lib/transport/byte_stream.h',
357 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800358 'src/core/lib/transport/error_utils.h',
359 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700360 'src/core/lib/transport/metadata.h',
361 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700362 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700363 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700364 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800365 'src/core/lib/transport/status_conversion.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400366 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700367 'src/core/lib/transport/transport.h',
368 'src/core/lib/transport/transport_impl.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700369 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700370 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
371 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
372 'src/core/ext/transport/chttp2/transport/frame.h',
373 'src/core/ext/transport/chttp2/transport/frame_data.h',
374 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
375 'src/core/ext/transport/chttp2/transport/frame_ping.h',
376 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
377 'src/core/ext/transport/chttp2/transport/frame_settings.h',
378 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
379 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
380 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
381 'src/core/ext/transport/chttp2/transport/hpack_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700382 'src/core/ext/transport/chttp2/transport/huffsyms.h',
383 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
384 'src/core/ext/transport/chttp2/transport/internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700385 'src/core/ext/transport/chttp2/transport/stream_map.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700386 'src/core/ext/transport/chttp2/transport/varint.h',
387 'src/core/ext/transport/chttp2/alpn/alpn.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700388 'src/core/lib/security/context/security_context.h',
389 'src/core/lib/security/credentials/composite/composite_credentials.h',
390 'src/core/lib/security/credentials/credentials.h',
391 'src/core/lib/security/credentials/fake/fake_credentials.h',
392 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
393 'src/core/lib/security/credentials/iam/iam_credentials.h',
394 'src/core/lib/security/credentials/jwt/json_token.h',
395 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
396 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
397 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
398 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
399 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
400 'src/core/lib/security/transport/auth_filters.h',
David Garcia Quintas01291502017-02-07 13:26:41 -0800401 'src/core/lib/security/transport/lb_targets_info.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700402 'src/core/lib/security/transport/secure_endpoint.h',
403 'src/core/lib/security/transport/security_connector.h',
Mark D. Roth071cacf2016-11-17 13:17:56 -0800404 'src/core/lib/security/transport/security_handshaker.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700405 'src/core/lib/security/transport/tsi_error.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700406 'src/core/lib/security/util/json_util.h',
Craig Tiller134fed32017-03-28 14:27:18 -0700407 'src/core/tsi/fake_transport_security.h',
408 'src/core/tsi/ssl_transport_security.h',
409 'src/core/tsi/ssl_types.h',
410 'src/core/tsi/transport_security.h',
411 'src/core/tsi/transport_security_interface.h',
Mark D. Roth71403822016-12-02 10:51:39 -0800412 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700413 'src/core/ext/filters/client_channel/client_channel.h',
414 'src/core/ext/filters/client_channel/client_channel_factory.h',
415 'src/core/ext/filters/client_channel/connector.h',
416 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
417 'src/core/ext/filters/client_channel/http_proxy.h',
418 'src/core/ext/filters/client_channel/lb_policy.h',
419 'src/core/ext/filters/client_channel/lb_policy_factory.h',
420 'src/core/ext/filters/client_channel/lb_policy_registry.h',
421 'src/core/ext/filters/client_channel/parse_address.h',
422 'src/core/ext/filters/client_channel/proxy_mapper.h',
423 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
424 'src/core/ext/filters/client_channel/resolver.h',
425 'src/core/ext/filters/client_channel/resolver_factory.h',
426 'src/core/ext/filters/client_channel/resolver_registry.h',
427 'src/core/ext/filters/client_channel/retry_throttle.h',
428 'src/core/ext/filters/client_channel/subchannel.h',
429 'src/core/ext/filters/client_channel/subchannel_index.h',
430 'src/core/ext/filters/client_channel/uri_parser.h',
Mark D. Roth8686cab2016-11-17 13:12:17 -0800431 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700432 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
433 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
434 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
435 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700436 'third_party/nanopb/pb.h',
437 'third_party/nanopb/pb_common.h',
438 'third_party/nanopb/pb_decode.h',
439 'third_party/nanopb/pb_encode.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700440 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
441 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
442 'src/core/ext/filters/load_reporting/load_reporting.h',
443 'src/core/ext/filters/load_reporting/load_reporting_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700444 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700445 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700446 'src/core/ext/census/census_interface.h',
447 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700448 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700449 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700450 'src/core/ext/census/grpc_filter.h',
451 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700452 'src/core/ext/census/resource.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700453 'src/core/ext/census/rpc_metric_id.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700454 'src/core/ext/census/trace_context.h',
Vizerai0e5b67f2017-01-20 14:02:18 -0800455 'src/core/ext/census/trace_label.h',
456 'src/core/ext/census/trace_propagation.h',
457 'src/core/ext/census/trace_status.h',
458 'src/core/ext/census/trace_string.h',
459 'src/core/ext/census/tracing.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700460 'src/core/lib/surface/init.c',
461 'src/core/lib/channel/channel_args.c',
462 'src/core/lib/channel/channel_stack.c',
463 'src/core/lib/channel/channel_stack_builder.c',
464 'src/core/lib/channel/compress_filter.c',
465 'src/core/lib/channel/connected_channel.c',
Mark D. Roth14c072c2016-08-26 08:31:34 -0700466 'src/core/lib/channel/deadline_filter.c',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700467 'src/core/lib/channel/handshaker.c',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800468 'src/core/lib/channel/handshaker_factory.c',
469 'src/core/lib/channel/handshaker_registry.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700470 'src/core/lib/channel/http_client_filter.c',
471 'src/core/lib/channel/http_server_filter.c',
Yuchen Zenga809ea52017-03-28 02:02:45 -0700472 'src/core/lib/channel/max_age_filter.c',
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700473 'src/core/lib/channel/message_size_filter.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700474 'src/core/lib/compression/compression.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700475 'src/core/lib/compression/message_compress.c',
476 'src/core/lib/debug/trace.c',
477 'src/core/lib/http/format_request.c',
478 'src/core/lib/http/httpcli.c',
479 'src/core/lib/http/parser.c',
480 'src/core/lib/iomgr/closure.c',
Craig Tiller57726ca2016-09-12 11:59:45 -0700481 'src/core/lib/iomgr/combiner.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700482 'src/core/lib/iomgr/endpoint.c',
483 'src/core/lib/iomgr/endpoint_pair_posix.c',
murgatroid99c36f6ea2016-10-03 09:24:09 -0700484 'src/core/lib/iomgr/endpoint_pair_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700485 'src/core/lib/iomgr/endpoint_pair_windows.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700486 'src/core/lib/iomgr/error.c',
487 'src/core/lib/iomgr/ev_epoll_linux.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700488 'src/core/lib/iomgr/ev_poll_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700489 'src/core/lib/iomgr/ev_posix.c',
490 'src/core/lib/iomgr/exec_ctx.c',
491 'src/core/lib/iomgr/executor.c',
492 'src/core/lib/iomgr/iocp_windows.c',
493 'src/core/lib/iomgr/iomgr.c',
494 'src/core/lib/iomgr/iomgr_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700495 'src/core/lib/iomgr/iomgr_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700496 'src/core/lib/iomgr/iomgr_windows.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700497 'src/core/lib/iomgr/load_file.c',
498 'src/core/lib/iomgr/network_status_tracker.c',
499 'src/core/lib/iomgr/polling_entity.c',
murgatroid999030c812016-09-16 13:25:08 -0700500 'src/core/lib/iomgr/pollset_set_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700501 'src/core/lib/iomgr/pollset_set_windows.c',
murgatroid999030c812016-09-16 13:25:08 -0700502 'src/core/lib/iomgr/pollset_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700503 'src/core/lib/iomgr/pollset_windows.c',
504 'src/core/lib/iomgr/resolve_address_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700505 'src/core/lib/iomgr/resolve_address_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700506 'src/core/lib/iomgr/resolve_address_windows.c',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700507 'src/core/lib/iomgr/resource_quota.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700508 'src/core/lib/iomgr/sockaddr_utils.c',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500509 'src/core/lib/iomgr/socket_factory_posix.c',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700510 'src/core/lib/iomgr/socket_mutator.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700511 'src/core/lib/iomgr/socket_utils_common_posix.c',
512 'src/core/lib/iomgr/socket_utils_linux.c',
513 'src/core/lib/iomgr/socket_utils_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700514 'src/core/lib/iomgr/socket_utils_uv.c',
murgatroid9979b32272016-08-08 13:38:30 -0700515 'src/core/lib/iomgr/socket_utils_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700516 'src/core/lib/iomgr/socket_windows.c',
517 'src/core/lib/iomgr/tcp_client_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700518 'src/core/lib/iomgr/tcp_client_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700519 'src/core/lib/iomgr/tcp_client_windows.c',
520 'src/core/lib/iomgr/tcp_posix.c',
521 'src/core/lib/iomgr/tcp_server_posix.c',
Yuchen Zeng68745bb2017-03-14 17:51:07 -0700522 'src/core/lib/iomgr/tcp_server_utils_posix_common.c',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700523 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c',
524 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c',
murgatroid999030c812016-09-16 13:25:08 -0700525 'src/core/lib/iomgr/tcp_server_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700526 'src/core/lib/iomgr/tcp_server_windows.c',
murgatroid999030c812016-09-16 13:25:08 -0700527 'src/core/lib/iomgr/tcp_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700528 'src/core/lib/iomgr/tcp_windows.c',
529 'src/core/lib/iomgr/time_averaged_stats.c',
murgatroid999030c812016-09-16 13:25:08 -0700530 'src/core/lib/iomgr/timer_generic.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700531 'src/core/lib/iomgr/timer_heap.c',
murgatroid999030c812016-09-16 13:25:08 -0700532 'src/core/lib/iomgr/timer_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700533 'src/core/lib/iomgr/udp_server.c',
534 'src/core/lib/iomgr/unix_sockets_posix.c',
535 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
Ken Payson31caabd2016-08-06 21:27:29 -0700536 'src/core/lib/iomgr/wakeup_fd_cv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700537 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
538 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
539 'src/core/lib/iomgr/wakeup_fd_pipe.c',
540 'src/core/lib/iomgr/wakeup_fd_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700541 'src/core/lib/iomgr/workqueue_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700542 'src/core/lib/iomgr/workqueue_windows.c',
543 'src/core/lib/json/json.c',
544 'src/core/lib/json/json_reader.c',
545 'src/core/lib/json/json_string.c',
546 'src/core/lib/json/json_writer.c',
Craig Tiller29b527f2017-03-30 10:27:20 -0700547 'src/core/lib/slice/b64.c',
Craig Tillerc3350542016-10-26 16:19:01 -0700548 'src/core/lib/slice/percent_encoding.c',
549 'src/core/lib/slice/slice.c',
550 'src/core/lib/slice/slice_buffer.c',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800551 'src/core/lib/slice/slice_hash_table.c',
552 'src/core/lib/slice/slice_intern.c',
Craig Tillerc3350542016-10-26 16:19:01 -0700553 'src/core/lib/slice/slice_string_helpers.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700554 'src/core/lib/surface/alarm.c',
555 'src/core/lib/surface/api_trace.c',
556 'src/core/lib/surface/byte_buffer.c',
557 'src/core/lib/surface/byte_buffer_reader.c',
558 'src/core/lib/surface/call.c',
559 'src/core/lib/surface/call_details.c',
560 'src/core/lib/surface/call_log_batch.c',
561 'src/core/lib/surface/channel.c',
562 'src/core/lib/surface/channel_init.c',
563 'src/core/lib/surface/channel_ping.c',
564 'src/core/lib/surface/channel_stack_type.c',
565 'src/core/lib/surface/completion_queue.c',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700566 'src/core/lib/surface/completion_queue_factory.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700567 'src/core/lib/surface/event_string.c',
568 'src/core/lib/surface/lame_client.c',
569 'src/core/lib/surface/metadata_array.c',
570 'src/core/lib/surface/server.c',
571 'src/core/lib/surface/validate_metadata.c',
572 'src/core/lib/surface/version.c',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700573 'src/core/lib/transport/bdp_estimator.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700574 'src/core/lib/transport/byte_stream.c',
575 'src/core/lib/transport/connectivity_state.c',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800576 'src/core/lib/transport/error_utils.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700577 'src/core/lib/transport/metadata.c',
578 'src/core/lib/transport/metadata_batch.c',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700579 'src/core/lib/transport/pid_controller.c',
Mark D. Rothea846a02016-11-03 11:32:54 -0700580 'src/core/lib/transport/service_config.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700581 'src/core/lib/transport/static_metadata.c',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800582 'src/core/lib/transport/status_conversion.c',
Robbie Shade710d2422016-07-13 15:15:38 -0400583 'src/core/lib/transport/timeout_encoding.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700584 'src/core/lib/transport/transport.c',
585 'src/core/lib/transport/transport_op_string.c',
586 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700587 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700588 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
589 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
590 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
591 'src/core/ext/transport/chttp2/transport/frame_data.c',
592 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
593 'src/core/ext/transport/chttp2/transport/frame_ping.c',
594 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
595 'src/core/ext/transport/chttp2/transport/frame_settings.c',
596 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
597 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
598 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
599 'src/core/ext/transport/chttp2/transport/hpack_table.c',
600 'src/core/ext/transport/chttp2/transport/huffsyms.c',
601 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
602 'src/core/ext/transport/chttp2/transport/parsing.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700603 'src/core/ext/transport/chttp2/transport/stream_lists.c',
604 'src/core/ext/transport/chttp2/transport/stream_map.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700605 'src/core/ext/transport/chttp2/transport/varint.c',
606 'src/core/ext/transport/chttp2/transport/writing.c',
607 'src/core/ext/transport/chttp2/alpn/alpn.c',
608 'src/core/lib/http/httpcli_security_connector.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700609 'src/core/lib/security/context/security_context.c',
610 'src/core/lib/security/credentials/composite/composite_credentials.c',
611 'src/core/lib/security/credentials/credentials.c',
612 'src/core/lib/security/credentials/credentials_metadata.c',
613 'src/core/lib/security/credentials/fake/fake_credentials.c',
murgatroid997c205902016-08-09 10:07:42 -0700614 'src/core/lib/security/credentials/google_default/credentials_generic.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700615 'src/core/lib/security/credentials/google_default/google_default_credentials.c',
616 'src/core/lib/security/credentials/iam/iam_credentials.c',
617 'src/core/lib/security/credentials/jwt/json_token.c',
618 'src/core/lib/security/credentials/jwt/jwt_credentials.c',
619 'src/core/lib/security/credentials/jwt/jwt_verifier.c',
620 'src/core/lib/security/credentials/oauth2/oauth2_credentials.c',
621 'src/core/lib/security/credentials/plugin/plugin_credentials.c',
622 'src/core/lib/security/credentials/ssl/ssl_credentials.c',
623 'src/core/lib/security/transport/client_auth_filter.c',
David Garcia Quintas01291502017-02-07 13:26:41 -0800624 'src/core/lib/security/transport/lb_targets_info.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700625 'src/core/lib/security/transport/secure_endpoint.c',
626 'src/core/lib/security/transport/security_connector.c',
Mark D. Roth071cacf2016-11-17 13:17:56 -0800627 'src/core/lib/security/transport/security_handshaker.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700628 'src/core/lib/security/transport/server_auth_filter.c',
629 'src/core/lib/security/transport/tsi_error.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700630 'src/core/lib/security/util/json_util.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700631 'src/core/lib/surface/init_secure.c',
Craig Tiller134fed32017-03-28 14:27:18 -0700632 'src/core/tsi/fake_transport_security.c',
633 'src/core/tsi/ssl_transport_security.c',
634 'src/core/tsi/transport_security.c',
Mark D. Roth71403822016-12-02 10:51:39 -0800635 'src/core/ext/transport/chttp2/server/chttp2_server.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700636 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700637 'src/core/ext/filters/client_channel/channel_connectivity.c',
638 'src/core/ext/filters/client_channel/client_channel.c',
639 'src/core/ext/filters/client_channel/client_channel_factory.c',
640 'src/core/ext/filters/client_channel/client_channel_plugin.c',
641 'src/core/ext/filters/client_channel/connector.c',
642 'src/core/ext/filters/client_channel/http_connect_handshaker.c',
643 'src/core/ext/filters/client_channel/http_proxy.c',
644 'src/core/ext/filters/client_channel/lb_policy.c',
645 'src/core/ext/filters/client_channel/lb_policy_factory.c',
646 'src/core/ext/filters/client_channel/lb_policy_registry.c',
647 'src/core/ext/filters/client_channel/parse_address.c',
648 'src/core/ext/filters/client_channel/proxy_mapper.c',
649 'src/core/ext/filters/client_channel/proxy_mapper_registry.c',
650 'src/core/ext/filters/client_channel/resolver.c',
651 'src/core/ext/filters/client_channel/resolver_factory.c',
652 'src/core/ext/filters/client_channel/resolver_registry.c',
653 'src/core/ext/filters/client_channel/retry_throttle.c',
654 'src/core/ext/filters/client_channel/subchannel.c',
655 'src/core/ext/filters/client_channel/subchannel_index.c',
656 'src/core/ext/filters/client_channel/uri_parser.c',
Mark D. Roth8686cab2016-11-17 13:12:17 -0800657 'src/core/ext/transport/chttp2/client/chttp2_connector.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700658 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700659 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700660 'src/core/ext/transport/chttp2/client/insecure/channel_create.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700661 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700662 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c',
663 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.c',
664 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c',
665 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700666 'third_party/nanopb/pb_common.c',
667 'third_party/nanopb/pb_decode.c',
668 'third_party/nanopb/pb_encode.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700669 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c',
670 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c',
671 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c',
672 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c',
673 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c',
674 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c',
675 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c',
676 'src/core/ext/filters/load_reporting/load_reporting.c',
677 'src/core/ext/filters/load_reporting/load_reporting_filter.c',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700678 'src/core/ext/census/base_resources.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700679 'src/core/ext/census/context.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700680 'src/core/ext/census/gen/census.pb.c',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700681 'src/core/ext/census/gen/trace_context.pb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700682 'src/core/ext/census/grpc_context.c',
683 'src/core/ext/census/grpc_filter.c',
684 'src/core/ext/census/grpc_plugin.c',
685 'src/core/ext/census/initialize.c',
686 'src/core/ext/census/mlog.c',
687 'src/core/ext/census/operation.c',
688 'src/core/ext/census/placeholders.c',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700689 'src/core/ext/census/resource.c',
Vizerai12d1fc62016-09-09 14:22:19 -0700690 'src/core/ext/census/trace_context.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700691 'src/core/ext/census/tracing.c',
692 'src/core/plugin_registry/grpc_plugin_registry.c'
693
694 ss.private_header_files = 'src/core/lib/profiling/timers.h',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700695 'src/core/lib/support/arena.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700696 'src/core/lib/support/backoff.h',
697 'src/core/lib/support/block_annotate.h',
698 'src/core/lib/support/env.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700699 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700700 'src/core/lib/support/murmur_hash.h',
Craig Tilleredbf2b92017-02-27 07:24:00 -0800701 'src/core/lib/support/spinlock.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700702 'src/core/lib/support/stack_lockfree.h',
703 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700704 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700705 'src/core/lib/support/thd_internal.h',
706 'src/core/lib/support/time_precise.h',
707 'src/core/lib/support/tmpfile.h',
708 'src/core/lib/channel/channel_args.h',
709 'src/core/lib/channel/channel_stack.h',
710 'src/core/lib/channel/channel_stack_builder.h',
711 'src/core/lib/channel/compress_filter.h',
712 'src/core/lib/channel/connected_channel.h',
713 'src/core/lib/channel/context.h',
Mark D. Roth14c072c2016-08-26 08:31:34 -0700714 'src/core/lib/channel/deadline_filter.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700715 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800716 'src/core/lib/channel/handshaker_factory.h',
717 'src/core/lib/channel/handshaker_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700718 'src/core/lib/channel/http_client_filter.h',
719 'src/core/lib/channel/http_server_filter.h',
Yuchen Zenga809ea52017-03-28 02:02:45 -0700720 'src/core/lib/channel/max_age_filter.h',
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700721 'src/core/lib/channel/message_size_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700722 'src/core/lib/compression/algorithm_metadata.h',
723 'src/core/lib/compression/message_compress.h',
724 'src/core/lib/debug/trace.h',
725 'src/core/lib/http/format_request.h',
726 'src/core/lib/http/httpcli.h',
727 'src/core/lib/http/parser.h',
728 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700729 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700730 'src/core/lib/iomgr/endpoint.h',
731 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700732 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800733 'src/core/lib/iomgr/error_internal.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700734 'src/core/lib/iomgr/ev_epoll_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700735 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700736 'src/core/lib/iomgr/ev_posix.h',
737 'src/core/lib/iomgr/exec_ctx.h',
738 'src/core/lib/iomgr/executor.h',
739 'src/core/lib/iomgr/iocp_windows.h',
740 'src/core/lib/iomgr/iomgr.h',
741 'src/core/lib/iomgr/iomgr_internal.h',
742 'src/core/lib/iomgr/iomgr_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700743 'src/core/lib/iomgr/load_file.h',
744 'src/core/lib/iomgr/network_status_tracker.h',
745 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700746 'src/core/lib/iomgr/pollset.h',
747 'src/core/lib/iomgr/pollset_set.h',
748 'src/core/lib/iomgr/pollset_set_windows.h',
murgatroid999030c812016-09-16 13:25:08 -0700749 'src/core/lib/iomgr/pollset_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700750 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700751 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700752 'src/core/lib/iomgr/resolve_address.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700753 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700754 'src/core/lib/iomgr/sockaddr.h',
755 'src/core/lib/iomgr/sockaddr_posix.h',
756 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700757 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500758 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700759 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700760 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700761 'src/core/lib/iomgr/socket_utils_posix.h',
762 'src/core/lib/iomgr/socket_windows.h',
763 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700764 'src/core/lib/iomgr/tcp_client_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700765 'src/core/lib/iomgr/tcp_posix.h',
766 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700767 'src/core/lib/iomgr/tcp_server_utils_posix.h',
murgatroid999030c812016-09-16 13:25:08 -0700768 'src/core/lib/iomgr/tcp_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700769 'src/core/lib/iomgr/tcp_windows.h',
770 'src/core/lib/iomgr/time_averaged_stats.h',
771 'src/core/lib/iomgr/timer.h',
murgatroid999030c812016-09-16 13:25:08 -0700772 'src/core/lib/iomgr/timer_generic.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700773 'src/core/lib/iomgr/timer_heap.h',
murgatroid999030c812016-09-16 13:25:08 -0700774 'src/core/lib/iomgr/timer_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700775 'src/core/lib/iomgr/udp_server.h',
776 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700777 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700778 'src/core/lib/iomgr/wakeup_fd_pipe.h',
779 'src/core/lib/iomgr/wakeup_fd_posix.h',
780 'src/core/lib/iomgr/workqueue.h',
murgatroid999030c812016-09-16 13:25:08 -0700781 'src/core/lib/iomgr/workqueue_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700782 'src/core/lib/iomgr/workqueue_windows.h',
783 'src/core/lib/json/json.h',
784 'src/core/lib/json/json_common.h',
785 'src/core/lib/json/json_reader.h',
786 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700787 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700788 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800789 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800790 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700791 'src/core/lib/slice/slice_string_helpers.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700792 'src/core/lib/surface/api_trace.h',
793 'src/core/lib/surface/call.h',
794 'src/core/lib/surface/call_test_only.h',
795 'src/core/lib/surface/channel.h',
796 'src/core/lib/surface/channel_init.h',
797 'src/core/lib/surface/channel_stack_type.h',
798 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700799 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700800 'src/core/lib/surface/event_string.h',
801 'src/core/lib/surface/init.h',
802 'src/core/lib/surface/lame_client.h',
803 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800804 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700805 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700806 'src/core/lib/transport/byte_stream.h',
807 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800808 'src/core/lib/transport/error_utils.h',
809 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700810 'src/core/lib/transport/metadata.h',
811 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700812 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700813 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700814 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800815 'src/core/lib/transport/status_conversion.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400816 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700817 'src/core/lib/transport/transport.h',
818 'src/core/lib/transport/transport_impl.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700819 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700820 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
821 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
822 'src/core/ext/transport/chttp2/transport/frame.h',
823 'src/core/ext/transport/chttp2/transport/frame_data.h',
824 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
825 'src/core/ext/transport/chttp2/transport/frame_ping.h',
826 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
827 'src/core/ext/transport/chttp2/transport/frame_settings.h',
828 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
829 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
830 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
831 'src/core/ext/transport/chttp2/transport/hpack_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700832 'src/core/ext/transport/chttp2/transport/huffsyms.h',
833 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
834 'src/core/ext/transport/chttp2/transport/internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700835 'src/core/ext/transport/chttp2/transport/stream_map.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700836 'src/core/ext/transport/chttp2/transport/varint.h',
837 'src/core/ext/transport/chttp2/alpn/alpn.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700838 'src/core/lib/security/context/security_context.h',
839 'src/core/lib/security/credentials/composite/composite_credentials.h',
840 'src/core/lib/security/credentials/credentials.h',
841 'src/core/lib/security/credentials/fake/fake_credentials.h',
842 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
843 'src/core/lib/security/credentials/iam/iam_credentials.h',
844 'src/core/lib/security/credentials/jwt/json_token.h',
845 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
846 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
847 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
848 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
849 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
850 'src/core/lib/security/transport/auth_filters.h',
David Garcia Quintas01291502017-02-07 13:26:41 -0800851 'src/core/lib/security/transport/lb_targets_info.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700852 'src/core/lib/security/transport/secure_endpoint.h',
853 'src/core/lib/security/transport/security_connector.h',
Mark D. Roth071cacf2016-11-17 13:17:56 -0800854 'src/core/lib/security/transport/security_handshaker.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700855 'src/core/lib/security/transport/tsi_error.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700856 'src/core/lib/security/util/json_util.h',
Craig Tiller134fed32017-03-28 14:27:18 -0700857 'src/core/tsi/fake_transport_security.h',
858 'src/core/tsi/ssl_transport_security.h',
859 'src/core/tsi/ssl_types.h',
860 'src/core/tsi/transport_security.h',
861 'src/core/tsi/transport_security_interface.h',
Mark D. Roth71403822016-12-02 10:51:39 -0800862 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700863 'src/core/ext/filters/client_channel/client_channel.h',
864 'src/core/ext/filters/client_channel/client_channel_factory.h',
865 'src/core/ext/filters/client_channel/connector.h',
866 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
867 'src/core/ext/filters/client_channel/http_proxy.h',
868 'src/core/ext/filters/client_channel/lb_policy.h',
869 'src/core/ext/filters/client_channel/lb_policy_factory.h',
870 'src/core/ext/filters/client_channel/lb_policy_registry.h',
871 'src/core/ext/filters/client_channel/parse_address.h',
872 'src/core/ext/filters/client_channel/proxy_mapper.h',
873 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
874 'src/core/ext/filters/client_channel/resolver.h',
875 'src/core/ext/filters/client_channel/resolver_factory.h',
876 'src/core/ext/filters/client_channel/resolver_registry.h',
877 'src/core/ext/filters/client_channel/retry_throttle.h',
878 'src/core/ext/filters/client_channel/subchannel.h',
879 'src/core/ext/filters/client_channel/subchannel_index.h',
880 'src/core/ext/filters/client_channel/uri_parser.h',
Mark D. Roth8686cab2016-11-17 13:12:17 -0800881 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700882 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
883 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
884 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
885 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700886 'third_party/nanopb/pb.h',
887 'third_party/nanopb/pb_common.h',
888 'third_party/nanopb/pb_decode.h',
889 'third_party/nanopb/pb_encode.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700890 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
891 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
892 'src/core/ext/filters/load_reporting/load_reporting.h',
893 'src/core/ext/filters/load_reporting/load_reporting_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700894 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700895 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700896 'src/core/ext/census/census_interface.h',
897 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700898 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700899 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700900 'src/core/ext/census/grpc_filter.h',
901 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700902 'src/core/ext/census/resource.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700903 'src/core/ext/census/rpc_metric_id.h',
Vizerai0e5b67f2017-01-20 14:02:18 -0800904 'src/core/ext/census/trace_context.h',
905 'src/core/ext/census/trace_label.h',
906 'src/core/ext/census/trace_propagation.h',
907 'src/core/ext/census/trace_status.h',
908 'src/core/ext/census/trace_string.h',
909 'src/core/ext/census/tracing.h'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700910 end
Nicolas "Pixel" Noble20b83332016-07-21 19:28:38 +0200911
Muxi Yan37480eb2016-07-14 16:22:03 -0700912 s.subspec 'Cronet-Interface' do |ss|
913 ss.header_mappings_dir = 'include/grpc'
Muxi Yane38b0122017-03-16 20:53:41 -0700914 ss.source_files = 'include/grpc/grpc_cronet.h'
Muxi Yan37480eb2016-07-14 16:22:03 -0700915 end
916
Muxi Yanf8372c62016-07-29 09:58:55 -0700917 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700918 ss.header_mappings_dir = '.'
Muxi Yane2de92f2017-01-31 16:30:52 -0800919
920 ss.dependency "#{s.name}/Interface", version
921 ss.dependency "#{s.name}/Implementation", version
922 ss.dependency "#{s.name}/Cronet-Interface", version
923
Muxi Yan2a5072e2016-07-27 15:10:22 -0700924 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c',
Muxi Yane38b0122017-03-16 20:53:41 -0700925 'src/core/ext/transport/cronet/transport/cronet_transport.{c,h}',
Muxi Yanf0a12692017-01-31 16:36:56 -0800926 'third_party/objective_c/Cronet/bidirectional_stream_c.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -0700927 end
928
Muxi Yanf8372c62016-07-29 09:58:55 -0700929 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700930 ss.header_mappings_dir = '.'
931
Muxi Yane2de92f2017-01-31 16:30:52 -0800932 ss.dependency "#{s.name}/Interface", version
933 ss.dependency "#{s.name}/Implementation", version
934
Muxi Yan2a5072e2016-07-27 15:10:22 -0700935 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700936 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -0800937 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700938 'test/core/end2end/tests/*.{c,h}',
939 'test/core/end2end/data/*.{c,h}',
Muxi Yane38b0122017-03-16 20:53:41 -0700940 'test/core/util/debugger_macros.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700941 'test/core/util/test_config.{c,h}',
942 'test/core/util/port.h',
Craig Tiller46ab5f52017-02-28 08:40:19 -0800943 'test/core/util/port.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700944 'test/core/util/port_server_client.{c,h}'
Muxi Yan37480eb2016-07-14 16:22:03 -0700945 end
Jorge Canizalese487a722016-04-30 12:05:26 -0700946end