blob: f4a676f3b6a3224139379da8347ae24536c8b052 [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 Quintas9e1acc02017-04-13 16:30:15 -070040 version = '1.4.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',
Craig Tiller4d780a52017-04-12 13:47:18 -0700200 'src/core/lib/support/atomic.h',
201 'src/core/lib/support/atomic_with_atm.h',
202 'src/core/lib/support/atomic_with_std.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700203 'src/core/lib/support/backoff.h',
204 'src/core/lib/support/block_annotate.h',
205 'src/core/lib/support/env.h',
Craig Tillerb3d70102017-03-31 14:17:09 -0700206 'src/core/lib/support/memory.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700207 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700208 'src/core/lib/support/murmur_hash.h',
Craig Tilleredbf2b92017-02-27 07:24:00 -0800209 'src/core/lib/support/spinlock.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700210 'src/core/lib/support/stack_lockfree.h',
211 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700212 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700213 'src/core/lib/support/thd_internal.h',
214 'src/core/lib/support/time_precise.h',
215 'src/core/lib/support/tmpfile.h',
216 'src/core/lib/profiling/basic_timers.c',
217 'src/core/lib/profiling/stap_timers.c',
218 'src/core/lib/support/alloc.c',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700219 'src/core/lib/support/arena.c',
Mark D. Rothfecba532017-03-17 09:50:48 -0700220 'src/core/lib/support/atm.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700221 'src/core/lib/support/avl.c',
222 'src/core/lib/support/backoff.c',
223 'src/core/lib/support/cmdline.c',
224 'src/core/lib/support/cpu_iphone.c',
225 'src/core/lib/support/cpu_linux.c',
226 'src/core/lib/support/cpu_posix.c',
227 'src/core/lib/support/cpu_windows.c',
228 'src/core/lib/support/env_linux.c',
229 'src/core/lib/support/env_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700230 'src/core/lib/support/env_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700231 'src/core/lib/support/histogram.c',
232 'src/core/lib/support/host_port.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700233 'src/core/lib/support/log.c',
234 'src/core/lib/support/log_android.c',
235 'src/core/lib/support/log_linux.c',
236 'src/core/lib/support/log_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700237 'src/core/lib/support/log_windows.c',
Craig Tiller57726ca2016-09-12 11:59:45 -0700238 'src/core/lib/support/mpscq.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700239 'src/core/lib/support/murmur_hash.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700240 'src/core/lib/support/stack_lockfree.c',
241 'src/core/lib/support/string.c',
242 'src/core/lib/support/string_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700243 'src/core/lib/support/string_util_windows.c',
244 'src/core/lib/support/string_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700245 'src/core/lib/support/subprocess_posix.c',
246 'src/core/lib/support/subprocess_windows.c',
247 'src/core/lib/support/sync.c',
248 'src/core/lib/support/sync_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700249 'src/core/lib/support/sync_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700250 'src/core/lib/support/thd.c',
251 'src/core/lib/support/thd_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700252 'src/core/lib/support/thd_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700253 'src/core/lib/support/time.c',
254 'src/core/lib/support/time_posix.c',
255 'src/core/lib/support/time_precise.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700256 'src/core/lib/support/time_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700257 'src/core/lib/support/tls_pthread.c',
258 'src/core/lib/support/tmpfile_msys.c',
259 'src/core/lib/support/tmpfile_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700260 'src/core/lib/support/tmpfile_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700261 'src/core/lib/support/wrap_memcpy.c',
262 'src/core/lib/channel/channel_args.h',
263 'src/core/lib/channel/channel_stack.h',
264 'src/core/lib/channel/channel_stack_builder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700265 'src/core/lib/channel/connected_channel.h',
266 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700267 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800268 'src/core/lib/channel/handshaker_factory.h',
269 'src/core/lib/channel/handshaker_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700270 'src/core/lib/compression/algorithm_metadata.h',
271 'src/core/lib/compression/message_compress.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700272 'src/core/lib/http/format_request.h',
273 'src/core/lib/http/httpcli.h',
274 'src/core/lib/http/parser.h',
275 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700276 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700277 'src/core/lib/iomgr/endpoint.h',
278 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700279 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800280 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700281 'src/core/lib/iomgr/ev_epoll1_linux.h',
Sree Kuchibhotla5a1a3b42017-05-05 13:14:45 -0700282 'src/core/lib/iomgr/ev_epoll_limited_pollers_linux.h',
Sree Kuchibhotlad4fc32e2017-05-02 14:15:12 -0700283 'src/core/lib/iomgr/ev_epoll_thread_pool_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700284 'src/core/lib/iomgr/ev_epollex_linux.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700285 'src/core/lib/iomgr/ev_epollsig_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700286 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700287 'src/core/lib/iomgr/ev_posix.h',
288 'src/core/lib/iomgr/exec_ctx.h',
289 'src/core/lib/iomgr/executor.h',
290 'src/core/lib/iomgr/iocp_windows.h',
291 'src/core/lib/iomgr/iomgr.h',
292 'src/core/lib/iomgr/iomgr_internal.h',
293 'src/core/lib/iomgr/iomgr_posix.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700294 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700295 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700296 'src/core/lib/iomgr/lockfree_event.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700297 'src/core/lib/iomgr/network_status_tracker.h',
298 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700299 'src/core/lib/iomgr/pollset.h',
300 'src/core/lib/iomgr/pollset_set.h',
301 'src/core/lib/iomgr/pollset_set_windows.h',
murgatroid999030c812016-09-16 13:25:08 -0700302 'src/core/lib/iomgr/pollset_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700303 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700304 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700305 'src/core/lib/iomgr/resolve_address.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700306 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700307 'src/core/lib/iomgr/sockaddr.h',
308 'src/core/lib/iomgr/sockaddr_posix.h',
309 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700310 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500311 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700312 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700313 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700314 'src/core/lib/iomgr/socket_utils_posix.h',
315 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700316 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700317 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700318 'src/core/lib/iomgr/tcp_client_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700319 'src/core/lib/iomgr/tcp_posix.h',
320 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700321 'src/core/lib/iomgr/tcp_server_utils_posix.h',
murgatroid999030c812016-09-16 13:25:08 -0700322 'src/core/lib/iomgr/tcp_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700323 'src/core/lib/iomgr/tcp_windows.h',
324 'src/core/lib/iomgr/time_averaged_stats.h',
325 'src/core/lib/iomgr/timer.h',
murgatroid999030c812016-09-16 13:25:08 -0700326 'src/core/lib/iomgr/timer_generic.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700327 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -0700328 'src/core/lib/iomgr/timer_manager.h',
murgatroid999030c812016-09-16 13:25:08 -0700329 'src/core/lib/iomgr/timer_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700330 'src/core/lib/iomgr/udp_server.h',
331 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700332 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700333 'src/core/lib/iomgr/wakeup_fd_pipe.h',
334 'src/core/lib/iomgr/wakeup_fd_posix.h',
335 'src/core/lib/iomgr/workqueue.h',
murgatroid999030c812016-09-16 13:25:08 -0700336 'src/core/lib/iomgr/workqueue_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700337 'src/core/lib/iomgr/workqueue_windows.h',
338 'src/core/lib/json/json.h',
339 'src/core/lib/json/json_common.h',
340 'src/core/lib/json/json_reader.h',
341 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700342 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700343 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800344 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800345 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700346 'src/core/lib/slice/slice_string_helpers.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700347 'src/core/lib/surface/api_trace.h',
348 'src/core/lib/surface/call.h',
349 'src/core/lib/surface/call_test_only.h',
350 'src/core/lib/surface/channel.h',
351 'src/core/lib/surface/channel_init.h',
352 'src/core/lib/surface/channel_stack_type.h',
353 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700354 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700355 'src/core/lib/surface/event_string.h',
356 'src/core/lib/surface/init.h',
357 'src/core/lib/surface/lame_client.h',
358 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800359 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700360 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700361 'src/core/lib/transport/byte_stream.h',
362 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800363 'src/core/lib/transport/error_utils.h',
364 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700365 'src/core/lib/transport/metadata.h',
366 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700367 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700368 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700369 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800370 'src/core/lib/transport/status_conversion.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400371 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700372 'src/core/lib/transport/transport.h',
373 'src/core/lib/transport/transport_impl.h',
Craig Tiller1f477302017-05-05 11:01:25 -0700374 'src/core/lib/debug/trace.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700375 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700376 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
377 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
378 'src/core/ext/transport/chttp2/transport/frame.h',
379 'src/core/ext/transport/chttp2/transport/frame_data.h',
380 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
381 'src/core/ext/transport/chttp2/transport/frame_ping.h',
382 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
383 'src/core/ext/transport/chttp2/transport/frame_settings.h',
384 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
385 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
386 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
387 'src/core/ext/transport/chttp2/transport/hpack_table.h',
Craig Tillerc8f62bc2017-04-03 16:25:45 -0700388 'src/core/ext/transport/chttp2/transport/http2_settings.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700389 'src/core/ext/transport/chttp2/transport/huffsyms.h',
390 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
391 'src/core/ext/transport/chttp2/transport/internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700392 'src/core/ext/transport/chttp2/transport/stream_map.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700393 'src/core/ext/transport/chttp2/transport/varint.h',
394 'src/core/ext/transport/chttp2/alpn/alpn.h',
Craig Tilleraf767432017-04-03 13:54:31 -0700395 'src/core/ext/filters/http/client/http_client_filter.h',
Craig Tillera24b9712017-04-06 09:03:21 -0700396 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
Craig Tilleraf767432017-04-03 13:54:31 -0700397 'src/core/ext/filters/http/server/http_server_filter.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700398 'src/core/lib/security/context/security_context.h',
399 'src/core/lib/security/credentials/composite/composite_credentials.h',
400 'src/core/lib/security/credentials/credentials.h',
401 'src/core/lib/security/credentials/fake/fake_credentials.h',
402 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
403 'src/core/lib/security/credentials/iam/iam_credentials.h',
404 'src/core/lib/security/credentials/jwt/json_token.h',
405 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
406 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
407 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
408 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
409 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
410 'src/core/lib/security/transport/auth_filters.h',
David Garcia Quintas01291502017-02-07 13:26:41 -0800411 'src/core/lib/security/transport/lb_targets_info.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700412 'src/core/lib/security/transport/secure_endpoint.h',
413 'src/core/lib/security/transport/security_connector.h',
Mark D. Roth071cacf2016-11-17 13:17:56 -0800414 'src/core/lib/security/transport/security_handshaker.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700415 'src/core/lib/security/transport/tsi_error.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700416 'src/core/lib/security/util/json_util.h',
Craig Tiller134fed32017-03-28 14:27:18 -0700417 'src/core/tsi/fake_transport_security.h',
418 'src/core/tsi/ssl_transport_security.h',
419 'src/core/tsi/ssl_types.h',
420 'src/core/tsi/transport_security.h',
jiangtaoli2016e69881d2017-04-10 14:29:43 -0700421 'src/core/tsi/transport_security_adapter.h',
Craig Tiller134fed32017-03-28 14:27:18 -0700422 'src/core/tsi/transport_security_interface.h',
Mark D. Roth71403822016-12-02 10:51:39 -0800423 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700424 'src/core/ext/filters/client_channel/client_channel.h',
425 'src/core/ext/filters/client_channel/client_channel_factory.h',
426 'src/core/ext/filters/client_channel/connector.h',
427 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
428 'src/core/ext/filters/client_channel/http_proxy.h',
429 'src/core/ext/filters/client_channel/lb_policy.h',
430 'src/core/ext/filters/client_channel/lb_policy_factory.h',
431 'src/core/ext/filters/client_channel/lb_policy_registry.h',
432 'src/core/ext/filters/client_channel/parse_address.h',
433 'src/core/ext/filters/client_channel/proxy_mapper.h',
434 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
435 'src/core/ext/filters/client_channel/resolver.h',
436 'src/core/ext/filters/client_channel/resolver_factory.h',
437 'src/core/ext/filters/client_channel/resolver_registry.h',
438 'src/core/ext/filters/client_channel/retry_throttle.h',
439 'src/core/ext/filters/client_channel/subchannel.h',
440 'src/core/ext/filters/client_channel/subchannel_index.h',
441 'src/core/ext/filters/client_channel/uri_parser.h',
Craig Tiller71d6ce62017-04-06 09:10:09 -0700442 'src/core/ext/filters/deadline/deadline_filter.h',
Mark D. Roth8686cab2016-11-17 13:12:17 -0800443 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700444 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700445 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
446 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700447 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700448 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
449 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700450 'third_party/nanopb/pb.h',
451 'third_party/nanopb/pb_common.h',
452 'third_party/nanopb/pb_decode.h',
453 'third_party/nanopb/pb_encode.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700454 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
455 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
456 'src/core/ext/filters/load_reporting/load_reporting.h',
457 'src/core/ext/filters/load_reporting/load_reporting_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700458 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700459 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700460 'src/core/ext/census/census_interface.h',
461 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700462 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700463 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700464 'src/core/ext/census/grpc_filter.h',
465 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700466 'src/core/ext/census/resource.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700467 'src/core/ext/census/rpc_metric_id.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700468 'src/core/ext/census/trace_context.h',
Vizerai0e5b67f2017-01-20 14:02:18 -0800469 'src/core/ext/census/trace_label.h',
470 'src/core/ext/census/trace_propagation.h',
471 'src/core/ext/census/trace_status.h',
472 'src/core/ext/census/trace_string.h',
473 'src/core/ext/census/tracing.h',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700474 'src/core/ext/filters/max_age/max_age_filter.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700475 'src/core/ext/filters/message_size/message_size_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700476 'src/core/lib/surface/init.c',
477 'src/core/lib/channel/channel_args.c',
478 'src/core/lib/channel/channel_stack.c',
479 'src/core/lib/channel/channel_stack_builder.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700480 'src/core/lib/channel/connected_channel.c',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700481 'src/core/lib/channel/handshaker.c',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800482 'src/core/lib/channel/handshaker_factory.c',
483 'src/core/lib/channel/handshaker_registry.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700484 'src/core/lib/compression/compression.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700485 'src/core/lib/compression/message_compress.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700486 'src/core/lib/http/format_request.c',
487 'src/core/lib/http/httpcli.c',
488 'src/core/lib/http/parser.c',
489 'src/core/lib/iomgr/closure.c',
Craig Tiller57726ca2016-09-12 11:59:45 -0700490 'src/core/lib/iomgr/combiner.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700491 'src/core/lib/iomgr/endpoint.c',
492 'src/core/lib/iomgr/endpoint_pair_posix.c',
murgatroid99c36f6ea2016-10-03 09:24:09 -0700493 'src/core/lib/iomgr/endpoint_pair_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700494 'src/core/lib/iomgr/endpoint_pair_windows.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700495 'src/core/lib/iomgr/error.c',
Craig Tillerc67cc992017-04-27 10:15:51 -0700496 'src/core/lib/iomgr/ev_epoll1_linux.c',
Sree Kuchibhotla5a1a3b42017-05-05 13:14:45 -0700497 'src/core/lib/iomgr/ev_epoll_limited_pollers_linux.c',
Sree Kuchibhotlad4fc32e2017-05-02 14:15:12 -0700498 'src/core/lib/iomgr/ev_epoll_thread_pool_linux.c',
Craig Tillerf4360d72017-04-07 08:51:00 -0700499 'src/core/lib/iomgr/ev_epollex_linux.c',
Craig Tillerc67cc992017-04-27 10:15:51 -0700500 'src/core/lib/iomgr/ev_epollsig_linux.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700501 'src/core/lib/iomgr/ev_poll_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700502 'src/core/lib/iomgr/ev_posix.c',
Jan Tattermuschde030a32017-05-16 18:20:26 +0200503 'src/core/lib/iomgr/ev_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700504 'src/core/lib/iomgr/exec_ctx.c',
505 'src/core/lib/iomgr/executor.c',
506 'src/core/lib/iomgr/iocp_windows.c',
507 'src/core/lib/iomgr/iomgr.c',
508 'src/core/lib/iomgr/iomgr_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700509 'src/core/lib/iomgr/iomgr_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700510 'src/core/lib/iomgr/iomgr_windows.c',
Craig Tiller819cd882017-04-25 13:18:22 -0700511 'src/core/lib/iomgr/is_epollexclusive_available.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700512 'src/core/lib/iomgr/load_file.c',
Craig Tiller376887d2017-04-06 08:27:03 -0700513 'src/core/lib/iomgr/lockfree_event.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700514 'src/core/lib/iomgr/network_status_tracker.c',
515 'src/core/lib/iomgr/polling_entity.c',
murgatroid999030c812016-09-16 13:25:08 -0700516 'src/core/lib/iomgr/pollset_set_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700517 'src/core/lib/iomgr/pollset_set_windows.c',
murgatroid999030c812016-09-16 13:25:08 -0700518 'src/core/lib/iomgr/pollset_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700519 'src/core/lib/iomgr/pollset_windows.c',
520 'src/core/lib/iomgr/resolve_address_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700521 'src/core/lib/iomgr/resolve_address_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700522 'src/core/lib/iomgr/resolve_address_windows.c',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700523 'src/core/lib/iomgr/resource_quota.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700524 'src/core/lib/iomgr/sockaddr_utils.c',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500525 'src/core/lib/iomgr/socket_factory_posix.c',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700526 'src/core/lib/iomgr/socket_mutator.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700527 'src/core/lib/iomgr/socket_utils_common_posix.c',
528 'src/core/lib/iomgr/socket_utils_linux.c',
529 'src/core/lib/iomgr/socket_utils_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700530 'src/core/lib/iomgr/socket_utils_uv.c',
murgatroid9979b32272016-08-08 13:38:30 -0700531 'src/core/lib/iomgr/socket_utils_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700532 'src/core/lib/iomgr/socket_windows.c',
533 'src/core/lib/iomgr/tcp_client_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700534 'src/core/lib/iomgr/tcp_client_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700535 'src/core/lib/iomgr/tcp_client_windows.c',
536 'src/core/lib/iomgr/tcp_posix.c',
537 'src/core/lib/iomgr/tcp_server_posix.c',
Yuchen Zeng68745bb2017-03-14 17:51:07 -0700538 'src/core/lib/iomgr/tcp_server_utils_posix_common.c',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700539 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c',
540 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c',
murgatroid999030c812016-09-16 13:25:08 -0700541 'src/core/lib/iomgr/tcp_server_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700542 'src/core/lib/iomgr/tcp_server_windows.c',
murgatroid999030c812016-09-16 13:25:08 -0700543 'src/core/lib/iomgr/tcp_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700544 'src/core/lib/iomgr/tcp_windows.c',
545 'src/core/lib/iomgr/time_averaged_stats.c',
murgatroid999030c812016-09-16 13:25:08 -0700546 'src/core/lib/iomgr/timer_generic.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700547 'src/core/lib/iomgr/timer_heap.c',
Craig Tillerc3571792017-05-02 12:33:38 -0700548 'src/core/lib/iomgr/timer_manager.c',
murgatroid999030c812016-09-16 13:25:08 -0700549 'src/core/lib/iomgr/timer_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700550 'src/core/lib/iomgr/udp_server.c',
551 'src/core/lib/iomgr/unix_sockets_posix.c',
552 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
Ken Payson31caabd2016-08-06 21:27:29 -0700553 'src/core/lib/iomgr/wakeup_fd_cv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700554 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
555 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
556 'src/core/lib/iomgr/wakeup_fd_pipe.c',
557 'src/core/lib/iomgr/wakeup_fd_posix.c',
murgatroid999030c812016-09-16 13:25:08 -0700558 'src/core/lib/iomgr/workqueue_uv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700559 'src/core/lib/iomgr/workqueue_windows.c',
560 'src/core/lib/json/json.c',
561 'src/core/lib/json/json_reader.c',
562 'src/core/lib/json/json_string.c',
563 'src/core/lib/json/json_writer.c',
Craig Tiller29b527f2017-03-30 10:27:20 -0700564 'src/core/lib/slice/b64.c',
Craig Tillerc3350542016-10-26 16:19:01 -0700565 'src/core/lib/slice/percent_encoding.c',
566 'src/core/lib/slice/slice.c',
567 'src/core/lib/slice/slice_buffer.c',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800568 'src/core/lib/slice/slice_hash_table.c',
569 'src/core/lib/slice/slice_intern.c',
Craig Tillerc3350542016-10-26 16:19:01 -0700570 'src/core/lib/slice/slice_string_helpers.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700571 'src/core/lib/surface/alarm.c',
572 'src/core/lib/surface/api_trace.c',
573 'src/core/lib/surface/byte_buffer.c',
574 'src/core/lib/surface/byte_buffer_reader.c',
575 'src/core/lib/surface/call.c',
576 'src/core/lib/surface/call_details.c',
577 'src/core/lib/surface/call_log_batch.c',
578 'src/core/lib/surface/channel.c',
579 'src/core/lib/surface/channel_init.c',
580 'src/core/lib/surface/channel_ping.c',
581 'src/core/lib/surface/channel_stack_type.c',
582 'src/core/lib/surface/completion_queue.c',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700583 'src/core/lib/surface/completion_queue_factory.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700584 'src/core/lib/surface/event_string.c',
Craig Tiller8ebb5442017-04-07 16:01:55 -0700585 'src/core/lib/surface/lame_client.cc',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700586 'src/core/lib/surface/metadata_array.c',
587 'src/core/lib/surface/server.c',
588 'src/core/lib/surface/validate_metadata.c',
589 'src/core/lib/surface/version.c',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700590 'src/core/lib/transport/bdp_estimator.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700591 'src/core/lib/transport/byte_stream.c',
592 'src/core/lib/transport/connectivity_state.c',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800593 'src/core/lib/transport/error_utils.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700594 'src/core/lib/transport/metadata.c',
595 'src/core/lib/transport/metadata_batch.c',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700596 'src/core/lib/transport/pid_controller.c',
Mark D. Rothea846a02016-11-03 11:32:54 -0700597 'src/core/lib/transport/service_config.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700598 'src/core/lib/transport/static_metadata.c',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800599 'src/core/lib/transport/status_conversion.c',
Robbie Shade710d2422016-07-13 15:15:38 -0400600 'src/core/lib/transport/timeout_encoding.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700601 'src/core/lib/transport/transport.c',
602 'src/core/lib/transport/transport_op_string.c',
Craig Tiller1f477302017-05-05 11:01:25 -0700603 'src/core/lib/debug/trace.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700604 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700605 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700606 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
607 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
608 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
609 'src/core/ext/transport/chttp2/transport/frame_data.c',
610 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
611 'src/core/ext/transport/chttp2/transport/frame_ping.c',
612 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
613 'src/core/ext/transport/chttp2/transport/frame_settings.c',
614 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
615 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
616 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
617 'src/core/ext/transport/chttp2/transport/hpack_table.c',
Craig Tillerc8f62bc2017-04-03 16:25:45 -0700618 'src/core/ext/transport/chttp2/transport/http2_settings.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700619 'src/core/ext/transport/chttp2/transport/huffsyms.c',
620 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
621 'src/core/ext/transport/chttp2/transport/parsing.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700622 'src/core/ext/transport/chttp2/transport/stream_lists.c',
623 'src/core/ext/transport/chttp2/transport/stream_map.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700624 'src/core/ext/transport/chttp2/transport/varint.c',
625 'src/core/ext/transport/chttp2/transport/writing.c',
626 'src/core/ext/transport/chttp2/alpn/alpn.c',
Craig Tilleraf767432017-04-03 13:54:31 -0700627 'src/core/ext/filters/http/client/http_client_filter.c',
Craig Tilleraf767432017-04-03 13:54:31 -0700628 'src/core/ext/filters/http/http_filters_plugin.c',
Craig Tiller71d6ce62017-04-06 09:10:09 -0700629 'src/core/ext/filters/http/message_compress/message_compress_filter.c',
Craig Tilleraf767432017-04-03 13:54:31 -0700630 'src/core/ext/filters/http/server/http_server_filter.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700631 'src/core/lib/http/httpcli_security_connector.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700632 'src/core/lib/security/context/security_context.c',
633 'src/core/lib/security/credentials/composite/composite_credentials.c',
634 'src/core/lib/security/credentials/credentials.c',
635 'src/core/lib/security/credentials/credentials_metadata.c',
636 'src/core/lib/security/credentials/fake/fake_credentials.c',
murgatroid997c205902016-08-09 10:07:42 -0700637 'src/core/lib/security/credentials/google_default/credentials_generic.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700638 'src/core/lib/security/credentials/google_default/google_default_credentials.c',
639 'src/core/lib/security/credentials/iam/iam_credentials.c',
640 'src/core/lib/security/credentials/jwt/json_token.c',
641 'src/core/lib/security/credentials/jwt/jwt_credentials.c',
642 'src/core/lib/security/credentials/jwt/jwt_verifier.c',
643 'src/core/lib/security/credentials/oauth2/oauth2_credentials.c',
644 'src/core/lib/security/credentials/plugin/plugin_credentials.c',
645 'src/core/lib/security/credentials/ssl/ssl_credentials.c',
646 'src/core/lib/security/transport/client_auth_filter.c',
David Garcia Quintas01291502017-02-07 13:26:41 -0800647 'src/core/lib/security/transport/lb_targets_info.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700648 'src/core/lib/security/transport/secure_endpoint.c',
649 'src/core/lib/security/transport/security_connector.c',
Mark D. Roth071cacf2016-11-17 13:17:56 -0800650 'src/core/lib/security/transport/security_handshaker.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700651 'src/core/lib/security/transport/server_auth_filter.c',
652 'src/core/lib/security/transport/tsi_error.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700653 'src/core/lib/security/util/json_util.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700654 'src/core/lib/surface/init_secure.c',
Craig Tiller134fed32017-03-28 14:27:18 -0700655 'src/core/tsi/fake_transport_security.c',
656 'src/core/tsi/ssl_transport_security.c',
657 'src/core/tsi/transport_security.c',
jiangtaoli2016e69881d2017-04-10 14:29:43 -0700658 'src/core/tsi/transport_security_adapter.c',
Mark D. Roth71403822016-12-02 10:51:39 -0800659 'src/core/ext/transport/chttp2/server/chttp2_server.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700660 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700661 'src/core/ext/filters/client_channel/channel_connectivity.c',
662 'src/core/ext/filters/client_channel/client_channel.c',
663 'src/core/ext/filters/client_channel/client_channel_factory.c',
664 'src/core/ext/filters/client_channel/client_channel_plugin.c',
665 'src/core/ext/filters/client_channel/connector.c',
666 'src/core/ext/filters/client_channel/http_connect_handshaker.c',
667 'src/core/ext/filters/client_channel/http_proxy.c',
668 'src/core/ext/filters/client_channel/lb_policy.c',
669 'src/core/ext/filters/client_channel/lb_policy_factory.c',
670 'src/core/ext/filters/client_channel/lb_policy_registry.c',
671 'src/core/ext/filters/client_channel/parse_address.c',
672 'src/core/ext/filters/client_channel/proxy_mapper.c',
673 'src/core/ext/filters/client_channel/proxy_mapper_registry.c',
674 'src/core/ext/filters/client_channel/resolver.c',
675 'src/core/ext/filters/client_channel/resolver_factory.c',
676 'src/core/ext/filters/client_channel/resolver_registry.c',
677 'src/core/ext/filters/client_channel/retry_throttle.c',
678 'src/core/ext/filters/client_channel/subchannel.c',
679 'src/core/ext/filters/client_channel/subchannel_index.c',
680 'src/core/ext/filters/client_channel/uri_parser.c',
Craig Tiller71d6ce62017-04-06 09:10:09 -0700681 'src/core/ext/filters/deadline/deadline_filter.c',
Mark D. Roth8686cab2016-11-17 13:12:17 -0800682 'src/core/ext/transport/chttp2/client/chttp2_connector.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700683 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700684 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700685 'src/core/ext/transport/chttp2/client/insecure/channel_create.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700686 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700687 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700688 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c',
689 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.c',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700690 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700691 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c',
692 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700693 'third_party/nanopb/pb_common.c',
694 'third_party/nanopb/pb_decode.c',
695 'third_party/nanopb/pb_encode.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700696 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c',
697 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c',
698 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c',
699 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c',
700 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c',
701 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c',
702 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c',
703 'src/core/ext/filters/load_reporting/load_reporting.c',
704 'src/core/ext/filters/load_reporting/load_reporting_filter.c',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700705 'src/core/ext/census/base_resources.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700706 'src/core/ext/census/context.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700707 'src/core/ext/census/gen/census.pb.c',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700708 'src/core/ext/census/gen/trace_context.pb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700709 'src/core/ext/census/grpc_context.c',
710 'src/core/ext/census/grpc_filter.c',
711 'src/core/ext/census/grpc_plugin.c',
712 'src/core/ext/census/initialize.c',
713 'src/core/ext/census/mlog.c',
714 'src/core/ext/census/operation.c',
715 'src/core/ext/census/placeholders.c',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700716 'src/core/ext/census/resource.c',
Vizerai12d1fc62016-09-09 14:22:19 -0700717 'src/core/ext/census/trace_context.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700718 'src/core/ext/census/tracing.c',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700719 'src/core/ext/filters/max_age/max_age_filter.c',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700720 'src/core/ext/filters/message_size/message_size_filter.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700721 'src/core/plugin_registry/grpc_plugin_registry.c'
722
723 ss.private_header_files = 'src/core/lib/profiling/timers.h',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700724 'src/core/lib/support/arena.h',
Craig Tiller4d780a52017-04-12 13:47:18 -0700725 'src/core/lib/support/atomic.h',
726 'src/core/lib/support/atomic_with_atm.h',
727 'src/core/lib/support/atomic_with_std.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700728 'src/core/lib/support/backoff.h',
729 'src/core/lib/support/block_annotate.h',
730 'src/core/lib/support/env.h',
Craig Tillerb3d70102017-03-31 14:17:09 -0700731 'src/core/lib/support/memory.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700732 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700733 'src/core/lib/support/murmur_hash.h',
Craig Tilleredbf2b92017-02-27 07:24:00 -0800734 'src/core/lib/support/spinlock.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700735 'src/core/lib/support/stack_lockfree.h',
736 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700737 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700738 'src/core/lib/support/thd_internal.h',
739 'src/core/lib/support/time_precise.h',
740 'src/core/lib/support/tmpfile.h',
741 'src/core/lib/channel/channel_args.h',
742 'src/core/lib/channel/channel_stack.h',
743 'src/core/lib/channel/channel_stack_builder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700744 'src/core/lib/channel/connected_channel.h',
745 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700746 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800747 'src/core/lib/channel/handshaker_factory.h',
748 'src/core/lib/channel/handshaker_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700749 'src/core/lib/compression/algorithm_metadata.h',
750 'src/core/lib/compression/message_compress.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700751 'src/core/lib/http/format_request.h',
752 'src/core/lib/http/httpcli.h',
753 'src/core/lib/http/parser.h',
754 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700755 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700756 'src/core/lib/iomgr/endpoint.h',
757 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700758 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800759 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700760 'src/core/lib/iomgr/ev_epoll1_linux.h',
Sree Kuchibhotla5a1a3b42017-05-05 13:14:45 -0700761 'src/core/lib/iomgr/ev_epoll_limited_pollers_linux.h',
Sree Kuchibhotlad4fc32e2017-05-02 14:15:12 -0700762 'src/core/lib/iomgr/ev_epoll_thread_pool_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700763 'src/core/lib/iomgr/ev_epollex_linux.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700764 'src/core/lib/iomgr/ev_epollsig_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700765 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700766 'src/core/lib/iomgr/ev_posix.h',
767 'src/core/lib/iomgr/exec_ctx.h',
768 'src/core/lib/iomgr/executor.h',
769 'src/core/lib/iomgr/iocp_windows.h',
770 'src/core/lib/iomgr/iomgr.h',
771 'src/core/lib/iomgr/iomgr_internal.h',
772 'src/core/lib/iomgr/iomgr_posix.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700773 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700774 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700775 'src/core/lib/iomgr/lockfree_event.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700776 'src/core/lib/iomgr/network_status_tracker.h',
777 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700778 'src/core/lib/iomgr/pollset.h',
779 'src/core/lib/iomgr/pollset_set.h',
780 'src/core/lib/iomgr/pollset_set_windows.h',
murgatroid999030c812016-09-16 13:25:08 -0700781 'src/core/lib/iomgr/pollset_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700782 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700783 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700784 'src/core/lib/iomgr/resolve_address.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700785 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700786 'src/core/lib/iomgr/sockaddr.h',
787 'src/core/lib/iomgr/sockaddr_posix.h',
788 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700789 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500790 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700791 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700792 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700793 'src/core/lib/iomgr/socket_utils_posix.h',
794 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700795 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700796 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700797 'src/core/lib/iomgr/tcp_client_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700798 'src/core/lib/iomgr/tcp_posix.h',
799 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700800 'src/core/lib/iomgr/tcp_server_utils_posix.h',
murgatroid999030c812016-09-16 13:25:08 -0700801 'src/core/lib/iomgr/tcp_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700802 'src/core/lib/iomgr/tcp_windows.h',
803 'src/core/lib/iomgr/time_averaged_stats.h',
804 'src/core/lib/iomgr/timer.h',
murgatroid999030c812016-09-16 13:25:08 -0700805 'src/core/lib/iomgr/timer_generic.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700806 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -0700807 'src/core/lib/iomgr/timer_manager.h',
murgatroid999030c812016-09-16 13:25:08 -0700808 'src/core/lib/iomgr/timer_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700809 'src/core/lib/iomgr/udp_server.h',
810 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700811 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700812 'src/core/lib/iomgr/wakeup_fd_pipe.h',
813 'src/core/lib/iomgr/wakeup_fd_posix.h',
814 'src/core/lib/iomgr/workqueue.h',
murgatroid999030c812016-09-16 13:25:08 -0700815 'src/core/lib/iomgr/workqueue_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700816 'src/core/lib/iomgr/workqueue_windows.h',
817 'src/core/lib/json/json.h',
818 'src/core/lib/json/json_common.h',
819 'src/core/lib/json/json_reader.h',
820 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700821 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700822 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800823 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800824 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700825 'src/core/lib/slice/slice_string_helpers.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700826 'src/core/lib/surface/api_trace.h',
827 'src/core/lib/surface/call.h',
828 'src/core/lib/surface/call_test_only.h',
829 'src/core/lib/surface/channel.h',
830 'src/core/lib/surface/channel_init.h',
831 'src/core/lib/surface/channel_stack_type.h',
832 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700833 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700834 'src/core/lib/surface/event_string.h',
835 'src/core/lib/surface/init.h',
836 'src/core/lib/surface/lame_client.h',
837 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800838 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700839 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700840 'src/core/lib/transport/byte_stream.h',
841 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800842 'src/core/lib/transport/error_utils.h',
843 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700844 'src/core/lib/transport/metadata.h',
845 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700846 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700847 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700848 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800849 'src/core/lib/transport/status_conversion.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400850 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700851 'src/core/lib/transport/transport.h',
852 'src/core/lib/transport/transport_impl.h',
Craig Tiller1f477302017-05-05 11:01:25 -0700853 'src/core/lib/debug/trace.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700854 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700855 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
856 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
857 'src/core/ext/transport/chttp2/transport/frame.h',
858 'src/core/ext/transport/chttp2/transport/frame_data.h',
859 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
860 'src/core/ext/transport/chttp2/transport/frame_ping.h',
861 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
862 'src/core/ext/transport/chttp2/transport/frame_settings.h',
863 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
864 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
865 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
866 'src/core/ext/transport/chttp2/transport/hpack_table.h',
Craig Tillerc8f62bc2017-04-03 16:25:45 -0700867 'src/core/ext/transport/chttp2/transport/http2_settings.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700868 'src/core/ext/transport/chttp2/transport/huffsyms.h',
869 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
870 'src/core/ext/transport/chttp2/transport/internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700871 'src/core/ext/transport/chttp2/transport/stream_map.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700872 'src/core/ext/transport/chttp2/transport/varint.h',
873 'src/core/ext/transport/chttp2/alpn/alpn.h',
Craig Tilleraf767432017-04-03 13:54:31 -0700874 'src/core/ext/filters/http/client/http_client_filter.h',
Craig Tillera24b9712017-04-06 09:03:21 -0700875 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
Craig Tilleraf767432017-04-03 13:54:31 -0700876 'src/core/ext/filters/http/server/http_server_filter.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700877 'src/core/lib/security/context/security_context.h',
878 'src/core/lib/security/credentials/composite/composite_credentials.h',
879 'src/core/lib/security/credentials/credentials.h',
880 'src/core/lib/security/credentials/fake/fake_credentials.h',
881 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
882 'src/core/lib/security/credentials/iam/iam_credentials.h',
883 'src/core/lib/security/credentials/jwt/json_token.h',
884 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
885 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
886 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
887 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
888 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
889 'src/core/lib/security/transport/auth_filters.h',
David Garcia Quintas01291502017-02-07 13:26:41 -0800890 'src/core/lib/security/transport/lb_targets_info.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700891 'src/core/lib/security/transport/secure_endpoint.h',
892 'src/core/lib/security/transport/security_connector.h',
Mark D. Roth071cacf2016-11-17 13:17:56 -0800893 'src/core/lib/security/transport/security_handshaker.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700894 'src/core/lib/security/transport/tsi_error.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700895 'src/core/lib/security/util/json_util.h',
Craig Tiller134fed32017-03-28 14:27:18 -0700896 'src/core/tsi/fake_transport_security.h',
897 'src/core/tsi/ssl_transport_security.h',
898 'src/core/tsi/ssl_types.h',
899 'src/core/tsi/transport_security.h',
jiangtaoli2016e69881d2017-04-10 14:29:43 -0700900 'src/core/tsi/transport_security_adapter.h',
Craig Tiller134fed32017-03-28 14:27:18 -0700901 'src/core/tsi/transport_security_interface.h',
Mark D. Roth71403822016-12-02 10:51:39 -0800902 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700903 'src/core/ext/filters/client_channel/client_channel.h',
904 'src/core/ext/filters/client_channel/client_channel_factory.h',
905 'src/core/ext/filters/client_channel/connector.h',
906 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
907 'src/core/ext/filters/client_channel/http_proxy.h',
908 'src/core/ext/filters/client_channel/lb_policy.h',
909 'src/core/ext/filters/client_channel/lb_policy_factory.h',
910 'src/core/ext/filters/client_channel/lb_policy_registry.h',
911 'src/core/ext/filters/client_channel/parse_address.h',
912 'src/core/ext/filters/client_channel/proxy_mapper.h',
913 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
914 'src/core/ext/filters/client_channel/resolver.h',
915 'src/core/ext/filters/client_channel/resolver_factory.h',
916 'src/core/ext/filters/client_channel/resolver_registry.h',
917 'src/core/ext/filters/client_channel/retry_throttle.h',
918 'src/core/ext/filters/client_channel/subchannel.h',
919 'src/core/ext/filters/client_channel/subchannel_index.h',
920 'src/core/ext/filters/client_channel/uri_parser.h',
Craig Tiller71d6ce62017-04-06 09:10:09 -0700921 'src/core/ext/filters/deadline/deadline_filter.h',
Mark D. Roth8686cab2016-11-17 13:12:17 -0800922 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700923 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700924 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
925 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700926 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700927 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
928 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700929 'third_party/nanopb/pb.h',
930 'third_party/nanopb/pb_common.h',
931 'third_party/nanopb/pb_decode.h',
932 'third_party/nanopb/pb_encode.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700933 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
934 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
935 'src/core/ext/filters/load_reporting/load_reporting.h',
936 'src/core/ext/filters/load_reporting/load_reporting_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700937 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700938 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700939 'src/core/ext/census/census_interface.h',
940 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700941 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700942 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700943 'src/core/ext/census/grpc_filter.h',
944 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700945 'src/core/ext/census/resource.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700946 'src/core/ext/census/rpc_metric_id.h',
Vizerai0e5b67f2017-01-20 14:02:18 -0800947 'src/core/ext/census/trace_context.h',
948 'src/core/ext/census/trace_label.h',
949 'src/core/ext/census/trace_propagation.h',
950 'src/core/ext/census/trace_status.h',
951 'src/core/ext/census/trace_string.h',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700952 'src/core/ext/census/tracing.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700953 'src/core/ext/filters/max_age/max_age_filter.h',
Nicolas Noble7edcce22017-05-12 15:35:20 -0700954 'src/core/ext/filters/message_size/message_size_filter.h'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700955 end
Nicolas "Pixel" Noble20b83332016-07-21 19:28:38 +0200956
Muxi Yan37480eb2016-07-14 16:22:03 -0700957 s.subspec 'Cronet-Interface' do |ss|
958 ss.header_mappings_dir = 'include/grpc'
Muxi Yane38b0122017-03-16 20:53:41 -0700959 ss.source_files = 'include/grpc/grpc_cronet.h'
Muxi Yan37480eb2016-07-14 16:22:03 -0700960 end
961
Muxi Yanf8372c62016-07-29 09:58:55 -0700962 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700963 ss.header_mappings_dir = '.'
Muxi Yane2de92f2017-01-31 16:30:52 -0800964
965 ss.dependency "#{s.name}/Interface", version
966 ss.dependency "#{s.name}/Implementation", version
967 ss.dependency "#{s.name}/Cronet-Interface", version
968
Muxi Yan2a5072e2016-07-27 15:10:22 -0700969 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c',
Muxi Yane38b0122017-03-16 20:53:41 -0700970 'src/core/ext/transport/cronet/transport/cronet_transport.{c,h}',
Muxi Yanf0a12692017-01-31 16:36:56 -0800971 'third_party/objective_c/Cronet/bidirectional_stream_c.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -0700972 end
973
Muxi Yanf8372c62016-07-29 09:58:55 -0700974 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700975 ss.header_mappings_dir = '.'
976
Muxi Yane2de92f2017-01-31 16:30:52 -0800977 ss.dependency "#{s.name}/Interface", version
978 ss.dependency "#{s.name}/Implementation", version
979
Muxi Yan2a5072e2016-07-27 15:10:22 -0700980 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700981 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -0800982 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700983 'test/core/end2end/tests/*.{c,h}',
984 'test/core/end2end/data/*.{c,h}',
Muxi Yane38b0122017-03-16 20:53:41 -0700985 'test/core/util/debugger_macros.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700986 'test/core/util/test_config.{c,h}',
987 'test/core/util/port.h',
Craig Tiller46ab5f52017-02-28 08:40:19 -0800988 'test/core/util/port.c',
Muxi Yan37480eb2016-07-14 16:22:03 -0700989 'test/core/util/port_server_client.{c,h}'
Muxi Yan37480eb2016-07-14 16:22:03 -0700990 end
Jorge Canizalese487a722016-04-30 12:05:26 -0700991end