blob: 17618bc1754f1498b3bf654a8623fb2d9c110a52 [file] [log] [blame]
Jorge Canizalese487a722016-04-30 12:05:26 -07001# GRPC CocoaPods podspec
Jorge Canizales667557f2016-06-09 09:15:28 -07002# This file has been automatically generated from a template file. Please make modifications to
3# `templates/gRPC-Core.podspec.template` instead. This file can be regenerated from the template by
4# running `tools/buildgen/generate_projects.sh`.
Jorge Canizalese487a722016-04-30 12:05:26 -07005
6# Copyright 2015, Google Inc.
7# All rights reserved.
8#
9# Redistribution and use in source and binary forms, with or without
10# modification, are permitted provided that the following conditions are
11# met:
12#
13# * Redistributions of source code must retain the above copyright
14# notice, this list of conditions and the following disclaimer.
15# * Redistributions in binary form must reproduce the above
16# copyright notice, this list of conditions and the following disclaimer
17# in the documentation and/or other materials provided with the
18# distribution.
19# * Neither the name of Google Inc. nor the names of its
20# contributors may be used to endorse or promote products derived from
21# this software without specific prior written permission.
22#
23# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
35
36Pod::Spec.new do |s|
37 s.name = 'gRPC-Core'
Jorge Canizales4a18c672016-08-18 13:26:25 -070038 version = '1.0.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070039 s.version = version
40 s.summary = 'Core cross-platform gRPC library, written in C'
41 s.homepage = 'http://www.grpc.io'
42 s.license = 'New BSD'
43 s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
44
45 s.source = {
46 :git => 'https://github.com/grpc/grpc.git',
Jorge Canizales4a18c672016-08-18 13:26:25 -070047 :tag => "v#{version}",
Jorge Canizalescc074d92016-06-28 09:52:43 -070048 # TODO(jcanizales): Depend explicitly on the nanopb pod, and disable submodules.
Jorge Canizales66c8ddd2016-06-08 17:39:40 -070049 :submodules => true,
Jorge Canizalese487a722016-04-30 12:05:26 -070050 }
51
52 s.ios.deployment_target = '7.1'
53 s.osx.deployment_target = '10.9'
54 s.requires_arc = false
55
56 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070057
Jorge Canizalescc074d92016-06-28 09:52:43 -070058 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
59 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
60 # <gRPC-Core/grpc.h>`.
61 s.module_name = name
62
63 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
64 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
65 #
66 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizales37750742016-06-08 20:10:20 -070067 s.header_mappings_dir = 'include/grpc'
68
Jorge Canizalescc074d92016-06-28 09:52:43 -070069 # The above has an undesired effect when creating a static library: It forces users to write
70 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
71 # because Cocoapods lets omit the pod name when including headers of static libraries, the
72 # following lets users write `#include <grpc/grpc.h>`.
73 s.header_dir = name
Jorge Canizales37750742016-06-08 20:10:20 -070074
Jorge Canizalescc074d92016-06-28 09:52:43 -070075 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales547f0652016-05-01 19:52:21 -070076 s.module_map = 'include/grpc/module.modulemap'
77
Jorge Canizalescc074d92016-06-28 09:52:43 -070078 # To compile the library, we need the user headers search path (quoted includes) to point to the
79 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
80 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
81 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
82 #
83 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
84 # is taken as an implementation detail. We've asked for an alternative, and have been told that
85 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
86 #
87 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
88 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
89 # that assumption is wrong. In such case, the following settings need to be reset with the
90 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
91 # Podfile; see `src/objective-c/tests/Podfile` for an example.
92 src_root = '$(PODS_ROOT)/gRPC-Core'
93 s.pod_target_xcconfig = {
94 'GRPC_SRC_ROOT' => src_root,
95 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
96 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
97 # If we don't set these two settings, `include/grpc/support/time.h` and
98 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
99 # build.
100 'USE_HEADERMAP' => 'NO',
101 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
102 }
Jorge Canizalese487a722016-04-30 12:05:26 -0700103
Muxi Yane04089e2016-07-15 16:35:20 -0700104 s.default_subspecs = 'Interface', 'Implementation'
105
Jorge Canizalescc074d92016-06-28 09:52:43 -0700106 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
107 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
108 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
109 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
110 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
111 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
112 # making the linter happy.
113 #
114 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
115 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
116 s.subspec 'Interface' do |ss|
117 ss.header_mappings_dir = 'include/grpc'
118
119 ss.source_files = 'include/grpc/support/alloc.h',
120 'include/grpc/support/atm.h',
121 'include/grpc/support/atm_gcc_atomic.h',
122 'include/grpc/support/atm_gcc_sync.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700123 'include/grpc/support/atm_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700124 'include/grpc/support/avl.h',
125 'include/grpc/support/cmdline.h',
126 'include/grpc/support/cpu.h',
127 'include/grpc/support/histogram.h',
128 'include/grpc/support/host_port.h',
129 'include/grpc/support/log.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700130 'include/grpc/support/log_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700131 'include/grpc/support/port_platform.h',
132 'include/grpc/support/slice.h',
133 'include/grpc/support/slice_buffer.h',
134 'include/grpc/support/string_util.h',
135 'include/grpc/support/subprocess.h',
136 'include/grpc/support/sync.h',
137 'include/grpc/support/sync_generic.h',
138 'include/grpc/support/sync_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700139 'include/grpc/support/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700140 'include/grpc/support/thd.h',
141 'include/grpc/support/time.h',
142 'include/grpc/support/tls.h',
143 'include/grpc/support/tls_gcc.h',
144 'include/grpc/support/tls_msvc.h',
145 'include/grpc/support/tls_pthread.h',
146 'include/grpc/support/useful.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700147 'include/grpc/impl/codegen/atm.h',
148 'include/grpc/impl/codegen/atm_gcc_atomic.h',
149 'include/grpc/impl/codegen/atm_gcc_sync.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700150 'include/grpc/impl/codegen/atm_windows.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700151 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700152 'include/grpc/impl/codegen/port_platform.h',
153 'include/grpc/impl/codegen/slice.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700154 'include/grpc/impl/codegen/sync.h',
155 'include/grpc/impl/codegen/sync_generic.h',
156 'include/grpc/impl/codegen/sync_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700157 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700158 'include/grpc/byte_buffer.h',
159 'include/grpc/byte_buffer_reader.h',
160 'include/grpc/compression.h',
161 'include/grpc/grpc.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700162 'include/grpc/grpc_posix.h',
Nicolas "Pixel" Noblea469e5d2016-08-16 22:09:27 +0200163 'include/grpc/grpc_security_constants.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700164 'include/grpc/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700165 'include/grpc/impl/codegen/byte_buffer_reader.h',
166 'include/grpc/impl/codegen/compression_types.h',
167 'include/grpc/impl/codegen/connectivity_state.h',
168 'include/grpc/impl/codegen/grpc_types.h',
169 'include/grpc/impl/codegen/propagation_bits.h',
170 'include/grpc/impl/codegen/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700171 'include/grpc/impl/codegen/atm.h',
172 'include/grpc/impl/codegen/atm_gcc_atomic.h',
173 'include/grpc/impl/codegen/atm_gcc_sync.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700174 'include/grpc/impl/codegen/atm_windows.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700175 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700176 'include/grpc/impl/codegen/port_platform.h',
177 'include/grpc/impl/codegen/slice.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700178 'include/grpc/impl/codegen/sync.h',
179 'include/grpc/impl/codegen/sync_generic.h',
180 'include/grpc/impl/codegen/sync_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700181 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700182 'include/grpc/grpc_security.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700183 'include/grpc/census.h'
184 end
185 s.subspec 'Implementation' do |ss|
186 ss.header_mappings_dir = '.'
187 ss.libraries = 'z'
188 ss.dependency "#{s.name}/Interface", version
Jorge Canizales4a18c672016-08-18 13:26:25 -0700189 ss.dependency 'BoringSSL', '~> 6.0'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700190
191 # To save you from scrolling, this is the last part of the podspec.
192 ss.source_files = 'src/core/lib/profiling/timers.h',
193 'src/core/lib/support/backoff.h',
194 'src/core/lib/support/block_annotate.h',
195 'src/core/lib/support/env.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700196 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700197 'src/core/lib/support/murmur_hash.h',
Craig Tiller17ed6b12016-08-18 09:33:33 -0700198 'src/core/lib/support/percent_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700199 'src/core/lib/support/stack_lockfree.h',
200 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700201 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700202 'src/core/lib/support/thd_internal.h',
203 'src/core/lib/support/time_precise.h',
204 'src/core/lib/support/tmpfile.h',
205 'src/core/lib/profiling/basic_timers.c',
206 'src/core/lib/profiling/stap_timers.c',
207 'src/core/lib/support/alloc.c',
208 'src/core/lib/support/avl.c',
209 'src/core/lib/support/backoff.c',
210 'src/core/lib/support/cmdline.c',
211 'src/core/lib/support/cpu_iphone.c',
212 'src/core/lib/support/cpu_linux.c',
213 'src/core/lib/support/cpu_posix.c',
214 'src/core/lib/support/cpu_windows.c',
215 'src/core/lib/support/env_linux.c',
216 'src/core/lib/support/env_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700217 'src/core/lib/support/env_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700218 'src/core/lib/support/histogram.c',
219 'src/core/lib/support/host_port.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700220 'src/core/lib/support/log.c',
221 'src/core/lib/support/log_android.c',
222 'src/core/lib/support/log_linux.c',
223 'src/core/lib/support/log_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700224 'src/core/lib/support/log_windows.c',
Craig Tiller57726ca2016-09-12 11:59:45 -0700225 'src/core/lib/support/mpscq.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700226 'src/core/lib/support/murmur_hash.c',
Craig Tiller17ed6b12016-08-18 09:33:33 -0700227 'src/core/lib/support/percent_encoding.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700228 'src/core/lib/support/slice.c',
229 'src/core/lib/support/slice_buffer.c',
230 'src/core/lib/support/stack_lockfree.c',
231 'src/core/lib/support/string.c',
232 'src/core/lib/support/string_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700233 'src/core/lib/support/string_util_windows.c',
234 'src/core/lib/support/string_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700235 'src/core/lib/support/subprocess_posix.c',
236 'src/core/lib/support/subprocess_windows.c',
237 'src/core/lib/support/sync.c',
238 'src/core/lib/support/sync_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700239 'src/core/lib/support/sync_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700240 'src/core/lib/support/thd.c',
241 'src/core/lib/support/thd_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700242 'src/core/lib/support/thd_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700243 'src/core/lib/support/time.c',
244 'src/core/lib/support/time_posix.c',
245 'src/core/lib/support/time_precise.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700246 'src/core/lib/support/time_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700247 'src/core/lib/support/tls_pthread.c',
248 'src/core/lib/support/tmpfile_msys.c',
249 'src/core/lib/support/tmpfile_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700250 'src/core/lib/support/tmpfile_windows.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700251 'src/core/lib/support/wrap_memcpy.c',
252 'src/core/lib/channel/channel_args.h',
253 'src/core/lib/channel/channel_stack.h',
254 'src/core/lib/channel/channel_stack_builder.h',
255 'src/core/lib/channel/compress_filter.h',
256 'src/core/lib/channel/connected_channel.h',
257 'src/core/lib/channel/context.h',
Mark D. Roth14c072c2016-08-26 08:31:34 -0700258 'src/core/lib/channel/deadline_filter.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700259 'src/core/lib/channel/handshaker.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700260 'src/core/lib/channel/http_client_filter.h',
261 'src/core/lib/channel/http_server_filter.h',
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700262 'src/core/lib/channel/message_size_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700263 'src/core/lib/compression/algorithm_metadata.h',
264 'src/core/lib/compression/message_compress.h',
265 'src/core/lib/debug/trace.h',
266 'src/core/lib/http/format_request.h',
267 'src/core/lib/http/httpcli.h',
268 'src/core/lib/http/parser.h',
269 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700270 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700271 'src/core/lib/iomgr/endpoint.h',
272 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700273 'src/core/lib/iomgr/error.h',
274 'src/core/lib/iomgr/ev_epoll_linux.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700275 'src/core/lib/iomgr/ev_poll_and_epoll_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700276 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700277 'src/core/lib/iomgr/ev_posix.h',
278 'src/core/lib/iomgr/exec_ctx.h',
279 'src/core/lib/iomgr/executor.h',
280 'src/core/lib/iomgr/iocp_windows.h',
281 'src/core/lib/iomgr/iomgr.h',
282 'src/core/lib/iomgr/iomgr_internal.h',
283 'src/core/lib/iomgr/iomgr_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700284 'src/core/lib/iomgr/load_file.h',
285 'src/core/lib/iomgr/network_status_tracker.h',
286 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700287 'src/core/lib/iomgr/pollset.h',
288 'src/core/lib/iomgr/pollset_set.h',
289 'src/core/lib/iomgr/pollset_set_windows.h',
290 'src/core/lib/iomgr/pollset_windows.h',
291 'src/core/lib/iomgr/resolve_address.h',
292 'src/core/lib/iomgr/sockaddr.h',
293 'src/core/lib/iomgr/sockaddr_posix.h',
294 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700295 'src/core/lib/iomgr/sockaddr_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700296 'src/core/lib/iomgr/socket_utils_posix.h',
297 'src/core/lib/iomgr/socket_windows.h',
298 'src/core/lib/iomgr/tcp_client.h',
299 'src/core/lib/iomgr/tcp_posix.h',
300 'src/core/lib/iomgr/tcp_server.h',
301 'src/core/lib/iomgr/tcp_windows.h',
302 'src/core/lib/iomgr/time_averaged_stats.h',
303 'src/core/lib/iomgr/timer.h',
304 'src/core/lib/iomgr/timer_heap.h',
305 'src/core/lib/iomgr/udp_server.h',
306 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700307 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700308 'src/core/lib/iomgr/wakeup_fd_pipe.h',
309 'src/core/lib/iomgr/wakeup_fd_posix.h',
310 'src/core/lib/iomgr/workqueue.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700311 'src/core/lib/iomgr/workqueue_windows.h',
312 'src/core/lib/json/json.h',
313 'src/core/lib/json/json_common.h',
314 'src/core/lib/json/json_reader.h',
315 'src/core/lib/json/json_writer.h',
316 'src/core/lib/surface/api_trace.h',
317 'src/core/lib/surface/call.h',
318 'src/core/lib/surface/call_test_only.h',
319 'src/core/lib/surface/channel.h',
320 'src/core/lib/surface/channel_init.h',
321 'src/core/lib/surface/channel_stack_type.h',
322 'src/core/lib/surface/completion_queue.h',
323 'src/core/lib/surface/event_string.h',
324 'src/core/lib/surface/init.h',
325 'src/core/lib/surface/lame_client.h',
326 'src/core/lib/surface/server.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700327 'src/core/lib/transport/byte_stream.h',
328 'src/core/lib/transport/connectivity_state.h',
Mark D. Roth6a721b52016-10-14 12:43:34 -0700329 'src/core/lib/transport/mdstr_hash_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700330 'src/core/lib/transport/metadata.h',
331 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700332 'src/core/lib/transport/pid_controller.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700333 'src/core/lib/transport/static_metadata.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400334 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700335 'src/core/lib/transport/transport.h',
336 'src/core/lib/transport/transport_impl.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700337 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700338 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
339 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
340 'src/core/ext/transport/chttp2/transport/frame.h',
341 'src/core/ext/transport/chttp2/transport/frame_data.h',
342 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
343 'src/core/ext/transport/chttp2/transport/frame_ping.h',
344 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
345 'src/core/ext/transport/chttp2/transport/frame_settings.h',
346 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
347 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
348 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
349 'src/core/ext/transport/chttp2/transport/hpack_table.h',
350 'src/core/ext/transport/chttp2/transport/http2_errors.h',
351 'src/core/ext/transport/chttp2/transport/huffsyms.h',
352 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
353 'src/core/ext/transport/chttp2/transport/internal.h',
354 'src/core/ext/transport/chttp2/transport/status_conversion.h',
355 'src/core/ext/transport/chttp2/transport/stream_map.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700356 'src/core/ext/transport/chttp2/transport/varint.h',
357 'src/core/ext/transport/chttp2/alpn/alpn.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700358 'src/core/lib/security/context/security_context.h',
359 'src/core/lib/security/credentials/composite/composite_credentials.h',
360 'src/core/lib/security/credentials/credentials.h',
361 'src/core/lib/security/credentials/fake/fake_credentials.h',
362 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
363 'src/core/lib/security/credentials/iam/iam_credentials.h',
364 'src/core/lib/security/credentials/jwt/json_token.h',
365 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
366 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
367 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
368 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
369 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
370 'src/core/lib/security/transport/auth_filters.h',
371 'src/core/lib/security/transport/handshake.h',
372 'src/core/lib/security/transport/secure_endpoint.h',
373 'src/core/lib/security/transport/security_connector.h',
374 'src/core/lib/security/transport/tsi_error.h',
375 'src/core/lib/security/util/b64.h',
376 'src/core/lib/security/util/json_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700377 'src/core/lib/tsi/fake_transport_security.h',
378 'src/core/lib/tsi/ssl_transport_security.h',
379 'src/core/lib/tsi/ssl_types.h',
380 'src/core/lib/tsi/transport_security.h',
381 'src/core/lib/tsi/transport_security_interface.h',
382 'src/core/ext/client_config/client_channel.h',
383 'src/core/ext/client_config/client_channel_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700384 'src/core/ext/client_config/connector.h',
Mark D. Roth1102a9e2016-07-22 09:10:01 -0700385 'src/core/ext/client_config/http_connect_handshaker.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700386 'src/core/ext/client_config/initial_connect_string.h',
387 'src/core/ext/client_config/lb_policy.h',
388 'src/core/ext/client_config/lb_policy_factory.h',
389 'src/core/ext/client_config/lb_policy_registry.h',
Mark D. Roth4c3a4682016-09-23 15:19:26 -0700390 'src/core/ext/client_config/method_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700391 'src/core/ext/client_config/parse_address.h',
392 'src/core/ext/client_config/resolver.h',
393 'src/core/ext/client_config/resolver_factory.h',
394 'src/core/ext/client_config/resolver_registry.h',
Mark D. Rothff4df062016-08-22 15:02:49 -0700395 'src/core/ext/client_config/resolver_result.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700396 'src/core/ext/client_config/subchannel.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700397 'src/core/ext/client_config/subchannel_index.h',
398 'src/core/ext/client_config/uri_parser.h',
David Garcia Quintas7c3ba122016-07-14 11:38:38 -0700399 'src/core/ext/lb_policy/grpclb/grpclb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700400 'src/core/ext/lb_policy/grpclb/load_balancer_api.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700401 'src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700402 'third_party/nanopb/pb.h',
403 'third_party/nanopb/pb_common.h',
404 'third_party/nanopb/pb_decode.h',
405 'third_party/nanopb/pb_encode.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700406 'src/core/ext/load_reporting/load_reporting.h',
407 'src/core/ext/load_reporting/load_reporting_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700408 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700409 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700410 'src/core/ext/census/census_interface.h',
411 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700412 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700413 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700414 'src/core/ext/census/grpc_filter.h',
415 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700416 'src/core/ext/census/resource.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700417 'src/core/ext/census/rpc_metric_id.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700418 'src/core/ext/census/trace_context.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700419 'src/core/lib/surface/init.c',
420 'src/core/lib/channel/channel_args.c',
421 'src/core/lib/channel/channel_stack.c',
422 'src/core/lib/channel/channel_stack_builder.c',
423 'src/core/lib/channel/compress_filter.c',
424 'src/core/lib/channel/connected_channel.c',
Mark D. Roth14c072c2016-08-26 08:31:34 -0700425 'src/core/lib/channel/deadline_filter.c',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700426 'src/core/lib/channel/handshaker.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700427 'src/core/lib/channel/http_client_filter.c',
428 'src/core/lib/channel/http_server_filter.c',
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700429 'src/core/lib/channel/message_size_filter.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700430 'src/core/lib/compression/compression.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700431 'src/core/lib/compression/message_compress.c',
432 'src/core/lib/debug/trace.c',
433 'src/core/lib/http/format_request.c',
434 'src/core/lib/http/httpcli.c',
435 'src/core/lib/http/parser.c',
436 'src/core/lib/iomgr/closure.c',
Craig Tiller57726ca2016-09-12 11:59:45 -0700437 'src/core/lib/iomgr/combiner.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700438 'src/core/lib/iomgr/endpoint.c',
439 'src/core/lib/iomgr/endpoint_pair_posix.c',
440 'src/core/lib/iomgr/endpoint_pair_windows.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700441 'src/core/lib/iomgr/error.c',
442 'src/core/lib/iomgr/ev_epoll_linux.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700443 'src/core/lib/iomgr/ev_poll_and_epoll_posix.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700444 'src/core/lib/iomgr/ev_poll_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700445 'src/core/lib/iomgr/ev_posix.c',
446 'src/core/lib/iomgr/exec_ctx.c',
447 'src/core/lib/iomgr/executor.c',
448 'src/core/lib/iomgr/iocp_windows.c',
449 'src/core/lib/iomgr/iomgr.c',
450 'src/core/lib/iomgr/iomgr_posix.c',
451 'src/core/lib/iomgr/iomgr_windows.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700452 'src/core/lib/iomgr/load_file.c',
453 'src/core/lib/iomgr/network_status_tracker.c',
454 'src/core/lib/iomgr/polling_entity.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700455 'src/core/lib/iomgr/pollset_set_windows.c',
456 'src/core/lib/iomgr/pollset_windows.c',
457 'src/core/lib/iomgr/resolve_address_posix.c',
458 'src/core/lib/iomgr/resolve_address_windows.c',
459 'src/core/lib/iomgr/sockaddr_utils.c',
460 'src/core/lib/iomgr/socket_utils_common_posix.c',
461 'src/core/lib/iomgr/socket_utils_linux.c',
462 'src/core/lib/iomgr/socket_utils_posix.c',
463 'src/core/lib/iomgr/socket_windows.c',
464 'src/core/lib/iomgr/tcp_client_posix.c',
465 'src/core/lib/iomgr/tcp_client_windows.c',
466 'src/core/lib/iomgr/tcp_posix.c',
467 'src/core/lib/iomgr/tcp_server_posix.c',
468 'src/core/lib/iomgr/tcp_server_windows.c',
469 'src/core/lib/iomgr/tcp_windows.c',
470 'src/core/lib/iomgr/time_averaged_stats.c',
471 'src/core/lib/iomgr/timer.c',
472 'src/core/lib/iomgr/timer_heap.c',
473 'src/core/lib/iomgr/udp_server.c',
474 'src/core/lib/iomgr/unix_sockets_posix.c',
475 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
Ken Payson31caabd2016-08-06 21:27:29 -0700476 'src/core/lib/iomgr/wakeup_fd_cv.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700477 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
478 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
479 'src/core/lib/iomgr/wakeup_fd_pipe.c',
480 'src/core/lib/iomgr/wakeup_fd_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700481 'src/core/lib/iomgr/workqueue_windows.c',
482 'src/core/lib/json/json.c',
483 'src/core/lib/json/json_reader.c',
484 'src/core/lib/json/json_string.c',
485 'src/core/lib/json/json_writer.c',
486 'src/core/lib/surface/alarm.c',
487 'src/core/lib/surface/api_trace.c',
488 'src/core/lib/surface/byte_buffer.c',
489 'src/core/lib/surface/byte_buffer_reader.c',
490 'src/core/lib/surface/call.c',
491 'src/core/lib/surface/call_details.c',
492 'src/core/lib/surface/call_log_batch.c',
493 'src/core/lib/surface/channel.c',
494 'src/core/lib/surface/channel_init.c',
495 'src/core/lib/surface/channel_ping.c',
496 'src/core/lib/surface/channel_stack_type.c',
497 'src/core/lib/surface/completion_queue.c',
498 'src/core/lib/surface/event_string.c',
499 'src/core/lib/surface/lame_client.c',
500 'src/core/lib/surface/metadata_array.c',
501 'src/core/lib/surface/server.c',
502 'src/core/lib/surface/validate_metadata.c',
503 'src/core/lib/surface/version.c',
504 'src/core/lib/transport/byte_stream.c',
505 'src/core/lib/transport/connectivity_state.c',
Mark D. Roth6a721b52016-10-14 12:43:34 -0700506 'src/core/lib/transport/mdstr_hash_table.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700507 'src/core/lib/transport/metadata.c',
508 'src/core/lib/transport/metadata_batch.c',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700509 'src/core/lib/transport/pid_controller.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700510 'src/core/lib/transport/static_metadata.c',
Robbie Shade710d2422016-07-13 15:15:38 -0400511 'src/core/lib/transport/timeout_encoding.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700512 'src/core/lib/transport/transport.c',
513 'src/core/lib/transport/transport_op_string.c',
514 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700515 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700516 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
517 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
518 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
519 'src/core/ext/transport/chttp2/transport/frame_data.c',
520 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
521 'src/core/ext/transport/chttp2/transport/frame_ping.c',
522 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
523 'src/core/ext/transport/chttp2/transport/frame_settings.c',
524 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
525 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
526 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
527 'src/core/ext/transport/chttp2/transport/hpack_table.c',
528 'src/core/ext/transport/chttp2/transport/huffsyms.c',
529 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
530 'src/core/ext/transport/chttp2/transport/parsing.c',
531 'src/core/ext/transport/chttp2/transport/status_conversion.c',
532 'src/core/ext/transport/chttp2/transport/stream_lists.c',
533 'src/core/ext/transport/chttp2/transport/stream_map.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700534 'src/core/ext/transport/chttp2/transport/varint.c',
535 'src/core/ext/transport/chttp2/transport/writing.c',
536 'src/core/ext/transport/chttp2/alpn/alpn.c',
537 'src/core/lib/http/httpcli_security_connector.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700538 'src/core/lib/security/context/security_context.c',
539 'src/core/lib/security/credentials/composite/composite_credentials.c',
540 'src/core/lib/security/credentials/credentials.c',
541 'src/core/lib/security/credentials/credentials_metadata.c',
542 'src/core/lib/security/credentials/fake/fake_credentials.c',
543 'src/core/lib/security/credentials/google_default/credentials_posix.c',
544 'src/core/lib/security/credentials/google_default/credentials_windows.c',
545 'src/core/lib/security/credentials/google_default/google_default_credentials.c',
546 'src/core/lib/security/credentials/iam/iam_credentials.c',
547 'src/core/lib/security/credentials/jwt/json_token.c',
548 'src/core/lib/security/credentials/jwt/jwt_credentials.c',
549 'src/core/lib/security/credentials/jwt/jwt_verifier.c',
550 'src/core/lib/security/credentials/oauth2/oauth2_credentials.c',
551 'src/core/lib/security/credentials/plugin/plugin_credentials.c',
552 'src/core/lib/security/credentials/ssl/ssl_credentials.c',
553 'src/core/lib/security/transport/client_auth_filter.c',
554 'src/core/lib/security/transport/handshake.c',
555 'src/core/lib/security/transport/secure_endpoint.c',
556 'src/core/lib/security/transport/security_connector.c',
557 'src/core/lib/security/transport/server_auth_filter.c',
558 'src/core/lib/security/transport/tsi_error.c',
559 'src/core/lib/security/util/b64.c',
560 'src/core/lib/security/util/json_util.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700561 'src/core/lib/surface/init_secure.c',
562 'src/core/lib/tsi/fake_transport_security.c',
563 'src/core/lib/tsi/ssl_transport_security.c',
564 'src/core/lib/tsi/transport_security.c',
565 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.c',
566 'src/core/ext/client_config/channel_connectivity.c',
567 'src/core/ext/client_config/client_channel.c',
568 'src/core/ext/client_config/client_channel_factory.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700569 'src/core/ext/client_config/client_config_plugin.c',
570 'src/core/ext/client_config/connector.c',
571 'src/core/ext/client_config/default_initial_connect_string.c',
Mark D. Roth1102a9e2016-07-22 09:10:01 -0700572 'src/core/ext/client_config/http_connect_handshaker.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700573 'src/core/ext/client_config/initial_connect_string.c',
574 'src/core/ext/client_config/lb_policy.c',
575 'src/core/ext/client_config/lb_policy_factory.c',
576 'src/core/ext/client_config/lb_policy_registry.c',
Mark D. Roth4c3a4682016-09-23 15:19:26 -0700577 'src/core/ext/client_config/method_config.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700578 'src/core/ext/client_config/parse_address.c',
579 'src/core/ext/client_config/resolver.c',
580 'src/core/ext/client_config/resolver_factory.c',
581 'src/core/ext/client_config/resolver_registry.c',
Mark D. Rothff4df062016-08-22 15:02:49 -0700582 'src/core/ext/client_config/resolver_result.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700583 'src/core/ext/client_config/subchannel.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700584 'src/core/ext/client_config/subchannel_index.c',
585 'src/core/ext/client_config/uri_parser.c',
586 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700587 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700588 'src/core/ext/transport/chttp2/client/insecure/channel_create.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700589 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c',
David Garcia Quintas7c3ba122016-07-14 11:38:38 -0700590 'src/core/ext/lb_policy/grpclb/grpclb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700591 'src/core/ext/lb_policy/grpclb/load_balancer_api.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700592 'src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700593 'third_party/nanopb/pb_common.c',
594 'third_party/nanopb/pb_decode.c',
595 'third_party/nanopb/pb_encode.c',
596 'src/core/ext/lb_policy/pick_first/pick_first.c',
597 'src/core/ext/lb_policy/round_robin/round_robin.c',
598 'src/core/ext/resolver/dns/native/dns_resolver.c',
599 'src/core/ext/resolver/sockaddr/sockaddr_resolver.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700600 'src/core/ext/load_reporting/load_reporting.c',
601 'src/core/ext/load_reporting/load_reporting_filter.c',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700602 'src/core/ext/census/base_resources.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700603 'src/core/ext/census/context.c',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700604 'src/core/ext/census/gen/census.pb.c',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700605 'src/core/ext/census/gen/trace_context.pb.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700606 'src/core/ext/census/grpc_context.c',
607 'src/core/ext/census/grpc_filter.c',
608 'src/core/ext/census/grpc_plugin.c',
609 'src/core/ext/census/initialize.c',
610 'src/core/ext/census/mlog.c',
611 'src/core/ext/census/operation.c',
612 'src/core/ext/census/placeholders.c',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700613 'src/core/ext/census/resource.c',
Vizerai12d1fc62016-09-09 14:22:19 -0700614 'src/core/ext/census/trace_context.c',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700615 'src/core/ext/census/tracing.c',
616 'src/core/plugin_registry/grpc_plugin_registry.c'
617
618 ss.private_header_files = 'src/core/lib/profiling/timers.h',
619 'src/core/lib/support/backoff.h',
620 'src/core/lib/support/block_annotate.h',
621 'src/core/lib/support/env.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700622 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700623 'src/core/lib/support/murmur_hash.h',
Craig Tiller17ed6b12016-08-18 09:33:33 -0700624 'src/core/lib/support/percent_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700625 'src/core/lib/support/stack_lockfree.h',
626 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700627 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700628 'src/core/lib/support/thd_internal.h',
629 'src/core/lib/support/time_precise.h',
630 'src/core/lib/support/tmpfile.h',
631 'src/core/lib/channel/channel_args.h',
632 'src/core/lib/channel/channel_stack.h',
633 'src/core/lib/channel/channel_stack_builder.h',
634 'src/core/lib/channel/compress_filter.h',
635 'src/core/lib/channel/connected_channel.h',
636 'src/core/lib/channel/context.h',
Mark D. Roth14c072c2016-08-26 08:31:34 -0700637 'src/core/lib/channel/deadline_filter.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700638 'src/core/lib/channel/handshaker.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700639 'src/core/lib/channel/http_client_filter.h',
640 'src/core/lib/channel/http_server_filter.h',
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700641 'src/core/lib/channel/message_size_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700642 'src/core/lib/compression/algorithm_metadata.h',
643 'src/core/lib/compression/message_compress.h',
644 'src/core/lib/debug/trace.h',
645 'src/core/lib/http/format_request.h',
646 'src/core/lib/http/httpcli.h',
647 'src/core/lib/http/parser.h',
648 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700649 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700650 'src/core/lib/iomgr/endpoint.h',
651 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700652 'src/core/lib/iomgr/error.h',
653 'src/core/lib/iomgr/ev_epoll_linux.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700654 'src/core/lib/iomgr/ev_poll_and_epoll_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700655 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700656 'src/core/lib/iomgr/ev_posix.h',
657 'src/core/lib/iomgr/exec_ctx.h',
658 'src/core/lib/iomgr/executor.h',
659 'src/core/lib/iomgr/iocp_windows.h',
660 'src/core/lib/iomgr/iomgr.h',
661 'src/core/lib/iomgr/iomgr_internal.h',
662 'src/core/lib/iomgr/iomgr_posix.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700663 'src/core/lib/iomgr/load_file.h',
664 'src/core/lib/iomgr/network_status_tracker.h',
665 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700666 'src/core/lib/iomgr/pollset.h',
667 'src/core/lib/iomgr/pollset_set.h',
668 'src/core/lib/iomgr/pollset_set_windows.h',
669 'src/core/lib/iomgr/pollset_windows.h',
670 'src/core/lib/iomgr/resolve_address.h',
671 'src/core/lib/iomgr/sockaddr.h',
672 'src/core/lib/iomgr/sockaddr_posix.h',
673 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700674 'src/core/lib/iomgr/sockaddr_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700675 'src/core/lib/iomgr/socket_utils_posix.h',
676 'src/core/lib/iomgr/socket_windows.h',
677 'src/core/lib/iomgr/tcp_client.h',
678 'src/core/lib/iomgr/tcp_posix.h',
679 'src/core/lib/iomgr/tcp_server.h',
680 'src/core/lib/iomgr/tcp_windows.h',
681 'src/core/lib/iomgr/time_averaged_stats.h',
682 'src/core/lib/iomgr/timer.h',
683 'src/core/lib/iomgr/timer_heap.h',
684 'src/core/lib/iomgr/udp_server.h',
685 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700686 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700687 'src/core/lib/iomgr/wakeup_fd_pipe.h',
688 'src/core/lib/iomgr/wakeup_fd_posix.h',
689 'src/core/lib/iomgr/workqueue.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700690 'src/core/lib/iomgr/workqueue_windows.h',
691 'src/core/lib/json/json.h',
692 'src/core/lib/json/json_common.h',
693 'src/core/lib/json/json_reader.h',
694 'src/core/lib/json/json_writer.h',
695 'src/core/lib/surface/api_trace.h',
696 'src/core/lib/surface/call.h',
697 'src/core/lib/surface/call_test_only.h',
698 'src/core/lib/surface/channel.h',
699 'src/core/lib/surface/channel_init.h',
700 'src/core/lib/surface/channel_stack_type.h',
701 'src/core/lib/surface/completion_queue.h',
702 'src/core/lib/surface/event_string.h',
703 'src/core/lib/surface/init.h',
704 'src/core/lib/surface/lame_client.h',
705 'src/core/lib/surface/server.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700706 'src/core/lib/transport/byte_stream.h',
707 'src/core/lib/transport/connectivity_state.h',
Mark D. Roth6a721b52016-10-14 12:43:34 -0700708 'src/core/lib/transport/mdstr_hash_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700709 'src/core/lib/transport/metadata.h',
710 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700711 'src/core/lib/transport/pid_controller.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700712 'src/core/lib/transport/static_metadata.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400713 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700714 'src/core/lib/transport/transport.h',
715 'src/core/lib/transport/transport_impl.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700716 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700717 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
718 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
719 'src/core/ext/transport/chttp2/transport/frame.h',
720 'src/core/ext/transport/chttp2/transport/frame_data.h',
721 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
722 'src/core/ext/transport/chttp2/transport/frame_ping.h',
723 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
724 'src/core/ext/transport/chttp2/transport/frame_settings.h',
725 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
726 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
727 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
728 'src/core/ext/transport/chttp2/transport/hpack_table.h',
729 'src/core/ext/transport/chttp2/transport/http2_errors.h',
730 'src/core/ext/transport/chttp2/transport/huffsyms.h',
731 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
732 'src/core/ext/transport/chttp2/transport/internal.h',
733 'src/core/ext/transport/chttp2/transport/status_conversion.h',
734 'src/core/ext/transport/chttp2/transport/stream_map.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700735 'src/core/ext/transport/chttp2/transport/varint.h',
736 'src/core/ext/transport/chttp2/alpn/alpn.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700737 'src/core/lib/security/context/security_context.h',
738 'src/core/lib/security/credentials/composite/composite_credentials.h',
739 'src/core/lib/security/credentials/credentials.h',
740 'src/core/lib/security/credentials/fake/fake_credentials.h',
741 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
742 'src/core/lib/security/credentials/iam/iam_credentials.h',
743 'src/core/lib/security/credentials/jwt/json_token.h',
744 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
745 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
746 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
747 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
748 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
749 'src/core/lib/security/transport/auth_filters.h',
750 'src/core/lib/security/transport/handshake.h',
751 'src/core/lib/security/transport/secure_endpoint.h',
752 'src/core/lib/security/transport/security_connector.h',
753 'src/core/lib/security/transport/tsi_error.h',
754 'src/core/lib/security/util/b64.h',
755 'src/core/lib/security/util/json_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700756 'src/core/lib/tsi/fake_transport_security.h',
757 'src/core/lib/tsi/ssl_transport_security.h',
758 'src/core/lib/tsi/ssl_types.h',
759 'src/core/lib/tsi/transport_security.h',
760 'src/core/lib/tsi/transport_security_interface.h',
761 'src/core/ext/client_config/client_channel.h',
762 'src/core/ext/client_config/client_channel_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700763 'src/core/ext/client_config/connector.h',
Mark D. Roth1102a9e2016-07-22 09:10:01 -0700764 'src/core/ext/client_config/http_connect_handshaker.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700765 'src/core/ext/client_config/initial_connect_string.h',
766 'src/core/ext/client_config/lb_policy.h',
767 'src/core/ext/client_config/lb_policy_factory.h',
768 'src/core/ext/client_config/lb_policy_registry.h',
Mark D. Roth4c3a4682016-09-23 15:19:26 -0700769 'src/core/ext/client_config/method_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700770 'src/core/ext/client_config/parse_address.h',
771 'src/core/ext/client_config/resolver.h',
772 'src/core/ext/client_config/resolver_factory.h',
773 'src/core/ext/client_config/resolver_registry.h',
Mark D. Rothff4df062016-08-22 15:02:49 -0700774 'src/core/ext/client_config/resolver_result.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700775 'src/core/ext/client_config/subchannel.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700776 'src/core/ext/client_config/subchannel_index.h',
777 'src/core/ext/client_config/uri_parser.h',
David Garcia Quintas7c3ba122016-07-14 11:38:38 -0700778 'src/core/ext/lb_policy/grpclb/grpclb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700779 'src/core/ext/lb_policy/grpclb/load_balancer_api.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700780 'src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700781 'third_party/nanopb/pb.h',
782 'third_party/nanopb/pb_common.h',
783 'third_party/nanopb/pb_decode.h',
784 'third_party/nanopb/pb_encode.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700785 'src/core/ext/load_reporting/load_reporting.h',
786 'src/core/ext/load_reporting/load_reporting_filter.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700787 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700788 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700789 'src/core/ext/census/census_interface.h',
790 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700791 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700792 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700793 'src/core/ext/census/grpc_filter.h',
794 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700795 'src/core/ext/census/resource.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700796 'src/core/ext/census/rpc_metric_id.h',
797 'src/core/ext/census/trace_context.h'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700798 end
Nicolas "Pixel" Noble20b83332016-07-21 19:28:38 +0200799
Muxi Yan37480eb2016-07-14 16:22:03 -0700800 s.subspec 'Cronet-Interface' do |ss|
801 ss.header_mappings_dir = 'include/grpc'
802 ss.source_files = 'include/grpc/grpc_cronet.h'
803 end
804
Muxi Yanf8372c62016-07-29 09:58:55 -0700805 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700806 ss.header_mappings_dir = '.'
807 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.c',
808 'src/core/ext/transport/cronet/transport/cronet_transport.c'
809 end
810
Muxi Yanf8372c62016-07-29 09:58:55 -0700811 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700812 ss.header_mappings_dir = '.'
813
Muxi Yan2a5072e2016-07-27 15:10:22 -0700814 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -0700815 'test/core/end2end/end2end_tests.{c,h}',
816 'test/core/end2end/tests/*.{c,h}',
817 'test/core/end2end/data/*.{c,h}',
818 'test/core/util/test_config.{c,h}',
819 'test/core/util/port.h',
820 'test/core/util/port_posix.c',
821 'test/core/util/port_server_client.{c,h}'
822
823 ss.dependency 'CronetFramework'
824 end
Jorge Canizalese487a722016-04-30 12:05:26 -0700825end