blob: 68275e444b43a211b9bdcae95d8769b882423933 [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'
38 version = '0.14.0'
39 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',
47 :tag => "release-#{version.gsub(/\./, '_')}-objectivec-#{version}",
Jorge Canizales66c8ddd2016-06-08 17:39:40 -070048 :submodules => true,
Jorge Canizalese487a722016-04-30 12:05:26 -070049 }
50
51 s.ios.deployment_target = '7.1'
52 s.osx.deployment_target = '10.9'
53 s.requires_arc = false
54
55 name = 'grpc'
56 s.module_name = name
57 s.header_dir = name
58
Jorge Canizales37750742016-06-08 20:10:20 -070059 s.header_mappings_dir = 'include/grpc'
60
61 src_root = '$(PODS_ROOT)/gRPC-Core'
62 # This isn't officially supported in Cocoapods. We've asked for an alternative:
63 # https://github.com/CocoaPods/CocoaPods/issues/4386
64 #
65 # The src_root value of $(PODS_ROOT)/gRPC-Core assumes Cocoapods is installing this pod from its
66 # remote repo. For local development of this library, enabled by using ":path" in the Podfile,
67 # that assumption is wrong. In such case, the following settings need to be reset with the
68 # appropriate value of src_root. This can be accomplished in the pre_install hook of the Podfile;
69 # see src/objective-c/tests/Podfile for an example.
70 public_build_settings = {
71 'GRPC_SRC_ROOT' => src_root,
72 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
73 }
74 private_build_settings = public_build_settings.merge({
75 'USE_HEADERMAP' => 'NO',
76 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
77 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
78 })
79 s.user_target_xcconfig = public_build_settings
80 s.pod_target_xcconfig = private_build_settings
81
82 s.libraries = 'z'
83 s.dependency 'BoringSSL', '~> 3.0'
84
85 # A module map is necessary for a dynamic framework to be correctly created by Cocoapods.
Jorge Canizales547f0652016-05-01 19:52:21 -070086 s.module_map = 'include/grpc/module.modulemap'
87
Jorge Canizales667557f2016-06-09 09:15:28 -070088 # List of source files generated by a template: `templates/gRPC-Core.podspec.template`. It can be
89 # regenerated from the template by running `tools/buildgen/generate_projects.sh`.
90 # To save you from scrolling, this is the last part of the podspec.
Jorge Canizalese487a722016-04-30 12:05:26 -070091 s.source_files = 'src/core/lib/profiling/timers.h',
92 'src/core/lib/support/backoff.h',
93 'src/core/lib/support/block_annotate.h',
94 'src/core/lib/support/env.h',
95 'src/core/lib/support/load_file.h',
96 'src/core/lib/support/murmur_hash.h',
97 'src/core/lib/support/stack_lockfree.h',
98 'src/core/lib/support/string.h',
99 'src/core/lib/support/string_win32.h',
100 'src/core/lib/support/thd_internal.h',
101 'src/core/lib/support/time_precise.h',
102 'src/core/lib/support/tmpfile.h',
103 'include/grpc/support/alloc.h',
104 'include/grpc/support/atm.h',
105 'include/grpc/support/atm_gcc_atomic.h',
106 'include/grpc/support/atm_gcc_sync.h',
107 'include/grpc/support/atm_win32.h',
108 'include/grpc/support/avl.h',
109 'include/grpc/support/cmdline.h',
110 'include/grpc/support/cpu.h',
111 'include/grpc/support/histogram.h',
112 'include/grpc/support/host_port.h',
113 'include/grpc/support/log.h',
114 'include/grpc/support/log_win32.h',
115 'include/grpc/support/port_platform.h',
116 'include/grpc/support/slice.h',
117 'include/grpc/support/slice_buffer.h',
118 'include/grpc/support/string_util.h',
119 'include/grpc/support/subprocess.h',
120 'include/grpc/support/sync.h',
121 'include/grpc/support/sync_generic.h',
122 'include/grpc/support/sync_posix.h',
123 'include/grpc/support/sync_win32.h',
124 'include/grpc/support/thd.h',
125 'include/grpc/support/time.h',
126 'include/grpc/support/tls.h',
127 'include/grpc/support/tls_gcc.h',
128 'include/grpc/support/tls_msvc.h',
129 'include/grpc/support/tls_pthread.h',
130 'include/grpc/support/useful.h',
131 'include/grpc/impl/codegen/alloc.h',
132 'include/grpc/impl/codegen/atm.h',
133 'include/grpc/impl/codegen/atm_gcc_atomic.h',
134 'include/grpc/impl/codegen/atm_gcc_sync.h',
135 'include/grpc/impl/codegen/atm_win32.h',
136 'include/grpc/impl/codegen/log.h',
137 'include/grpc/impl/codegen/port_platform.h',
138 'include/grpc/impl/codegen/slice.h',
139 'include/grpc/impl/codegen/slice_buffer.h',
140 'include/grpc/impl/codegen/sync.h',
141 'include/grpc/impl/codegen/sync_generic.h',
142 'include/grpc/impl/codegen/sync_posix.h',
143 'include/grpc/impl/codegen/sync_win32.h',
144 'include/grpc/impl/codegen/time.h',
145 'src/core/lib/profiling/basic_timers.c',
146 'src/core/lib/profiling/stap_timers.c',
147 'src/core/lib/support/alloc.c',
148 'src/core/lib/support/avl.c',
149 'src/core/lib/support/backoff.c',
150 'src/core/lib/support/cmdline.c',
151 'src/core/lib/support/cpu_iphone.c',
152 'src/core/lib/support/cpu_linux.c',
153 'src/core/lib/support/cpu_posix.c',
154 'src/core/lib/support/cpu_windows.c',
155 'src/core/lib/support/env_linux.c',
156 'src/core/lib/support/env_posix.c',
157 'src/core/lib/support/env_win32.c',
158 'src/core/lib/support/histogram.c',
159 'src/core/lib/support/host_port.c',
160 'src/core/lib/support/load_file.c',
161 'src/core/lib/support/log.c',
162 'src/core/lib/support/log_android.c',
163 'src/core/lib/support/log_linux.c',
164 'src/core/lib/support/log_posix.c',
165 'src/core/lib/support/log_win32.c',
166 'src/core/lib/support/murmur_hash.c',
167 'src/core/lib/support/slice.c',
168 'src/core/lib/support/slice_buffer.c',
169 'src/core/lib/support/stack_lockfree.c',
170 'src/core/lib/support/string.c',
171 'src/core/lib/support/string_posix.c',
172 'src/core/lib/support/string_util_win32.c',
173 'src/core/lib/support/string_win32.c',
174 'src/core/lib/support/subprocess_posix.c',
175 'src/core/lib/support/subprocess_windows.c',
176 'src/core/lib/support/sync.c',
177 'src/core/lib/support/sync_posix.c',
178 'src/core/lib/support/sync_win32.c',
179 'src/core/lib/support/thd.c',
180 'src/core/lib/support/thd_posix.c',
181 'src/core/lib/support/thd_win32.c',
182 'src/core/lib/support/time.c',
183 'src/core/lib/support/time_posix.c',
184 'src/core/lib/support/time_precise.c',
185 'src/core/lib/support/time_win32.c',
186 'src/core/lib/support/tls_pthread.c',
187 'src/core/lib/support/tmpfile_msys.c',
188 'src/core/lib/support/tmpfile_posix.c',
189 'src/core/lib/support/tmpfile_win32.c',
190 'src/core/lib/support/wrap_memcpy.c',
191 'src/core/lib/channel/channel_args.h',
192 'src/core/lib/channel/channel_stack.h',
193 'src/core/lib/channel/channel_stack_builder.h',
194 'src/core/lib/channel/compress_filter.h',
195 'src/core/lib/channel/connected_channel.h',
196 'src/core/lib/channel/context.h',
197 'src/core/lib/channel/http_client_filter.h',
198 'src/core/lib/channel/http_server_filter.h',
199 'src/core/lib/compression/algorithm_metadata.h',
200 'src/core/lib/compression/message_compress.h',
201 'src/core/lib/debug/trace.h',
202 'src/core/lib/http/format_request.h',
203 'src/core/lib/http/httpcli.h',
204 'src/core/lib/http/parser.h',
205 'src/core/lib/iomgr/closure.h',
206 'src/core/lib/iomgr/endpoint.h',
207 'src/core/lib/iomgr/endpoint_pair.h',
208 'src/core/lib/iomgr/ev_poll_and_epoll_posix.h',
209 'src/core/lib/iomgr/ev_posix.h',
210 'src/core/lib/iomgr/exec_ctx.h',
211 'src/core/lib/iomgr/executor.h',
212 'src/core/lib/iomgr/iocp_windows.h',
213 'src/core/lib/iomgr/iomgr.h',
214 'src/core/lib/iomgr/iomgr_internal.h',
215 'src/core/lib/iomgr/iomgr_posix.h',
216 'src/core/lib/iomgr/pollset.h',
217 'src/core/lib/iomgr/pollset_set.h',
218 'src/core/lib/iomgr/pollset_set_windows.h',
219 'src/core/lib/iomgr/pollset_windows.h',
220 'src/core/lib/iomgr/resolve_address.h',
221 'src/core/lib/iomgr/sockaddr.h',
222 'src/core/lib/iomgr/sockaddr_posix.h',
223 'src/core/lib/iomgr/sockaddr_utils.h',
224 'src/core/lib/iomgr/sockaddr_win32.h',
225 'src/core/lib/iomgr/socket_utils_posix.h',
226 'src/core/lib/iomgr/socket_windows.h',
227 'src/core/lib/iomgr/tcp_client.h',
228 'src/core/lib/iomgr/tcp_posix.h',
229 'src/core/lib/iomgr/tcp_server.h',
230 'src/core/lib/iomgr/tcp_windows.h',
231 'src/core/lib/iomgr/time_averaged_stats.h',
232 'src/core/lib/iomgr/timer.h',
233 'src/core/lib/iomgr/timer_heap.h',
234 'src/core/lib/iomgr/udp_server.h',
235 'src/core/lib/iomgr/unix_sockets_posix.h',
236 'src/core/lib/iomgr/wakeup_fd_pipe.h',
237 'src/core/lib/iomgr/wakeup_fd_posix.h',
238 'src/core/lib/iomgr/workqueue.h',
239 'src/core/lib/iomgr/workqueue_posix.h',
240 'src/core/lib/iomgr/workqueue_windows.h',
241 'src/core/lib/json/json.h',
242 'src/core/lib/json/json_common.h',
243 'src/core/lib/json/json_reader.h',
244 'src/core/lib/json/json_writer.h',
245 'src/core/lib/surface/api_trace.h',
246 'src/core/lib/surface/call.h',
247 'src/core/lib/surface/call_test_only.h',
248 'src/core/lib/surface/channel.h',
249 'src/core/lib/surface/channel_init.h',
250 'src/core/lib/surface/channel_stack_type.h',
251 'src/core/lib/surface/completion_queue.h',
252 'src/core/lib/surface/event_string.h',
253 'src/core/lib/surface/init.h',
254 'src/core/lib/surface/lame_client.h',
255 'src/core/lib/surface/server.h',
256 'src/core/lib/surface/surface_trace.h',
257 'src/core/lib/transport/byte_stream.h',
258 'src/core/lib/transport/connectivity_state.h',
259 'src/core/lib/transport/metadata.h',
260 'src/core/lib/transport/metadata_batch.h',
261 'src/core/lib/transport/static_metadata.h',
262 'src/core/lib/transport/transport.h',
263 'src/core/lib/transport/transport_impl.h',
264 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
265 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
266 'src/core/ext/transport/chttp2/transport/frame.h',
267 'src/core/ext/transport/chttp2/transport/frame_data.h',
268 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
269 'src/core/ext/transport/chttp2/transport/frame_ping.h',
270 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
271 'src/core/ext/transport/chttp2/transport/frame_settings.h',
272 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
273 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
274 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
275 'src/core/ext/transport/chttp2/transport/hpack_table.h',
276 'src/core/ext/transport/chttp2/transport/http2_errors.h',
277 'src/core/ext/transport/chttp2/transport/huffsyms.h',
278 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
279 'src/core/ext/transport/chttp2/transport/internal.h',
280 'src/core/ext/transport/chttp2/transport/status_conversion.h',
281 'src/core/ext/transport/chttp2/transport/stream_map.h',
282 'src/core/ext/transport/chttp2/transport/timeout_encoding.h',
283 'src/core/ext/transport/chttp2/transport/varint.h',
284 'src/core/ext/transport/chttp2/alpn/alpn.h',
285 'src/core/lib/security/auth_filters.h',
286 'src/core/lib/security/b64.h',
287 'src/core/lib/security/credentials.h',
288 'src/core/lib/security/handshake.h',
289 'src/core/lib/security/json_token.h',
290 'src/core/lib/security/jwt_verifier.h',
291 'src/core/lib/security/secure_endpoint.h',
292 'src/core/lib/security/security_connector.h',
293 'src/core/lib/security/security_context.h',
294 'src/core/lib/tsi/fake_transport_security.h',
295 'src/core/lib/tsi/ssl_transport_security.h',
296 'src/core/lib/tsi/ssl_types.h',
297 'src/core/lib/tsi/transport_security.h',
298 'src/core/lib/tsi/transport_security_interface.h',
299 'src/core/ext/client_config/client_channel.h',
300 'src/core/ext/client_config/client_channel_factory.h',
301 'src/core/ext/client_config/client_config.h',
302 'src/core/ext/client_config/connector.h',
303 'src/core/ext/client_config/initial_connect_string.h',
304 'src/core/ext/client_config/lb_policy.h',
305 'src/core/ext/client_config/lb_policy_factory.h',
306 'src/core/ext/client_config/lb_policy_registry.h',
307 'src/core/ext/client_config/parse_address.h',
308 'src/core/ext/client_config/resolver.h',
309 'src/core/ext/client_config/resolver_factory.h',
310 'src/core/ext/client_config/resolver_registry.h',
311 'src/core/ext/client_config/subchannel.h',
312 'src/core/ext/client_config/subchannel_call_holder.h',
313 'src/core/ext/client_config/subchannel_index.h',
314 'src/core/ext/client_config/uri_parser.h',
315 'src/core/ext/lb_policy/grpclb/load_balancer_api.h',
316 'src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h',
317 'third_party/nanopb/pb.h',
318 'third_party/nanopb/pb_common.h',
319 'third_party/nanopb/pb_decode.h',
320 'third_party/nanopb/pb_encode.h',
321 'src/core/ext/census/aggregation.h',
322 'src/core/ext/census/census_interface.h',
323 'src/core/ext/census/census_rpc_stats.h',
324 'src/core/ext/census/grpc_filter.h',
325 'src/core/ext/census/mlog.h',
326 'src/core/ext/census/rpc_metric_id.h',
327 'include/grpc/byte_buffer.h',
328 'include/grpc/byte_buffer_reader.h',
329 'include/grpc/compression.h',
330 'include/grpc/grpc.h',
331 'include/grpc/status.h',
332 'include/grpc/impl/codegen/byte_buffer.h',
333 'include/grpc/impl/codegen/byte_buffer_reader.h',
334 'include/grpc/impl/codegen/compression_types.h',
335 'include/grpc/impl/codegen/connectivity_state.h',
336 'include/grpc/impl/codegen/grpc_types.h',
337 'include/grpc/impl/codegen/propagation_bits.h',
338 'include/grpc/impl/codegen/status.h',
339 'include/grpc/impl/codegen/alloc.h',
340 'include/grpc/impl/codegen/atm.h',
341 'include/grpc/impl/codegen/atm_gcc_atomic.h',
342 'include/grpc/impl/codegen/atm_gcc_sync.h',
343 'include/grpc/impl/codegen/atm_win32.h',
344 'include/grpc/impl/codegen/log.h',
345 'include/grpc/impl/codegen/port_platform.h',
346 'include/grpc/impl/codegen/slice.h',
347 'include/grpc/impl/codegen/slice_buffer.h',
348 'include/grpc/impl/codegen/sync.h',
349 'include/grpc/impl/codegen/sync_generic.h',
350 'include/grpc/impl/codegen/sync_posix.h',
351 'include/grpc/impl/codegen/sync_win32.h',
352 'include/grpc/impl/codegen/time.h',
353 'include/grpc/grpc_security.h',
354 'include/grpc/grpc_security_constants.h',
355 'include/grpc/census.h',
356 'src/core/lib/surface/init.c',
357 'src/core/lib/channel/channel_args.c',
358 'src/core/lib/channel/channel_stack.c',
359 'src/core/lib/channel/channel_stack_builder.c',
360 'src/core/lib/channel/compress_filter.c',
361 'src/core/lib/channel/connected_channel.c',
362 'src/core/lib/channel/http_client_filter.c',
363 'src/core/lib/channel/http_server_filter.c',
364 'src/core/lib/compression/compression_algorithm.c',
365 'src/core/lib/compression/message_compress.c',
366 'src/core/lib/debug/trace.c',
367 'src/core/lib/http/format_request.c',
368 'src/core/lib/http/httpcli.c',
369 'src/core/lib/http/parser.c',
370 'src/core/lib/iomgr/closure.c',
371 'src/core/lib/iomgr/endpoint.c',
372 'src/core/lib/iomgr/endpoint_pair_posix.c',
373 'src/core/lib/iomgr/endpoint_pair_windows.c',
374 'src/core/lib/iomgr/ev_poll_and_epoll_posix.c',
375 'src/core/lib/iomgr/ev_posix.c',
376 'src/core/lib/iomgr/exec_ctx.c',
377 'src/core/lib/iomgr/executor.c',
378 'src/core/lib/iomgr/iocp_windows.c',
379 'src/core/lib/iomgr/iomgr.c',
380 'src/core/lib/iomgr/iomgr_posix.c',
381 'src/core/lib/iomgr/iomgr_windows.c',
382 'src/core/lib/iomgr/pollset_set_windows.c',
383 'src/core/lib/iomgr/pollset_windows.c',
384 'src/core/lib/iomgr/resolve_address_posix.c',
385 'src/core/lib/iomgr/resolve_address_windows.c',
386 'src/core/lib/iomgr/sockaddr_utils.c',
387 'src/core/lib/iomgr/socket_utils_common_posix.c',
388 'src/core/lib/iomgr/socket_utils_linux.c',
389 'src/core/lib/iomgr/socket_utils_posix.c',
390 'src/core/lib/iomgr/socket_windows.c',
391 'src/core/lib/iomgr/tcp_client_posix.c',
392 'src/core/lib/iomgr/tcp_client_windows.c',
393 'src/core/lib/iomgr/tcp_posix.c',
394 'src/core/lib/iomgr/tcp_server_posix.c',
395 'src/core/lib/iomgr/tcp_server_windows.c',
396 'src/core/lib/iomgr/tcp_windows.c',
397 'src/core/lib/iomgr/time_averaged_stats.c',
398 'src/core/lib/iomgr/timer.c',
399 'src/core/lib/iomgr/timer_heap.c',
400 'src/core/lib/iomgr/udp_server.c',
401 'src/core/lib/iomgr/unix_sockets_posix.c',
402 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
403 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
404 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
405 'src/core/lib/iomgr/wakeup_fd_pipe.c',
406 'src/core/lib/iomgr/wakeup_fd_posix.c',
407 'src/core/lib/iomgr/workqueue_posix.c',
408 'src/core/lib/iomgr/workqueue_windows.c',
409 'src/core/lib/json/json.c',
410 'src/core/lib/json/json_reader.c',
411 'src/core/lib/json/json_string.c',
412 'src/core/lib/json/json_writer.c',
413 'src/core/lib/surface/alarm.c',
414 'src/core/lib/surface/api_trace.c',
415 'src/core/lib/surface/byte_buffer.c',
416 'src/core/lib/surface/byte_buffer_reader.c',
417 'src/core/lib/surface/call.c',
418 'src/core/lib/surface/call_details.c',
419 'src/core/lib/surface/call_log_batch.c',
420 'src/core/lib/surface/channel.c',
421 'src/core/lib/surface/channel_init.c',
422 'src/core/lib/surface/channel_ping.c',
423 'src/core/lib/surface/channel_stack_type.c',
424 'src/core/lib/surface/completion_queue.c',
425 'src/core/lib/surface/event_string.c',
426 'src/core/lib/surface/lame_client.c',
427 'src/core/lib/surface/metadata_array.c',
428 'src/core/lib/surface/server.c',
429 'src/core/lib/surface/validate_metadata.c',
430 'src/core/lib/surface/version.c',
431 'src/core/lib/transport/byte_stream.c',
432 'src/core/lib/transport/connectivity_state.c',
433 'src/core/lib/transport/metadata.c',
434 'src/core/lib/transport/metadata_batch.c',
435 'src/core/lib/transport/static_metadata.c',
436 'src/core/lib/transport/transport.c',
437 'src/core/lib/transport/transport_op_string.c',
438 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c',
439 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
440 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
441 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
442 'src/core/ext/transport/chttp2/transport/frame_data.c',
443 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
444 'src/core/ext/transport/chttp2/transport/frame_ping.c',
445 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
446 'src/core/ext/transport/chttp2/transport/frame_settings.c',
447 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
448 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
449 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
450 'src/core/ext/transport/chttp2/transport/hpack_table.c',
451 'src/core/ext/transport/chttp2/transport/huffsyms.c',
452 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
453 'src/core/ext/transport/chttp2/transport/parsing.c',
454 'src/core/ext/transport/chttp2/transport/status_conversion.c',
455 'src/core/ext/transport/chttp2/transport/stream_lists.c',
456 'src/core/ext/transport/chttp2/transport/stream_map.c',
457 'src/core/ext/transport/chttp2/transport/timeout_encoding.c',
458 'src/core/ext/transport/chttp2/transport/varint.c',
459 'src/core/ext/transport/chttp2/transport/writing.c',
460 'src/core/ext/transport/chttp2/alpn/alpn.c',
461 'src/core/lib/http/httpcli_security_connector.c',
462 'src/core/lib/security/b64.c',
463 'src/core/lib/security/client_auth_filter.c',
464 'src/core/lib/security/credentials.c',
465 'src/core/lib/security/credentials_metadata.c',
466 'src/core/lib/security/credentials_posix.c',
467 'src/core/lib/security/credentials_win32.c',
468 'src/core/lib/security/google_default_credentials.c',
469 'src/core/lib/security/handshake.c',
470 'src/core/lib/security/json_token.c',
471 'src/core/lib/security/jwt_verifier.c',
472 'src/core/lib/security/secure_endpoint.c',
473 'src/core/lib/security/security_connector.c',
474 'src/core/lib/security/security_context.c',
475 'src/core/lib/security/server_auth_filter.c',
476 'src/core/lib/surface/init_secure.c',
477 'src/core/lib/tsi/fake_transport_security.c',
478 'src/core/lib/tsi/ssl_transport_security.c',
479 'src/core/lib/tsi/transport_security.c',
480 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.c',
481 'src/core/ext/client_config/channel_connectivity.c',
482 'src/core/ext/client_config/client_channel.c',
483 'src/core/ext/client_config/client_channel_factory.c',
484 'src/core/ext/client_config/client_config.c',
485 'src/core/ext/client_config/client_config_plugin.c',
486 'src/core/ext/client_config/connector.c',
487 'src/core/ext/client_config/default_initial_connect_string.c',
488 'src/core/ext/client_config/initial_connect_string.c',
489 'src/core/ext/client_config/lb_policy.c',
490 'src/core/ext/client_config/lb_policy_factory.c',
491 'src/core/ext/client_config/lb_policy_registry.c',
492 'src/core/ext/client_config/parse_address.c',
493 'src/core/ext/client_config/resolver.c',
494 'src/core/ext/client_config/resolver_factory.c',
495 'src/core/ext/client_config/resolver_registry.c',
496 'src/core/ext/client_config/subchannel.c',
497 'src/core/ext/client_config/subchannel_call_holder.c',
498 'src/core/ext/client_config/subchannel_index.c',
499 'src/core/ext/client_config/uri_parser.c',
500 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c',
501 'src/core/ext/transport/chttp2/client/insecure/channel_create.c',
502 'src/core/ext/lb_policy/grpclb/load_balancer_api.c',
503 'src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c',
504 'third_party/nanopb/pb_common.c',
505 'third_party/nanopb/pb_decode.c',
506 'third_party/nanopb/pb_encode.c',
507 'src/core/ext/lb_policy/pick_first/pick_first.c',
508 'src/core/ext/lb_policy/round_robin/round_robin.c',
509 'src/core/ext/resolver/dns/native/dns_resolver.c',
510 'src/core/ext/resolver/sockaddr/sockaddr_resolver.c',
511 'src/core/ext/census/context.c',
512 'src/core/ext/census/grpc_context.c',
513 'src/core/ext/census/grpc_filter.c',
514 'src/core/ext/census/grpc_plugin.c',
515 'src/core/ext/census/initialize.c',
516 'src/core/ext/census/mlog.c',
517 'src/core/ext/census/operation.c',
518 'src/core/ext/census/placeholders.c',
519 'src/core/ext/census/tracing.c',
520 'src/core/plugin_registry/grpc_plugin_registry.c'
521
522 s.private_header_files = 'src/core/lib/profiling/timers.h',
523 'src/core/lib/support/backoff.h',
524 'src/core/lib/support/block_annotate.h',
525 'src/core/lib/support/env.h',
526 'src/core/lib/support/load_file.h',
527 'src/core/lib/support/murmur_hash.h',
528 'src/core/lib/support/stack_lockfree.h',
529 'src/core/lib/support/string.h',
530 'src/core/lib/support/string_win32.h',
531 'src/core/lib/support/thd_internal.h',
532 'src/core/lib/support/time_precise.h',
533 'src/core/lib/support/tmpfile.h',
534 'src/core/lib/channel/channel_args.h',
535 'src/core/lib/channel/channel_stack.h',
536 'src/core/lib/channel/channel_stack_builder.h',
537 'src/core/lib/channel/compress_filter.h',
538 'src/core/lib/channel/connected_channel.h',
539 'src/core/lib/channel/context.h',
540 'src/core/lib/channel/http_client_filter.h',
541 'src/core/lib/channel/http_server_filter.h',
542 'src/core/lib/compression/algorithm_metadata.h',
543 'src/core/lib/compression/message_compress.h',
544 'src/core/lib/debug/trace.h',
545 'src/core/lib/http/format_request.h',
546 'src/core/lib/http/httpcli.h',
547 'src/core/lib/http/parser.h',
548 'src/core/lib/iomgr/closure.h',
549 'src/core/lib/iomgr/endpoint.h',
550 'src/core/lib/iomgr/endpoint_pair.h',
551 'src/core/lib/iomgr/ev_poll_and_epoll_posix.h',
552 'src/core/lib/iomgr/ev_posix.h',
553 'src/core/lib/iomgr/exec_ctx.h',
554 'src/core/lib/iomgr/executor.h',
555 'src/core/lib/iomgr/iocp_windows.h',
556 'src/core/lib/iomgr/iomgr.h',
557 'src/core/lib/iomgr/iomgr_internal.h',
558 'src/core/lib/iomgr/iomgr_posix.h',
559 'src/core/lib/iomgr/pollset.h',
560 'src/core/lib/iomgr/pollset_set.h',
561 'src/core/lib/iomgr/pollset_set_windows.h',
562 'src/core/lib/iomgr/pollset_windows.h',
563 'src/core/lib/iomgr/resolve_address.h',
564 'src/core/lib/iomgr/sockaddr.h',
565 'src/core/lib/iomgr/sockaddr_posix.h',
566 'src/core/lib/iomgr/sockaddr_utils.h',
567 'src/core/lib/iomgr/sockaddr_win32.h',
568 'src/core/lib/iomgr/socket_utils_posix.h',
569 'src/core/lib/iomgr/socket_windows.h',
570 'src/core/lib/iomgr/tcp_client.h',
571 'src/core/lib/iomgr/tcp_posix.h',
572 'src/core/lib/iomgr/tcp_server.h',
573 'src/core/lib/iomgr/tcp_windows.h',
574 'src/core/lib/iomgr/time_averaged_stats.h',
575 'src/core/lib/iomgr/timer.h',
576 'src/core/lib/iomgr/timer_heap.h',
577 'src/core/lib/iomgr/udp_server.h',
578 'src/core/lib/iomgr/unix_sockets_posix.h',
579 'src/core/lib/iomgr/wakeup_fd_pipe.h',
580 'src/core/lib/iomgr/wakeup_fd_posix.h',
581 'src/core/lib/iomgr/workqueue.h',
582 'src/core/lib/iomgr/workqueue_posix.h',
583 'src/core/lib/iomgr/workqueue_windows.h',
584 'src/core/lib/json/json.h',
585 'src/core/lib/json/json_common.h',
586 'src/core/lib/json/json_reader.h',
587 'src/core/lib/json/json_writer.h',
588 'src/core/lib/surface/api_trace.h',
589 'src/core/lib/surface/call.h',
590 'src/core/lib/surface/call_test_only.h',
591 'src/core/lib/surface/channel.h',
592 'src/core/lib/surface/channel_init.h',
593 'src/core/lib/surface/channel_stack_type.h',
594 'src/core/lib/surface/completion_queue.h',
595 'src/core/lib/surface/event_string.h',
596 'src/core/lib/surface/init.h',
597 'src/core/lib/surface/lame_client.h',
598 'src/core/lib/surface/server.h',
599 'src/core/lib/surface/surface_trace.h',
600 'src/core/lib/transport/byte_stream.h',
601 'src/core/lib/transport/connectivity_state.h',
602 'src/core/lib/transport/metadata.h',
603 'src/core/lib/transport/metadata_batch.h',
604 'src/core/lib/transport/static_metadata.h',
605 'src/core/lib/transport/transport.h',
606 'src/core/lib/transport/transport_impl.h',
607 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
608 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
609 'src/core/ext/transport/chttp2/transport/frame.h',
610 'src/core/ext/transport/chttp2/transport/frame_data.h',
611 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
612 'src/core/ext/transport/chttp2/transport/frame_ping.h',
613 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
614 'src/core/ext/transport/chttp2/transport/frame_settings.h',
615 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
616 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
617 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
618 'src/core/ext/transport/chttp2/transport/hpack_table.h',
619 'src/core/ext/transport/chttp2/transport/http2_errors.h',
620 'src/core/ext/transport/chttp2/transport/huffsyms.h',
621 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
622 'src/core/ext/transport/chttp2/transport/internal.h',
623 'src/core/ext/transport/chttp2/transport/status_conversion.h',
624 'src/core/ext/transport/chttp2/transport/stream_map.h',
625 'src/core/ext/transport/chttp2/transport/timeout_encoding.h',
626 'src/core/ext/transport/chttp2/transport/varint.h',
627 'src/core/ext/transport/chttp2/alpn/alpn.h',
628 'src/core/lib/security/auth_filters.h',
629 'src/core/lib/security/b64.h',
630 'src/core/lib/security/credentials.h',
631 'src/core/lib/security/handshake.h',
632 'src/core/lib/security/json_token.h',
633 'src/core/lib/security/jwt_verifier.h',
634 'src/core/lib/security/secure_endpoint.h',
635 'src/core/lib/security/security_connector.h',
636 'src/core/lib/security/security_context.h',
637 'src/core/lib/tsi/fake_transport_security.h',
638 'src/core/lib/tsi/ssl_transport_security.h',
639 'src/core/lib/tsi/ssl_types.h',
640 'src/core/lib/tsi/transport_security.h',
641 'src/core/lib/tsi/transport_security_interface.h',
642 'src/core/ext/client_config/client_channel.h',
643 'src/core/ext/client_config/client_channel_factory.h',
644 'src/core/ext/client_config/client_config.h',
645 'src/core/ext/client_config/connector.h',
646 'src/core/ext/client_config/initial_connect_string.h',
647 'src/core/ext/client_config/lb_policy.h',
648 'src/core/ext/client_config/lb_policy_factory.h',
649 'src/core/ext/client_config/lb_policy_registry.h',
650 'src/core/ext/client_config/parse_address.h',
651 'src/core/ext/client_config/resolver.h',
652 'src/core/ext/client_config/resolver_factory.h',
653 'src/core/ext/client_config/resolver_registry.h',
654 'src/core/ext/client_config/subchannel.h',
655 'src/core/ext/client_config/subchannel_call_holder.h',
656 'src/core/ext/client_config/subchannel_index.h',
657 'src/core/ext/client_config/uri_parser.h',
658 'src/core/ext/lb_policy/grpclb/load_balancer_api.h',
659 'src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h',
660 'third_party/nanopb/pb.h',
661 'third_party/nanopb/pb_common.h',
662 'third_party/nanopb/pb_decode.h',
663 'third_party/nanopb/pb_encode.h',
664 'src/core/ext/census/aggregation.h',
665 'src/core/ext/census/census_interface.h',
666 'src/core/ext/census/census_rpc_stats.h',
667 'src/core/ext/census/grpc_filter.h',
668 'src/core/ext/census/mlog.h',
669 'src/core/ext/census/rpc_metric_id.h'
Jorge Canizalese487a722016-04-30 12:05:26 -0700670end