blob: ce1425a483a55d695279d5e4dd20a29b2cf0d18b [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#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +02008# Copyright 2015 gRPC authors.
Jorge Canizalese487a722016-04-30 12:05:26 -07009#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020010# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
Jorge Canizalese487a722016-04-30 12:05:26 -070013#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020014# http://www.apache.org/licenses/LICENSE-2.0
Jorge Canizalese487a722016-04-30 12:05:26 -070015#
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020016# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
Jorge Canizalese487a722016-04-30 12:05:26 -070021
22
23Pod::Spec.new do |s|
24 s.name = 'gRPC-Core'
murgatroid9998873792017-10-02 17:28:27 -070025 version = '1.8.0-dev'
Jorge Canizalese487a722016-04-30 12:05:26 -070026 s.version = version
27 s.summary = 'Core cross-platform gRPC library, written in C'
Mehrdad Afsharibb3d95b2017-07-10 22:24:28 +000028 s.homepage = 'https://grpc.io'
Jan Tattermusch4d5c3102017-06-07 10:23:56 +020029 s.license = 'Apache License, Version 2.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070030 s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
31
32 s.source = {
33 :git => 'https://github.com/grpc/grpc.git',
Muxi Yan690aee62017-01-27 02:52:47 +000034 :tag => "v#{version}",
Jorge Canizalese487a722016-04-30 12:05:26 -070035 }
36
Muxi Yan37d3fba2017-02-28 16:14:40 -080037 s.ios.deployment_target = '7.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070038 s.osx.deployment_target = '10.9'
39 s.requires_arc = false
40
41 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070042
Jorge Canizalescc074d92016-06-28 09:52:43 -070043 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
44 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
45 # <gRPC-Core/grpc.h>`.
46 s.module_name = name
47
48 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
49 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
50 #
51 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizales37750742016-06-08 20:10:20 -070052 s.header_mappings_dir = 'include/grpc'
53
Jorge Canizalescc074d92016-06-28 09:52:43 -070054 # The above has an undesired effect when creating a static library: It forces users to write
55 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
56 # because Cocoapods lets omit the pod name when including headers of static libraries, the
57 # following lets users write `#include <grpc/grpc.h>`.
58 s.header_dir = name
Jorge Canizales37750742016-06-08 20:10:20 -070059
Jorge Canizalescc074d92016-06-28 09:52:43 -070060 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales547f0652016-05-01 19:52:21 -070061 s.module_map = 'include/grpc/module.modulemap'
62
Jorge Canizalescc074d92016-06-28 09:52:43 -070063 # To compile the library, we need the user headers search path (quoted includes) to point to the
64 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
65 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
66 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
67 #
68 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
69 # is taken as an implementation detail. We've asked for an alternative, and have been told that
70 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
71 #
72 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
73 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
74 # that assumption is wrong. In such case, the following settings need to be reset with the
75 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
76 # Podfile; see `src/objective-c/tests/Podfile` for an example.
77 src_root = '$(PODS_ROOT)/gRPC-Core'
78 s.pod_target_xcconfig = {
79 'GRPC_SRC_ROOT' => src_root,
80 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
81 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
82 # If we don't set these two settings, `include/grpc/support/time.h` and
83 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
84 # build.
85 'USE_HEADERMAP' => 'NO',
86 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
Muxi Yan9ecc2152017-09-29 17:08:59 -070087 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"',
Jorge Canizalescc074d92016-06-28 09:52:43 -070088 }
Jorge Canizalese487a722016-04-30 12:05:26 -070089
Muxi Yane04089e2016-07-15 16:35:20 -070090 s.default_subspecs = 'Interface', 'Implementation'
Yuchen Zeng9e4c8eb2016-11-18 01:06:57 -080091 s.compiler_flags = '-DGRPC_ARES=0'
Muxi Yane04089e2016-07-15 16:35:20 -070092
Jorge Canizalescc074d92016-06-28 09:52:43 -070093 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
94 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
95 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
96 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
97 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
98 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
99 # making the linter happy.
100 #
101 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
102 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
103 s.subspec 'Interface' do |ss|
104 ss.header_mappings_dir = 'include/grpc'
105
106 ss.source_files = 'include/grpc/support/alloc.h',
107 'include/grpc/support/atm.h',
108 'include/grpc/support/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700109 'include/grpc/support/atm_gcc_sync.h',
110 'include/grpc/support/atm_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700111 'include/grpc/support/avl.h',
112 'include/grpc/support/cmdline.h',
113 'include/grpc/support/cpu.h',
114 'include/grpc/support/histogram.h',
115 'include/grpc/support/host_port.h',
116 'include/grpc/support/log.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700117 'include/grpc/support/log_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700118 'include/grpc/support/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700119 'include/grpc/support/string_util.h',
120 'include/grpc/support/subprocess.h',
121 'include/grpc/support/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700122 'include/grpc/support/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700123 'include/grpc/support/sync_generic.h',
124 'include/grpc/support/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700125 'include/grpc/support/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700126 'include/grpc/support/thd.h',
127 'include/grpc/support/time.h',
128 'include/grpc/support/tls.h',
Muxi Yancd972972017-10-06 13:46:27 -0700129 'include/grpc/support/tls_gcc.h',
130 'include/grpc/support/tls_msvc.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700131 'include/grpc/support/tls_pthread.h',
132 'include/grpc/support/useful.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700133 'include/grpc/impl/codegen/atm.h',
134 'include/grpc/impl/codegen/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700135 'include/grpc/impl/codegen/atm_gcc_sync.h',
136 'include/grpc/impl/codegen/atm_windows.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800137 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700138 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700139 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700140 'include/grpc/impl/codegen/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700141 'include/grpc/impl/codegen/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700142 'include/grpc/impl/codegen/sync_generic.h',
143 'include/grpc/impl/codegen/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700144 'include/grpc/impl/codegen/sync_windows.h',
Vijay Paiefce6e12017-09-14 09:07:50 -0700145 'include/grpc/impl/codegen/byte_buffer.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700146 'include/grpc/impl/codegen/byte_buffer_reader.h',
147 'include/grpc/impl/codegen/compression_types.h',
148 'include/grpc/impl/codegen/connectivity_state.h',
Craig Tillerb995e8b2016-12-12 06:36:43 -0800149 'include/grpc/impl/codegen/exec_ctx_fwd.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700150 'include/grpc/impl/codegen/grpc_types.h',
151 'include/grpc/impl/codegen/propagation_bits.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700152 'include/grpc/impl/codegen/slice.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700153 'include/grpc/impl/codegen/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700154 'include/grpc/impl/codegen/atm.h',
155 'include/grpc/impl/codegen/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700156 'include/grpc/impl/codegen/atm_gcc_sync.h',
157 'include/grpc/impl/codegen/atm_windows.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800158 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700159 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700160 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700161 'include/grpc/impl/codegen/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700162 'include/grpc/impl/codegen/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700163 'include/grpc/impl/codegen/sync_generic.h',
164 'include/grpc/impl/codegen/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700165 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700166 'include/grpc/grpc_security.h',
Vijay Pai42807252017-07-28 15:08:24 -0700167 'include/grpc/byte_buffer.h',
168 'include/grpc/byte_buffer_reader.h',
169 'include/grpc/compression.h',
170 'include/grpc/grpc.h',
171 'include/grpc/grpc_posix.h',
172 'include/grpc/grpc_security_constants.h',
173 'include/grpc/load_reporting.h',
174 'include/grpc/slice.h',
175 'include/grpc/slice_buffer.h',
176 'include/grpc/status.h',
177 'include/grpc/support/workaround_list.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700178 'include/grpc/census.h'
179 end
180 s.subspec 'Implementation' do |ss|
181 ss.header_mappings_dir = '.'
182 ss.libraries = 'z'
183 ss.dependency "#{s.name}/Interface", version
Muxi Yanc0d3bab2017-07-10 11:21:37 -0700184 ss.dependency 'BoringSSL', '~> 9.0'
Muxi Yanad272c92017-06-29 16:18:43 -0700185 ss.dependency 'nanopb', '~> 0.3'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700186
187 # To save you from scrolling, this is the last part of the podspec.
188 ss.source_files = 'src/core/lib/profiling/timers.h',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700189 'src/core/lib/support/arena.h',
Craig Tiller4d780a52017-04-12 13:47:18 -0700190 'src/core/lib/support/atomic.h',
191 'src/core/lib/support/atomic_with_atm.h',
192 'src/core/lib/support/atomic_with_std.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700193 'src/core/lib/support/env.h',
Craig Tiller92226062017-10-08 21:16:12 -0700194 'src/core/lib/support/manual_constructor.h',
Craig Tillerb3d70102017-03-31 14:17:09 -0700195 'src/core/lib/support/memory.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 Tilleredbf2b92017-02-27 07:24:00 -0800198 'src/core/lib/support/spinlock.h',
Ken Paysona4710a02017-07-10 16:49:59 -0700199 'src/core/lib/support/stack_lockfree.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700200 '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/time_precise.h',
203 'src/core/lib/support/tmpfile.h',
Yash Tibrewal83062842017-09-21 18:56:08 -0700204 'src/core/lib/profiling/basic_timers.cc',
205 'src/core/lib/profiling/stap_timers.cc',
206 'src/core/lib/support/alloc.cc',
207 'src/core/lib/support/arena.cc',
208 'src/core/lib/support/atm.cc',
209 'src/core/lib/support/avl.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700210 'src/core/lib/support/cmdline.cc',
211 'src/core/lib/support/cpu_iphone.cc',
212 'src/core/lib/support/cpu_linux.cc',
213 'src/core/lib/support/cpu_posix.cc',
214 'src/core/lib/support/cpu_windows.cc',
215 'src/core/lib/support/env_linux.cc',
216 'src/core/lib/support/env_posix.cc',
217 'src/core/lib/support/env_windows.cc',
218 'src/core/lib/support/histogram.cc',
219 'src/core/lib/support/host_port.cc',
220 'src/core/lib/support/log.cc',
221 'src/core/lib/support/log_android.cc',
222 'src/core/lib/support/log_linux.cc',
223 'src/core/lib/support/log_posix.cc',
224 'src/core/lib/support/log_windows.cc',
225 'src/core/lib/support/mpscq.cc',
226 'src/core/lib/support/murmur_hash.cc',
227 'src/core/lib/support/stack_lockfree.cc',
228 'src/core/lib/support/string.cc',
229 'src/core/lib/support/string_posix.cc',
230 'src/core/lib/support/string_util_windows.cc',
231 'src/core/lib/support/string_windows.cc',
232 'src/core/lib/support/subprocess_posix.cc',
233 'src/core/lib/support/subprocess_windows.cc',
234 'src/core/lib/support/sync.cc',
235 'src/core/lib/support/sync_posix.cc',
236 'src/core/lib/support/sync_windows.cc',
237 'src/core/lib/support/thd.cc',
238 'src/core/lib/support/thd_posix.cc',
239 'src/core/lib/support/thd_windows.cc',
240 'src/core/lib/support/time.cc',
241 'src/core/lib/support/time_posix.cc',
242 'src/core/lib/support/time_precise.cc',
243 'src/core/lib/support/time_windows.cc',
244 'src/core/lib/support/tls_pthread.cc',
245 'src/core/lib/support/tmpfile_msys.cc',
246 'src/core/lib/support/tmpfile_posix.cc',
247 'src/core/lib/support/tmpfile_windows.cc',
248 'src/core/lib/support/wrap_memcpy.cc',
Vijay Pai42807252017-07-28 15:08:24 -0700249 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
250 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
251 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
252 'src/core/ext/transport/chttp2/transport/frame.h',
253 'src/core/ext/transport/chttp2/transport/frame_data.h',
254 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
255 'src/core/ext/transport/chttp2/transport/frame_ping.h',
256 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
257 'src/core/ext/transport/chttp2/transport/frame_settings.h',
258 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
259 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
260 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
261 'src/core/ext/transport/chttp2/transport/hpack_table.h',
262 'src/core/ext/transport/chttp2/transport/http2_settings.h',
263 'src/core/ext/transport/chttp2/transport/huffsyms.h',
264 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
265 'src/core/ext/transport/chttp2/transport/internal.h',
266 'src/core/ext/transport/chttp2/transport/stream_map.h',
267 'src/core/ext/transport/chttp2/transport/varint.h',
268 'src/core/ext/transport/chttp2/alpn/alpn.h',
269 'src/core/ext/filters/http/client/http_client_filter.h',
270 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
271 'src/core/ext/filters/http/server/http_server_filter.h',
272 'src/core/lib/security/context/security_context.h',
273 'src/core/lib/security/credentials/composite/composite_credentials.h',
274 'src/core/lib/security/credentials/credentials.h',
275 'src/core/lib/security/credentials/fake/fake_credentials.h',
276 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
277 'src/core/lib/security/credentials/iam/iam_credentials.h',
278 'src/core/lib/security/credentials/jwt/json_token.h',
279 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
280 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
281 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
282 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
283 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
284 'src/core/lib/security/transport/auth_filters.h',
285 'src/core/lib/security/transport/lb_targets_info.h',
286 'src/core/lib/security/transport/secure_endpoint.h',
287 'src/core/lib/security/transport/security_connector.h',
288 'src/core/lib/security/transport/security_handshaker.h',
289 'src/core/lib/security/transport/tsi_error.h',
290 'src/core/lib/security/util/json_util.h',
291 'src/core/tsi/fake_transport_security.h',
292 'src/core/tsi/gts_transport_security.h',
293 'src/core/tsi/ssl_transport_security.h',
294 'src/core/tsi/ssl_types.h',
jiangtaoli201625d6fd82017-08-09 11:15:04 -0700295 'src/core/tsi/transport_security_grpc.h',
Vijay Pai42807252017-07-28 15:08:24 -0700296 'src/core/tsi/transport_security.h',
297 'src/core/tsi/transport_security_adapter.h',
298 'src/core/tsi/transport_security_interface.h',
299 'src/core/ext/transport/chttp2/server/chttp2_server.h',
300 'src/core/ext/filters/client_channel/client_channel.h',
301 'src/core/ext/filters/client_channel/client_channel_factory.h',
302 'src/core/ext/filters/client_channel/connector.h',
303 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
304 'src/core/ext/filters/client_channel/http_proxy.h',
305 'src/core/ext/filters/client_channel/lb_policy.h',
306 'src/core/ext/filters/client_channel/lb_policy_factory.h',
307 'src/core/ext/filters/client_channel/lb_policy_registry.h',
308 'src/core/ext/filters/client_channel/parse_address.h',
309 'src/core/ext/filters/client_channel/proxy_mapper.h',
310 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
311 'src/core/ext/filters/client_channel/resolver.h',
312 'src/core/ext/filters/client_channel/resolver_factory.h',
313 'src/core/ext/filters/client_channel/resolver_registry.h',
314 'src/core/ext/filters/client_channel/retry_throttle.h',
315 'src/core/ext/filters/client_channel/subchannel.h',
316 'src/core/ext/filters/client_channel/subchannel_index.h',
317 'src/core/ext/filters/client_channel/uri_parser.h',
318 'src/core/ext/filters/deadline/deadline_filter.h',
319 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
320 'src/core/ext/transport/inproc/inproc_transport.h',
Craig Tiller2014a372017-07-21 15:36:11 -0700321 'src/core/lib/backoff/backoff.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700322 'src/core/lib/channel/channel_args.h',
323 'src/core/lib/channel/channel_stack.h',
324 'src/core/lib/channel/channel_stack_builder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700325 'src/core/lib/channel/connected_channel.h',
326 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700327 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800328 'src/core/lib/channel/handshaker_factory.h',
329 'src/core/lib/channel/handshaker_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700330 'src/core/lib/compression/algorithm_metadata.h',
331 'src/core/lib/compression/message_compress.h',
Muxi Yane87a7e12017-06-29 16:53:24 -0700332 'src/core/lib/compression/stream_compression.h',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700333 'src/core/lib/compression/stream_compression_gzip.h',
334 'src/core/lib/compression/stream_compression_identity.h',
Craig Tiller6e739742017-08-31 11:22:52 -0700335 'src/core/lib/debug/stats.h',
336 'src/core/lib/debug/stats_data.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700337 'src/core/lib/http/format_request.h',
338 'src/core/lib/http/httpcli.h',
339 'src/core/lib/http/parser.h',
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700340 'src/core/lib/iomgr/block_annotate.h',
Mark D. Roth76e264b2017-08-25 09:03:33 -0700341 'src/core/lib/iomgr/call_combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700342 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700343 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700344 'src/core/lib/iomgr/endpoint.h',
345 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700346 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800347 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700348 'src/core/lib/iomgr/ev_epoll1_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700349 'src/core/lib/iomgr/ev_epollex_linux.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700350 'src/core/lib/iomgr/ev_epollsig_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700351 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700352 'src/core/lib/iomgr/ev_posix.h',
353 'src/core/lib/iomgr/exec_ctx.h',
354 'src/core/lib/iomgr/executor.h',
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700355 'src/core/lib/iomgr/gethostname.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700356 'src/core/lib/iomgr/iocp_windows.h',
357 'src/core/lib/iomgr/iomgr.h',
358 'src/core/lib/iomgr/iomgr_internal.h',
359 'src/core/lib/iomgr/iomgr_posix.h',
murgatroid99b8e07ad2017-07-18 13:20:55 -0700360 'src/core/lib/iomgr/iomgr_uv.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700361 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700362 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700363 'src/core/lib/iomgr/lockfree_event.h',
Yuchen Zengf630ff22017-07-25 13:28:45 -0700364 'src/core/lib/iomgr/nameser.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700365 'src/core/lib/iomgr/network_status_tracker.h',
366 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700367 'src/core/lib/iomgr/pollset.h',
368 'src/core/lib/iomgr/pollset_set.h',
369 'src/core/lib/iomgr/pollset_set_windows.h',
murgatroid999030c812016-09-16 13:25:08 -0700370 'src/core/lib/iomgr/pollset_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700371 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700372 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700373 'src/core/lib/iomgr/resolve_address.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700374 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700375 'src/core/lib/iomgr/sockaddr.h',
376 'src/core/lib/iomgr/sockaddr_posix.h',
377 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700378 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500379 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700380 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700381 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700382 'src/core/lib/iomgr/socket_utils_posix.h',
383 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700384 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700385 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700386 'src/core/lib/iomgr/tcp_client_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700387 'src/core/lib/iomgr/tcp_posix.h',
388 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700389 'src/core/lib/iomgr/tcp_server_utils_posix.h',
murgatroid999030c812016-09-16 13:25:08 -0700390 'src/core/lib/iomgr/tcp_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700391 'src/core/lib/iomgr/tcp_windows.h',
392 'src/core/lib/iomgr/time_averaged_stats.h',
393 'src/core/lib/iomgr/timer.h',
murgatroid999030c812016-09-16 13:25:08 -0700394 'src/core/lib/iomgr/timer_generic.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700395 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -0700396 'src/core/lib/iomgr/timer_manager.h',
murgatroid999030c812016-09-16 13:25:08 -0700397 'src/core/lib/iomgr/timer_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700398 'src/core/lib/iomgr/udp_server.h',
399 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700400 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700401 'src/core/lib/iomgr/wakeup_fd_pipe.h',
402 'src/core/lib/iomgr/wakeup_fd_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700403 'src/core/lib/json/json.h',
404 'src/core/lib/json/json_common.h',
405 'src/core/lib/json/json_reader.h',
406 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700407 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700408 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800409 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800410 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700411 'src/core/lib/slice/slice_string_helpers.h',
Sree Kuchibhotlaa8cf05c2017-06-22 15:08:55 -0700412 'src/core/lib/surface/alarm_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700413 'src/core/lib/surface/api_trace.h',
414 'src/core/lib/surface/call.h',
415 'src/core/lib/surface/call_test_only.h',
416 'src/core/lib/surface/channel.h',
417 'src/core/lib/surface/channel_init.h',
418 'src/core/lib/surface/channel_stack_type.h',
419 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700420 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700421 'src/core/lib/surface/event_string.h',
422 'src/core/lib/surface/init.h',
423 'src/core/lib/surface/lame_client.h',
424 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800425 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700426 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700427 'src/core/lib/transport/byte_stream.h',
428 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800429 'src/core/lib/transport/error_utils.h',
430 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700431 'src/core/lib/transport/metadata.h',
432 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700433 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700434 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700435 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800436 'src/core/lib/transport/status_conversion.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400437 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700438 'src/core/lib/transport/transport.h',
439 'src/core/lib/transport/transport_impl.h',
Craig Tiller1f477302017-05-05 11:01:25 -0700440 'src/core/lib/debug/trace.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700441 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700442 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
443 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700444 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700445 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
446 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700447 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700448 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
449 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
David Garcia Quintas0822d332017-09-06 17:40:42 -0700450 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h',
451 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700452 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700453 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700454 'src/core/ext/census/census_interface.h',
455 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700456 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700457 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700458 'src/core/ext/census/grpc_filter.h',
Vizerai0359e122017-04-28 20:06:58 -0700459 'src/core/ext/census/intrusive_hash_map.h',
Vizeraic1947ef2017-05-23 16:13:25 -0700460 'src/core/ext/census/intrusive_hash_map_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700461 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700462 'src/core/ext/census/resource.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700463 'src/core/ext/census/rpc_metric_id.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700464 'src/core/ext/census/trace_context.h',
Vizerai0e5b67f2017-01-20 14:02:18 -0800465 'src/core/ext/census/trace_label.h',
466 'src/core/ext/census/trace_propagation.h',
467 'src/core/ext/census/trace_status.h',
468 'src/core/ext/census/trace_string.h',
469 'src/core/ext/census/tracing.h',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700470 'src/core/ext/filters/max_age/max_age_filter.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700471 'src/core/ext/filters/message_size/message_size_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -0700472 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
473 'src/core/ext/filters/workarounds/workaround_utils.h',
Yash Tibrewal83062842017-09-21 18:56:08 -0700474 'src/core/lib/surface/init.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700475 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700476 'src/core/lib/channel/channel_args.cc',
477 'src/core/lib/channel/channel_stack.cc',
478 'src/core/lib/channel/channel_stack_builder.cc',
479 'src/core/lib/channel/connected_channel.cc',
480 'src/core/lib/channel/handshaker.cc',
481 'src/core/lib/channel/handshaker_factory.cc',
482 'src/core/lib/channel/handshaker_registry.cc',
483 'src/core/lib/compression/compression.cc',
484 'src/core/lib/compression/message_compress.cc',
485 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700486 'src/core/lib/compression/stream_compression_gzip.cc',
487 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700488 'src/core/lib/debug/stats.cc',
489 'src/core/lib/debug/stats_data.cc',
490 'src/core/lib/http/format_request.cc',
491 'src/core/lib/http/httpcli.cc',
492 'src/core/lib/http/parser.cc',
493 'src/core/lib/iomgr/call_combiner.cc',
494 'src/core/lib/iomgr/closure.cc',
495 'src/core/lib/iomgr/combiner.cc',
496 'src/core/lib/iomgr/endpoint.cc',
497 'src/core/lib/iomgr/endpoint_pair_posix.cc',
498 'src/core/lib/iomgr/endpoint_pair_uv.cc',
499 'src/core/lib/iomgr/endpoint_pair_windows.cc',
500 'src/core/lib/iomgr/error.cc',
501 'src/core/lib/iomgr/ev_epoll1_linux.cc',
502 'src/core/lib/iomgr/ev_epollex_linux.cc',
503 'src/core/lib/iomgr/ev_epollsig_linux.cc',
504 'src/core/lib/iomgr/ev_poll_posix.cc',
505 'src/core/lib/iomgr/ev_posix.cc',
506 'src/core/lib/iomgr/ev_windows.cc',
507 'src/core/lib/iomgr/exec_ctx.cc',
508 'src/core/lib/iomgr/executor.cc',
509 'src/core/lib/iomgr/gethostname_fallback.cc',
510 'src/core/lib/iomgr/gethostname_host_name_max.cc',
511 'src/core/lib/iomgr/gethostname_sysconf.cc',
512 'src/core/lib/iomgr/iocp_windows.cc',
513 'src/core/lib/iomgr/iomgr.cc',
514 'src/core/lib/iomgr/iomgr_posix.cc',
515 'src/core/lib/iomgr/iomgr_uv.cc',
516 'src/core/lib/iomgr/iomgr_windows.cc',
517 'src/core/lib/iomgr/is_epollexclusive_available.cc',
518 'src/core/lib/iomgr/load_file.cc',
519 'src/core/lib/iomgr/lockfree_event.cc',
520 'src/core/lib/iomgr/network_status_tracker.cc',
521 'src/core/lib/iomgr/polling_entity.cc',
522 'src/core/lib/iomgr/pollset_set_uv.cc',
523 'src/core/lib/iomgr/pollset_set_windows.cc',
524 'src/core/lib/iomgr/pollset_uv.cc',
525 'src/core/lib/iomgr/pollset_windows.cc',
526 'src/core/lib/iomgr/resolve_address_posix.cc',
527 'src/core/lib/iomgr/resolve_address_uv.cc',
528 'src/core/lib/iomgr/resolve_address_windows.cc',
529 'src/core/lib/iomgr/resource_quota.cc',
530 'src/core/lib/iomgr/sockaddr_utils.cc',
531 'src/core/lib/iomgr/socket_factory_posix.cc',
532 'src/core/lib/iomgr/socket_mutator.cc',
533 'src/core/lib/iomgr/socket_utils_common_posix.cc',
534 'src/core/lib/iomgr/socket_utils_linux.cc',
535 'src/core/lib/iomgr/socket_utils_posix.cc',
536 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700537 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700538 'src/core/lib/iomgr/socket_windows.cc',
539 'src/core/lib/iomgr/tcp_client_posix.cc',
540 'src/core/lib/iomgr/tcp_client_uv.cc',
541 'src/core/lib/iomgr/tcp_client_windows.cc',
542 'src/core/lib/iomgr/tcp_posix.cc',
543 'src/core/lib/iomgr/tcp_server_posix.cc',
544 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
545 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
546 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
547 'src/core/lib/iomgr/tcp_server_uv.cc',
548 'src/core/lib/iomgr/tcp_server_windows.cc',
549 'src/core/lib/iomgr/tcp_uv.cc',
550 'src/core/lib/iomgr/tcp_windows.cc',
551 'src/core/lib/iomgr/time_averaged_stats.cc',
552 'src/core/lib/iomgr/timer_generic.cc',
553 'src/core/lib/iomgr/timer_heap.cc',
554 'src/core/lib/iomgr/timer_manager.cc',
555 'src/core/lib/iomgr/timer_uv.cc',
556 'src/core/lib/iomgr/udp_server.cc',
557 'src/core/lib/iomgr/unix_sockets_posix.cc',
558 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
559 'src/core/lib/iomgr/wakeup_fd_cv.cc',
560 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
561 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
562 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
563 'src/core/lib/iomgr/wakeup_fd_posix.cc',
564 'src/core/lib/json/json.cc',
565 'src/core/lib/json/json_reader.cc',
566 'src/core/lib/json/json_string.cc',
567 'src/core/lib/json/json_writer.cc',
568 'src/core/lib/slice/b64.cc',
569 'src/core/lib/slice/percent_encoding.cc',
570 'src/core/lib/slice/slice.cc',
571 'src/core/lib/slice/slice_buffer.cc',
572 'src/core/lib/slice/slice_hash_table.cc',
573 'src/core/lib/slice/slice_intern.cc',
574 'src/core/lib/slice/slice_string_helpers.cc',
575 'src/core/lib/surface/alarm.cc',
576 'src/core/lib/surface/api_trace.cc',
577 'src/core/lib/surface/byte_buffer.cc',
578 'src/core/lib/surface/byte_buffer_reader.cc',
579 'src/core/lib/surface/call.cc',
580 'src/core/lib/surface/call_details.cc',
581 'src/core/lib/surface/call_log_batch.cc',
582 'src/core/lib/surface/channel.cc',
583 'src/core/lib/surface/channel_init.cc',
584 'src/core/lib/surface/channel_ping.cc',
585 'src/core/lib/surface/channel_stack_type.cc',
586 'src/core/lib/surface/completion_queue.cc',
587 'src/core/lib/surface/completion_queue_factory.cc',
588 'src/core/lib/surface/event_string.cc',
Craig Tiller8ebb5442017-04-07 16:01:55 -0700589 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700590 'src/core/lib/surface/metadata_array.cc',
591 'src/core/lib/surface/server.cc',
592 'src/core/lib/surface/validate_metadata.cc',
593 'src/core/lib/surface/version.cc',
594 'src/core/lib/transport/bdp_estimator.cc',
595 'src/core/lib/transport/byte_stream.cc',
596 'src/core/lib/transport/connectivity_state.cc',
597 'src/core/lib/transport/error_utils.cc',
598 'src/core/lib/transport/metadata.cc',
599 'src/core/lib/transport/metadata_batch.cc',
600 'src/core/lib/transport/pid_controller.cc',
601 'src/core/lib/transport/service_config.cc',
602 'src/core/lib/transport/static_metadata.cc',
603 'src/core/lib/transport/status_conversion.cc',
604 'src/core/lib/transport/timeout_encoding.cc',
605 'src/core/lib/transport/transport.cc',
606 'src/core/lib/transport/transport_op_string.cc',
607 'src/core/lib/debug/trace.cc',
608 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
609 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
610 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
611 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
612 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
613 'src/core/ext/transport/chttp2/transport/flow_control.cc',
614 'src/core/ext/transport/chttp2/transport/frame_data.cc',
615 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
616 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
617 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
618 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
619 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
620 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
621 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
622 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
623 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
624 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
625 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
626 'src/core/ext/transport/chttp2/transport/parsing.cc',
627 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
628 'src/core/ext/transport/chttp2/transport/stream_map.cc',
629 'src/core/ext/transport/chttp2/transport/varint.cc',
630 'src/core/ext/transport/chttp2/transport/writing.cc',
631 'src/core/ext/transport/chttp2/alpn/alpn.cc',
632 'src/core/ext/filters/http/client/http_client_filter.cc',
633 'src/core/ext/filters/http/http_filters_plugin.cc',
634 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
635 'src/core/ext/filters/http/server/http_server_filter.cc',
636 'src/core/lib/http/httpcli_security_connector.cc',
637 'src/core/lib/security/context/security_context.cc',
638 'src/core/lib/security/credentials/composite/composite_credentials.cc',
639 'src/core/lib/security/credentials/credentials.cc',
640 'src/core/lib/security/credentials/credentials_metadata.cc',
641 'src/core/lib/security/credentials/fake/fake_credentials.cc',
642 'src/core/lib/security/credentials/google_default/credentials_generic.cc',
643 'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
644 'src/core/lib/security/credentials/iam/iam_credentials.cc',
645 'src/core/lib/security/credentials/jwt/json_token.cc',
646 'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
647 'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
648 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
649 'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
650 'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
651 'src/core/lib/security/transport/client_auth_filter.cc',
652 'src/core/lib/security/transport/lb_targets_info.cc',
653 'src/core/lib/security/transport/secure_endpoint.cc',
654 'src/core/lib/security/transport/security_connector.cc',
655 'src/core/lib/security/transport/security_handshaker.cc',
656 'src/core/lib/security/transport/server_auth_filter.cc',
657 'src/core/lib/security/transport/tsi_error.cc',
658 'src/core/lib/security/util/json_util.cc',
659 'src/core/lib/surface/init_secure.cc',
660 'src/core/tsi/fake_transport_security.cc',
661 'src/core/tsi/gts_transport_security.cc',
662 'src/core/tsi/ssl_transport_security.cc',
663 'src/core/tsi/transport_security_grpc.cc',
664 'src/core/tsi/transport_security.cc',
665 'src/core/tsi/transport_security_adapter.cc',
666 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
667 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
668 'src/core/ext/filters/client_channel/channel_connectivity.cc',
669 'src/core/ext/filters/client_channel/client_channel.cc',
670 'src/core/ext/filters/client_channel/client_channel_factory.cc',
671 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
672 'src/core/ext/filters/client_channel/connector.cc',
673 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
674 'src/core/ext/filters/client_channel/http_proxy.cc',
675 'src/core/ext/filters/client_channel/lb_policy.cc',
676 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
677 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
678 'src/core/ext/filters/client_channel/parse_address.cc',
679 'src/core/ext/filters/client_channel/proxy_mapper.cc',
680 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
681 'src/core/ext/filters/client_channel/resolver.cc',
682 'src/core/ext/filters/client_channel/resolver_factory.cc',
683 'src/core/ext/filters/client_channel/resolver_registry.cc',
684 'src/core/ext/filters/client_channel/retry_throttle.cc',
685 'src/core/ext/filters/client_channel/subchannel.cc',
686 'src/core/ext/filters/client_channel/subchannel_index.cc',
687 'src/core/ext/filters/client_channel/uri_parser.cc',
688 'src/core/ext/filters/deadline/deadline_filter.cc',
689 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
690 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
691 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
692 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
693 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
694 'src/core/ext/transport/inproc/inproc_plugin.cc',
695 'src/core/ext/transport/inproc/inproc_transport.cc',
696 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
697 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
698 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc',
699 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
700 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700701 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700702 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
703 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
704 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
705 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
706 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
707 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
708 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
709 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
710 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
711 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc',
712 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc',
713 'src/core/ext/census/base_resources.cc',
714 'src/core/ext/census/context.cc',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700715 'src/core/ext/census/gen/census.pb.c',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700716 'src/core/ext/census/gen/trace_context.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700717 'src/core/ext/census/grpc_context.cc',
718 'src/core/ext/census/grpc_filter.cc',
719 'src/core/ext/census/grpc_plugin.cc',
720 'src/core/ext/census/initialize.cc',
721 'src/core/ext/census/intrusive_hash_map.cc',
722 'src/core/ext/census/mlog.cc',
723 'src/core/ext/census/operation.cc',
724 'src/core/ext/census/placeholders.cc',
725 'src/core/ext/census/resource.cc',
726 'src/core/ext/census/trace_context.cc',
727 'src/core/ext/census/tracing.cc',
728 'src/core/ext/filters/max_age/max_age_filter.cc',
729 'src/core/ext/filters/message_size/message_size_filter.cc',
730 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
731 'src/core/ext/filters/workarounds/workaround_utils.cc',
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700732 'src/core/plugin_registry/grpc_plugin_registry.cc'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700733
734 ss.private_header_files = 'src/core/lib/profiling/timers.h',
Craig Tiller9202b3f2017-03-12 22:30:38 -0700735 'src/core/lib/support/arena.h',
Craig Tiller4d780a52017-04-12 13:47:18 -0700736 'src/core/lib/support/atomic.h',
737 'src/core/lib/support/atomic_with_atm.h',
738 'src/core/lib/support/atomic_with_std.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700739 'src/core/lib/support/env.h',
Craig Tiller92226062017-10-08 21:16:12 -0700740 'src/core/lib/support/manual_constructor.h',
Craig Tillerb3d70102017-03-31 14:17:09 -0700741 'src/core/lib/support/memory.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700742 'src/core/lib/support/mpscq.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700743 'src/core/lib/support/murmur_hash.h',
Craig Tilleredbf2b92017-02-27 07:24:00 -0800744 'src/core/lib/support/spinlock.h',
Ken Paysona4710a02017-07-10 16:49:59 -0700745 'src/core/lib/support/stack_lockfree.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700746 'src/core/lib/support/string.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700747 'src/core/lib/support/string_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700748 'src/core/lib/support/time_precise.h',
749 'src/core/lib/support/tmpfile.h',
Vijay Pai42807252017-07-28 15:08:24 -0700750 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
751 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
752 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
753 'src/core/ext/transport/chttp2/transport/frame.h',
754 'src/core/ext/transport/chttp2/transport/frame_data.h',
755 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
756 'src/core/ext/transport/chttp2/transport/frame_ping.h',
757 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
758 'src/core/ext/transport/chttp2/transport/frame_settings.h',
759 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
760 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
761 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
762 'src/core/ext/transport/chttp2/transport/hpack_table.h',
763 'src/core/ext/transport/chttp2/transport/http2_settings.h',
764 'src/core/ext/transport/chttp2/transport/huffsyms.h',
765 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
766 'src/core/ext/transport/chttp2/transport/internal.h',
767 'src/core/ext/transport/chttp2/transport/stream_map.h',
768 'src/core/ext/transport/chttp2/transport/varint.h',
769 'src/core/ext/transport/chttp2/alpn/alpn.h',
770 'src/core/ext/filters/http/client/http_client_filter.h',
771 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
772 'src/core/ext/filters/http/server/http_server_filter.h',
773 'src/core/lib/security/context/security_context.h',
774 'src/core/lib/security/credentials/composite/composite_credentials.h',
775 'src/core/lib/security/credentials/credentials.h',
776 'src/core/lib/security/credentials/fake/fake_credentials.h',
777 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
778 'src/core/lib/security/credentials/iam/iam_credentials.h',
779 'src/core/lib/security/credentials/jwt/json_token.h',
780 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
781 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
782 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
783 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
784 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
785 'src/core/lib/security/transport/auth_filters.h',
786 'src/core/lib/security/transport/lb_targets_info.h',
787 'src/core/lib/security/transport/secure_endpoint.h',
788 'src/core/lib/security/transport/security_connector.h',
789 'src/core/lib/security/transport/security_handshaker.h',
790 'src/core/lib/security/transport/tsi_error.h',
791 'src/core/lib/security/util/json_util.h',
792 'src/core/tsi/fake_transport_security.h',
793 'src/core/tsi/gts_transport_security.h',
794 'src/core/tsi/ssl_transport_security.h',
795 'src/core/tsi/ssl_types.h',
jiangtaoli201625d6fd82017-08-09 11:15:04 -0700796 'src/core/tsi/transport_security_grpc.h',
Vijay Pai42807252017-07-28 15:08:24 -0700797 'src/core/tsi/transport_security.h',
798 'src/core/tsi/transport_security_adapter.h',
799 'src/core/tsi/transport_security_interface.h',
800 'src/core/ext/transport/chttp2/server/chttp2_server.h',
801 'src/core/ext/filters/client_channel/client_channel.h',
802 'src/core/ext/filters/client_channel/client_channel_factory.h',
803 'src/core/ext/filters/client_channel/connector.h',
804 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
805 'src/core/ext/filters/client_channel/http_proxy.h',
806 'src/core/ext/filters/client_channel/lb_policy.h',
807 'src/core/ext/filters/client_channel/lb_policy_factory.h',
808 'src/core/ext/filters/client_channel/lb_policy_registry.h',
809 'src/core/ext/filters/client_channel/parse_address.h',
810 'src/core/ext/filters/client_channel/proxy_mapper.h',
811 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
812 'src/core/ext/filters/client_channel/resolver.h',
813 'src/core/ext/filters/client_channel/resolver_factory.h',
814 'src/core/ext/filters/client_channel/resolver_registry.h',
815 'src/core/ext/filters/client_channel/retry_throttle.h',
816 'src/core/ext/filters/client_channel/subchannel.h',
817 'src/core/ext/filters/client_channel/subchannel_index.h',
818 'src/core/ext/filters/client_channel/uri_parser.h',
819 'src/core/ext/filters/deadline/deadline_filter.h',
820 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
821 'src/core/ext/transport/inproc/inproc_transport.h',
Craig Tiller2014a372017-07-21 15:36:11 -0700822 'src/core/lib/backoff/backoff.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700823 'src/core/lib/channel/channel_args.h',
824 'src/core/lib/channel/channel_stack.h',
825 'src/core/lib/channel/channel_stack_builder.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700826 'src/core/lib/channel/connected_channel.h',
827 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700828 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800829 'src/core/lib/channel/handshaker_factory.h',
830 'src/core/lib/channel/handshaker_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700831 'src/core/lib/compression/algorithm_metadata.h',
832 'src/core/lib/compression/message_compress.h',
Muxi Yane87a7e12017-06-29 16:53:24 -0700833 'src/core/lib/compression/stream_compression.h',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700834 'src/core/lib/compression/stream_compression_gzip.h',
835 'src/core/lib/compression/stream_compression_identity.h',
Craig Tiller6e739742017-08-31 11:22:52 -0700836 'src/core/lib/debug/stats.h',
837 'src/core/lib/debug/stats_data.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700838 'src/core/lib/http/format_request.h',
839 'src/core/lib/http/httpcli.h',
840 'src/core/lib/http/parser.h',
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700841 'src/core/lib/iomgr/block_annotate.h',
Mark D. Roth76e264b2017-08-25 09:03:33 -0700842 'src/core/lib/iomgr/call_combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700843 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700844 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700845 'src/core/lib/iomgr/endpoint.h',
846 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700847 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800848 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700849 'src/core/lib/iomgr/ev_epoll1_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700850 'src/core/lib/iomgr/ev_epollex_linux.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700851 'src/core/lib/iomgr/ev_epollsig_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700852 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700853 'src/core/lib/iomgr/ev_posix.h',
854 'src/core/lib/iomgr/exec_ctx.h',
855 'src/core/lib/iomgr/executor.h',
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700856 'src/core/lib/iomgr/gethostname.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700857 'src/core/lib/iomgr/iocp_windows.h',
858 'src/core/lib/iomgr/iomgr.h',
859 'src/core/lib/iomgr/iomgr_internal.h',
860 'src/core/lib/iomgr/iomgr_posix.h',
murgatroid99b8e07ad2017-07-18 13:20:55 -0700861 'src/core/lib/iomgr/iomgr_uv.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700862 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700863 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700864 'src/core/lib/iomgr/lockfree_event.h',
Yuchen Zengf630ff22017-07-25 13:28:45 -0700865 'src/core/lib/iomgr/nameser.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700866 'src/core/lib/iomgr/network_status_tracker.h',
867 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700868 'src/core/lib/iomgr/pollset.h',
869 'src/core/lib/iomgr/pollset_set.h',
870 'src/core/lib/iomgr/pollset_set_windows.h',
murgatroid999030c812016-09-16 13:25:08 -0700871 'src/core/lib/iomgr/pollset_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700872 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700873 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700874 'src/core/lib/iomgr/resolve_address.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700875 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700876 'src/core/lib/iomgr/sockaddr.h',
877 'src/core/lib/iomgr/sockaddr_posix.h',
878 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700879 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500880 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700881 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700882 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700883 'src/core/lib/iomgr/socket_utils_posix.h',
884 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700885 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700886 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700887 'src/core/lib/iomgr/tcp_client_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700888 'src/core/lib/iomgr/tcp_posix.h',
889 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700890 'src/core/lib/iomgr/tcp_server_utils_posix.h',
murgatroid999030c812016-09-16 13:25:08 -0700891 'src/core/lib/iomgr/tcp_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700892 'src/core/lib/iomgr/tcp_windows.h',
893 'src/core/lib/iomgr/time_averaged_stats.h',
894 'src/core/lib/iomgr/timer.h',
murgatroid999030c812016-09-16 13:25:08 -0700895 'src/core/lib/iomgr/timer_generic.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700896 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -0700897 'src/core/lib/iomgr/timer_manager.h',
murgatroid999030c812016-09-16 13:25:08 -0700898 'src/core/lib/iomgr/timer_uv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700899 'src/core/lib/iomgr/udp_server.h',
900 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700901 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700902 'src/core/lib/iomgr/wakeup_fd_pipe.h',
903 'src/core/lib/iomgr/wakeup_fd_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700904 'src/core/lib/json/json.h',
905 'src/core/lib/json/json_common.h',
906 'src/core/lib/json/json_reader.h',
907 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700908 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700909 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800910 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800911 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700912 'src/core/lib/slice/slice_string_helpers.h',
Sree Kuchibhotlaa8cf05c2017-06-22 15:08:55 -0700913 'src/core/lib/surface/alarm_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700914 'src/core/lib/surface/api_trace.h',
915 'src/core/lib/surface/call.h',
916 'src/core/lib/surface/call_test_only.h',
917 'src/core/lib/surface/channel.h',
918 'src/core/lib/surface/channel_init.h',
919 'src/core/lib/surface/channel_stack_type.h',
920 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700921 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700922 'src/core/lib/surface/event_string.h',
923 'src/core/lib/surface/init.h',
924 'src/core/lib/surface/lame_client.h',
925 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800926 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700927 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700928 'src/core/lib/transport/byte_stream.h',
929 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800930 'src/core/lib/transport/error_utils.h',
931 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700932 'src/core/lib/transport/metadata.h',
933 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700934 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700935 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700936 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800937 'src/core/lib/transport/status_conversion.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400938 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700939 'src/core/lib/transport/transport.h',
940 'src/core/lib/transport/transport_impl.h',
Craig Tiller1f477302017-05-05 11:01:25 -0700941 'src/core/lib/debug/trace.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700942 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700943 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
944 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700945 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700946 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
947 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
David Garcia Quintas87d5a312017-06-06 19:45:58 -0700948 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700949 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
950 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
David Garcia Quintas0822d332017-09-06 17:40:42 -0700951 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h',
952 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700953 'src/core/ext/census/aggregation.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700954 'src/core/ext/census/base_resources.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700955 'src/core/ext/census/census_interface.h',
956 'src/core/ext/census/census_rpc_stats.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700957 'src/core/ext/census/gen/census.pb.h',
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700958 'src/core/ext/census/gen/trace_context.pb.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700959 'src/core/ext/census/grpc_filter.h',
Vizerai0359e122017-04-28 20:06:58 -0700960 'src/core/ext/census/intrusive_hash_map.h',
Vizeraic1947ef2017-05-23 16:13:25 -0700961 'src/core/ext/census/intrusive_hash_map_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700962 'src/core/ext/census/mlog.h',
Alistair Veitch3abd27e2016-07-21 17:29:04 -0700963 'src/core/ext/census/resource.h',
Vizerai12d1fc62016-09-09 14:22:19 -0700964 'src/core/ext/census/rpc_metric_id.h',
Vizerai0e5b67f2017-01-20 14:02:18 -0800965 'src/core/ext/census/trace_context.h',
966 'src/core/ext/census/trace_label.h',
967 'src/core/ext/census/trace_propagation.h',
968 'src/core/ext/census/trace_status.h',
969 'src/core/ext/census/trace_string.h',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700970 'src/core/ext/census/tracing.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700971 'src/core/ext/filters/max_age/max_age_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -0700972 'src/core/ext/filters/message_size/message_size_filter.h',
973 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
974 'src/core/ext/filters/workarounds/workaround_utils.h'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700975 end
Nicolas "Pixel" Noble20b83332016-07-21 19:28:38 +0200976
Muxi Yan37480eb2016-07-14 16:22:03 -0700977 s.subspec 'Cronet-Interface' do |ss|
978 ss.header_mappings_dir = 'include/grpc'
Muxi Yane38b0122017-03-16 20:53:41 -0700979 ss.source_files = 'include/grpc/grpc_cronet.h'
Muxi Yan37480eb2016-07-14 16:22:03 -0700980 end
981
Muxi Yanf8372c62016-07-29 09:58:55 -0700982 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -0700983 ss.header_mappings_dir = '.'
Muxi Yane2de92f2017-01-31 16:30:52 -0800984
985 ss.dependency "#{s.name}/Interface", version
986 ss.dependency "#{s.name}/Implementation", version
987 ss.dependency "#{s.name}/Cronet-Interface", version
988
Yash Tibrewaldabce0a2017-10-04 11:58:02 -0700989 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc',
990 'src/core/ext/transport/cronet/transport/cronet_transport.{cc,h}',
Muxi Yanf0a12692017-01-31 16:36:56 -0800991 'third_party/objective_c/Cronet/bidirectional_stream_c.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -0700992 end
993
Muxi Yanf8372c62016-07-29 09:58:55 -0700994 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -0700995 ss.header_mappings_dir = '.'
996
Muxi Yane2de92f2017-01-31 16:30:52 -0800997 ss.dependency "#{s.name}/Interface", version
998 ss.dependency "#{s.name}/Implementation", version
999
Muxi Yan2a5072e2016-07-27 15:10:22 -07001000 ss.source_files = 'test/core/end2end/cq_verifier.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -07001001 'test/core/end2end/end2end_tests.{c,h}',
Muxi Yan53c4c282016-11-08 13:34:02 -08001002 'test/core/end2end/end2end_test_utils.c',
Muxi Yan37480eb2016-07-14 16:22:03 -07001003 'test/core/end2end/tests/*.{c,h}',
Muxi Yanf0a6fd82017-08-31 14:31:03 -07001004 'test/core/end2end/fixtures/*.h',
Muxi Yan37480eb2016-07-14 16:22:03 -07001005 'test/core/end2end/data/*.{c,h}',
Muxi Yane38b0122017-03-16 20:53:41 -07001006 'test/core/util/debugger_macros.{c,h}',
Muxi Yan37480eb2016-07-14 16:22:03 -07001007 'test/core/util/test_config.{c,h}',
1008 'test/core/util/port.h',
Craig Tiller46ab5f52017-02-28 08:40:19 -08001009 'test/core/util/port.c',
Muxi Yan37480eb2016-07-14 16:22:03 -07001010 'test/core/util/port_server_client.{c,h}'
Muxi Yan37480eb2016-07-14 16:22:03 -07001011 end
Muxi Yan43c47102017-07-06 20:51:49 -07001012
1013 # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
1014 s.prepare_command = <<-END_OF_COMMAND
1015 find src/core/ -type f -exec sed -E -i '.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\;
1016 END_OF_COMMAND
Jorge Canizalese487a722016-04-30 12:05:26 -07001017end