blob: 71f59b92420e7641907a6bdf38fc09b753dfa1c3 [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'
Mehrdad Afshari9073ea02018-02-22 22:21:33 -080025 version = '1.11.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 Yan3d2081b2017-10-31 10:27:46 -070037 # gRPC podspecs depend on fix for https://github.com/CocoaPods/CocoaPods/issues/6024,
38 # which was released in Cocoapods v1.2.0.
39 s.cocoapods_version = '>= 1.2.0'
40
Muxi Yan37d3fba2017-02-28 16:14:40 -080041 s.ios.deployment_target = '7.0'
Jorge Canizalese487a722016-04-30 12:05:26 -070042 s.osx.deployment_target = '10.9'
43 s.requires_arc = false
44
45 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070046
Jorge Canizalescc074d92016-06-28 09:52:43 -070047 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
48 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
49 # <gRPC-Core/grpc.h>`.
50 s.module_name = name
51
52 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
53 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
54 #
55 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizales37750742016-06-08 20:10:20 -070056 s.header_mappings_dir = 'include/grpc'
57
Jorge Canizalescc074d92016-06-28 09:52:43 -070058 # The above has an undesired effect when creating a static library: It forces users to write
59 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
60 # because Cocoapods lets omit the pod name when including headers of static libraries, the
61 # following lets users write `#include <grpc/grpc.h>`.
62 s.header_dir = name
Jorge Canizales37750742016-06-08 20:10:20 -070063
Jorge Canizalescc074d92016-06-28 09:52:43 -070064 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales547f0652016-05-01 19:52:21 -070065 s.module_map = 'include/grpc/module.modulemap'
66
Jorge Canizalescc074d92016-06-28 09:52:43 -070067 # To compile the library, we need the user headers search path (quoted includes) to point to the
68 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
69 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
70 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
71 #
72 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
73 # is taken as an implementation detail. We've asked for an alternative, and have been told that
74 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
75 #
76 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
77 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
78 # that assumption is wrong. In such case, the following settings need to be reset with the
79 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
80 # Podfile; see `src/objective-c/tests/Podfile` for an example.
81 src_root = '$(PODS_ROOT)/gRPC-Core'
82 s.pod_target_xcconfig = {
83 'GRPC_SRC_ROOT' => src_root,
84 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
85 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
86 # If we don't set these two settings, `include/grpc/support/time.h` and
Mark D. Rothdbdf4952018-01-18 11:21:12 -080087 # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
Jorge Canizalescc074d92016-06-28 09:52:43 -070088 # build.
89 'USE_HEADERMAP' => 'NO',
90 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
Muxi Yan9ecc2152017-09-29 17:08:59 -070091 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"',
Muxi Yan94d669e2017-10-22 14:56:10 -070092 'CLANG_WARN_STRICT_PROTOTYPES' => 'NO',
Jorge Canizalescc074d92016-06-28 09:52:43 -070093 }
Jorge Canizalese487a722016-04-30 12:05:26 -070094
Muxi Yane04089e2016-07-15 16:35:20 -070095 s.default_subspecs = 'Interface', 'Implementation'
Yihua Zhangeaf64862018-03-06 21:40:45 -080096 s.compiler_flags = '-DGRPC_ARES=0', '-DPB_FIELD_16BIT'
Muxi Yanae6bca42017-10-19 18:14:02 -070097 s.libraries = 'c++'
Muxi Yane04089e2016-07-15 16:35:20 -070098
Jorge Canizalescc074d92016-06-28 09:52:43 -070099 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
100 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
101 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
102 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
103 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
104 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
105 # making the linter happy.
106 #
107 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
108 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
109 s.subspec 'Interface' do |ss|
110 ss.header_mappings_dir = 'include/grpc'
111
112 ss.source_files = 'include/grpc/support/alloc.h',
113 'include/grpc/support/atm.h',
114 'include/grpc/support/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700115 'include/grpc/support/atm_gcc_sync.h',
116 'include/grpc/support/atm_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700117 'include/grpc/support/cpu.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700118 'include/grpc/support/log.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700119 'include/grpc/support/log_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700120 'include/grpc/support/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700121 'include/grpc/support/string_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700122 'include/grpc/support/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700123 'include/grpc/support/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700124 'include/grpc/support/sync_generic.h',
125 'include/grpc/support/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700126 'include/grpc/support/sync_windows.h',
Vijay Paic7456902018-02-12 10:28:24 -0800127 'include/grpc/support/thd_id.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700128 'include/grpc/support/time.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700129 'include/grpc/impl/codegen/atm.h',
130 'include/grpc/impl/codegen/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700131 'include/grpc/impl/codegen/atm_gcc_sync.h',
132 'include/grpc/impl/codegen/atm_windows.h',
Ken Payson9714e032017-10-10 11:18:49 -0700133 'include/grpc/impl/codegen/fork.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800134 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700135 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700136 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700137 'include/grpc/impl/codegen/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700138 'include/grpc/impl/codegen/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700139 'include/grpc/impl/codegen/sync_generic.h',
140 'include/grpc/impl/codegen/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700141 'include/grpc/impl/codegen/sync_windows.h',
Vijay Paiefce6e12017-09-14 09:07:50 -0700142 'include/grpc/impl/codegen/byte_buffer.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700143 'include/grpc/impl/codegen/byte_buffer_reader.h',
144 'include/grpc/impl/codegen/compression_types.h',
145 'include/grpc/impl/codegen/connectivity_state.h',
146 'include/grpc/impl/codegen/grpc_types.h',
147 'include/grpc/impl/codegen/propagation_bits.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700148 'include/grpc/impl/codegen/slice.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700149 'include/grpc/impl/codegen/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700150 'include/grpc/impl/codegen/atm.h',
151 'include/grpc/impl/codegen/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700152 'include/grpc/impl/codegen/atm_gcc_sync.h',
153 'include/grpc/impl/codegen/atm_windows.h',
Ken Payson9714e032017-10-10 11:18:49 -0700154 'include/grpc/impl/codegen/fork.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800155 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700156 'include/grpc/impl/codegen/gpr_types.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700157 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700158 'include/grpc/impl/codegen/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700159 'include/grpc/impl/codegen/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700160 'include/grpc/impl/codegen/sync_generic.h',
161 'include/grpc/impl/codegen/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700162 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700163 'include/grpc/grpc_security.h',
Vijay Pai42807252017-07-28 15:08:24 -0700164 'include/grpc/byte_buffer.h',
165 'include/grpc/byte_buffer_reader.h',
166 'include/grpc/compression.h',
Ken Payson9714e032017-10-10 11:18:49 -0700167 'include/grpc/fork.h',
Vijay Pai42807252017-07-28 15:08:24 -0700168 'include/grpc/grpc.h',
169 'include/grpc/grpc_posix.h',
170 'include/grpc/grpc_security_constants.h',
171 'include/grpc/load_reporting.h',
172 'include/grpc/slice.h',
173 'include/grpc/slice_buffer.h',
174 'include/grpc/status.h',
175 'include/grpc/support/workaround_list.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700176 'include/grpc/census.h'
177 end
178 s.subspec 'Implementation' do |ss|
179 ss.header_mappings_dir = '.'
180 ss.libraries = 'z'
181 ss.dependency "#{s.name}/Interface", version
Matt Kwong74958c52018-01-30 11:52:02 -0800182 ss.dependency 'BoringSSL', '~> 10.0'
Muxi Yanad272c92017-06-29 16:18:43 -0700183 ss.dependency 'nanopb', '~> 0.3'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700184
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800185 ss.source_files = 'src/core/lib/gpr/arena.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800186 'src/core/lib/gpr/env.h',
187 'src/core/lib/gpr/fork.h',
Vijay Paiae376bf2018-01-25 22:54:02 -0800188 'src/core/lib/gpr/host_port.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800189 'src/core/lib/gpr/mpscq.h',
190 'src/core/lib/gpr/murmur_hash.h',
191 'src/core/lib/gpr/spinlock.h',
192 'src/core/lib/gpr/string.h',
193 'src/core/lib/gpr/string_windows.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800194 'src/core/lib/gpr/time_precise.h',
Vijay Paib6cf1232018-01-25 21:02:26 -0800195 'src/core/lib/gpr/tls.h',
196 'src/core/lib/gpr/tls_gcc.h',
197 'src/core/lib/gpr/tls_msvc.h',
198 'src/core/lib/gpr/tls_pthread.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800199 'src/core/lib/gpr/tmpfile.h',
Vijay Paid4d0a302018-01-25 13:24:03 -0800200 'src/core/lib/gpr/useful.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800201 'src/core/lib/gprpp/abstract.h',
202 'src/core/lib/gprpp/atomic.h',
203 'src/core/lib/gprpp/atomic_with_atm.h',
204 'src/core/lib/gprpp/atomic_with_std.h',
205 'src/core/lib/gprpp/manual_constructor.h',
206 'src/core/lib/gprpp/memory.h',
Vijay Paida693552018-02-16 22:59:03 -0800207 'src/core/lib/gprpp/thd.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800208 'src/core/lib/profiling/timers.h',
209 'src/core/lib/gpr/alloc.cc',
210 'src/core/lib/gpr/arena.cc',
211 'src/core/lib/gpr/atm.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800212 'src/core/lib/gpr/cpu_iphone.cc',
213 'src/core/lib/gpr/cpu_linux.cc',
214 'src/core/lib/gpr/cpu_posix.cc',
215 'src/core/lib/gpr/cpu_windows.cc',
216 'src/core/lib/gpr/env_linux.cc',
217 'src/core/lib/gpr/env_posix.cc',
218 'src/core/lib/gpr/env_windows.cc',
219 'src/core/lib/gpr/fork.cc',
220 'src/core/lib/gpr/host_port.cc',
221 'src/core/lib/gpr/log.cc',
222 'src/core/lib/gpr/log_android.cc',
223 'src/core/lib/gpr/log_linux.cc',
224 'src/core/lib/gpr/log_posix.cc',
225 'src/core/lib/gpr/log_windows.cc',
226 'src/core/lib/gpr/mpscq.cc',
227 'src/core/lib/gpr/murmur_hash.cc',
228 'src/core/lib/gpr/string.cc',
229 'src/core/lib/gpr/string_posix.cc',
230 'src/core/lib/gpr/string_util_windows.cc',
231 'src/core/lib/gpr/string_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800232 'src/core/lib/gpr/sync.cc',
233 'src/core/lib/gpr/sync_posix.cc',
234 'src/core/lib/gpr/sync_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800235 'src/core/lib/gpr/time.cc',
236 'src/core/lib/gpr/time_posix.cc',
237 'src/core/lib/gpr/time_precise.cc',
238 'src/core/lib/gpr/time_windows.cc',
239 'src/core/lib/gpr/tls_pthread.cc',
240 'src/core/lib/gpr/tmpfile_msys.cc',
241 'src/core/lib/gpr/tmpfile_posix.cc',
242 'src/core/lib/gpr/tmpfile_windows.cc',
243 'src/core/lib/gpr/wrap_memcpy.cc',
Vijay Paida693552018-02-16 22:59:03 -0800244 'src/core/lib/gprpp/thd_posix.cc',
245 'src/core/lib/gprpp/thd_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700246 'src/core/lib/profiling/basic_timers.cc',
247 'src/core/lib/profiling/stap_timers.cc',
Vijay Pai42807252017-07-28 15:08:24 -0700248 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
249 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
250 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
Craig Tiller32736482017-10-12 22:02:28 -0700251 'src/core/ext/transport/chttp2/transport/flow_control.h',
Vijay Pai42807252017-07-28 15:08:24 -0700252 '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',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800273 'src/core/lib/security/credentials/alts/alts_credentials.h',
Vijay Pai42807252017-07-28 15:08:24 -0700274 'src/core/lib/security/credentials/composite/composite_credentials.h',
275 'src/core/lib/security/credentials/credentials.h',
276 'src/core/lib/security/credentials/fake/fake_credentials.h',
277 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
278 'src/core/lib/security/credentials/iam/iam_credentials.h',
279 'src/core/lib/security/credentials/jwt/json_token.h',
280 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
281 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
282 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
283 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
284 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800285 'src/core/lib/security/security_connector/alts_security_connector.h',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800286 'src/core/lib/security/security_connector/security_connector.h',
Vijay Pai42807252017-07-28 15:08:24 -0700287 'src/core/lib/security/transport/auth_filters.h',
Vijay Pai42807252017-07-28 15:08:24 -0700288 'src/core/lib/security/transport/secure_endpoint.h',
Vijay Pai42807252017-07-28 15:08:24 -0700289 'src/core/lib/security/transport/security_handshaker.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800290 'src/core/lib/security/transport/target_authority_table.h',
Vijay Pai42807252017-07-28 15:08:24 -0700291 'src/core/lib/security/transport/tsi_error.h',
292 'src/core/lib/security/util/json_util.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800293 'src/core/tsi/alts/crypt/gsec.h',
294 'src/core/tsi/alts/frame_protector/alts_counter.h',
295 'src/core/tsi/alts/frame_protector/alts_crypter.h',
296 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
297 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
298 'src/core/tsi/alts/frame_protector/frame_handler.h',
299 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
300 'src/core/tsi/alts/handshaker/alts_tsi_event.h',
301 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
302 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
303 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
304 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
305 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
306 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
307 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
308 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
309 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
310 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
311 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
312 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
313 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
314 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
315 'src/core/tsi/alts/handshaker/altscontext.pb.h',
316 'src/core/tsi/alts/handshaker/handshaker.pb.h',
317 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
Vijay Pai42807252017-07-28 15:08:24 -0700318 'src/core/tsi/transport_security.h',
319 'src/core/tsi/transport_security_adapter.h',
320 'src/core/tsi/transport_security_interface.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800321 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700322 'src/core/ext/filters/client_channel/backup_poller.h',
Vijay Pai42807252017-07-28 15:08:24 -0700323 'src/core/ext/filters/client_channel/client_channel.h',
324 'src/core/ext/filters/client_channel/client_channel_factory.h',
325 'src/core/ext/filters/client_channel/connector.h',
326 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
327 'src/core/ext/filters/client_channel/http_proxy.h',
328 'src/core/ext/filters/client_channel/lb_policy.h',
329 'src/core/ext/filters/client_channel/lb_policy_factory.h',
330 'src/core/ext/filters/client_channel/lb_policy_registry.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800331 'src/core/ext/filters/client_channel/method_params.h',
Vijay Pai42807252017-07-28 15:08:24 -0700332 'src/core/ext/filters/client_channel/parse_address.h',
333 'src/core/ext/filters/client_channel/proxy_mapper.h',
334 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
335 'src/core/ext/filters/client_channel/resolver.h',
336 'src/core/ext/filters/client_channel/resolver_factory.h',
337 'src/core/ext/filters/client_channel/resolver_registry.h',
338 'src/core/ext/filters/client_channel/retry_throttle.h',
339 'src/core/ext/filters/client_channel/subchannel.h',
340 'src/core/ext/filters/client_channel/subchannel_index.h',
341 'src/core/ext/filters/client_channel/uri_parser.h',
342 'src/core/ext/filters/deadline/deadline_filter.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800343 'src/core/tsi/alts_transport_security.h',
344 'src/core/tsi/fake_transport_security.h',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700345 'src/core/tsi/ssl/session_cache/ssl_session.h',
346 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800347 'src/core/tsi/ssl_transport_security.h',
348 'src/core/tsi/ssl_types.h',
349 'src/core/tsi/transport_security_grpc.h',
350 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Vijay Pai42807252017-07-28 15:08:24 -0700351 'src/core/ext/transport/inproc/inproc_transport.h',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800352 'src/core/lib/avl/avl.h',
Craig Tiller2014a372017-07-21 15:36:11 -0700353 'src/core/lib/backoff/backoff.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700354 'src/core/lib/channel/channel_args.h',
355 'src/core/lib/channel/channel_stack.h',
356 'src/core/lib/channel/channel_stack_builder.h',
ncteisen3b42f832018-03-19 13:22:35 -0700357 'src/core/lib/channel/channel_trace.h',
358 'src/core/lib/channel/channel_trace_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700359 'src/core/lib/channel/connected_channel.h',
360 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700361 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800362 'src/core/lib/channel/handshaker_factory.h',
363 'src/core/lib/channel/handshaker_registry.h',
ncteisen3b42f832018-03-19 13:22:35 -0700364 'src/core/lib/channel/status_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700365 'src/core/lib/compression/algorithm_metadata.h',
Muxi Yan92d1bc12017-09-16 10:09:58 -0700366 'src/core/lib/compression/compression_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700367 'src/core/lib/compression/message_compress.h',
Muxi Yane87a7e12017-06-29 16:53:24 -0700368 'src/core/lib/compression/stream_compression.h',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700369 'src/core/lib/compression/stream_compression_gzip.h',
370 'src/core/lib/compression/stream_compression_identity.h',
Craig Tiller6e739742017-08-31 11:22:52 -0700371 'src/core/lib/debug/stats.h',
372 'src/core/lib/debug/stats_data.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800373 'src/core/lib/gprpp/debug_location.h',
374 'src/core/lib/gprpp/inlined_vector.h',
375 'src/core/lib/gprpp/orphanable.h',
376 'src/core/lib/gprpp/ref_counted.h',
377 'src/core/lib/gprpp/ref_counted_ptr.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700378 'src/core/lib/http/format_request.h',
379 'src/core/lib/http/httpcli.h',
380 'src/core/lib/http/parser.h',
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700381 'src/core/lib/iomgr/block_annotate.h',
Mark D. Roth76e264b2017-08-25 09:03:33 -0700382 'src/core/lib/iomgr/call_combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700383 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700384 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700385 'src/core/lib/iomgr/endpoint.h',
386 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700387 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800388 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700389 'src/core/lib/iomgr/ev_epoll1_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700390 'src/core/lib/iomgr/ev_epollex_linux.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700391 'src/core/lib/iomgr/ev_epollsig_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700392 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700393 'src/core/lib/iomgr/ev_posix.h',
394 'src/core/lib/iomgr/exec_ctx.h',
395 'src/core/lib/iomgr/executor.h',
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700396 'src/core/lib/iomgr/gethostname.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700397 'src/core/lib/iomgr/iocp_windows.h',
398 'src/core/lib/iomgr/iomgr.h',
kpayson64539f5062018-03-12 19:16:30 -0700399 'src/core/lib/iomgr/iomgr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700400 'src/core/lib/iomgr/iomgr_internal.h',
401 'src/core/lib/iomgr/iomgr_posix.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700402 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700403 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700404 'src/core/lib/iomgr/lockfree_event.h',
Yuchen Zengf630ff22017-07-25 13:28:45 -0700405 'src/core/lib/iomgr/nameser.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700406 'src/core/lib/iomgr/network_status_tracker.h',
407 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700408 'src/core/lib/iomgr/pollset.h',
kpayson64539f5062018-03-12 19:16:30 -0700409 'src/core/lib/iomgr/pollset_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700410 'src/core/lib/iomgr/pollset_set.h',
kpayson64539f5062018-03-12 19:16:30 -0700411 'src/core/lib/iomgr/pollset_set_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700412 'src/core/lib/iomgr/pollset_set_windows.h',
413 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700414 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700415 'src/core/lib/iomgr/resolve_address.h',
kpayson64539f5062018-03-12 19:16:30 -0700416 'src/core/lib/iomgr/resolve_address_custom.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700417 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700418 'src/core/lib/iomgr/sockaddr.h',
kpayson64539f5062018-03-12 19:16:30 -0700419 'src/core/lib/iomgr/sockaddr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700420 'src/core/lib/iomgr/sockaddr_posix.h',
421 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700422 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500423 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700424 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700425 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700426 'src/core/lib/iomgr/socket_utils_posix.h',
427 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700428 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700429 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700430 'src/core/lib/iomgr/tcp_client_posix.h',
kpayson64539f5062018-03-12 19:16:30 -0700431 'src/core/lib/iomgr/tcp_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700432 'src/core/lib/iomgr/tcp_posix.h',
433 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700434 'src/core/lib/iomgr/tcp_server_utils_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700435 'src/core/lib/iomgr/tcp_windows.h',
436 'src/core/lib/iomgr/time_averaged_stats.h',
437 'src/core/lib/iomgr/timer.h',
kpayson64539f5062018-03-12 19:16:30 -0700438 'src/core/lib/iomgr/timer_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700439 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -0700440 'src/core/lib/iomgr/timer_manager.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700441 'src/core/lib/iomgr/udp_server.h',
442 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -0700443 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700444 'src/core/lib/iomgr/wakeup_fd_pipe.h',
445 'src/core/lib/iomgr/wakeup_fd_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700446 'src/core/lib/json/json.h',
447 'src/core/lib/json/json_common.h',
448 'src/core/lib/json/json_reader.h',
449 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700450 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700451 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800452 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800453 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700454 'src/core/lib/slice/slice_string_helpers.h',
David Garcia Quintas396d49d2018-02-28 16:06:30 -0800455 'src/core/lib/slice/slice_weak_hash_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700456 'src/core/lib/surface/api_trace.h',
457 'src/core/lib/surface/call.h',
458 'src/core/lib/surface/call_test_only.h',
459 'src/core/lib/surface/channel.h',
460 'src/core/lib/surface/channel_init.h',
461 'src/core/lib/surface/channel_stack_type.h',
462 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700463 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700464 'src/core/lib/surface/event_string.h',
465 'src/core/lib/surface/init.h',
466 'src/core/lib/surface/lame_client.h',
467 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800468 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700469 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700470 'src/core/lib/transport/byte_stream.h',
471 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800472 'src/core/lib/transport/error_utils.h',
473 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700474 'src/core/lib/transport/metadata.h',
475 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700476 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -0700477 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700478 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800479 'src/core/lib/transport/status_conversion.h',
Mark D. Roth718c8342018-02-28 13:00:04 -0800480 'src/core/lib/transport/status_metadata.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400481 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700482 'src/core/lib/transport/transport.h',
483 'src/core/lib/transport/transport_impl.h',
Craig Tiller1f477302017-05-05 11:01:25 -0700484 'src/core/lib/debug/trace.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700485 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700486 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700487 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700488 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
489 '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 -0700490 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700491 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700492 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
493 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
David Garcia Quintas0822d332017-09-06 17:40:42 -0700494 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h',
495 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700496 'src/core/ext/filters/max_age/max_age_filter.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700497 'src/core/ext/filters/message_size/message_size_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -0700498 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
499 'src/core/ext/filters/workarounds/workaround_utils.h',
Yash Tibrewal83062842017-09-21 18:56:08 -0700500 'src/core/lib/surface/init.cc',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800501 'src/core/lib/avl/avl.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700502 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700503 'src/core/lib/channel/channel_args.cc',
504 'src/core/lib/channel/channel_stack.cc',
505 'src/core/lib/channel/channel_stack_builder.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700506 'src/core/lib/channel/channel_trace.cc',
507 'src/core/lib/channel/channel_trace_registry.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700508 'src/core/lib/channel/connected_channel.cc',
509 'src/core/lib/channel/handshaker.cc',
510 'src/core/lib/channel/handshaker_factory.cc',
511 'src/core/lib/channel/handshaker_registry.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700512 'src/core/lib/channel/status_util.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700513 'src/core/lib/compression/compression.cc',
Muxi Yan03fc8572017-10-06 18:47:09 -0700514 'src/core/lib/compression/compression_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700515 'src/core/lib/compression/message_compress.cc',
516 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700517 'src/core/lib/compression/stream_compression_gzip.cc',
518 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700519 'src/core/lib/debug/stats.cc',
520 'src/core/lib/debug/stats_data.cc',
521 'src/core/lib/http/format_request.cc',
522 'src/core/lib/http/httpcli.cc',
523 'src/core/lib/http/parser.cc',
524 'src/core/lib/iomgr/call_combiner.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700525 'src/core/lib/iomgr/combiner.cc',
526 'src/core/lib/iomgr/endpoint.cc',
527 'src/core/lib/iomgr/endpoint_pair_posix.cc',
528 'src/core/lib/iomgr/endpoint_pair_uv.cc',
529 'src/core/lib/iomgr/endpoint_pair_windows.cc',
530 'src/core/lib/iomgr/error.cc',
531 'src/core/lib/iomgr/ev_epoll1_linux.cc',
532 'src/core/lib/iomgr/ev_epollex_linux.cc',
533 'src/core/lib/iomgr/ev_epollsig_linux.cc',
534 'src/core/lib/iomgr/ev_poll_posix.cc',
535 'src/core/lib/iomgr/ev_posix.cc',
536 'src/core/lib/iomgr/ev_windows.cc',
537 'src/core/lib/iomgr/exec_ctx.cc',
538 'src/core/lib/iomgr/executor.cc',
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100539 'src/core/lib/iomgr/fork_posix.cc',
540 'src/core/lib/iomgr/fork_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700541 'src/core/lib/iomgr/gethostname_fallback.cc',
542 'src/core/lib/iomgr/gethostname_host_name_max.cc',
543 'src/core/lib/iomgr/gethostname_sysconf.cc',
544 'src/core/lib/iomgr/iocp_windows.cc',
545 'src/core/lib/iomgr/iomgr.cc',
kpayson64539f5062018-03-12 19:16:30 -0700546 'src/core/lib/iomgr/iomgr_custom.cc',
547 'src/core/lib/iomgr/iomgr_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700548 'src/core/lib/iomgr/iomgr_posix.cc',
549 'src/core/lib/iomgr/iomgr_uv.cc',
550 'src/core/lib/iomgr/iomgr_windows.cc',
551 'src/core/lib/iomgr/is_epollexclusive_available.cc',
552 'src/core/lib/iomgr/load_file.cc',
553 'src/core/lib/iomgr/lockfree_event.cc',
554 'src/core/lib/iomgr/network_status_tracker.cc',
555 'src/core/lib/iomgr/polling_entity.cc',
kpayson64539f5062018-03-12 19:16:30 -0700556 'src/core/lib/iomgr/pollset.cc',
557 'src/core/lib/iomgr/pollset_custom.cc',
558 'src/core/lib/iomgr/pollset_set.cc',
559 'src/core/lib/iomgr/pollset_set_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700560 'src/core/lib/iomgr/pollset_set_windows.cc',
561 'src/core/lib/iomgr/pollset_uv.cc',
562 'src/core/lib/iomgr/pollset_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700563 'src/core/lib/iomgr/resolve_address.cc',
564 'src/core/lib/iomgr/resolve_address_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700565 'src/core/lib/iomgr/resolve_address_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700566 'src/core/lib/iomgr/resolve_address_windows.cc',
567 'src/core/lib/iomgr/resource_quota.cc',
568 'src/core/lib/iomgr/sockaddr_utils.cc',
569 'src/core/lib/iomgr/socket_factory_posix.cc',
570 'src/core/lib/iomgr/socket_mutator.cc',
571 'src/core/lib/iomgr/socket_utils_common_posix.cc',
572 'src/core/lib/iomgr/socket_utils_linux.cc',
573 'src/core/lib/iomgr/socket_utils_posix.cc',
574 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700575 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700576 'src/core/lib/iomgr/socket_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700577 'src/core/lib/iomgr/tcp_client.cc',
578 'src/core/lib/iomgr/tcp_client_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700579 'src/core/lib/iomgr/tcp_client_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700580 'src/core/lib/iomgr/tcp_client_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700581 'src/core/lib/iomgr/tcp_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700582 'src/core/lib/iomgr/tcp_posix.cc',
kpayson64539f5062018-03-12 19:16:30 -0700583 'src/core/lib/iomgr/tcp_server.cc',
584 'src/core/lib/iomgr/tcp_server_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700585 'src/core/lib/iomgr/tcp_server_posix.cc',
586 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
587 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
588 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700589 'src/core/lib/iomgr/tcp_server_windows.cc',
590 'src/core/lib/iomgr/tcp_uv.cc',
591 'src/core/lib/iomgr/tcp_windows.cc',
592 'src/core/lib/iomgr/time_averaged_stats.cc',
kpayson64539f5062018-03-12 19:16:30 -0700593 'src/core/lib/iomgr/timer.cc',
594 'src/core/lib/iomgr/timer_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700595 'src/core/lib/iomgr/timer_generic.cc',
596 'src/core/lib/iomgr/timer_heap.cc',
597 'src/core/lib/iomgr/timer_manager.cc',
598 'src/core/lib/iomgr/timer_uv.cc',
599 'src/core/lib/iomgr/udp_server.cc',
600 'src/core/lib/iomgr/unix_sockets_posix.cc',
601 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
602 'src/core/lib/iomgr/wakeup_fd_cv.cc',
603 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
604 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
605 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
606 'src/core/lib/iomgr/wakeup_fd_posix.cc',
607 'src/core/lib/json/json.cc',
608 'src/core/lib/json/json_reader.cc',
609 'src/core/lib/json/json_string.cc',
610 'src/core/lib/json/json_writer.cc',
611 'src/core/lib/slice/b64.cc',
612 'src/core/lib/slice/percent_encoding.cc',
613 'src/core/lib/slice/slice.cc',
614 'src/core/lib/slice/slice_buffer.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700615 'src/core/lib/slice/slice_intern.cc',
616 'src/core/lib/slice/slice_string_helpers.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700617 'src/core/lib/surface/api_trace.cc',
618 'src/core/lib/surface/byte_buffer.cc',
619 'src/core/lib/surface/byte_buffer_reader.cc',
620 'src/core/lib/surface/call.cc',
621 'src/core/lib/surface/call_details.cc',
622 'src/core/lib/surface/call_log_batch.cc',
623 'src/core/lib/surface/channel.cc',
624 'src/core/lib/surface/channel_init.cc',
625 'src/core/lib/surface/channel_ping.cc',
626 'src/core/lib/surface/channel_stack_type.cc',
627 'src/core/lib/surface/completion_queue.cc',
628 'src/core/lib/surface/completion_queue_factory.cc',
629 'src/core/lib/surface/event_string.cc',
Craig Tiller8ebb5442017-04-07 16:01:55 -0700630 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700631 'src/core/lib/surface/metadata_array.cc',
632 'src/core/lib/surface/server.cc',
633 'src/core/lib/surface/validate_metadata.cc',
634 'src/core/lib/surface/version.cc',
635 'src/core/lib/transport/bdp_estimator.cc',
636 'src/core/lib/transport/byte_stream.cc',
637 'src/core/lib/transport/connectivity_state.cc',
638 'src/core/lib/transport/error_utils.cc',
639 'src/core/lib/transport/metadata.cc',
640 'src/core/lib/transport/metadata_batch.cc',
641 'src/core/lib/transport/pid_controller.cc',
642 'src/core/lib/transport/service_config.cc',
643 'src/core/lib/transport/static_metadata.cc',
644 'src/core/lib/transport/status_conversion.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -0800645 'src/core/lib/transport/status_metadata.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700646 'src/core/lib/transport/timeout_encoding.cc',
647 'src/core/lib/transport/transport.cc',
648 'src/core/lib/transport/transport_op_string.cc',
649 'src/core/lib/debug/trace.cc',
650 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
651 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
652 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
653 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
654 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
655 'src/core/ext/transport/chttp2/transport/flow_control.cc',
656 'src/core/ext/transport/chttp2/transport/frame_data.cc',
657 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
658 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
659 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
660 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
661 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
662 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
663 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
664 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
665 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
666 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
667 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
668 'src/core/ext/transport/chttp2/transport/parsing.cc',
669 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
670 'src/core/ext/transport/chttp2/transport/stream_map.cc',
671 'src/core/ext/transport/chttp2/transport/varint.cc',
672 'src/core/ext/transport/chttp2/transport/writing.cc',
673 'src/core/ext/transport/chttp2/alpn/alpn.cc',
674 'src/core/ext/filters/http/client/http_client_filter.cc',
675 'src/core/ext/filters/http/http_filters_plugin.cc',
676 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
677 'src/core/ext/filters/http/server/http_server_filter.cc',
678 'src/core/lib/http/httpcli_security_connector.cc',
679 'src/core/lib/security/context/security_context.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800680 'src/core/lib/security/credentials/alts/alts_credentials.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700681 'src/core/lib/security/credentials/composite/composite_credentials.cc',
682 'src/core/lib/security/credentials/credentials.cc',
683 'src/core/lib/security/credentials/credentials_metadata.cc',
684 'src/core/lib/security/credentials/fake/fake_credentials.cc',
685 'src/core/lib/security/credentials/google_default/credentials_generic.cc',
686 'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
687 'src/core/lib/security/credentials/iam/iam_credentials.cc',
688 'src/core/lib/security/credentials/jwt/json_token.cc',
689 'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
690 'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
691 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
692 'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
693 'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800694 'src/core/lib/security/security_connector/alts_security_connector.cc',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800695 'src/core/lib/security/security_connector/security_connector.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700696 'src/core/lib/security/transport/client_auth_filter.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700697 'src/core/lib/security/transport/secure_endpoint.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700698 'src/core/lib/security/transport/security_handshaker.cc',
699 'src/core/lib/security/transport/server_auth_filter.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800700 'src/core/lib/security/transport/target_authority_table.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700701 'src/core/lib/security/transport/tsi_error.cc',
702 'src/core/lib/security/util/json_util.cc',
703 'src/core/lib/surface/init_secure.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800704 'src/core/tsi/alts/crypt/aes_gcm.cc',
705 'src/core/tsi/alts/crypt/gsec.cc',
706 'src/core/tsi/alts/frame_protector/alts_counter.cc',
707 'src/core/tsi/alts/frame_protector/alts_crypter.cc',
708 'src/core/tsi/alts/frame_protector/alts_frame_protector.cc',
709 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc',
710 'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc',
711 'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc',
712 'src/core/tsi/alts/frame_protector/frame_handler.cc',
713 'src/core/tsi/alts/handshaker/alts_handshaker_client.cc',
714 'src/core/tsi/alts/handshaker/alts_tsi_event.cc',
715 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc',
716 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc',
717 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc',
718 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc',
719 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc',
720 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc',
721 'src/core/lib/security/credentials/alts/check_gcp_environment.cc',
722 'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc',
723 'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc',
724 'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc',
725 'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc',
726 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc',
727 'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc',
728 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc',
729 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc',
730 'src/core/tsi/alts/handshaker/alts_tsi_utils.cc',
731 'src/core/tsi/alts/handshaker/transport_security_common_api.cc',
732 'src/core/tsi/alts/handshaker/altscontext.pb.c',
733 'src/core/tsi/alts/handshaker/handshaker.pb.c',
734 'src/core/tsi/alts/handshaker/transport_security_common.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700735 'src/core/tsi/transport_security.cc',
736 'src/core/tsi/transport_security_adapter.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800737 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
738 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
739 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700740 'src/core/ext/filters/client_channel/backup_poller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700741 'src/core/ext/filters/client_channel/channel_connectivity.cc',
742 'src/core/ext/filters/client_channel/client_channel.cc',
743 'src/core/ext/filters/client_channel/client_channel_factory.cc',
744 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
745 'src/core/ext/filters/client_channel/connector.cc',
746 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
747 'src/core/ext/filters/client_channel/http_proxy.cc',
748 'src/core/ext/filters/client_channel/lb_policy.cc',
749 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
750 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800751 'src/core/ext/filters/client_channel/method_params.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700752 'src/core/ext/filters/client_channel/parse_address.cc',
753 'src/core/ext/filters/client_channel/proxy_mapper.cc',
754 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
755 'src/core/ext/filters/client_channel/resolver.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700756 'src/core/ext/filters/client_channel/resolver_registry.cc',
757 'src/core/ext/filters/client_channel/retry_throttle.cc',
758 'src/core/ext/filters/client_channel/subchannel.cc',
759 'src/core/ext/filters/client_channel/subchannel_index.cc',
760 'src/core/ext/filters/client_channel/uri_parser.cc',
761 'src/core/ext/filters/deadline/deadline_filter.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800762 'src/core/tsi/alts_transport_security.cc',
763 'src/core/tsi/fake_transport_security.cc',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700764 'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc',
765 'src/core/tsi/ssl/session_cache/ssl_session_cache.cc',
766 'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800767 'src/core/tsi/ssl_transport_security.cc',
768 'src/core/tsi/transport_security_grpc.cc',
769 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
770 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700771 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
772 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700773 'src/core/ext/transport/inproc/inproc_plugin.cc',
774 'src/core/ext/transport/inproc/inproc_transport.cc',
775 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
776 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
777 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc',
778 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
779 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700780 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700781 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
782 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700783 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700784 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
785 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
786 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
787 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
788 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
789 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
790 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
791 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc',
792 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700793 'src/core/ext/census/grpc_context.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700794 'src/core/ext/filters/max_age/max_age_filter.cc',
795 'src/core/ext/filters/message_size/message_size_filter.cc',
796 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
797 'src/core/ext/filters/workarounds/workaround_utils.cc',
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700798 'src/core/plugin_registry/grpc_plugin_registry.cc'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700799
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800800 ss.private_header_files = 'src/core/lib/gpr/arena.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800801 'src/core/lib/gpr/env.h',
802 'src/core/lib/gpr/fork.h',
Vijay Paiae376bf2018-01-25 22:54:02 -0800803 'src/core/lib/gpr/host_port.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800804 'src/core/lib/gpr/mpscq.h',
805 'src/core/lib/gpr/murmur_hash.h',
806 'src/core/lib/gpr/spinlock.h',
807 'src/core/lib/gpr/string.h',
808 'src/core/lib/gpr/string_windows.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800809 'src/core/lib/gpr/time_precise.h',
Vijay Paib6cf1232018-01-25 21:02:26 -0800810 'src/core/lib/gpr/tls.h',
811 'src/core/lib/gpr/tls_gcc.h',
812 'src/core/lib/gpr/tls_msvc.h',
813 'src/core/lib/gpr/tls_pthread.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800814 'src/core/lib/gpr/tmpfile.h',
Vijay Paid4d0a302018-01-25 13:24:03 -0800815 'src/core/lib/gpr/useful.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800816 'src/core/lib/gprpp/abstract.h',
817 'src/core/lib/gprpp/atomic.h',
818 'src/core/lib/gprpp/atomic_with_atm.h',
819 'src/core/lib/gprpp/atomic_with_std.h',
820 'src/core/lib/gprpp/manual_constructor.h',
821 'src/core/lib/gprpp/memory.h',
Vijay Paida693552018-02-16 22:59:03 -0800822 'src/core/lib/gprpp/thd.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800823 'src/core/lib/profiling/timers.h',
Vijay Pai42807252017-07-28 15:08:24 -0700824 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
825 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
826 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
Craig Tiller32736482017-10-12 22:02:28 -0700827 'src/core/ext/transport/chttp2/transport/flow_control.h',
Vijay Pai42807252017-07-28 15:08:24 -0700828 'src/core/ext/transport/chttp2/transport/frame.h',
829 'src/core/ext/transport/chttp2/transport/frame_data.h',
830 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
831 'src/core/ext/transport/chttp2/transport/frame_ping.h',
832 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
833 'src/core/ext/transport/chttp2/transport/frame_settings.h',
834 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
835 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
836 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
837 'src/core/ext/transport/chttp2/transport/hpack_table.h',
838 'src/core/ext/transport/chttp2/transport/http2_settings.h',
839 'src/core/ext/transport/chttp2/transport/huffsyms.h',
840 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
841 'src/core/ext/transport/chttp2/transport/internal.h',
842 'src/core/ext/transport/chttp2/transport/stream_map.h',
843 'src/core/ext/transport/chttp2/transport/varint.h',
844 'src/core/ext/transport/chttp2/alpn/alpn.h',
845 'src/core/ext/filters/http/client/http_client_filter.h',
846 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
847 'src/core/ext/filters/http/server/http_server_filter.h',
848 'src/core/lib/security/context/security_context.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800849 'src/core/lib/security/credentials/alts/alts_credentials.h',
Vijay Pai42807252017-07-28 15:08:24 -0700850 'src/core/lib/security/credentials/composite/composite_credentials.h',
851 'src/core/lib/security/credentials/credentials.h',
852 'src/core/lib/security/credentials/fake/fake_credentials.h',
853 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
854 'src/core/lib/security/credentials/iam/iam_credentials.h',
855 'src/core/lib/security/credentials/jwt/json_token.h',
856 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
857 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
858 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
859 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
860 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800861 'src/core/lib/security/security_connector/alts_security_connector.h',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800862 'src/core/lib/security/security_connector/security_connector.h',
Vijay Pai42807252017-07-28 15:08:24 -0700863 'src/core/lib/security/transport/auth_filters.h',
Vijay Pai42807252017-07-28 15:08:24 -0700864 'src/core/lib/security/transport/secure_endpoint.h',
Vijay Pai42807252017-07-28 15:08:24 -0700865 'src/core/lib/security/transport/security_handshaker.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800866 'src/core/lib/security/transport/target_authority_table.h',
Vijay Pai42807252017-07-28 15:08:24 -0700867 'src/core/lib/security/transport/tsi_error.h',
868 'src/core/lib/security/util/json_util.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800869 'src/core/tsi/alts/crypt/gsec.h',
870 'src/core/tsi/alts/frame_protector/alts_counter.h',
871 'src/core/tsi/alts/frame_protector/alts_crypter.h',
872 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
873 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
874 'src/core/tsi/alts/frame_protector/frame_handler.h',
875 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
876 'src/core/tsi/alts/handshaker/alts_tsi_event.h',
877 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
878 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
879 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
880 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
881 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
882 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
883 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
884 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
885 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
886 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
887 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
888 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
889 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
890 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
891 'src/core/tsi/alts/handshaker/altscontext.pb.h',
892 'src/core/tsi/alts/handshaker/handshaker.pb.h',
893 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
Vijay Pai42807252017-07-28 15:08:24 -0700894 'src/core/tsi/transport_security.h',
895 'src/core/tsi/transport_security_adapter.h',
896 'src/core/tsi/transport_security_interface.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800897 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700898 'src/core/ext/filters/client_channel/backup_poller.h',
Vijay Pai42807252017-07-28 15:08:24 -0700899 'src/core/ext/filters/client_channel/client_channel.h',
900 'src/core/ext/filters/client_channel/client_channel_factory.h',
901 'src/core/ext/filters/client_channel/connector.h',
902 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
903 'src/core/ext/filters/client_channel/http_proxy.h',
904 'src/core/ext/filters/client_channel/lb_policy.h',
905 'src/core/ext/filters/client_channel/lb_policy_factory.h',
906 'src/core/ext/filters/client_channel/lb_policy_registry.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800907 'src/core/ext/filters/client_channel/method_params.h',
Vijay Pai42807252017-07-28 15:08:24 -0700908 'src/core/ext/filters/client_channel/parse_address.h',
909 'src/core/ext/filters/client_channel/proxy_mapper.h',
910 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
911 'src/core/ext/filters/client_channel/resolver.h',
912 'src/core/ext/filters/client_channel/resolver_factory.h',
913 'src/core/ext/filters/client_channel/resolver_registry.h',
914 'src/core/ext/filters/client_channel/retry_throttle.h',
915 'src/core/ext/filters/client_channel/subchannel.h',
916 'src/core/ext/filters/client_channel/subchannel_index.h',
917 'src/core/ext/filters/client_channel/uri_parser.h',
918 'src/core/ext/filters/deadline/deadline_filter.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800919 'src/core/tsi/alts_transport_security.h',
920 'src/core/tsi/fake_transport_security.h',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700921 'src/core/tsi/ssl/session_cache/ssl_session.h',
922 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800923 'src/core/tsi/ssl_transport_security.h',
924 'src/core/tsi/ssl_types.h',
925 'src/core/tsi/transport_security_grpc.h',
926 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Vijay Pai42807252017-07-28 15:08:24 -0700927 'src/core/ext/transport/inproc/inproc_transport.h',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800928 'src/core/lib/avl/avl.h',
Craig Tiller2014a372017-07-21 15:36:11 -0700929 'src/core/lib/backoff/backoff.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700930 'src/core/lib/channel/channel_args.h',
931 'src/core/lib/channel/channel_stack.h',
932 'src/core/lib/channel/channel_stack_builder.h',
ncteisen3b42f832018-03-19 13:22:35 -0700933 'src/core/lib/channel/channel_trace.h',
934 'src/core/lib/channel/channel_trace_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700935 'src/core/lib/channel/connected_channel.h',
936 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700937 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800938 'src/core/lib/channel/handshaker_factory.h',
939 'src/core/lib/channel/handshaker_registry.h',
ncteisen3b42f832018-03-19 13:22:35 -0700940 'src/core/lib/channel/status_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700941 'src/core/lib/compression/algorithm_metadata.h',
Muxi Yan92d1bc12017-09-16 10:09:58 -0700942 'src/core/lib/compression/compression_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700943 'src/core/lib/compression/message_compress.h',
Muxi Yane87a7e12017-06-29 16:53:24 -0700944 'src/core/lib/compression/stream_compression.h',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700945 'src/core/lib/compression/stream_compression_gzip.h',
946 'src/core/lib/compression/stream_compression_identity.h',
Craig Tiller6e739742017-08-31 11:22:52 -0700947 'src/core/lib/debug/stats.h',
948 'src/core/lib/debug/stats_data.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800949 'src/core/lib/gprpp/debug_location.h',
950 'src/core/lib/gprpp/inlined_vector.h',
951 'src/core/lib/gprpp/orphanable.h',
952 'src/core/lib/gprpp/ref_counted.h',
953 'src/core/lib/gprpp/ref_counted_ptr.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700954 'src/core/lib/http/format_request.h',
955 'src/core/lib/http/httpcli.h',
956 'src/core/lib/http/parser.h',
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700957 'src/core/lib/iomgr/block_annotate.h',
Mark D. Roth76e264b2017-08-25 09:03:33 -0700958 'src/core/lib/iomgr/call_combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700959 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700960 'src/core/lib/iomgr/combiner.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700961 'src/core/lib/iomgr/endpoint.h',
962 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700963 'src/core/lib/iomgr/error.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800964 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700965 'src/core/lib/iomgr/ev_epoll1_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700966 'src/core/lib/iomgr/ev_epollex_linux.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700967 'src/core/lib/iomgr/ev_epollsig_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700968 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700969 'src/core/lib/iomgr/ev_posix.h',
970 'src/core/lib/iomgr/exec_ctx.h',
971 'src/core/lib/iomgr/executor.h',
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700972 'src/core/lib/iomgr/gethostname.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700973 'src/core/lib/iomgr/iocp_windows.h',
974 'src/core/lib/iomgr/iomgr.h',
kpayson64539f5062018-03-12 19:16:30 -0700975 'src/core/lib/iomgr/iomgr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700976 'src/core/lib/iomgr/iomgr_internal.h',
977 'src/core/lib/iomgr/iomgr_posix.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700978 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700979 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700980 'src/core/lib/iomgr/lockfree_event.h',
Yuchen Zengf630ff22017-07-25 13:28:45 -0700981 'src/core/lib/iomgr/nameser.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700982 'src/core/lib/iomgr/network_status_tracker.h',
983 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700984 'src/core/lib/iomgr/pollset.h',
kpayson64539f5062018-03-12 19:16:30 -0700985 'src/core/lib/iomgr/pollset_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700986 'src/core/lib/iomgr/pollset_set.h',
kpayson64539f5062018-03-12 19:16:30 -0700987 'src/core/lib/iomgr/pollset_set_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700988 'src/core/lib/iomgr/pollset_set_windows.h',
989 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700990 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700991 'src/core/lib/iomgr/resolve_address.h',
kpayson64539f5062018-03-12 19:16:30 -0700992 'src/core/lib/iomgr/resolve_address_custom.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700993 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700994 'src/core/lib/iomgr/sockaddr.h',
kpayson64539f5062018-03-12 19:16:30 -0700995 'src/core/lib/iomgr/sockaddr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700996 'src/core/lib/iomgr/sockaddr_posix.h',
997 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700998 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500999 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -07001000 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -07001001 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001002 'src/core/lib/iomgr/socket_utils_posix.h',
1003 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -07001004 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001005 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -07001006 'src/core/lib/iomgr/tcp_client_posix.h',
kpayson64539f5062018-03-12 19:16:30 -07001007 'src/core/lib/iomgr/tcp_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001008 'src/core/lib/iomgr/tcp_posix.h',
1009 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -07001010 'src/core/lib/iomgr/tcp_server_utils_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001011 'src/core/lib/iomgr/tcp_windows.h',
1012 'src/core/lib/iomgr/time_averaged_stats.h',
1013 'src/core/lib/iomgr/timer.h',
kpayson64539f5062018-03-12 19:16:30 -07001014 'src/core/lib/iomgr/timer_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001015 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -07001016 'src/core/lib/iomgr/timer_manager.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001017 'src/core/lib/iomgr/udp_server.h',
1018 'src/core/lib/iomgr/unix_sockets_posix.h',
Ken Payson31caabd2016-08-06 21:27:29 -07001019 'src/core/lib/iomgr/wakeup_fd_cv.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001020 'src/core/lib/iomgr/wakeup_fd_pipe.h',
1021 'src/core/lib/iomgr/wakeup_fd_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001022 'src/core/lib/json/json.h',
1023 'src/core/lib/json/json_common.h',
1024 'src/core/lib/json/json_reader.h',
1025 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -07001026 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -07001027 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001028 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -08001029 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -07001030 'src/core/lib/slice/slice_string_helpers.h',
David Garcia Quintas396d49d2018-02-28 16:06:30 -08001031 'src/core/lib/slice/slice_weak_hash_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001032 'src/core/lib/surface/api_trace.h',
1033 'src/core/lib/surface/call.h',
1034 'src/core/lib/surface/call_test_only.h',
1035 'src/core/lib/surface/channel.h',
1036 'src/core/lib/surface/channel_init.h',
1037 'src/core/lib/surface/channel_stack_type.h',
1038 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -07001039 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001040 'src/core/lib/surface/event_string.h',
1041 'src/core/lib/surface/init.h',
1042 'src/core/lib/surface/lame_client.h',
1043 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001044 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -07001045 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001046 'src/core/lib/transport/byte_stream.h',
1047 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001048 'src/core/lib/transport/error_utils.h',
1049 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001050 'src/core/lib/transport/metadata.h',
1051 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -07001052 'src/core/lib/transport/pid_controller.h',
Mark D. Rothea846a02016-11-03 11:32:54 -07001053 'src/core/lib/transport/service_config.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001054 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001055 'src/core/lib/transport/status_conversion.h',
Mark D. Roth718c8342018-02-28 13:00:04 -08001056 'src/core/lib/transport/status_metadata.h',
Robbie Shade710d2422016-07-13 15:15:38 -04001057 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001058 'src/core/lib/transport/transport.h',
1059 'src/core/lib/transport/transport_impl.h',
Craig Tiller1f477302017-05-05 11:01:25 -07001060 'src/core/lib/debug/trace.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -07001061 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001062 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -07001063 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001064 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
1065 '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 -07001066 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
Mark D. Roth5e9848e2017-10-06 13:59:32 -07001067 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001068 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
1069 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
David Garcia Quintas0822d332017-09-06 17:40:42 -07001070 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h',
1071 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -07001072 'src/core/ext/filters/max_age/max_age_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -07001073 'src/core/ext/filters/message_size/message_size_filter.h',
1074 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
1075 'src/core/ext/filters/workarounds/workaround_utils.h'
Jorge Canizalescc074d92016-06-28 09:52:43 -07001076 end
Nicolas "Pixel" Noble20b83332016-07-21 19:28:38 +02001077
Muxi Yan37480eb2016-07-14 16:22:03 -07001078 s.subspec 'Cronet-Interface' do |ss|
1079 ss.header_mappings_dir = 'include/grpc'
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001080 ss.source_files = 'include/grpc/support/alloc.h',
1081 'include/grpc/support/atm.h',
1082 'include/grpc/support/atm_gcc_atomic.h',
1083 'include/grpc/support/atm_gcc_sync.h',
1084 'include/grpc/support/atm_windows.h',
1085 'include/grpc/support/cpu.h',
1086 'include/grpc/support/log.h',
1087 'include/grpc/support/log_windows.h',
1088 'include/grpc/support/port_platform.h',
1089 'include/grpc/support/string_util.h',
1090 'include/grpc/support/sync.h',
1091 'include/grpc/support/sync_custom.h',
1092 'include/grpc/support/sync_generic.h',
1093 'include/grpc/support/sync_posix.h',
1094 'include/grpc/support/sync_windows.h',
1095 'include/grpc/support/thd_id.h',
1096 'include/grpc/support/time.h',
1097 'include/grpc/impl/codegen/atm.h',
1098 'include/grpc/impl/codegen/atm_gcc_atomic.h',
1099 'include/grpc/impl/codegen/atm_gcc_sync.h',
1100 'include/grpc/impl/codegen/atm_windows.h',
1101 'include/grpc/impl/codegen/fork.h',
1102 'include/grpc/impl/codegen/gpr_slice.h',
1103 'include/grpc/impl/codegen/gpr_types.h',
1104 'include/grpc/impl/codegen/port_platform.h',
1105 'include/grpc/impl/codegen/sync.h',
1106 'include/grpc/impl/codegen/sync_custom.h',
1107 'include/grpc/impl/codegen/sync_generic.h',
1108 'include/grpc/impl/codegen/sync_posix.h',
1109 'include/grpc/impl/codegen/sync_windows.h',
1110 'include/grpc/impl/codegen/byte_buffer.h',
1111 'include/grpc/impl/codegen/byte_buffer_reader.h',
1112 'include/grpc/impl/codegen/compression_types.h',
1113 'include/grpc/impl/codegen/connectivity_state.h',
1114 'include/grpc/impl/codegen/grpc_types.h',
1115 'include/grpc/impl/codegen/propagation_bits.h',
1116 'include/grpc/impl/codegen/slice.h',
1117 'include/grpc/impl/codegen/status.h',
1118 'include/grpc/impl/codegen/atm.h',
1119 'include/grpc/impl/codegen/atm_gcc_atomic.h',
1120 'include/grpc/impl/codegen/atm_gcc_sync.h',
1121 'include/grpc/impl/codegen/atm_windows.h',
1122 'include/grpc/impl/codegen/fork.h',
1123 'include/grpc/impl/codegen/gpr_slice.h',
1124 'include/grpc/impl/codegen/gpr_types.h',
1125 'include/grpc/impl/codegen/port_platform.h',
1126 'include/grpc/impl/codegen/sync.h',
1127 'include/grpc/impl/codegen/sync_custom.h',
1128 'include/grpc/impl/codegen/sync_generic.h',
1129 'include/grpc/impl/codegen/sync_posix.h',
1130 'include/grpc/impl/codegen/sync_windows.h',
1131 'include/grpc/byte_buffer.h',
1132 'include/grpc/byte_buffer_reader.h',
1133 'include/grpc/compression.h',
1134 'include/grpc/fork.h',
1135 'include/grpc/grpc.h',
1136 'include/grpc/grpc_posix.h',
1137 'include/grpc/grpc_security_constants.h',
1138 'include/grpc/load_reporting.h',
1139 'include/grpc/slice.h',
1140 'include/grpc/slice_buffer.h',
1141 'include/grpc/status.h',
1142 'include/grpc/support/workaround_list.h',
1143 'include/grpc/grpc_cronet.h',
1144 'include/grpc/grpc_security.h'
Muxi Yan37480eb2016-07-14 16:22:03 -07001145 end
1146
Muxi Yanf8372c62016-07-29 09:58:55 -07001147 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -07001148 ss.header_mappings_dir = '.'
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001149 ss.libraries = 'z'
Muxi Yane2de92f2017-01-31 16:30:52 -08001150 ss.dependency "#{s.name}/Cronet-Interface", version
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001151 ss.dependency 'BoringSSL', '~> 10.0'
1152 ss.dependency 'nanopb', '~> 0.3'
Muxi Yane2de92f2017-01-31 16:30:52 -08001153
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001154 ss.source_files = 'src/core/lib/gpr/arena.h',
1155 'src/core/lib/gpr/env.h',
1156 'src/core/lib/gpr/fork.h',
1157 'src/core/lib/gpr/host_port.h',
1158 'src/core/lib/gpr/mpscq.h',
1159 'src/core/lib/gpr/murmur_hash.h',
1160 'src/core/lib/gpr/spinlock.h',
1161 'src/core/lib/gpr/string.h',
1162 'src/core/lib/gpr/string_windows.h',
1163 'src/core/lib/gpr/time_precise.h',
1164 'src/core/lib/gpr/tls.h',
1165 'src/core/lib/gpr/tls_gcc.h',
1166 'src/core/lib/gpr/tls_msvc.h',
1167 'src/core/lib/gpr/tls_pthread.h',
1168 'src/core/lib/gpr/tmpfile.h',
1169 'src/core/lib/gpr/useful.h',
1170 'src/core/lib/gprpp/abstract.h',
1171 'src/core/lib/gprpp/atomic.h',
1172 'src/core/lib/gprpp/atomic_with_atm.h',
1173 'src/core/lib/gprpp/atomic_with_std.h',
1174 'src/core/lib/gprpp/manual_constructor.h',
1175 'src/core/lib/gprpp/memory.h',
1176 'src/core/lib/gprpp/thd.h',
1177 'src/core/lib/profiling/timers.h',
1178 'src/core/lib/gpr/alloc.cc',
1179 'src/core/lib/gpr/arena.cc',
1180 'src/core/lib/gpr/atm.cc',
1181 'src/core/lib/gpr/cpu_iphone.cc',
1182 'src/core/lib/gpr/cpu_linux.cc',
1183 'src/core/lib/gpr/cpu_posix.cc',
1184 'src/core/lib/gpr/cpu_windows.cc',
1185 'src/core/lib/gpr/env_linux.cc',
1186 'src/core/lib/gpr/env_posix.cc',
1187 'src/core/lib/gpr/env_windows.cc',
1188 'src/core/lib/gpr/fork.cc',
1189 'src/core/lib/gpr/host_port.cc',
1190 'src/core/lib/gpr/log.cc',
1191 'src/core/lib/gpr/log_android.cc',
1192 'src/core/lib/gpr/log_linux.cc',
1193 'src/core/lib/gpr/log_posix.cc',
1194 'src/core/lib/gpr/log_windows.cc',
1195 'src/core/lib/gpr/mpscq.cc',
1196 'src/core/lib/gpr/murmur_hash.cc',
1197 'src/core/lib/gpr/string.cc',
1198 'src/core/lib/gpr/string_posix.cc',
1199 'src/core/lib/gpr/string_util_windows.cc',
1200 'src/core/lib/gpr/string_windows.cc',
1201 'src/core/lib/gpr/sync.cc',
1202 'src/core/lib/gpr/sync_posix.cc',
1203 'src/core/lib/gpr/sync_windows.cc',
1204 'src/core/lib/gpr/time.cc',
1205 'src/core/lib/gpr/time_posix.cc',
1206 'src/core/lib/gpr/time_precise.cc',
1207 'src/core/lib/gpr/time_windows.cc',
1208 'src/core/lib/gpr/tls_pthread.cc',
1209 'src/core/lib/gpr/tmpfile_msys.cc',
1210 'src/core/lib/gpr/tmpfile_posix.cc',
1211 'src/core/lib/gpr/tmpfile_windows.cc',
1212 'src/core/lib/gpr/wrap_memcpy.cc',
1213 'src/core/lib/gprpp/thd_posix.cc',
1214 'src/core/lib/gprpp/thd_windows.cc',
1215 'src/core/lib/profiling/basic_timers.cc',
1216 'src/core/lib/profiling/stap_timers.cc',
1217 'src/core/lib/avl/avl.h',
1218 'src/core/lib/backoff/backoff.h',
1219 'src/core/lib/channel/channel_args.h',
1220 'src/core/lib/channel/channel_stack.h',
1221 'src/core/lib/channel/channel_stack_builder.h',
David Garcia Quintas0bc1e1d2018-03-21 17:50:57 -07001222 'src/core/lib/channel/channel_trace.h',
1223 'src/core/lib/channel/channel_trace_registry.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001224 'src/core/lib/channel/connected_channel.h',
1225 'src/core/lib/channel/context.h',
1226 'src/core/lib/channel/handshaker.h',
1227 'src/core/lib/channel/handshaker_factory.h',
1228 'src/core/lib/channel/handshaker_registry.h',
David Garcia Quintas0bc1e1d2018-03-21 17:50:57 -07001229 'src/core/lib/channel/status_util.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001230 'src/core/lib/compression/algorithm_metadata.h',
1231 'src/core/lib/compression/compression_internal.h',
1232 'src/core/lib/compression/message_compress.h',
1233 'src/core/lib/compression/stream_compression.h',
1234 'src/core/lib/compression/stream_compression_gzip.h',
1235 'src/core/lib/compression/stream_compression_identity.h',
1236 'src/core/lib/debug/stats.h',
1237 'src/core/lib/debug/stats_data.h',
1238 'src/core/lib/gprpp/debug_location.h',
1239 'src/core/lib/gprpp/inlined_vector.h',
1240 'src/core/lib/gprpp/orphanable.h',
1241 'src/core/lib/gprpp/ref_counted.h',
1242 'src/core/lib/gprpp/ref_counted_ptr.h',
1243 'src/core/lib/http/format_request.h',
1244 'src/core/lib/http/httpcli.h',
1245 'src/core/lib/http/parser.h',
1246 'src/core/lib/iomgr/block_annotate.h',
1247 'src/core/lib/iomgr/call_combiner.h',
1248 'src/core/lib/iomgr/closure.h',
1249 'src/core/lib/iomgr/combiner.h',
1250 'src/core/lib/iomgr/endpoint.h',
1251 'src/core/lib/iomgr/endpoint_pair.h',
1252 'src/core/lib/iomgr/error.h',
1253 'src/core/lib/iomgr/error_internal.h',
1254 'src/core/lib/iomgr/ev_epoll1_linux.h',
1255 'src/core/lib/iomgr/ev_epollex_linux.h',
1256 'src/core/lib/iomgr/ev_epollsig_linux.h',
1257 'src/core/lib/iomgr/ev_poll_posix.h',
1258 'src/core/lib/iomgr/ev_posix.h',
1259 'src/core/lib/iomgr/exec_ctx.h',
1260 'src/core/lib/iomgr/executor.h',
1261 'src/core/lib/iomgr/gethostname.h',
1262 'src/core/lib/iomgr/iocp_windows.h',
1263 'src/core/lib/iomgr/iomgr.h',
1264 'src/core/lib/iomgr/iomgr_custom.h',
1265 'src/core/lib/iomgr/iomgr_internal.h',
1266 'src/core/lib/iomgr/iomgr_posix.h',
1267 'src/core/lib/iomgr/is_epollexclusive_available.h',
1268 'src/core/lib/iomgr/load_file.h',
1269 'src/core/lib/iomgr/lockfree_event.h',
1270 'src/core/lib/iomgr/nameser.h',
1271 'src/core/lib/iomgr/network_status_tracker.h',
1272 'src/core/lib/iomgr/polling_entity.h',
1273 'src/core/lib/iomgr/pollset.h',
1274 'src/core/lib/iomgr/pollset_custom.h',
1275 'src/core/lib/iomgr/pollset_set.h',
1276 'src/core/lib/iomgr/pollset_set_custom.h',
1277 'src/core/lib/iomgr/pollset_set_windows.h',
1278 'src/core/lib/iomgr/pollset_windows.h',
1279 'src/core/lib/iomgr/port.h',
1280 'src/core/lib/iomgr/resolve_address.h',
1281 'src/core/lib/iomgr/resolve_address_custom.h',
1282 'src/core/lib/iomgr/resource_quota.h',
1283 'src/core/lib/iomgr/sockaddr.h',
1284 'src/core/lib/iomgr/sockaddr_custom.h',
1285 'src/core/lib/iomgr/sockaddr_posix.h',
1286 'src/core/lib/iomgr/sockaddr_utils.h',
1287 'src/core/lib/iomgr/sockaddr_windows.h',
1288 'src/core/lib/iomgr/socket_factory_posix.h',
1289 'src/core/lib/iomgr/socket_mutator.h',
1290 'src/core/lib/iomgr/socket_utils.h',
1291 'src/core/lib/iomgr/socket_utils_posix.h',
1292 'src/core/lib/iomgr/socket_windows.h',
1293 'src/core/lib/iomgr/sys_epoll_wrapper.h',
1294 'src/core/lib/iomgr/tcp_client.h',
1295 'src/core/lib/iomgr/tcp_client_posix.h',
1296 'src/core/lib/iomgr/tcp_custom.h',
1297 'src/core/lib/iomgr/tcp_posix.h',
1298 'src/core/lib/iomgr/tcp_server.h',
1299 'src/core/lib/iomgr/tcp_server_utils_posix.h',
1300 'src/core/lib/iomgr/tcp_windows.h',
1301 'src/core/lib/iomgr/time_averaged_stats.h',
1302 'src/core/lib/iomgr/timer.h',
1303 'src/core/lib/iomgr/timer_custom.h',
1304 'src/core/lib/iomgr/timer_heap.h',
1305 'src/core/lib/iomgr/timer_manager.h',
1306 'src/core/lib/iomgr/udp_server.h',
1307 'src/core/lib/iomgr/unix_sockets_posix.h',
1308 'src/core/lib/iomgr/wakeup_fd_cv.h',
1309 'src/core/lib/iomgr/wakeup_fd_pipe.h',
1310 'src/core/lib/iomgr/wakeup_fd_posix.h',
1311 'src/core/lib/json/json.h',
1312 'src/core/lib/json/json_common.h',
1313 'src/core/lib/json/json_reader.h',
1314 'src/core/lib/json/json_writer.h',
1315 'src/core/lib/slice/b64.h',
1316 'src/core/lib/slice/percent_encoding.h',
1317 'src/core/lib/slice/slice_hash_table.h',
1318 'src/core/lib/slice/slice_internal.h',
1319 'src/core/lib/slice/slice_string_helpers.h',
1320 'src/core/lib/slice/slice_weak_hash_table.h',
1321 'src/core/lib/surface/api_trace.h',
1322 'src/core/lib/surface/call.h',
1323 'src/core/lib/surface/call_test_only.h',
1324 'src/core/lib/surface/channel.h',
1325 'src/core/lib/surface/channel_init.h',
1326 'src/core/lib/surface/channel_stack_type.h',
1327 'src/core/lib/surface/completion_queue.h',
1328 'src/core/lib/surface/completion_queue_factory.h',
1329 'src/core/lib/surface/event_string.h',
1330 'src/core/lib/surface/init.h',
1331 'src/core/lib/surface/lame_client.h',
1332 'src/core/lib/surface/server.h',
1333 'src/core/lib/surface/validate_metadata.h',
1334 'src/core/lib/transport/bdp_estimator.h',
1335 'src/core/lib/transport/byte_stream.h',
1336 'src/core/lib/transport/connectivity_state.h',
1337 'src/core/lib/transport/error_utils.h',
1338 'src/core/lib/transport/http2_errors.h',
1339 'src/core/lib/transport/metadata.h',
1340 'src/core/lib/transport/metadata_batch.h',
1341 'src/core/lib/transport/pid_controller.h',
1342 'src/core/lib/transport/service_config.h',
1343 'src/core/lib/transport/static_metadata.h',
1344 'src/core/lib/transport/status_conversion.h',
1345 'src/core/lib/transport/status_metadata.h',
1346 'src/core/lib/transport/timeout_encoding.h',
1347 'src/core/lib/transport/transport.h',
1348 'src/core/lib/transport/transport_impl.h',
1349 'src/core/lib/debug/trace.h',
Muxi Yanb94d6812018-03-20 14:17:47 -07001350 'src/core/ext/filters/deadline/deadline_filter.h',
1351 'src/core/ext/filters/message_size/message_size_filter.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001352 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h',
1353 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001354 'src/core/ext/transport/cronet/transport/cronet_transport.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001355 'third_party/objective_c/Cronet/bidirectional_stream_c.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001356 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
1357 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
1358 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
1359 'src/core/ext/transport/chttp2/transport/flow_control.h',
1360 'src/core/ext/transport/chttp2/transport/frame.h',
1361 'src/core/ext/transport/chttp2/transport/frame_data.h',
1362 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
1363 'src/core/ext/transport/chttp2/transport/frame_ping.h',
1364 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
1365 'src/core/ext/transport/chttp2/transport/frame_settings.h',
1366 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
1367 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
1368 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
1369 'src/core/ext/transport/chttp2/transport/hpack_table.h',
1370 'src/core/ext/transport/chttp2/transport/http2_settings.h',
1371 'src/core/ext/transport/chttp2/transport/huffsyms.h',
1372 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
1373 'src/core/ext/transport/chttp2/transport/internal.h',
1374 'src/core/ext/transport/chttp2/transport/stream_map.h',
1375 'src/core/ext/transport/chttp2/transport/varint.h',
1376 'src/core/ext/transport/chttp2/alpn/alpn.h',
1377 'src/core/ext/filters/http/client/http_client_filter.h',
1378 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
1379 'src/core/ext/filters/http/server/http_server_filter.h',
1380 'src/core/ext/filters/client_channel/backup_poller.h',
1381 'src/core/ext/filters/client_channel/client_channel.h',
1382 'src/core/ext/filters/client_channel/client_channel_factory.h',
1383 'src/core/ext/filters/client_channel/connector.h',
1384 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
1385 'src/core/ext/filters/client_channel/http_proxy.h',
1386 'src/core/ext/filters/client_channel/lb_policy.h',
1387 'src/core/ext/filters/client_channel/lb_policy_factory.h',
1388 'src/core/ext/filters/client_channel/lb_policy_registry.h',
1389 'src/core/ext/filters/client_channel/method_params.h',
1390 'src/core/ext/filters/client_channel/parse_address.h',
1391 'src/core/ext/filters/client_channel/proxy_mapper.h',
1392 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
1393 'src/core/ext/filters/client_channel/resolver.h',
1394 'src/core/ext/filters/client_channel/resolver_factory.h',
1395 'src/core/ext/filters/client_channel/resolver_registry.h',
1396 'src/core/ext/filters/client_channel/retry_throttle.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001397 'src/core/ext/filters/client_channel/subchannel.h',
1398 'src/core/ext/filters/client_channel/subchannel_index.h',
1399 'src/core/ext/filters/client_channel/uri_parser.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001400 'src/core/lib/security/context/security_context.h',
1401 'src/core/lib/security/credentials/alts/alts_credentials.h',
1402 'src/core/lib/security/credentials/composite/composite_credentials.h',
1403 'src/core/lib/security/credentials/credentials.h',
1404 'src/core/lib/security/credentials/fake/fake_credentials.h',
1405 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
1406 'src/core/lib/security/credentials/iam/iam_credentials.h',
1407 'src/core/lib/security/credentials/jwt/json_token.h',
1408 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
1409 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
1410 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
1411 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
1412 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
1413 'src/core/lib/security/security_connector/alts_security_connector.h',
1414 'src/core/lib/security/security_connector/security_connector.h',
1415 'src/core/lib/security/transport/auth_filters.h',
1416 'src/core/lib/security/transport/secure_endpoint.h',
1417 'src/core/lib/security/transport/security_handshaker.h',
1418 'src/core/lib/security/transport/target_authority_table.h',
1419 'src/core/lib/security/transport/tsi_error.h',
1420 'src/core/lib/security/util/json_util.h',
1421 'src/core/tsi/alts/crypt/gsec.h',
1422 'src/core/tsi/alts/frame_protector/alts_counter.h',
1423 'src/core/tsi/alts/frame_protector/alts_crypter.h',
1424 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
1425 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
1426 'src/core/tsi/alts/frame_protector/frame_handler.h',
1427 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
1428 'src/core/tsi/alts/handshaker/alts_tsi_event.h',
1429 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
1430 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
1431 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
1432 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
1433 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
1434 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
1435 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
1436 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
1437 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
1438 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
1439 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
1440 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
1441 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
1442 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
1443 'src/core/tsi/alts/handshaker/altscontext.pb.h',
1444 'src/core/tsi/alts/handshaker/handshaker.pb.h',
1445 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001446 'third_party/nanopb/pb.h',
1447 'third_party/nanopb/pb_common.h',
1448 'third_party/nanopb/pb_decode.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001449 'third_party/nanopb/pb_encode.h',
1450 'src/core/tsi/transport_security.h',
1451 'src/core/tsi/transport_security_adapter.h',
1452 'src/core/tsi/transport_security_interface.h',
1453 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
1454 'src/core/tsi/alts_transport_security.h',
1455 'src/core/tsi/fake_transport_security.h',
kpayson64dd011f22018-03-21 15:45:05 -07001456 'src/core/tsi/ssl/session_cache/ssl_session.h',
1457 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001458 'src/core/tsi/ssl_transport_security.h',
1459 'src/core/tsi/ssl_types.h',
1460 'src/core/tsi/transport_security_grpc.h',
1461 'src/core/ext/transport/chttp2/server/chttp2_server.h',
1462 'src/core/lib/surface/init.cc',
1463 'src/core/lib/avl/avl.cc',
1464 'src/core/lib/backoff/backoff.cc',
1465 'src/core/lib/channel/channel_args.cc',
1466 'src/core/lib/channel/channel_stack.cc',
1467 'src/core/lib/channel/channel_stack_builder.cc',
David Garcia Quintas0bc1e1d2018-03-21 17:50:57 -07001468 'src/core/lib/channel/channel_trace.cc',
1469 'src/core/lib/channel/channel_trace_registry.cc',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001470 'src/core/lib/channel/connected_channel.cc',
1471 'src/core/lib/channel/handshaker.cc',
1472 'src/core/lib/channel/handshaker_factory.cc',
1473 'src/core/lib/channel/handshaker_registry.cc',
David Garcia Quintas0bc1e1d2018-03-21 17:50:57 -07001474 'src/core/lib/channel/status_util.cc',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001475 'src/core/lib/compression/compression.cc',
1476 'src/core/lib/compression/compression_internal.cc',
1477 'src/core/lib/compression/message_compress.cc',
1478 'src/core/lib/compression/stream_compression.cc',
1479 'src/core/lib/compression/stream_compression_gzip.cc',
1480 'src/core/lib/compression/stream_compression_identity.cc',
1481 'src/core/lib/debug/stats.cc',
1482 'src/core/lib/debug/stats_data.cc',
1483 'src/core/lib/http/format_request.cc',
1484 'src/core/lib/http/httpcli.cc',
1485 'src/core/lib/http/parser.cc',
1486 'src/core/lib/iomgr/call_combiner.cc',
1487 'src/core/lib/iomgr/combiner.cc',
1488 'src/core/lib/iomgr/endpoint.cc',
1489 'src/core/lib/iomgr/endpoint_pair_posix.cc',
1490 'src/core/lib/iomgr/endpoint_pair_uv.cc',
1491 'src/core/lib/iomgr/endpoint_pair_windows.cc',
1492 'src/core/lib/iomgr/error.cc',
1493 'src/core/lib/iomgr/ev_epoll1_linux.cc',
1494 'src/core/lib/iomgr/ev_epollex_linux.cc',
1495 'src/core/lib/iomgr/ev_epollsig_linux.cc',
1496 'src/core/lib/iomgr/ev_poll_posix.cc',
1497 'src/core/lib/iomgr/ev_posix.cc',
1498 'src/core/lib/iomgr/ev_windows.cc',
1499 'src/core/lib/iomgr/exec_ctx.cc',
1500 'src/core/lib/iomgr/executor.cc',
1501 'src/core/lib/iomgr/fork_posix.cc',
1502 'src/core/lib/iomgr/fork_windows.cc',
1503 'src/core/lib/iomgr/gethostname_fallback.cc',
1504 'src/core/lib/iomgr/gethostname_host_name_max.cc',
1505 'src/core/lib/iomgr/gethostname_sysconf.cc',
1506 'src/core/lib/iomgr/iocp_windows.cc',
1507 'src/core/lib/iomgr/iomgr.cc',
1508 'src/core/lib/iomgr/iomgr_custom.cc',
1509 'src/core/lib/iomgr/iomgr_internal.cc',
1510 'src/core/lib/iomgr/iomgr_posix.cc',
1511 'src/core/lib/iomgr/iomgr_uv.cc',
1512 'src/core/lib/iomgr/iomgr_windows.cc',
1513 'src/core/lib/iomgr/is_epollexclusive_available.cc',
1514 'src/core/lib/iomgr/load_file.cc',
1515 'src/core/lib/iomgr/lockfree_event.cc',
1516 'src/core/lib/iomgr/network_status_tracker.cc',
1517 'src/core/lib/iomgr/polling_entity.cc',
1518 'src/core/lib/iomgr/pollset.cc',
1519 'src/core/lib/iomgr/pollset_custom.cc',
1520 'src/core/lib/iomgr/pollset_set.cc',
1521 'src/core/lib/iomgr/pollset_set_custom.cc',
1522 'src/core/lib/iomgr/pollset_set_windows.cc',
1523 'src/core/lib/iomgr/pollset_uv.cc',
1524 'src/core/lib/iomgr/pollset_windows.cc',
1525 'src/core/lib/iomgr/resolve_address.cc',
1526 'src/core/lib/iomgr/resolve_address_custom.cc',
1527 'src/core/lib/iomgr/resolve_address_posix.cc',
1528 'src/core/lib/iomgr/resolve_address_windows.cc',
1529 'src/core/lib/iomgr/resource_quota.cc',
1530 'src/core/lib/iomgr/sockaddr_utils.cc',
1531 'src/core/lib/iomgr/socket_factory_posix.cc',
1532 'src/core/lib/iomgr/socket_mutator.cc',
1533 'src/core/lib/iomgr/socket_utils_common_posix.cc',
1534 'src/core/lib/iomgr/socket_utils_linux.cc',
1535 'src/core/lib/iomgr/socket_utils_posix.cc',
1536 'src/core/lib/iomgr/socket_utils_uv.cc',
1537 'src/core/lib/iomgr/socket_utils_windows.cc',
1538 'src/core/lib/iomgr/socket_windows.cc',
1539 'src/core/lib/iomgr/tcp_client.cc',
1540 'src/core/lib/iomgr/tcp_client_custom.cc',
1541 'src/core/lib/iomgr/tcp_client_posix.cc',
1542 'src/core/lib/iomgr/tcp_client_windows.cc',
1543 'src/core/lib/iomgr/tcp_custom.cc',
1544 'src/core/lib/iomgr/tcp_posix.cc',
1545 'src/core/lib/iomgr/tcp_server.cc',
1546 'src/core/lib/iomgr/tcp_server_custom.cc',
1547 'src/core/lib/iomgr/tcp_server_posix.cc',
1548 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
1549 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
1550 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
1551 'src/core/lib/iomgr/tcp_server_windows.cc',
1552 'src/core/lib/iomgr/tcp_uv.cc',
1553 'src/core/lib/iomgr/tcp_windows.cc',
1554 'src/core/lib/iomgr/time_averaged_stats.cc',
1555 'src/core/lib/iomgr/timer.cc',
1556 'src/core/lib/iomgr/timer_custom.cc',
1557 'src/core/lib/iomgr/timer_generic.cc',
1558 'src/core/lib/iomgr/timer_heap.cc',
1559 'src/core/lib/iomgr/timer_manager.cc',
1560 'src/core/lib/iomgr/timer_uv.cc',
1561 'src/core/lib/iomgr/udp_server.cc',
1562 'src/core/lib/iomgr/unix_sockets_posix.cc',
1563 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
1564 'src/core/lib/iomgr/wakeup_fd_cv.cc',
1565 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
1566 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
1567 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
1568 'src/core/lib/iomgr/wakeup_fd_posix.cc',
1569 'src/core/lib/json/json.cc',
1570 'src/core/lib/json/json_reader.cc',
1571 'src/core/lib/json/json_string.cc',
1572 'src/core/lib/json/json_writer.cc',
1573 'src/core/lib/slice/b64.cc',
1574 'src/core/lib/slice/percent_encoding.cc',
1575 'src/core/lib/slice/slice.cc',
1576 'src/core/lib/slice/slice_buffer.cc',
1577 'src/core/lib/slice/slice_intern.cc',
1578 'src/core/lib/slice/slice_string_helpers.cc',
1579 'src/core/lib/surface/api_trace.cc',
1580 'src/core/lib/surface/byte_buffer.cc',
1581 'src/core/lib/surface/byte_buffer_reader.cc',
1582 'src/core/lib/surface/call.cc',
1583 'src/core/lib/surface/call_details.cc',
1584 'src/core/lib/surface/call_log_batch.cc',
1585 'src/core/lib/surface/channel.cc',
1586 'src/core/lib/surface/channel_init.cc',
1587 'src/core/lib/surface/channel_ping.cc',
1588 'src/core/lib/surface/channel_stack_type.cc',
1589 'src/core/lib/surface/completion_queue.cc',
1590 'src/core/lib/surface/completion_queue_factory.cc',
1591 'src/core/lib/surface/event_string.cc',
1592 'src/core/lib/surface/lame_client.cc',
1593 'src/core/lib/surface/metadata_array.cc',
1594 'src/core/lib/surface/server.cc',
1595 'src/core/lib/surface/validate_metadata.cc',
1596 'src/core/lib/surface/version.cc',
1597 'src/core/lib/transport/bdp_estimator.cc',
1598 'src/core/lib/transport/byte_stream.cc',
1599 'src/core/lib/transport/connectivity_state.cc',
1600 'src/core/lib/transport/error_utils.cc',
1601 'src/core/lib/transport/metadata.cc',
1602 'src/core/lib/transport/metadata_batch.cc',
1603 'src/core/lib/transport/pid_controller.cc',
1604 'src/core/lib/transport/service_config.cc',
1605 'src/core/lib/transport/static_metadata.cc',
1606 'src/core/lib/transport/status_conversion.cc',
1607 'src/core/lib/transport/status_metadata.cc',
1608 'src/core/lib/transport/timeout_encoding.cc',
1609 'src/core/lib/transport/transport.cc',
1610 'src/core/lib/transport/transport_op_string.cc',
1611 'src/core/lib/debug/trace.cc',
Muxi Yanb94d6812018-03-20 14:17:47 -07001612 'src/core/ext/filters/deadline/deadline_filter.cc',
1613 'src/core/ext/filters/message_size/message_size_filter.cc',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001614 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc',
1615 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc',
1616 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc',
1617 'src/core/ext/transport/cronet/transport/cronet_transport.cc',
1618 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
1619 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
1620 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
1621 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
1622 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
1623 'src/core/ext/transport/chttp2/transport/flow_control.cc',
1624 'src/core/ext/transport/chttp2/transport/frame_data.cc',
1625 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
1626 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
1627 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
1628 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
1629 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
1630 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
1631 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
1632 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
1633 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
1634 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
1635 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
1636 'src/core/ext/transport/chttp2/transport/parsing.cc',
1637 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
1638 'src/core/ext/transport/chttp2/transport/stream_map.cc',
1639 'src/core/ext/transport/chttp2/transport/varint.cc',
1640 'src/core/ext/transport/chttp2/transport/writing.cc',
1641 'src/core/ext/transport/chttp2/alpn/alpn.cc',
1642 'src/core/ext/filters/http/client/http_client_filter.cc',
1643 'src/core/ext/filters/http/http_filters_plugin.cc',
1644 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
1645 'src/core/ext/filters/http/server/http_server_filter.cc',
1646 'src/core/ext/filters/client_channel/backup_poller.cc',
1647 'src/core/ext/filters/client_channel/channel_connectivity.cc',
1648 'src/core/ext/filters/client_channel/client_channel.cc',
1649 'src/core/ext/filters/client_channel/client_channel_factory.cc',
1650 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
1651 'src/core/ext/filters/client_channel/connector.cc',
1652 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
1653 'src/core/ext/filters/client_channel/http_proxy.cc',
1654 'src/core/ext/filters/client_channel/lb_policy.cc',
1655 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
1656 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
1657 'src/core/ext/filters/client_channel/method_params.cc',
1658 'src/core/ext/filters/client_channel/parse_address.cc',
1659 'src/core/ext/filters/client_channel/proxy_mapper.cc',
1660 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
1661 'src/core/ext/filters/client_channel/resolver.cc',
1662 'src/core/ext/filters/client_channel/resolver_registry.cc',
1663 'src/core/ext/filters/client_channel/retry_throttle.cc',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001664 'src/core/ext/filters/client_channel/subchannel.cc',
1665 'src/core/ext/filters/client_channel/subchannel_index.cc',
1666 'src/core/ext/filters/client_channel/uri_parser.cc',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001667 'src/core/lib/http/httpcli_security_connector.cc',
1668 'src/core/lib/security/context/security_context.cc',
1669 'src/core/lib/security/credentials/alts/alts_credentials.cc',
1670 'src/core/lib/security/credentials/composite/composite_credentials.cc',
1671 'src/core/lib/security/credentials/credentials.cc',
1672 'src/core/lib/security/credentials/credentials_metadata.cc',
1673 'src/core/lib/security/credentials/fake/fake_credentials.cc',
1674 'src/core/lib/security/credentials/google_default/credentials_generic.cc',
1675 'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
1676 'src/core/lib/security/credentials/iam/iam_credentials.cc',
1677 'src/core/lib/security/credentials/jwt/json_token.cc',
1678 'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
1679 'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
1680 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
1681 'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
1682 'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
1683 'src/core/lib/security/security_connector/alts_security_connector.cc',
1684 'src/core/lib/security/security_connector/security_connector.cc',
1685 'src/core/lib/security/transport/client_auth_filter.cc',
1686 'src/core/lib/security/transport/secure_endpoint.cc',
1687 'src/core/lib/security/transport/security_handshaker.cc',
1688 'src/core/lib/security/transport/server_auth_filter.cc',
1689 'src/core/lib/security/transport/target_authority_table.cc',
1690 'src/core/lib/security/transport/tsi_error.cc',
1691 'src/core/lib/security/util/json_util.cc',
1692 'src/core/lib/surface/init_secure.cc',
1693 'src/core/tsi/alts/crypt/aes_gcm.cc',
1694 'src/core/tsi/alts/crypt/gsec.cc',
1695 'src/core/tsi/alts/frame_protector/alts_counter.cc',
1696 'src/core/tsi/alts/frame_protector/alts_crypter.cc',
1697 'src/core/tsi/alts/frame_protector/alts_frame_protector.cc',
1698 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc',
1699 'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc',
1700 'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc',
1701 'src/core/tsi/alts/frame_protector/frame_handler.cc',
1702 'src/core/tsi/alts/handshaker/alts_handshaker_client.cc',
1703 'src/core/tsi/alts/handshaker/alts_tsi_event.cc',
1704 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc',
1705 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc',
1706 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc',
1707 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc',
1708 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc',
1709 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc',
1710 'src/core/lib/security/credentials/alts/check_gcp_environment.cc',
1711 'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc',
1712 'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc',
1713 'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc',
1714 'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc',
1715 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc',
1716 'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc',
1717 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc',
1718 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc',
1719 'src/core/tsi/alts/handshaker/alts_tsi_utils.cc',
1720 'src/core/tsi/alts/handshaker/transport_security_common_api.cc',
1721 'src/core/tsi/alts/handshaker/altscontext.pb.c',
1722 'src/core/tsi/alts/handshaker/handshaker.pb.c',
1723 'src/core/tsi/alts/handshaker/transport_security_common.pb.c',
1724 'third_party/nanopb/pb_common.c',
1725 'third_party/nanopb/pb_decode.c',
1726 'third_party/nanopb/pb_encode.c',
1727 'src/core/tsi/transport_security.cc',
1728 'src/core/tsi/transport_security_adapter.cc',
1729 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
1730 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
1731 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
1732 'src/core/tsi/alts_transport_security.cc',
1733 'src/core/tsi/fake_transport_security.cc',
kpayson64dd011f22018-03-21 15:45:05 -07001734 'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc',
1735 'src/core/tsi/ssl/session_cache/ssl_session_cache.cc',
1736 'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001737 'src/core/tsi/ssl_transport_security.cc',
1738 'src/core/tsi/transport_security_grpc.cc',
1739 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
1740 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
1741 'src/core/plugin_registry/grpc_cronet_plugin_registry.cc'
1742
1743 ss.private_header_files = 'src/core/lib/gpr/arena.h',
1744 'src/core/lib/gpr/env.h',
1745 'src/core/lib/gpr/fork.h',
1746 'src/core/lib/gpr/host_port.h',
1747 'src/core/lib/gpr/mpscq.h',
1748 'src/core/lib/gpr/murmur_hash.h',
1749 'src/core/lib/gpr/spinlock.h',
1750 'src/core/lib/gpr/string.h',
1751 'src/core/lib/gpr/string_windows.h',
1752 'src/core/lib/gpr/time_precise.h',
1753 'src/core/lib/gpr/tls.h',
1754 'src/core/lib/gpr/tls_gcc.h',
1755 'src/core/lib/gpr/tls_msvc.h',
1756 'src/core/lib/gpr/tls_pthread.h',
1757 'src/core/lib/gpr/tmpfile.h',
1758 'src/core/lib/gpr/useful.h',
1759 'src/core/lib/gprpp/abstract.h',
1760 'src/core/lib/gprpp/atomic.h',
1761 'src/core/lib/gprpp/atomic_with_atm.h',
1762 'src/core/lib/gprpp/atomic_with_std.h',
1763 'src/core/lib/gprpp/manual_constructor.h',
1764 'src/core/lib/gprpp/memory.h',
1765 'src/core/lib/gprpp/thd.h',
1766 'src/core/lib/profiling/timers.h',
1767 'src/core/lib/avl/avl.h',
1768 'src/core/lib/backoff/backoff.h',
1769 'src/core/lib/channel/channel_args.h',
1770 'src/core/lib/channel/channel_stack.h',
1771 'src/core/lib/channel/channel_stack_builder.h',
David Garcia Quintas0bc1e1d2018-03-21 17:50:57 -07001772 'src/core/lib/channel/channel_trace.h',
1773 'src/core/lib/channel/channel_trace_registry.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001774 'src/core/lib/channel/connected_channel.h',
1775 'src/core/lib/channel/context.h',
1776 'src/core/lib/channel/handshaker.h',
1777 'src/core/lib/channel/handshaker_factory.h',
1778 'src/core/lib/channel/handshaker_registry.h',
David Garcia Quintas0bc1e1d2018-03-21 17:50:57 -07001779 'src/core/lib/channel/status_util.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001780 'src/core/lib/compression/algorithm_metadata.h',
1781 'src/core/lib/compression/compression_internal.h',
1782 'src/core/lib/compression/message_compress.h',
1783 'src/core/lib/compression/stream_compression.h',
1784 'src/core/lib/compression/stream_compression_gzip.h',
1785 'src/core/lib/compression/stream_compression_identity.h',
1786 'src/core/lib/debug/stats.h',
1787 'src/core/lib/debug/stats_data.h',
1788 'src/core/lib/gprpp/debug_location.h',
1789 'src/core/lib/gprpp/inlined_vector.h',
1790 'src/core/lib/gprpp/orphanable.h',
1791 'src/core/lib/gprpp/ref_counted.h',
1792 'src/core/lib/gprpp/ref_counted_ptr.h',
1793 'src/core/lib/http/format_request.h',
1794 'src/core/lib/http/httpcli.h',
1795 'src/core/lib/http/parser.h',
1796 'src/core/lib/iomgr/block_annotate.h',
1797 'src/core/lib/iomgr/call_combiner.h',
1798 'src/core/lib/iomgr/closure.h',
1799 'src/core/lib/iomgr/combiner.h',
1800 'src/core/lib/iomgr/endpoint.h',
1801 'src/core/lib/iomgr/endpoint_pair.h',
1802 'src/core/lib/iomgr/error.h',
1803 'src/core/lib/iomgr/error_internal.h',
1804 'src/core/lib/iomgr/ev_epoll1_linux.h',
1805 'src/core/lib/iomgr/ev_epollex_linux.h',
1806 'src/core/lib/iomgr/ev_epollsig_linux.h',
1807 'src/core/lib/iomgr/ev_poll_posix.h',
1808 'src/core/lib/iomgr/ev_posix.h',
1809 'src/core/lib/iomgr/exec_ctx.h',
1810 'src/core/lib/iomgr/executor.h',
1811 'src/core/lib/iomgr/gethostname.h',
1812 'src/core/lib/iomgr/iocp_windows.h',
1813 'src/core/lib/iomgr/iomgr.h',
1814 'src/core/lib/iomgr/iomgr_custom.h',
1815 'src/core/lib/iomgr/iomgr_internal.h',
1816 'src/core/lib/iomgr/iomgr_posix.h',
1817 'src/core/lib/iomgr/is_epollexclusive_available.h',
1818 'src/core/lib/iomgr/load_file.h',
1819 'src/core/lib/iomgr/lockfree_event.h',
1820 'src/core/lib/iomgr/nameser.h',
1821 'src/core/lib/iomgr/network_status_tracker.h',
1822 'src/core/lib/iomgr/polling_entity.h',
1823 'src/core/lib/iomgr/pollset.h',
1824 'src/core/lib/iomgr/pollset_custom.h',
1825 'src/core/lib/iomgr/pollset_set.h',
1826 'src/core/lib/iomgr/pollset_set_custom.h',
1827 'src/core/lib/iomgr/pollset_set_windows.h',
1828 'src/core/lib/iomgr/pollset_windows.h',
1829 'src/core/lib/iomgr/port.h',
1830 'src/core/lib/iomgr/resolve_address.h',
1831 'src/core/lib/iomgr/resolve_address_custom.h',
1832 'src/core/lib/iomgr/resource_quota.h',
1833 'src/core/lib/iomgr/sockaddr.h',
1834 'src/core/lib/iomgr/sockaddr_custom.h',
1835 'src/core/lib/iomgr/sockaddr_posix.h',
1836 'src/core/lib/iomgr/sockaddr_utils.h',
1837 'src/core/lib/iomgr/sockaddr_windows.h',
1838 'src/core/lib/iomgr/socket_factory_posix.h',
1839 'src/core/lib/iomgr/socket_mutator.h',
1840 'src/core/lib/iomgr/socket_utils.h',
1841 'src/core/lib/iomgr/socket_utils_posix.h',
1842 'src/core/lib/iomgr/socket_windows.h',
1843 'src/core/lib/iomgr/sys_epoll_wrapper.h',
1844 'src/core/lib/iomgr/tcp_client.h',
1845 'src/core/lib/iomgr/tcp_client_posix.h',
1846 'src/core/lib/iomgr/tcp_custom.h',
1847 'src/core/lib/iomgr/tcp_posix.h',
1848 'src/core/lib/iomgr/tcp_server.h',
1849 'src/core/lib/iomgr/tcp_server_utils_posix.h',
1850 'src/core/lib/iomgr/tcp_windows.h',
1851 'src/core/lib/iomgr/time_averaged_stats.h',
1852 'src/core/lib/iomgr/timer.h',
1853 'src/core/lib/iomgr/timer_custom.h',
1854 'src/core/lib/iomgr/timer_heap.h',
1855 'src/core/lib/iomgr/timer_manager.h',
1856 'src/core/lib/iomgr/udp_server.h',
1857 'src/core/lib/iomgr/unix_sockets_posix.h',
1858 'src/core/lib/iomgr/wakeup_fd_cv.h',
1859 'src/core/lib/iomgr/wakeup_fd_pipe.h',
1860 'src/core/lib/iomgr/wakeup_fd_posix.h',
1861 'src/core/lib/json/json.h',
1862 'src/core/lib/json/json_common.h',
1863 'src/core/lib/json/json_reader.h',
1864 'src/core/lib/json/json_writer.h',
1865 'src/core/lib/slice/b64.h',
1866 'src/core/lib/slice/percent_encoding.h',
1867 'src/core/lib/slice/slice_hash_table.h',
1868 'src/core/lib/slice/slice_internal.h',
1869 'src/core/lib/slice/slice_string_helpers.h',
1870 'src/core/lib/slice/slice_weak_hash_table.h',
1871 'src/core/lib/surface/api_trace.h',
1872 'src/core/lib/surface/call.h',
1873 'src/core/lib/surface/call_test_only.h',
1874 'src/core/lib/surface/channel.h',
1875 'src/core/lib/surface/channel_init.h',
1876 'src/core/lib/surface/channel_stack_type.h',
1877 'src/core/lib/surface/completion_queue.h',
1878 'src/core/lib/surface/completion_queue_factory.h',
1879 'src/core/lib/surface/event_string.h',
1880 'src/core/lib/surface/init.h',
1881 'src/core/lib/surface/lame_client.h',
1882 'src/core/lib/surface/server.h',
1883 'src/core/lib/surface/validate_metadata.h',
1884 'src/core/lib/transport/bdp_estimator.h',
1885 'src/core/lib/transport/byte_stream.h',
1886 'src/core/lib/transport/connectivity_state.h',
1887 'src/core/lib/transport/error_utils.h',
1888 'src/core/lib/transport/http2_errors.h',
1889 'src/core/lib/transport/metadata.h',
1890 'src/core/lib/transport/metadata_batch.h',
1891 'src/core/lib/transport/pid_controller.h',
1892 'src/core/lib/transport/service_config.h',
1893 'src/core/lib/transport/static_metadata.h',
1894 'src/core/lib/transport/status_conversion.h',
1895 'src/core/lib/transport/status_metadata.h',
1896 'src/core/lib/transport/timeout_encoding.h',
1897 'src/core/lib/transport/transport.h',
1898 'src/core/lib/transport/transport_impl.h',
1899 'src/core/lib/debug/trace.h',
Muxi Yanb94d6812018-03-20 14:17:47 -07001900 'src/core/ext/filters/deadline/deadline_filter.h',
1901 'src/core/ext/filters/message_size/message_size_filter.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001902 'src/core/ext/filters/load_reporting/server_load_reporting_filter.h',
1903 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.h',
1904 'src/core/ext/transport/cronet/transport/cronet_transport.h',
1905 'third_party/objective_c/Cronet/bidirectional_stream_c.h',
1906 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
1907 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
1908 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
1909 'src/core/ext/transport/chttp2/transport/flow_control.h',
1910 'src/core/ext/transport/chttp2/transport/frame.h',
1911 'src/core/ext/transport/chttp2/transport/frame_data.h',
1912 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
1913 'src/core/ext/transport/chttp2/transport/frame_ping.h',
1914 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
1915 'src/core/ext/transport/chttp2/transport/frame_settings.h',
1916 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
1917 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
1918 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
1919 'src/core/ext/transport/chttp2/transport/hpack_table.h',
1920 'src/core/ext/transport/chttp2/transport/http2_settings.h',
1921 'src/core/ext/transport/chttp2/transport/huffsyms.h',
1922 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
1923 'src/core/ext/transport/chttp2/transport/internal.h',
1924 'src/core/ext/transport/chttp2/transport/stream_map.h',
1925 'src/core/ext/transport/chttp2/transport/varint.h',
1926 'src/core/ext/transport/chttp2/alpn/alpn.h',
1927 'src/core/ext/filters/http/client/http_client_filter.h',
1928 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
1929 'src/core/ext/filters/http/server/http_server_filter.h',
1930 'src/core/ext/filters/client_channel/backup_poller.h',
1931 'src/core/ext/filters/client_channel/client_channel.h',
1932 'src/core/ext/filters/client_channel/client_channel_factory.h',
1933 'src/core/ext/filters/client_channel/connector.h',
1934 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
1935 'src/core/ext/filters/client_channel/http_proxy.h',
1936 'src/core/ext/filters/client_channel/lb_policy.h',
1937 'src/core/ext/filters/client_channel/lb_policy_factory.h',
1938 'src/core/ext/filters/client_channel/lb_policy_registry.h',
1939 'src/core/ext/filters/client_channel/method_params.h',
1940 'src/core/ext/filters/client_channel/parse_address.h',
1941 'src/core/ext/filters/client_channel/proxy_mapper.h',
1942 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
1943 'src/core/ext/filters/client_channel/resolver.h',
1944 'src/core/ext/filters/client_channel/resolver_factory.h',
1945 'src/core/ext/filters/client_channel/resolver_registry.h',
1946 'src/core/ext/filters/client_channel/retry_throttle.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001947 'src/core/ext/filters/client_channel/subchannel.h',
1948 'src/core/ext/filters/client_channel/subchannel_index.h',
1949 'src/core/ext/filters/client_channel/uri_parser.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07001950 'src/core/lib/security/context/security_context.h',
1951 'src/core/lib/security/credentials/alts/alts_credentials.h',
1952 'src/core/lib/security/credentials/composite/composite_credentials.h',
1953 'src/core/lib/security/credentials/credentials.h',
1954 'src/core/lib/security/credentials/fake/fake_credentials.h',
1955 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
1956 'src/core/lib/security/credentials/iam/iam_credentials.h',
1957 'src/core/lib/security/credentials/jwt/json_token.h',
1958 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
1959 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
1960 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
1961 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
1962 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
1963 'src/core/lib/security/security_connector/alts_security_connector.h',
1964 'src/core/lib/security/security_connector/security_connector.h',
1965 'src/core/lib/security/transport/auth_filters.h',
1966 'src/core/lib/security/transport/secure_endpoint.h',
1967 'src/core/lib/security/transport/security_handshaker.h',
1968 'src/core/lib/security/transport/target_authority_table.h',
1969 'src/core/lib/security/transport/tsi_error.h',
1970 'src/core/lib/security/util/json_util.h',
1971 'src/core/tsi/alts/crypt/gsec.h',
1972 'src/core/tsi/alts/frame_protector/alts_counter.h',
1973 'src/core/tsi/alts/frame_protector/alts_crypter.h',
1974 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
1975 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
1976 'src/core/tsi/alts/frame_protector/frame_handler.h',
1977 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
1978 'src/core/tsi/alts/handshaker/alts_tsi_event.h',
1979 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
1980 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
1981 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
1982 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
1983 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
1984 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
1985 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
1986 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
1987 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
1988 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
1989 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
1990 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
1991 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
1992 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
1993 'src/core/tsi/alts/handshaker/altscontext.pb.h',
1994 'src/core/tsi/alts/handshaker/handshaker.pb.h',
1995 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
1996 'third_party/nanopb/pb.h',
1997 'third_party/nanopb/pb_common.h',
1998 'third_party/nanopb/pb_decode.h',
1999 'third_party/nanopb/pb_encode.h',
2000 'src/core/tsi/transport_security.h',
2001 'src/core/tsi/transport_security_adapter.h',
2002 'src/core/tsi/transport_security_interface.h',
2003 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
2004 'src/core/tsi/alts_transport_security.h',
2005 'src/core/tsi/fake_transport_security.h',
kpayson64dd011f22018-03-21 15:45:05 -07002006 'src/core/tsi/ssl/session_cache/ssl_session.h',
2007 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Muxi Yan7cc4bd82018-03-19 18:34:58 -07002008 'src/core/tsi/ssl_transport_security.h',
2009 'src/core/tsi/ssl_types.h',
2010 'src/core/tsi/transport_security_grpc.h',
2011 'src/core/ext/transport/chttp2/server/chttp2_server.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -07002012 end
2013
Muxi Yan7cc4bd82018-03-19 18:34:58 -07002014 s.subspec 'Cronet-Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -07002015 ss.header_mappings_dir = '.'
2016
Muxi Yan7cc4bd82018-03-19 18:34:58 -07002017 ss.dependency "#{s.name}/Cronet-Interface", version
2018 ss.dependency "#{s.name}/Cronet-Implementation", version
Muxi Yane2de92f2017-01-31 16:30:52 -08002019
Muxi Yanb0f821c2017-12-19 15:37:57 -08002020 ss.source_files = 'test/core/util/test_config.cc',
2021 'test/core/util/test_config.h',
2022 'test/core/end2end/data/client_certs.cc',
2023 'test/core/end2end/data/server1_cert.cc',
2024 'test/core/end2end/data/server1_key.cc',
2025 'test/core/end2end/data/test_root_cert.cc',
2026 'test/core/security/oauth2_utils.cc',
2027 'test/core/end2end/cq_verifier.cc',
2028 'test/core/end2end/fixtures/http_proxy_fixture.cc',
2029 'test/core/end2end/fixtures/proxy.cc',
2030 'test/core/iomgr/endpoint_tests.cc',
2031 'test/core/util/debugger_macros.cc',
2032 'test/core/util/grpc_profiler.cc',
2033 'test/core/util/histogram.cc',
2034 'test/core/util/memory_counters.cc',
2035 'test/core/util/mock_endpoint.cc',
2036 'test/core/util/parse_hexstring.cc',
2037 'test/core/util/passthru_endpoint.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002038 'test/core/util/port.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002039 'test/core/util/port_isolated_runtime_environment.cc',
2040 'test/core/util/port_server_client.cc',
2041 'test/core/util/slice_splitter.cc',
Vijay Pai8a99fdb2018-01-25 15:38:20 -08002042 'test/core/util/subprocess_posix.cc',
2043 'test/core/util/subprocess_windows.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002044 'test/core/util/tracer_util.cc',
2045 'test/core/util/trickle_endpoint.cc',
Vijay Pai80e23d12018-01-25 21:50:18 -08002046 'test/core/util/cmdline.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002047 'test/core/end2end/data/ssl_test_data.h',
2048 'test/core/security/oauth2_utils.h',
2049 'test/core/end2end/cq_verifier.h',
2050 'test/core/end2end/fixtures/http_proxy_fixture.h',
2051 'test/core/end2end/fixtures/proxy.h',
2052 'test/core/iomgr/endpoint_tests.h',
2053 'test/core/util/debugger_macros.h',
2054 'test/core/util/grpc_profiler.h',
2055 'test/core/util/histogram.h',
2056 'test/core/util/memory_counters.h',
2057 'test/core/util/mock_endpoint.h',
2058 'test/core/util/parse_hexstring.h',
2059 'test/core/util/passthru_endpoint.h',
2060 'test/core/util/port.h',
2061 'test/core/util/port_server_client.h',
2062 'test/core/util/slice_splitter.h',
Vijay Pai8a99fdb2018-01-25 15:38:20 -08002063 'test/core/util/subprocess.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002064 'test/core/util/tracer_util.h',
2065 'test/core/util/trickle_endpoint.h',
Vijay Pai80e23d12018-01-25 21:50:18 -08002066 'test/core/util/cmdline.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002067 'test/core/end2end/end2end_tests.cc',
2068 'test/core/end2end/end2end_test_utils.cc',
2069 'test/core/end2end/tests/authority_not_supported.cc',
2070 'test/core/end2end/tests/bad_hostname.cc',
2071 'test/core/end2end/tests/bad_ping.cc',
2072 'test/core/end2end/tests/binary_metadata.cc',
2073 'test/core/end2end/tests/call_creds.cc',
2074 'test/core/end2end/tests/cancel_after_accept.cc',
2075 'test/core/end2end/tests/cancel_after_client_done.cc',
2076 'test/core/end2end/tests/cancel_after_invoke.cc',
2077 'test/core/end2end/tests/cancel_after_round_trip.cc',
2078 'test/core/end2end/tests/cancel_before_invoke.cc',
2079 'test/core/end2end/tests/cancel_in_a_vacuum.cc',
2080 'test/core/end2end/tests/cancel_with_status.cc',
2081 'test/core/end2end/tests/compressed_payload.cc',
2082 'test/core/end2end/tests/connectivity.cc',
2083 'test/core/end2end/tests/default_host.cc',
2084 'test/core/end2end/tests/disappearing_server.cc',
2085 'test/core/end2end/tests/empty_batch.cc',
2086 'test/core/end2end/tests/filter_call_init_fails.cc',
2087 'test/core/end2end/tests/filter_causes_close.cc',
2088 'test/core/end2end/tests/filter_latency.cc',
Ken Payson6535cfd2018-01-04 12:56:52 -08002089 'test/core/end2end/tests/filter_status_code.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002090 'test/core/end2end/tests/graceful_server_shutdown.cc',
2091 'test/core/end2end/tests/high_initial_seqno.cc',
2092 'test/core/end2end/tests/hpack_size.cc',
2093 'test/core/end2end/tests/idempotent_request.cc',
2094 'test/core/end2end/tests/invoke_large_request.cc',
2095 'test/core/end2end/tests/keepalive_timeout.cc',
2096 'test/core/end2end/tests/large_metadata.cc',
2097 'test/core/end2end/tests/load_reporting_hook.cc',
2098 'test/core/end2end/tests/max_concurrent_streams.cc',
2099 'test/core/end2end/tests/max_connection_age.cc',
2100 'test/core/end2end/tests/max_connection_idle.cc',
2101 'test/core/end2end/tests/max_message_length.cc',
2102 'test/core/end2end/tests/negative_deadline.cc',
2103 'test/core/end2end/tests/network_status_change.cc',
2104 'test/core/end2end/tests/no_logging.cc',
2105 'test/core/end2end/tests/no_op.cc',
2106 'test/core/end2end/tests/payload.cc',
2107 'test/core/end2end/tests/ping.cc',
2108 'test/core/end2end/tests/ping_pong_streaming.cc',
2109 'test/core/end2end/tests/proxy_auth.cc',
2110 'test/core/end2end/tests/registered_call.cc',
2111 'test/core/end2end/tests/request_with_flags.cc',
2112 'test/core/end2end/tests/request_with_payload.cc',
2113 'test/core/end2end/tests/resource_quota_server.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -08002114 'test/core/end2end/tests/retry.cc',
2115 'test/core/end2end/tests/retry_cancellation.cc',
2116 'test/core/end2end/tests/retry_disabled.cc',
2117 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc',
2118 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc',
2119 'test/core/end2end/tests/retry_non_retriable_status.cc',
2120 'test/core/end2end/tests/retry_recv_initial_metadata.cc',
2121 'test/core/end2end/tests/retry_recv_message.cc',
2122 'test/core/end2end/tests/retry_server_pushback_delay.cc',
2123 'test/core/end2end/tests/retry_server_pushback_disabled.cc',
2124 'test/core/end2end/tests/retry_streaming.cc',
2125 'test/core/end2end/tests/retry_streaming_after_commit.cc',
2126 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc',
2127 'test/core/end2end/tests/retry_throttled.cc',
2128 'test/core/end2end/tests/retry_too_many_attempts.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08002129 'test/core/end2end/tests/server_finishes_request.cc',
2130 'test/core/end2end/tests/shutdown_finishes_calls.cc',
2131 'test/core/end2end/tests/shutdown_finishes_tags.cc',
2132 'test/core/end2end/tests/simple_cacheable_request.cc',
2133 'test/core/end2end/tests/simple_delayed_request.cc',
2134 'test/core/end2end/tests/simple_metadata.cc',
2135 'test/core/end2end/tests/simple_request.cc',
2136 'test/core/end2end/tests/stream_compression_compressed_payload.cc',
2137 'test/core/end2end/tests/stream_compression_payload.cc',
2138 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc',
2139 'test/core/end2end/tests/streaming_error_response.cc',
2140 'test/core/end2end/tests/trailing_metadata.cc',
2141 'test/core/end2end/tests/workaround_cronet_compression.cc',
2142 'test/core/end2end/tests/write_buffering.cc',
2143 'test/core/end2end/tests/write_buffering_at_end.cc',
2144 'test/core/end2end/tests/cancel_test_helpers.h',
2145 'test/core/end2end/end2end_tests.h'
Muxi Yan37480eb2016-07-14 16:22:03 -07002146 end
Muxi Yan43c47102017-07-06 20:51:49 -07002147
2148 # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
2149 s.prepare_command = <<-END_OF_COMMAND
Daniel Alm1450fd52018-03-08 09:32:07 +01002150 find src/core/ -type f ! -path '*.back*' -exec sed -E -i'.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\;
Muxi Yan43c47102017-07-06 20:51:49 -07002151 END_OF_COMMAND
Jorge Canizalese487a722016-04-30 12:05:26 -07002152end