blob: c7ffda130de465789e887eb172749cd3de40b533 [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'
Esun Kim1399d062019-07-02 10:16:36 -070025 version = '1.22.0'
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'
Maxim Bunkovb6ac1cb2018-12-11 14:11:00 +050043 s.tvos.deployment_target = '10.0'
Muxi Yand9beacb2019-01-17 13:37:33 -080044
Jorge Canizalese487a722016-04-30 12:05:26 -070045 s.requires_arc = false
46
47 name = 'grpc'
Jorge Canizalese487a722016-04-30 12:05:26 -070048
Jorge Canizalescc074d92016-06-28 09:52:43 -070049 # When creating a dynamic framework, name it grpc.framework instead of gRPC-Core.framework.
50 # This lets users write their includes like `#include <grpc/grpc.h>` as opposed to `#include
51 # <gRPC-Core/grpc.h>`.
52 s.module_name = name
53
54 # When creating a dynamic framework, copy the headers under `include/grpc/` into the root of
55 # the `Headers/` directory of the framework (i.e., not under `Headers/include/grpc`).
56 #
57 # TODO(jcanizales): Debug why this doesn't work on macOS.
Jorge Canizales37750742016-06-08 20:10:20 -070058 s.header_mappings_dir = 'include/grpc'
59
Jorge Canizalescc074d92016-06-28 09:52:43 -070060 # The above has an undesired effect when creating a static library: It forces users to write
61 # includes like `#include <gRPC-Core/grpc.h>`. `s.header_dir` adds a path prefix to that, and
62 # because Cocoapods lets omit the pod name when including headers of static libraries, the
63 # following lets users write `#include <grpc/grpc.h>`.
64 s.header_dir = name
Jorge Canizales37750742016-06-08 20:10:20 -070065
Jorge Canizalescc074d92016-06-28 09:52:43 -070066 # The module map created automatically by Cocoapods doesn't work for C libraries like gRPC-Core.
Jorge Canizales547f0652016-05-01 19:52:21 -070067 s.module_map = 'include/grpc/module.modulemap'
68
Jorge Canizalescc074d92016-06-28 09:52:43 -070069 # To compile the library, we need the user headers search path (quoted includes) to point to the
70 # root of the repo, and the system headers search path (angled includes) to point to `include/`.
71 # Cocoapods effectively clones the repo under `<Podfile dir>/Pods/gRPC-Core/`, and sets a build
72 # variable called `$(PODS_ROOT)` to `<Podfile dir>/Pods/`, so we use that.
73 #
74 # Relying on the file structure under $(PODS_ROOT) isn't officially supported in Cocoapods, as it
75 # is taken as an implementation detail. We've asked for an alternative, and have been told that
76 # what we're doing should keep working: https://github.com/CocoaPods/CocoaPods/issues/4386
77 #
78 # The `src_root` value of `$(PODS_ROOT)/gRPC-Core` assumes Cocoapods is installing this pod from
79 # its remote repo. For local development of this library, enabled by using `:path` in the Podfile,
80 # that assumption is wrong. In such case, the following settings need to be reset with the
81 # appropriate value of `src_root`. This can be accomplished in the `pre_install` hook of the
82 # Podfile; see `src/objective-c/tests/Podfile` for an example.
83 src_root = '$(PODS_ROOT)/gRPC-Core'
84 s.pod_target_xcconfig = {
85 'GRPC_SRC_ROOT' => src_root,
86 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
87 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
88 # If we don't set these two settings, `include/grpc/support/time.h` and
Mark D. Rothdbdf4952018-01-18 11:21:12 -080089 # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
Jorge Canizalescc074d92016-06-28 09:52:43 -070090 # build.
91 'USE_HEADERMAP' => 'NO',
92 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
Muxi Yan9ecc2152017-09-29 17:08:59 -070093 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"',
Muxi Yan94d669e2017-10-22 14:56:10 -070094 'CLANG_WARN_STRICT_PROTOTYPES' => 'NO',
Jorge Canizalescc074d92016-06-28 09:52:43 -070095 }
Jorge Canizalese487a722016-04-30 12:05:26 -070096
Muxi Yane04089e2016-07-15 16:35:20 -070097 s.default_subspecs = 'Interface', 'Implementation'
Muxi Yan195c0422018-11-19 17:35:21 -080098 s.compiler_flags = '-DGRPC_ARES=0', '-DPB_FIELD_32BIT'
Muxi Yanae6bca42017-10-19 18:14:02 -070099 s.libraries = 'c++'
Muxi Yane04089e2016-07-15 16:35:20 -0700100
Jorge Canizalescc074d92016-06-28 09:52:43 -0700101 # Like many other C libraries, gRPC-Core has its public headers under `include/<libname>/` and its
102 # sources and private headers in other directories outside `include/`. Cocoapods' linter doesn't
103 # allow any header to be listed outside the `header_mappings_dir` (even though doing so works in
104 # practice). Because we need our `header_mappings_dir` to be `include/grpc/` for the reason
105 # mentioned above, we work around the linter limitation by dividing the pod into two subspecs, one
106 # for public headers and the other for implementation. Each gets its own `header_mappings_dir`,
107 # making the linter happy.
108 #
109 # The list of source files is generated by a template: `templates/gRPC-Core.podspec.template`. It
110 # can be regenerated from the template by running `tools/buildgen/generate_projects.sh`.
111 s.subspec 'Interface' do |ss|
112 ss.header_mappings_dir = 'include/grpc'
113
114 ss.source_files = 'include/grpc/support/alloc.h',
115 'include/grpc/support/atm.h',
116 'include/grpc/support/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700117 'include/grpc/support/atm_gcc_sync.h',
118 'include/grpc/support/atm_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700119 'include/grpc/support/cpu.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700120 'include/grpc/support/log.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700121 'include/grpc/support/log_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700122 'include/grpc/support/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700123 'include/grpc/support/string_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700124 'include/grpc/support/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700125 'include/grpc/support/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700126 'include/grpc/support/sync_generic.h',
127 'include/grpc/support/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700128 'include/grpc/support/sync_windows.h',
Vijay Paic7456902018-02-12 10:28:24 -0800129 'include/grpc/support/thd_id.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700130 'include/grpc/support/time.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700131 'include/grpc/impl/codegen/atm.h',
132 'include/grpc/impl/codegen/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700133 'include/grpc/impl/codegen/atm_gcc_sync.h',
134 'include/grpc/impl/codegen/atm_windows.h',
Ken Payson9714e032017-10-10 11:18:49 -0700135 'include/grpc/impl/codegen/fork.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800136 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700137 'include/grpc/impl/codegen/gpr_types.h',
ncteisen93a90e62018-06-18 18:39:56 -0700138 'include/grpc/impl/codegen/log.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700139 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700140 'include/grpc/impl/codegen/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700141 'include/grpc/impl/codegen/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700142 'include/grpc/impl/codegen/sync_generic.h',
143 'include/grpc/impl/codegen/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700144 'include/grpc/impl/codegen/sync_windows.h',
Vijay Paiefce6e12017-09-14 09:07:50 -0700145 'include/grpc/impl/codegen/byte_buffer.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700146 'include/grpc/impl/codegen/byte_buffer_reader.h',
147 'include/grpc/impl/codegen/compression_types.h',
148 'include/grpc/impl/codegen/connectivity_state.h',
149 'include/grpc/impl/codegen/grpc_types.h',
150 'include/grpc/impl/codegen/propagation_bits.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700151 'include/grpc/impl/codegen/slice.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700152 'include/grpc/impl/codegen/status.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700153 'include/grpc/impl/codegen/atm.h',
154 'include/grpc/impl/codegen/atm_gcc_atomic.h',
Muxi Yancd972972017-10-06 13:46:27 -0700155 'include/grpc/impl/codegen/atm_gcc_sync.h',
156 'include/grpc/impl/codegen/atm_windows.h',
Ken Payson9714e032017-10-10 11:18:49 -0700157 'include/grpc/impl/codegen/fork.h',
Mark D. Roth4d2ea022016-12-12 07:12:27 -0800158 'include/grpc/impl/codegen/gpr_slice.h',
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700159 'include/grpc/impl/codegen/gpr_types.h',
ncteisen93a90e62018-06-18 18:39:56 -0700160 'include/grpc/impl/codegen/log.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700161 'include/grpc/impl/codegen/port_platform.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700162 'include/grpc/impl/codegen/sync.h',
yang-g9ff60312017-08-24 09:08:21 -0700163 'include/grpc/impl/codegen/sync_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700164 'include/grpc/impl/codegen/sync_generic.h',
165 'include/grpc/impl/codegen/sync_posix.h',
Muxi Yancd972972017-10-06 13:46:27 -0700166 'include/grpc/impl/codegen/sync_windows.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700167 'include/grpc/grpc_security.h',
Vijay Pai42807252017-07-28 15:08:24 -0700168 'include/grpc/byte_buffer.h',
169 'include/grpc/byte_buffer_reader.h',
170 'include/grpc/compression.h',
Ken Payson9714e032017-10-10 11:18:49 -0700171 'include/grpc/fork.h',
Vijay Pai42807252017-07-28 15:08:24 -0700172 'include/grpc/grpc.h',
173 'include/grpc/grpc_posix.h',
174 'include/grpc/grpc_security_constants.h',
Juanli Shen174166d2018-06-25 16:12:07 -0700175 'include/grpc/load_reporting.h',
Vijay Pai42807252017-07-28 15:08:24 -0700176 'include/grpc/slice.h',
177 'include/grpc/slice_buffer.h',
178 'include/grpc/status.h',
179 'include/grpc/support/workaround_list.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700180 'include/grpc/census.h'
181 end
182 s.subspec 'Implementation' do |ss|
183 ss.header_mappings_dir = '.'
184 ss.libraries = 'z'
185 ss.dependency "#{s.name}/Interface", version
Muxi Yan7d959462019-01-24 10:27:12 -0800186 ss.dependency 'BoringSSL-GRPC', '0.0.3'
Muxi Yanad272c92017-06-29 16:18:43 -0700187 ss.dependency 'nanopb', '~> 0.3'
Muxi Yanb24b2122018-08-14 10:21:27 -0700188 ss.compiler_flags = '-DGRPC_SHADOW_BORINGSSL_SYMBOLS'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700189
190 # To save you from scrolling, this is the last part of the podspec.
Mark D. Roth2223e602018-06-27 07:23:33 -0700191 ss.source_files = 'src/core/lib/gpr/alloc.h',
192 'src/core/lib/gpr/arena.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800193 'src/core/lib/gpr/env.h',
Vijay Paiae376bf2018-01-25 22:54:02 -0800194 'src/core/lib/gpr/host_port.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800195 'src/core/lib/gpr/mpscq.h',
196 'src/core/lib/gpr/murmur_hash.h',
197 'src/core/lib/gpr/spinlock.h',
198 'src/core/lib/gpr/string.h',
199 'src/core/lib/gpr/string_windows.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800200 'src/core/lib/gpr/time_precise.h',
Vijay Paib6cf1232018-01-25 21:02:26 -0800201 'src/core/lib/gpr/tls.h',
202 'src/core/lib/gpr/tls_gcc.h',
203 'src/core/lib/gpr/tls_msvc.h',
204 'src/core/lib/gpr/tls_pthread.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800205 'src/core/lib/gpr/tmpfile.h',
Vijay Paid4d0a302018-01-25 13:24:03 -0800206 'src/core/lib/gpr/useful.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800207 'src/core/lib/gprpp/abstract.h',
Arjun Roy8ce42f62019-04-16 16:48:46 -0700208 'src/core/lib/gprpp/arena.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800209 'src/core/lib/gprpp/atomic.h',
kpayson64701e70d2018-04-30 17:40:00 -0700210 'src/core/lib/gprpp/fork.h',
Esun Kim1518ecb2019-04-15 10:48:30 -0700211 'src/core/lib/gprpp/global_config.h',
212 'src/core/lib/gprpp/global_config_custom.h',
213 'src/core/lib/gprpp/global_config_env.h',
214 'src/core/lib/gprpp/global_config_generic.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800215 'src/core/lib/gprpp/manual_constructor.h',
Moiz Haidryba00d3c2019-03-29 12:50:54 -0700216 'src/core/lib/gprpp/map.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800217 'src/core/lib/gprpp/memory.h',
Moiz Haidryba00d3c2019-03-29 12:50:54 -0700218 'src/core/lib/gprpp/pair.h',
Soheil Hassas Yeganeh2b9448a2019-04-16 14:51:16 -0400219 'src/core/lib/gprpp/sync.h',
Vijay Paida693552018-02-16 22:59:03 -0800220 'src/core/lib/gprpp/thd.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800221 'src/core/lib/profiling/timers.h',
222 'src/core/lib/gpr/alloc.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800223 'src/core/lib/gpr/atm.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800224 'src/core/lib/gpr/cpu_iphone.cc',
225 'src/core/lib/gpr/cpu_linux.cc',
226 'src/core/lib/gpr/cpu_posix.cc',
227 'src/core/lib/gpr/cpu_windows.cc',
228 'src/core/lib/gpr/env_linux.cc',
229 'src/core/lib/gpr/env_posix.cc',
230 'src/core/lib/gpr/env_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800231 'src/core/lib/gpr/host_port.cc',
232 'src/core/lib/gpr/log.cc',
233 'src/core/lib/gpr/log_android.cc',
234 'src/core/lib/gpr/log_linux.cc',
235 'src/core/lib/gpr/log_posix.cc',
236 'src/core/lib/gpr/log_windows.cc',
237 'src/core/lib/gpr/mpscq.cc',
238 'src/core/lib/gpr/murmur_hash.cc',
239 'src/core/lib/gpr/string.cc',
240 'src/core/lib/gpr/string_posix.cc',
241 'src/core/lib/gpr/string_util_windows.cc',
242 'src/core/lib/gpr/string_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800243 'src/core/lib/gpr/sync.cc',
244 'src/core/lib/gpr/sync_posix.cc',
245 'src/core/lib/gpr/sync_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800246 'src/core/lib/gpr/time.cc',
247 'src/core/lib/gpr/time_posix.cc',
248 'src/core/lib/gpr/time_precise.cc',
249 'src/core/lib/gpr/time_windows.cc',
250 'src/core/lib/gpr/tls_pthread.cc',
251 'src/core/lib/gpr/tmpfile_msys.cc',
252 'src/core/lib/gpr/tmpfile_posix.cc',
253 'src/core/lib/gpr/tmpfile_windows.cc',
254 'src/core/lib/gpr/wrap_memcpy.cc',
Arjun Roy8ce42f62019-04-16 16:48:46 -0700255 'src/core/lib/gprpp/arena.cc',
kpayson64701e70d2018-04-30 17:40:00 -0700256 'src/core/lib/gprpp/fork.cc',
Esun Kim1518ecb2019-04-15 10:48:30 -0700257 'src/core/lib/gprpp/global_config_env.cc',
Vijay Paida693552018-02-16 22:59:03 -0800258 'src/core/lib/gprpp/thd_posix.cc',
259 'src/core/lib/gprpp/thd_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700260 'src/core/lib/profiling/basic_timers.cc',
261 'src/core/lib/profiling/stap_timers.cc',
Vijay Pai42807252017-07-28 15:08:24 -0700262 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
263 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
264 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
Yash Tibrewalf71fd842018-08-24 17:05:30 -0700265 'src/core/ext/transport/chttp2/transport/context_list.h',
Craig Tiller32736482017-10-12 22:02:28 -0700266 'src/core/ext/transport/chttp2/transport/flow_control.h',
Vijay Pai42807252017-07-28 15:08:24 -0700267 'src/core/ext/transport/chttp2/transport/frame.h',
268 'src/core/ext/transport/chttp2/transport/frame_data.h',
269 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
270 'src/core/ext/transport/chttp2/transport/frame_ping.h',
271 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
272 'src/core/ext/transport/chttp2/transport/frame_settings.h',
273 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
274 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
275 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
276 'src/core/ext/transport/chttp2/transport/hpack_table.h',
277 'src/core/ext/transport/chttp2/transport/http2_settings.h',
278 'src/core/ext/transport/chttp2/transport/huffsyms.h',
279 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
280 'src/core/ext/transport/chttp2/transport/internal.h',
281 'src/core/ext/transport/chttp2/transport/stream_map.h',
282 'src/core/ext/transport/chttp2/transport/varint.h',
283 'src/core/ext/transport/chttp2/alpn/alpn.h',
284 'src/core/ext/filters/http/client/http_client_filter.h',
285 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
286 'src/core/ext/filters/http/server/http_server_filter.h',
Yihua Zhang392dad72018-05-03 20:12:20 -0700287 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
Vishal Powara33e7962018-10-16 21:56:22 -0700288 'src/core/ext/filters/client_channel/lb_policy/xds/xds.h',
Vijay Pai42807252017-07-28 15:08:24 -0700289 'src/core/lib/security/context/security_context.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800290 'src/core/lib/security/credentials/alts/alts_credentials.h',
Vijay Pai42807252017-07-28 15:08:24 -0700291 'src/core/lib/security/credentials/composite/composite_credentials.h',
292 'src/core/lib/security/credentials/credentials.h',
293 'src/core/lib/security/credentials/fake/fake_credentials.h',
294 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
295 'src/core/lib/security/credentials/iam/iam_credentials.h',
296 'src/core/lib/security/credentials/jwt/json_token.h',
297 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
298 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700299 'src/core/lib/security/credentials/local/local_credentials.h',
Vijay Pai42807252017-07-28 15:08:24 -0700300 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
301 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
302 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
Yihua Zhanga3d997c2019-01-29 10:04:28 -0800303 'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h',
Yihua Zhangb017c802019-03-14 15:24:48 -0700304 'src/core/lib/security/credentials/tls/spiffe_credentials.h',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700305 'src/core/lib/security/security_connector/alts/alts_security_connector.h',
306 'src/core/lib/security/security_connector/fake/fake_security_connector.h',
tdbhacksbcd747d2018-07-20 16:41:44 -0700307 'src/core/lib/security/security_connector/load_system_roots.h',
308 'src/core/lib/security/security_connector/load_system_roots_linux.h',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700309 'src/core/lib/security/security_connector/local/local_security_connector.h',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800310 'src/core/lib/security/security_connector/security_connector.h',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700311 'src/core/lib/security/security_connector/ssl/ssl_security_connector.h',
312 'src/core/lib/security/security_connector/ssl_utils.h',
Yihua Zhangb017c802019-03-14 15:24:48 -0700313 'src/core/lib/security/security_connector/tls/spiffe_security_connector.h',
Vijay Pai42807252017-07-28 15:08:24 -0700314 'src/core/lib/security/transport/auth_filters.h',
Vijay Pai42807252017-07-28 15:08:24 -0700315 'src/core/lib/security/transport/secure_endpoint.h',
Vijay Pai42807252017-07-28 15:08:24 -0700316 'src/core/lib/security/transport/security_handshaker.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800317 'src/core/lib/security/transport/target_authority_table.h',
Vijay Pai42807252017-07-28 15:08:24 -0700318 'src/core/lib/security/transport/tsi_error.h',
319 'src/core/lib/security/util/json_util.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800320 'src/core/tsi/alts/crypt/gsec.h',
321 'src/core/tsi/alts/frame_protector/alts_counter.h',
322 'src/core/tsi/alts/frame_protector/alts_crypter.h',
323 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
324 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
325 'src/core/tsi/alts/frame_protector/frame_handler.h',
326 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
Yihua Zhangcd768ec2018-11-01 16:26:46 -0700327 'src/core/tsi/alts/handshaker/alts_shared_resource.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800328 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
329 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
330 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
331 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
332 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
333 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
334 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
335 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
336 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
337 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
338 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
339 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
340 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
341 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
342 'src/core/tsi/alts/handshaker/altscontext.pb.h',
343 'src/core/tsi/alts/handshaker/handshaker.pb.h',
344 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
Vijay Pai42807252017-07-28 15:08:24 -0700345 'src/core/tsi/transport_security.h',
Vijay Pai42807252017-07-28 15:08:24 -0700346 'src/core/tsi/transport_security_interface.h',
David Garcia Quintas49f625f2018-03-27 11:23:49 -0700347 'src/core/ext/transport/chttp2/client/authority.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800348 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700349 'src/core/ext/filters/client_channel/backup_poller.h',
Vijay Pai42807252017-07-28 15:08:24 -0700350 'src/core/ext/filters/client_channel/client_channel.h',
ncteisenafb98292018-06-28 18:04:24 -0700351 'src/core/ext/filters/client_channel/client_channel_channelz.h',
Vijay Pai42807252017-07-28 15:08:24 -0700352 'src/core/ext/filters/client_channel/client_channel_factory.h',
353 'src/core/ext/filters/client_channel/connector.h',
Juanli Shenbbe25872019-01-15 13:59:59 -0800354 'src/core/ext/filters/client_channel/global_subchannel_pool.h',
Mark D. Rothf85fd022018-10-24 12:29:04 -0700355 'src/core/ext/filters/client_channel/health/health_check_client.h',
Vijay Pai42807252017-07-28 15:08:24 -0700356 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
357 'src/core/ext/filters/client_channel/http_proxy.h',
358 'src/core/ext/filters/client_channel/lb_policy.h',
359 'src/core/ext/filters/client_channel/lb_policy_factory.h',
360 'src/core/ext/filters/client_channel/lb_policy_registry.h',
Juanli Shenbbe25872019-01-15 13:59:59 -0800361 'src/core/ext/filters/client_channel/local_subchannel_pool.h',
Vijay Pai42807252017-07-28 15:08:24 -0700362 'src/core/ext/filters/client_channel/parse_address.h',
363 'src/core/ext/filters/client_channel/proxy_mapper.h',
364 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
365 'src/core/ext/filters/client_channel/resolver.h',
366 'src/core/ext/filters/client_channel/resolver_factory.h',
367 'src/core/ext/filters/client_channel/resolver_registry.h',
Juanli Shen8a880802018-11-15 13:11:45 -0800368 'src/core/ext/filters/client_channel/resolver_result_parsing.h',
Mark D. Rothaa149fe2019-02-19 13:19:24 -0800369 'src/core/ext/filters/client_channel/resolving_lb_policy.h',
Vijay Pai42807252017-07-28 15:08:24 -0700370 'src/core/ext/filters/client_channel/retry_throttle.h',
Mark D. Rothc5f344d2018-12-11 07:48:14 -0800371 'src/core/ext/filters/client_channel/server_address.h',
Mark D. Roth206592c2019-03-26 10:52:56 -0700372 'src/core/ext/filters/client_channel/service_config.h',
Vijay Pai42807252017-07-28 15:08:24 -0700373 'src/core/ext/filters/client_channel/subchannel.h',
Mark D. Roth28ccd612019-05-29 12:21:15 -0700374 'src/core/ext/filters/client_channel/subchannel_interface.h',
Juanli Shenbbe25872019-01-15 13:59:59 -0800375 'src/core/ext/filters/client_channel/subchannel_pool_interface.h',
Vijay Pai42807252017-07-28 15:08:24 -0700376 'src/core/ext/filters/deadline/deadline_filter.h',
Mark D. Rothf85fd022018-10-24 12:29:04 -0700377 'src/core/ext/filters/client_channel/health/health.pb.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800378 'src/core/tsi/fake_transport_security.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700379 'src/core/tsi/local_transport_security.h',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700380 'src/core/tsi/ssl/session_cache/ssl_session.h',
381 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800382 'src/core/tsi/ssl_transport_security.h',
383 'src/core/tsi/ssl_types.h',
384 'src/core/tsi/transport_security_grpc.h',
Muxi Yanb24b2122018-08-14 10:21:27 -0700385 'src/core/tsi/grpc_shadow_boringssl.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800386 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Vijay Pai42807252017-07-28 15:08:24 -0700387 'src/core/ext/transport/inproc/inproc_transport.h',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800388 'src/core/lib/avl/avl.h',
Craig Tiller2014a372017-07-21 15:36:11 -0700389 'src/core/lib/backoff/backoff.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700390 'src/core/lib/channel/channel_args.h',
391 'src/core/lib/channel/channel_stack.h',
392 'src/core/lib/channel/channel_stack_builder.h',
ncteisen3b42f832018-03-19 13:22:35 -0700393 'src/core/lib/channel/channel_trace.h',
ncteisenc3c6e062018-05-09 11:10:21 -0700394 'src/core/lib/channel/channelz.h',
ncteisenbba88402018-05-11 11:54:41 -0400395 'src/core/lib/channel/channelz_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700396 'src/core/lib/channel/connected_channel.h',
397 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700398 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -0800399 'src/core/lib/channel/handshaker_factory.h',
400 'src/core/lib/channel/handshaker_registry.h',
ncteisen3b42f832018-03-19 13:22:35 -0700401 'src/core/lib/channel/status_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700402 'src/core/lib/compression/algorithm_metadata.h',
Mark D. Rotheccfecd2019-04-03 09:56:11 -0700403 'src/core/lib/compression/compression_args.h',
Muxi Yan92d1bc12017-09-16 10:09:58 -0700404 'src/core/lib/compression/compression_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700405 'src/core/lib/compression/message_compress.h',
Muxi Yane87a7e12017-06-29 16:53:24 -0700406 'src/core/lib/compression/stream_compression.h',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700407 'src/core/lib/compression/stream_compression_gzip.h',
408 'src/core/lib/compression/stream_compression_identity.h',
Craig Tiller6e739742017-08-31 11:22:52 -0700409 'src/core/lib/debug/stats.h',
410 'src/core/lib/debug/stats_data.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800411 'src/core/lib/gprpp/debug_location.h',
412 'src/core/lib/gprpp/inlined_vector.h',
Yash Tibrewal9df60232019-01-18 14:48:12 -0800413 'src/core/lib/gprpp/optional.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800414 'src/core/lib/gprpp/orphanable.h',
415 'src/core/lib/gprpp/ref_counted.h',
416 'src/core/lib/gprpp/ref_counted_ptr.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700417 'src/core/lib/http/format_request.h',
418 'src/core/lib/http/httpcli.h',
419 'src/core/lib/http/parser.h',
Craig Tiller43c1b5f2017-10-02 14:42:49 -0700420 'src/core/lib/iomgr/block_annotate.h',
Yash Tibrewalf0397932018-05-31 19:39:52 -0700421 'src/core/lib/iomgr/buffer_list.h',
Mark D. Roth764cf042017-09-01 09:00:06 -0700422 'src/core/lib/iomgr/call_combiner.h',
Muxi Yan9e593f72019-04-19 14:14:48 -0700423 'src/core/lib/iomgr/cfstream_handle.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700424 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -0700425 'src/core/lib/iomgr/combiner.h',
Soheil Hassas Yeganeh2f55f4f2018-12-01 21:07:35 -0500426 'src/core/lib/iomgr/dynamic_annotations.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700427 'src/core/lib/iomgr/endpoint.h',
Muxi Yan9e593f72019-04-19 14:14:48 -0700428 'src/core/lib/iomgr/endpoint_cfstream.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700429 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700430 'src/core/lib/iomgr/error.h',
Muxi Yan9e593f72019-04-19 14:14:48 -0700431 'src/core/lib/iomgr/error_cfstream.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800432 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -0700433 'src/core/lib/iomgr/ev_epoll1_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -0700434 'src/core/lib/iomgr/ev_epollex_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700435 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700436 'src/core/lib/iomgr/ev_posix.h',
437 'src/core/lib/iomgr/exec_ctx.h',
438 'src/core/lib/iomgr/executor.h',
Mark D. Rothf9bf4282017-08-03 14:47:23 -0700439 'src/core/lib/iomgr/gethostname.h',
Alexander Polcyn00763bc2018-07-30 17:22:25 -0700440 'src/core/lib/iomgr/grpc_if_nametoindex.h',
Yash Tibrewalf0397932018-05-31 19:39:52 -0700441 'src/core/lib/iomgr/internal_errqueue.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700442 'src/core/lib/iomgr/iocp_windows.h',
443 'src/core/lib/iomgr/iomgr.h',
kpayson64539f5062018-03-12 19:16:30 -0700444 'src/core/lib/iomgr/iomgr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700445 'src/core/lib/iomgr/iomgr_internal.h',
446 'src/core/lib/iomgr/iomgr_posix.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700447 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700448 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -0700449 'src/core/lib/iomgr/lockfree_event.h',
Yuchen Zengf630ff22017-07-25 13:28:45 -0700450 'src/core/lib/iomgr/nameser.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700451 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700452 'src/core/lib/iomgr/pollset.h',
kpayson64539f5062018-03-12 19:16:30 -0700453 'src/core/lib/iomgr/pollset_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700454 'src/core/lib/iomgr/pollset_set.h',
kpayson64539f5062018-03-12 19:16:30 -0700455 'src/core/lib/iomgr/pollset_set_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700456 'src/core/lib/iomgr/pollset_set_windows.h',
457 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -0700458 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700459 'src/core/lib/iomgr/resolve_address.h',
kpayson64539f5062018-03-12 19:16:30 -0700460 'src/core/lib/iomgr/resolve_address_custom.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -0700461 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700462 'src/core/lib/iomgr/sockaddr.h',
kpayson64539f5062018-03-12 19:16:30 -0700463 'src/core/lib/iomgr/sockaddr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700464 'src/core/lib/iomgr/sockaddr_posix.h',
465 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -0700466 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -0500467 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -0700468 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -0700469 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700470 'src/core/lib/iomgr/socket_utils_posix.h',
471 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -0700472 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700473 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -0700474 'src/core/lib/iomgr/tcp_client_posix.h',
kpayson64539f5062018-03-12 19:16:30 -0700475 'src/core/lib/iomgr/tcp_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700476 'src/core/lib/iomgr/tcp_posix.h',
477 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -0700478 'src/core/lib/iomgr/tcp_server_utils_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700479 'src/core/lib/iomgr/tcp_windows.h',
480 'src/core/lib/iomgr/time_averaged_stats.h',
481 'src/core/lib/iomgr/timer.h',
kpayson64539f5062018-03-12 19:16:30 -0700482 'src/core/lib/iomgr/timer_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700483 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -0700484 'src/core/lib/iomgr/timer_manager.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700485 'src/core/lib/iomgr/udp_server.h',
486 'src/core/lib/iomgr/unix_sockets_posix.h',
487 'src/core/lib/iomgr/wakeup_fd_pipe.h',
488 'src/core/lib/iomgr/wakeup_fd_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700489 'src/core/lib/json/json.h',
490 'src/core/lib/json/json_common.h',
491 'src/core/lib/json/json_reader.h',
492 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -0700493 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700494 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800495 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -0800496 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -0700497 'src/core/lib/slice/slice_string_helpers.h',
Arjun Royf65208a2019-04-29 15:59:20 -0700498 'src/core/lib/slice/slice_utils.h',
David Garcia Quintas396d49d2018-02-28 16:06:30 -0800499 'src/core/lib/slice/slice_weak_hash_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700500 'src/core/lib/surface/api_trace.h',
501 'src/core/lib/surface/call.h',
502 'src/core/lib/surface/call_test_only.h',
503 'src/core/lib/surface/channel.h',
504 'src/core/lib/surface/channel_init.h',
505 'src/core/lib/surface/channel_stack_type.h',
506 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -0700507 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700508 'src/core/lib/surface/event_string.h',
509 'src/core/lib/surface/init.h',
510 'src/core/lib/surface/lame_client.h',
511 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800512 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -0700513 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700514 'src/core/lib/transport/byte_stream.h',
515 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800516 'src/core/lib/transport/error_utils.h',
517 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700518 'src/core/lib/transport/metadata.h',
519 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -0700520 'src/core/lib/transport/pid_controller.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700521 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -0800522 'src/core/lib/transport/status_conversion.h',
Mark D. Roth718c8342018-02-28 13:00:04 -0800523 'src/core/lib/transport/status_metadata.h',
Robbie Shade710d2422016-07-13 15:15:38 -0400524 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -0700525 'src/core/lib/transport/transport.h',
526 'src/core/lib/transport/transport_impl.h',
ncteisen44b262c2018-10-31 21:11:28 -0700527 'src/core/lib/uri/uri_parser.h',
Craig Tiller1f477302017-05-05 11:01:25 -0700528 'src/core/lib/debug/trace.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700529 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700530 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -0700531 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700532 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
Vishal Powara33e7962018-10-16 21:56:22 -0700533 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
ZhouyihaiDingf04fbd12018-06-25 17:30:58 -0700534 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h',
535 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700536 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Vishal Powara33e7962018-10-16 21:56:22 -0700537 'src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h',
538 'src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h',
539 'src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h',
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700540 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700541 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
542 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
Esun Kim90fbdc92019-05-20 08:05:01 -0700543 'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h',
Craig Tiller6d4894e2017-03-31 17:22:06 -0700544 'src/core/ext/filters/max_age/max_age_filter.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -0700545 'src/core/ext/filters/message_size/message_size_filter.h',
David Garcia Quintas961353a2018-03-15 16:11:05 -0700546 'src/core/ext/filters/http/client_authority_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -0700547 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
548 'src/core/ext/filters/workarounds/workaround_utils.h',
Yash Tibrewal83062842017-09-21 18:56:08 -0700549 'src/core/lib/surface/init.cc',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800550 'src/core/lib/avl/avl.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700551 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700552 'src/core/lib/channel/channel_args.cc',
553 'src/core/lib/channel/channel_stack.cc',
554 'src/core/lib/channel/channel_stack_builder.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700555 'src/core/lib/channel/channel_trace.cc',
ncteisenc3c6e062018-05-09 11:10:21 -0700556 'src/core/lib/channel/channelz.cc',
ncteisenbba88402018-05-11 11:54:41 -0400557 'src/core/lib/channel/channelz_registry.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700558 'src/core/lib/channel/connected_channel.cc',
559 'src/core/lib/channel/handshaker.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700560 'src/core/lib/channel/handshaker_registry.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700561 'src/core/lib/channel/status_util.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700562 'src/core/lib/compression/compression.cc',
Mark D. Rotheccfecd2019-04-03 09:56:11 -0700563 'src/core/lib/compression/compression_args.cc',
Muxi Yan03fc8572017-10-06 18:47:09 -0700564 'src/core/lib/compression/compression_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700565 'src/core/lib/compression/message_compress.cc',
566 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700567 'src/core/lib/compression/stream_compression_gzip.cc',
568 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700569 'src/core/lib/debug/stats.cc',
570 'src/core/lib/debug/stats_data.cc',
571 'src/core/lib/http/format_request.cc',
572 'src/core/lib/http/httpcli.cc',
573 'src/core/lib/http/parser.cc',
Yash Tibrewalf0397932018-05-31 19:39:52 -0700574 'src/core/lib/iomgr/buffer_list.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700575 'src/core/lib/iomgr/call_combiner.cc',
Muxi Yan9e593f72019-04-19 14:14:48 -0700576 'src/core/lib/iomgr/cfstream_handle.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700577 'src/core/lib/iomgr/combiner.cc',
578 'src/core/lib/iomgr/endpoint.cc',
Muxi Yan9e593f72019-04-19 14:14:48 -0700579 'src/core/lib/iomgr/endpoint_cfstream.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700580 'src/core/lib/iomgr/endpoint_pair_posix.cc',
581 'src/core/lib/iomgr/endpoint_pair_uv.cc',
582 'src/core/lib/iomgr/endpoint_pair_windows.cc',
583 'src/core/lib/iomgr/error.cc',
Muxi Yan9e593f72019-04-19 14:14:48 -0700584 'src/core/lib/iomgr/error_cfstream.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700585 'src/core/lib/iomgr/ev_epoll1_linux.cc',
586 'src/core/lib/iomgr/ev_epollex_linux.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700587 'src/core/lib/iomgr/ev_poll_posix.cc',
588 'src/core/lib/iomgr/ev_posix.cc',
589 'src/core/lib/iomgr/ev_windows.cc',
590 'src/core/lib/iomgr/exec_ctx.cc',
591 'src/core/lib/iomgr/executor.cc',
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100592 'src/core/lib/iomgr/fork_posix.cc',
593 'src/core/lib/iomgr/fork_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700594 'src/core/lib/iomgr/gethostname_fallback.cc',
595 'src/core/lib/iomgr/gethostname_host_name_max.cc',
596 'src/core/lib/iomgr/gethostname_sysconf.cc',
Alexander Polcyn00763bc2018-07-30 17:22:25 -0700597 'src/core/lib/iomgr/grpc_if_nametoindex_posix.cc',
598 'src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc',
Yash Tibrewalf0397932018-05-31 19:39:52 -0700599 'src/core/lib/iomgr/internal_errqueue.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700600 'src/core/lib/iomgr/iocp_windows.cc',
601 'src/core/lib/iomgr/iomgr.cc',
kpayson64539f5062018-03-12 19:16:30 -0700602 'src/core/lib/iomgr/iomgr_custom.cc',
603 'src/core/lib/iomgr/iomgr_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700604 'src/core/lib/iomgr/iomgr_posix.cc',
Muxi Yan9e593f72019-04-19 14:14:48 -0700605 'src/core/lib/iomgr/iomgr_posix_cfstream.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700606 'src/core/lib/iomgr/iomgr_uv.cc',
607 'src/core/lib/iomgr/iomgr_windows.cc',
608 'src/core/lib/iomgr/is_epollexclusive_available.cc',
609 'src/core/lib/iomgr/load_file.cc',
610 'src/core/lib/iomgr/lockfree_event.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700611 'src/core/lib/iomgr/polling_entity.cc',
kpayson64539f5062018-03-12 19:16:30 -0700612 'src/core/lib/iomgr/pollset.cc',
613 'src/core/lib/iomgr/pollset_custom.cc',
614 'src/core/lib/iomgr/pollset_set.cc',
615 'src/core/lib/iomgr/pollset_set_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700616 'src/core/lib/iomgr/pollset_set_windows.cc',
617 'src/core/lib/iomgr/pollset_uv.cc',
618 'src/core/lib/iomgr/pollset_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700619 'src/core/lib/iomgr/resolve_address.cc',
620 'src/core/lib/iomgr/resolve_address_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700621 'src/core/lib/iomgr/resolve_address_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700622 'src/core/lib/iomgr/resolve_address_windows.cc',
623 'src/core/lib/iomgr/resource_quota.cc',
624 'src/core/lib/iomgr/sockaddr_utils.cc',
625 'src/core/lib/iomgr/socket_factory_posix.cc',
626 'src/core/lib/iomgr/socket_mutator.cc',
627 'src/core/lib/iomgr/socket_utils_common_posix.cc',
628 'src/core/lib/iomgr/socket_utils_linux.cc',
629 'src/core/lib/iomgr/socket_utils_posix.cc',
630 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700631 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700632 'src/core/lib/iomgr/socket_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700633 'src/core/lib/iomgr/tcp_client.cc',
Muxi Yan9e593f72019-04-19 14:14:48 -0700634 'src/core/lib/iomgr/tcp_client_cfstream.cc',
kpayson64539f5062018-03-12 19:16:30 -0700635 'src/core/lib/iomgr/tcp_client_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700636 'src/core/lib/iomgr/tcp_client_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700637 'src/core/lib/iomgr/tcp_client_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700638 'src/core/lib/iomgr/tcp_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700639 'src/core/lib/iomgr/tcp_posix.cc',
kpayson64539f5062018-03-12 19:16:30 -0700640 'src/core/lib/iomgr/tcp_server.cc',
641 'src/core/lib/iomgr/tcp_server_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700642 'src/core/lib/iomgr/tcp_server_posix.cc',
643 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
644 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
645 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700646 'src/core/lib/iomgr/tcp_server_windows.cc',
647 'src/core/lib/iomgr/tcp_uv.cc',
648 'src/core/lib/iomgr/tcp_windows.cc',
649 'src/core/lib/iomgr/time_averaged_stats.cc',
kpayson64539f5062018-03-12 19:16:30 -0700650 'src/core/lib/iomgr/timer.cc',
651 'src/core/lib/iomgr/timer_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700652 'src/core/lib/iomgr/timer_generic.cc',
653 'src/core/lib/iomgr/timer_heap.cc',
654 'src/core/lib/iomgr/timer_manager.cc',
655 'src/core/lib/iomgr/timer_uv.cc',
656 'src/core/lib/iomgr/udp_server.cc',
657 'src/core/lib/iomgr/unix_sockets_posix.cc',
658 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700659 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
660 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
661 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
662 'src/core/lib/iomgr/wakeup_fd_posix.cc',
663 'src/core/lib/json/json.cc',
664 'src/core/lib/json/json_reader.cc',
665 'src/core/lib/json/json_string.cc',
666 'src/core/lib/json/json_writer.cc',
667 'src/core/lib/slice/b64.cc',
668 'src/core/lib/slice/percent_encoding.cc',
669 'src/core/lib/slice/slice.cc',
670 'src/core/lib/slice/slice_buffer.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700671 'src/core/lib/slice/slice_intern.cc',
672 'src/core/lib/slice/slice_string_helpers.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700673 'src/core/lib/surface/api_trace.cc',
674 'src/core/lib/surface/byte_buffer.cc',
675 'src/core/lib/surface/byte_buffer_reader.cc',
676 'src/core/lib/surface/call.cc',
677 'src/core/lib/surface/call_details.cc',
678 'src/core/lib/surface/call_log_batch.cc',
679 'src/core/lib/surface/channel.cc',
680 'src/core/lib/surface/channel_init.cc',
681 'src/core/lib/surface/channel_ping.cc',
682 'src/core/lib/surface/channel_stack_type.cc',
683 'src/core/lib/surface/completion_queue.cc',
684 'src/core/lib/surface/completion_queue_factory.cc',
685 'src/core/lib/surface/event_string.cc',
Craig Tiller8ebb5442017-04-07 16:01:55 -0700686 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700687 'src/core/lib/surface/metadata_array.cc',
688 'src/core/lib/surface/server.cc',
689 'src/core/lib/surface/validate_metadata.cc',
690 'src/core/lib/surface/version.cc',
691 'src/core/lib/transport/bdp_estimator.cc',
692 'src/core/lib/transport/byte_stream.cc',
693 'src/core/lib/transport/connectivity_state.cc',
694 'src/core/lib/transport/error_utils.cc',
695 'src/core/lib/transport/metadata.cc',
696 'src/core/lib/transport/metadata_batch.cc',
697 'src/core/lib/transport/pid_controller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700698 'src/core/lib/transport/static_metadata.cc',
699 'src/core/lib/transport/status_conversion.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -0800700 'src/core/lib/transport/status_metadata.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700701 'src/core/lib/transport/timeout_encoding.cc',
702 'src/core/lib/transport/transport.cc',
703 'src/core/lib/transport/transport_op_string.cc',
ncteisen44b262c2018-10-31 21:11:28 -0700704 'src/core/lib/uri/uri_parser.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700705 'src/core/lib/debug/trace.cc',
706 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
707 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
708 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
709 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
710 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
Yash Tibrewalf71fd842018-08-24 17:05:30 -0700711 'src/core/ext/transport/chttp2/transport/context_list.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700712 'src/core/ext/transport/chttp2/transport/flow_control.cc',
713 'src/core/ext/transport/chttp2/transport/frame_data.cc',
714 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
715 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
716 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
717 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
718 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
719 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
720 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
721 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
722 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
723 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
724 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
725 'src/core/ext/transport/chttp2/transport/parsing.cc',
726 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
727 'src/core/ext/transport/chttp2/transport/stream_map.cc',
728 'src/core/ext/transport/chttp2/transport/varint.cc',
729 'src/core/ext/transport/chttp2/transport/writing.cc',
730 'src/core/ext/transport/chttp2/alpn/alpn.cc',
731 'src/core/ext/filters/http/client/http_client_filter.cc',
732 'src/core/ext/filters/http/http_filters_plugin.cc',
733 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
734 'src/core/ext/filters/http/server/http_server_filter.cc',
735 'src/core/lib/http/httpcli_security_connector.cc',
736 'src/core/lib/security/context/security_context.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800737 'src/core/lib/security/credentials/alts/alts_credentials.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700738 'src/core/lib/security/credentials/composite/composite_credentials.cc',
739 'src/core/lib/security/credentials/credentials.cc',
740 'src/core/lib/security/credentials/credentials_metadata.cc',
741 'src/core/lib/security/credentials/fake/fake_credentials.cc',
742 'src/core/lib/security/credentials/google_default/credentials_generic.cc',
743 'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
744 'src/core/lib/security/credentials/iam/iam_credentials.cc',
745 'src/core/lib/security/credentials/jwt/json_token.cc',
746 'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
747 'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700748 'src/core/lib/security/credentials/local/local_credentials.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700749 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
750 'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
751 'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
Yihua Zhanga3d997c2019-01-29 10:04:28 -0800752 'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc',
Yihua Zhangb017c802019-03-14 15:24:48 -0700753 'src/core/lib/security/credentials/tls/spiffe_credentials.cc',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700754 'src/core/lib/security/security_connector/alts/alts_security_connector.cc',
755 'src/core/lib/security/security_connector/fake/fake_security_connector.cc',
tdbhacksbcd747d2018-07-20 16:41:44 -0700756 'src/core/lib/security/security_connector/load_system_roots_fallback.cc',
757 'src/core/lib/security/security_connector/load_system_roots_linux.cc',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700758 'src/core/lib/security/security_connector/local/local_security_connector.cc',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800759 'src/core/lib/security/security_connector/security_connector.cc',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700760 'src/core/lib/security/security_connector/ssl/ssl_security_connector.cc',
761 'src/core/lib/security/security_connector/ssl_utils.cc',
Yihua Zhangb017c802019-03-14 15:24:48 -0700762 'src/core/lib/security/security_connector/tls/spiffe_security_connector.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700763 'src/core/lib/security/transport/client_auth_filter.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700764 'src/core/lib/security/transport/secure_endpoint.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700765 'src/core/lib/security/transport/security_handshaker.cc',
766 'src/core/lib/security/transport/server_auth_filter.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800767 'src/core/lib/security/transport/target_authority_table.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700768 'src/core/lib/security/transport/tsi_error.cc',
769 'src/core/lib/security/util/json_util.cc',
770 'src/core/lib/surface/init_secure.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800771 'src/core/tsi/alts/crypt/aes_gcm.cc',
772 'src/core/tsi/alts/crypt/gsec.cc',
773 'src/core/tsi/alts/frame_protector/alts_counter.cc',
774 'src/core/tsi/alts/frame_protector/alts_crypter.cc',
775 'src/core/tsi/alts/frame_protector/alts_frame_protector.cc',
776 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc',
777 'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc',
778 'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc',
779 'src/core/tsi/alts/frame_protector/frame_handler.cc',
780 'src/core/tsi/alts/handshaker/alts_handshaker_client.cc',
Yihua Zhangcd768ec2018-11-01 16:26:46 -0700781 'src/core/tsi/alts/handshaker/alts_shared_resource.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800782 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc',
783 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc',
784 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc',
785 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc',
786 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc',
787 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc',
788 'src/core/lib/security/credentials/alts/check_gcp_environment.cc',
789 'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc',
790 'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc',
791 'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc',
792 'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc',
793 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc',
794 'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc',
795 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc',
796 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc',
797 'src/core/tsi/alts/handshaker/alts_tsi_utils.cc',
798 'src/core/tsi/alts/handshaker/transport_security_common_api.cc',
799 'src/core/tsi/alts/handshaker/altscontext.pb.c',
800 'src/core/tsi/alts/handshaker/handshaker.pb.c',
801 'src/core/tsi/alts/handshaker/transport_security_common.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700802 'src/core/tsi/transport_security.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800803 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
804 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
David Garcia Quintas49f625f2018-03-27 11:23:49 -0700805 'src/core/ext/transport/chttp2/client/authority.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800806 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700807 'src/core/ext/filters/client_channel/backup_poller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700808 'src/core/ext/filters/client_channel/channel_connectivity.cc',
809 'src/core/ext/filters/client_channel/client_channel.cc',
ncteisenafb98292018-06-28 18:04:24 -0700810 'src/core/ext/filters/client_channel/client_channel_channelz.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700811 'src/core/ext/filters/client_channel/client_channel_factory.cc',
812 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
813 'src/core/ext/filters/client_channel/connector.cc',
Juanli Shenbbe25872019-01-15 13:59:59 -0800814 'src/core/ext/filters/client_channel/global_subchannel_pool.cc',
Mark D. Rothf85fd022018-10-24 12:29:04 -0700815 'src/core/ext/filters/client_channel/health/health_check_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700816 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
817 'src/core/ext/filters/client_channel/http_proxy.cc',
818 'src/core/ext/filters/client_channel/lb_policy.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700819 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
Juanli Shenbbe25872019-01-15 13:59:59 -0800820 'src/core/ext/filters/client_channel/local_subchannel_pool.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700821 'src/core/ext/filters/client_channel/parse_address.cc',
822 'src/core/ext/filters/client_channel/proxy_mapper.cc',
823 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
824 'src/core/ext/filters/client_channel/resolver.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700825 'src/core/ext/filters/client_channel/resolver_registry.cc',
Juanli Shen8a880802018-11-15 13:11:45 -0800826 'src/core/ext/filters/client_channel/resolver_result_parsing.cc',
Mark D. Rothaa149fe2019-02-19 13:19:24 -0800827 'src/core/ext/filters/client_channel/resolving_lb_policy.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700828 'src/core/ext/filters/client_channel/retry_throttle.cc',
Mark D. Rothc5f344d2018-12-11 07:48:14 -0800829 'src/core/ext/filters/client_channel/server_address.cc',
Mark D. Roth206592c2019-03-26 10:52:56 -0700830 'src/core/ext/filters/client_channel/service_config.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700831 'src/core/ext/filters/client_channel/subchannel.cc',
Juanli Shenbbe25872019-01-15 13:59:59 -0800832 'src/core/ext/filters/client_channel/subchannel_pool_interface.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700833 'src/core/ext/filters/deadline/deadline_filter.cc',
Mark D. Rothf85fd022018-10-24 12:29:04 -0700834 'src/core/ext/filters/client_channel/health/health.pb.c',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800835 'src/core/tsi/fake_transport_security.cc',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700836 'src/core/tsi/local_transport_security.cc',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700837 'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc',
838 'src/core/tsi/ssl/session_cache/ssl_session_cache.cc',
839 'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800840 'src/core/tsi/ssl_transport_security.cc',
841 'src/core/tsi/transport_security_grpc.cc',
842 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
843 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700844 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
845 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700846 'src/core/ext/transport/inproc/inproc_plugin.cc',
847 'src/core/ext/transport/inproc/inproc_transport.cc',
848 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
849 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
850 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc',
851 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
852 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
Vishal Powara33e7962018-10-16 21:56:22 -0700853 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
David Garcia Quintasf3955ba2018-06-21 15:15:10 -0700854 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c',
855 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c',
Craig Tiller9eb0fde2017-03-31 16:59:30 -0700856 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Vishal Powara33e7962018-10-16 21:56:22 -0700857 'src/core/ext/filters/client_channel/lb_policy/xds/xds.cc',
858 'src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_secure.cc',
859 'src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.cc',
860 'src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700861 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
862 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
863 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
Alexander Polcyn7eda6192018-06-14 23:07:33 -0700864 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc',
murgatroid9941871bf2019-04-18 17:01:45 -0700865 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700866 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
Alexander Polcyn9896c642018-07-27 01:38:26 -0700867 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700868 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
869 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
murgatroid9941871bf2019-04-18 17:01:45 -0700870 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc',
Alexander Polcyn9896c642018-07-27 01:38:26 -0700871 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc',
872 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc',
Esun Kim90fbdc92019-05-20 08:05:01 -0700873 'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700874 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
875 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
Vijay Pai381bcab2018-08-16 15:44:19 -0700876 'src/core/ext/filters/census/grpc_context.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700877 'src/core/ext/filters/max_age/max_age_filter.cc',
878 'src/core/ext/filters/message_size/message_size_filter.cc',
David Garcia Quintas961353a2018-03-15 16:11:05 -0700879 'src/core/ext/filters/http/client_authority_filter.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700880 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
881 'src/core/ext/filters/workarounds/workaround_utils.cc',
Muxi Yan9e593f72019-04-19 14:14:48 -0700882 'src/core/plugin_registry/grpc_plugin_registry.cc'
Jorge Canizalescc074d92016-06-28 09:52:43 -0700883
Mark D. Roth2223e602018-06-27 07:23:33 -0700884 ss.private_header_files = 'src/core/lib/gpr/alloc.h',
885 'src/core/lib/gpr/arena.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800886 'src/core/lib/gpr/env.h',
Vijay Paiae376bf2018-01-25 22:54:02 -0800887 'src/core/lib/gpr/host_port.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800888 'src/core/lib/gpr/mpscq.h',
889 'src/core/lib/gpr/murmur_hash.h',
890 'src/core/lib/gpr/spinlock.h',
891 'src/core/lib/gpr/string.h',
892 'src/core/lib/gpr/string_windows.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800893 'src/core/lib/gpr/time_precise.h',
Vijay Paib6cf1232018-01-25 21:02:26 -0800894 'src/core/lib/gpr/tls.h',
895 'src/core/lib/gpr/tls_gcc.h',
896 'src/core/lib/gpr/tls_msvc.h',
897 'src/core/lib/gpr/tls_pthread.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800898 'src/core/lib/gpr/tmpfile.h',
Vijay Paid4d0a302018-01-25 13:24:03 -0800899 'src/core/lib/gpr/useful.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800900 'src/core/lib/gprpp/abstract.h',
Arjun Roy8ce42f62019-04-16 16:48:46 -0700901 'src/core/lib/gprpp/arena.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800902 'src/core/lib/gprpp/atomic.h',
kpayson64701e70d2018-04-30 17:40:00 -0700903 'src/core/lib/gprpp/fork.h',
Esun Kim1518ecb2019-04-15 10:48:30 -0700904 'src/core/lib/gprpp/global_config.h',
905 'src/core/lib/gprpp/global_config_custom.h',
906 'src/core/lib/gprpp/global_config_env.h',
907 'src/core/lib/gprpp/global_config_generic.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800908 'src/core/lib/gprpp/manual_constructor.h',
Moiz Haidryba00d3c2019-03-29 12:50:54 -0700909 'src/core/lib/gprpp/map.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -0800910 'src/core/lib/gprpp/memory.h',
Moiz Haidryba00d3c2019-03-29 12:50:54 -0700911 'src/core/lib/gprpp/pair.h',
Soheil Hassas Yeganeh2b9448a2019-04-16 14:51:16 -0400912 'src/core/lib/gprpp/sync.h',
Vijay Paida693552018-02-16 22:59:03 -0800913 'src/core/lib/gprpp/thd.h',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800914 'src/core/lib/profiling/timers.h',
Vijay Pai42807252017-07-28 15:08:24 -0700915 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
916 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
917 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
Yash Tibrewalf71fd842018-08-24 17:05:30 -0700918 'src/core/ext/transport/chttp2/transport/context_list.h',
Craig Tiller32736482017-10-12 22:02:28 -0700919 'src/core/ext/transport/chttp2/transport/flow_control.h',
Vijay Pai42807252017-07-28 15:08:24 -0700920 'src/core/ext/transport/chttp2/transport/frame.h',
921 'src/core/ext/transport/chttp2/transport/frame_data.h',
922 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
923 'src/core/ext/transport/chttp2/transport/frame_ping.h',
924 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
925 'src/core/ext/transport/chttp2/transport/frame_settings.h',
926 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
927 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
928 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
929 'src/core/ext/transport/chttp2/transport/hpack_table.h',
930 'src/core/ext/transport/chttp2/transport/http2_settings.h',
931 'src/core/ext/transport/chttp2/transport/huffsyms.h',
932 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
933 'src/core/ext/transport/chttp2/transport/internal.h',
934 'src/core/ext/transport/chttp2/transport/stream_map.h',
935 'src/core/ext/transport/chttp2/transport/varint.h',
936 'src/core/ext/transport/chttp2/alpn/alpn.h',
937 'src/core/ext/filters/http/client/http_client_filter.h',
938 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
939 'src/core/ext/filters/http/server/http_server_filter.h',
Yihua Zhang392dad72018-05-03 20:12:20 -0700940 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
Vishal Powara33e7962018-10-16 21:56:22 -0700941 'src/core/ext/filters/client_channel/lb_policy/xds/xds.h',
Vijay Pai42807252017-07-28 15:08:24 -0700942 'src/core/lib/security/context/security_context.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800943 'src/core/lib/security/credentials/alts/alts_credentials.h',
Vijay Pai42807252017-07-28 15:08:24 -0700944 'src/core/lib/security/credentials/composite/composite_credentials.h',
945 'src/core/lib/security/credentials/credentials.h',
946 'src/core/lib/security/credentials/fake/fake_credentials.h',
947 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
948 'src/core/lib/security/credentials/iam/iam_credentials.h',
949 'src/core/lib/security/credentials/jwt/json_token.h',
950 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
951 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700952 'src/core/lib/security/credentials/local/local_credentials.h',
Vijay Pai42807252017-07-28 15:08:24 -0700953 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
954 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
955 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
Yihua Zhanga3d997c2019-01-29 10:04:28 -0800956 'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h',
Yihua Zhangb017c802019-03-14 15:24:48 -0700957 'src/core/lib/security/credentials/tls/spiffe_credentials.h',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700958 'src/core/lib/security/security_connector/alts/alts_security_connector.h',
959 'src/core/lib/security/security_connector/fake/fake_security_connector.h',
tdbhacksbcd747d2018-07-20 16:41:44 -0700960 'src/core/lib/security/security_connector/load_system_roots.h',
961 'src/core/lib/security/security_connector/load_system_roots_linux.h',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700962 'src/core/lib/security/security_connector/local/local_security_connector.h',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800963 'src/core/lib/security/security_connector/security_connector.h',
Yihua Zhang81bc9422018-10-22 09:37:48 -0700964 'src/core/lib/security/security_connector/ssl/ssl_security_connector.h',
965 'src/core/lib/security/security_connector/ssl_utils.h',
Yihua Zhangb017c802019-03-14 15:24:48 -0700966 'src/core/lib/security/security_connector/tls/spiffe_security_connector.h',
Vijay Pai42807252017-07-28 15:08:24 -0700967 'src/core/lib/security/transport/auth_filters.h',
Vijay Pai42807252017-07-28 15:08:24 -0700968 'src/core/lib/security/transport/secure_endpoint.h',
Vijay Pai42807252017-07-28 15:08:24 -0700969 'src/core/lib/security/transport/security_handshaker.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800970 'src/core/lib/security/transport/target_authority_table.h',
Vijay Pai42807252017-07-28 15:08:24 -0700971 'src/core/lib/security/transport/tsi_error.h',
972 'src/core/lib/security/util/json_util.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800973 'src/core/tsi/alts/crypt/gsec.h',
974 'src/core/tsi/alts/frame_protector/alts_counter.h',
975 'src/core/tsi/alts/frame_protector/alts_crypter.h',
976 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
977 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
978 'src/core/tsi/alts/frame_protector/frame_handler.h',
979 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
Yihua Zhangcd768ec2018-11-01 16:26:46 -0700980 'src/core/tsi/alts/handshaker/alts_shared_resource.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800981 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
982 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
983 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
984 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
985 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
986 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
987 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
988 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
989 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
990 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
991 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
992 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
993 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
994 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
995 'src/core/tsi/alts/handshaker/altscontext.pb.h',
996 'src/core/tsi/alts/handshaker/handshaker.pb.h',
997 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
Vijay Pai42807252017-07-28 15:08:24 -0700998 'src/core/tsi/transport_security.h',
Vijay Pai42807252017-07-28 15:08:24 -0700999 'src/core/tsi/transport_security_interface.h',
David Garcia Quintas49f625f2018-03-27 11:23:49 -07001000 'src/core/ext/transport/chttp2/client/authority.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001001 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -07001002 'src/core/ext/filters/client_channel/backup_poller.h',
Vijay Pai42807252017-07-28 15:08:24 -07001003 'src/core/ext/filters/client_channel/client_channel.h',
ncteisenafb98292018-06-28 18:04:24 -07001004 'src/core/ext/filters/client_channel/client_channel_channelz.h',
Vijay Pai42807252017-07-28 15:08:24 -07001005 'src/core/ext/filters/client_channel/client_channel_factory.h',
1006 'src/core/ext/filters/client_channel/connector.h',
Juanli Shenbbe25872019-01-15 13:59:59 -08001007 'src/core/ext/filters/client_channel/global_subchannel_pool.h',
Mark D. Rothf85fd022018-10-24 12:29:04 -07001008 'src/core/ext/filters/client_channel/health/health_check_client.h',
Vijay Pai42807252017-07-28 15:08:24 -07001009 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
1010 'src/core/ext/filters/client_channel/http_proxy.h',
1011 'src/core/ext/filters/client_channel/lb_policy.h',
1012 'src/core/ext/filters/client_channel/lb_policy_factory.h',
1013 'src/core/ext/filters/client_channel/lb_policy_registry.h',
Juanli Shenbbe25872019-01-15 13:59:59 -08001014 'src/core/ext/filters/client_channel/local_subchannel_pool.h',
Vijay Pai42807252017-07-28 15:08:24 -07001015 'src/core/ext/filters/client_channel/parse_address.h',
1016 'src/core/ext/filters/client_channel/proxy_mapper.h',
1017 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
1018 'src/core/ext/filters/client_channel/resolver.h',
1019 'src/core/ext/filters/client_channel/resolver_factory.h',
1020 'src/core/ext/filters/client_channel/resolver_registry.h',
Juanli Shen8a880802018-11-15 13:11:45 -08001021 'src/core/ext/filters/client_channel/resolver_result_parsing.h',
Mark D. Rothaa149fe2019-02-19 13:19:24 -08001022 'src/core/ext/filters/client_channel/resolving_lb_policy.h',
Vijay Pai42807252017-07-28 15:08:24 -07001023 'src/core/ext/filters/client_channel/retry_throttle.h',
Mark D. Rothc5f344d2018-12-11 07:48:14 -08001024 'src/core/ext/filters/client_channel/server_address.h',
Mark D. Roth206592c2019-03-26 10:52:56 -07001025 'src/core/ext/filters/client_channel/service_config.h',
Vijay Pai42807252017-07-28 15:08:24 -07001026 'src/core/ext/filters/client_channel/subchannel.h',
Mark D. Roth28ccd612019-05-29 12:21:15 -07001027 'src/core/ext/filters/client_channel/subchannel_interface.h',
Juanli Shenbbe25872019-01-15 13:59:59 -08001028 'src/core/ext/filters/client_channel/subchannel_pool_interface.h',
Vijay Pai42807252017-07-28 15:08:24 -07001029 'src/core/ext/filters/deadline/deadline_filter.h',
Mark D. Rothf85fd022018-10-24 12:29:04 -07001030 'src/core/ext/filters/client_channel/health/health.pb.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001031 'src/core/tsi/fake_transport_security.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -07001032 'src/core/tsi/local_transport_security.h',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -07001033 'src/core/tsi/ssl/session_cache/ssl_session.h',
1034 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001035 'src/core/tsi/ssl_transport_security.h',
1036 'src/core/tsi/ssl_types.h',
1037 'src/core/tsi/transport_security_grpc.h',
Muxi Yanb24b2122018-08-14 10:21:27 -07001038 'src/core/tsi/grpc_shadow_boringssl.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001039 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Vijay Pai42807252017-07-28 15:08:24 -07001040 'src/core/ext/transport/inproc/inproc_transport.h',
Vijay Pai8f4fbb12018-02-08 10:04:08 -08001041 'src/core/lib/avl/avl.h',
Craig Tiller2014a372017-07-21 15:36:11 -07001042 'src/core/lib/backoff/backoff.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001043 'src/core/lib/channel/channel_args.h',
1044 'src/core/lib/channel/channel_stack.h',
1045 'src/core/lib/channel/channel_stack_builder.h',
ncteisen3b42f832018-03-19 13:22:35 -07001046 'src/core/lib/channel/channel_trace.h',
ncteisenc3c6e062018-05-09 11:10:21 -07001047 'src/core/lib/channel/channelz.h',
ncteisenbba88402018-05-11 11:54:41 -04001048 'src/core/lib/channel/channelz_registry.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001049 'src/core/lib/channel/connected_channel.h',
1050 'src/core/lib/channel/context.h',
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07001051 'src/core/lib/channel/handshaker.h',
Mark D. Roth1f0f23c2017-01-06 13:07:19 -08001052 'src/core/lib/channel/handshaker_factory.h',
1053 'src/core/lib/channel/handshaker_registry.h',
ncteisen3b42f832018-03-19 13:22:35 -07001054 'src/core/lib/channel/status_util.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001055 'src/core/lib/compression/algorithm_metadata.h',
Mark D. Rotheccfecd2019-04-03 09:56:11 -07001056 'src/core/lib/compression/compression_args.h',
Muxi Yan92d1bc12017-09-16 10:09:58 -07001057 'src/core/lib/compression/compression_internal.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001058 'src/core/lib/compression/message_compress.h',
Muxi Yane87a7e12017-06-29 16:53:24 -07001059 'src/core/lib/compression/stream_compression.h',
Muxi Yanbf5484e2017-09-01 18:03:03 -07001060 'src/core/lib/compression/stream_compression_gzip.h',
1061 'src/core/lib/compression/stream_compression_identity.h',
Craig Tiller6e739742017-08-31 11:22:52 -07001062 'src/core/lib/debug/stats.h',
1063 'src/core/lib/debug/stats_data.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -08001064 'src/core/lib/gprpp/debug_location.h',
1065 'src/core/lib/gprpp/inlined_vector.h',
Yash Tibrewal9df60232019-01-18 14:48:12 -08001066 'src/core/lib/gprpp/optional.h',
Mark D. Roth4f2b0fd2018-01-19 12:12:23 -08001067 'src/core/lib/gprpp/orphanable.h',
1068 'src/core/lib/gprpp/ref_counted.h',
1069 'src/core/lib/gprpp/ref_counted_ptr.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001070 'src/core/lib/http/format_request.h',
1071 'src/core/lib/http/httpcli.h',
1072 'src/core/lib/http/parser.h',
Craig Tiller43c1b5f2017-10-02 14:42:49 -07001073 'src/core/lib/iomgr/block_annotate.h',
Yash Tibrewalf0397932018-05-31 19:39:52 -07001074 'src/core/lib/iomgr/buffer_list.h',
Mark D. Roth764cf042017-09-01 09:00:06 -07001075 'src/core/lib/iomgr/call_combiner.h',
Muxi Yan9e593f72019-04-19 14:14:48 -07001076 'src/core/lib/iomgr/cfstream_handle.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001077 'src/core/lib/iomgr/closure.h',
Craig Tiller57726ca2016-09-12 11:59:45 -07001078 'src/core/lib/iomgr/combiner.h',
Soheil Hassas Yeganeh2f55f4f2018-12-01 21:07:35 -05001079 'src/core/lib/iomgr/dynamic_annotations.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001080 'src/core/lib/iomgr/endpoint.h',
Muxi Yan9e593f72019-04-19 14:14:48 -07001081 'src/core/lib/iomgr/endpoint_cfstream.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001082 'src/core/lib/iomgr/endpoint_pair.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -07001083 'src/core/lib/iomgr/error.h',
Muxi Yan9e593f72019-04-19 14:14:48 -07001084 'src/core/lib/iomgr/error_cfstream.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001085 'src/core/lib/iomgr/error_internal.h',
Craig Tillerc67cc992017-04-27 10:15:51 -07001086 'src/core/lib/iomgr/ev_epoll1_linux.h',
Craig Tillerf4360d72017-04-07 08:51:00 -07001087 'src/core/lib/iomgr/ev_epollex_linux.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -07001088 'src/core/lib/iomgr/ev_poll_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001089 'src/core/lib/iomgr/ev_posix.h',
1090 'src/core/lib/iomgr/exec_ctx.h',
1091 'src/core/lib/iomgr/executor.h',
Mark D. Rothf9bf4282017-08-03 14:47:23 -07001092 'src/core/lib/iomgr/gethostname.h',
Alexander Polcyn00763bc2018-07-30 17:22:25 -07001093 'src/core/lib/iomgr/grpc_if_nametoindex.h',
Yash Tibrewalf0397932018-05-31 19:39:52 -07001094 'src/core/lib/iomgr/internal_errqueue.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001095 'src/core/lib/iomgr/iocp_windows.h',
1096 'src/core/lib/iomgr/iomgr.h',
kpayson64539f5062018-03-12 19:16:30 -07001097 'src/core/lib/iomgr/iomgr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001098 'src/core/lib/iomgr/iomgr_internal.h',
1099 'src/core/lib/iomgr/iomgr_posix.h',
Craig Tiller819cd882017-04-25 13:18:22 -07001100 'src/core/lib/iomgr/is_epollexclusive_available.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -07001101 'src/core/lib/iomgr/load_file.h',
Craig Tiller376887d2017-04-06 08:27:03 -07001102 'src/core/lib/iomgr/lockfree_event.h',
Yuchen Zengf630ff22017-07-25 13:28:45 -07001103 'src/core/lib/iomgr/nameser.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -07001104 'src/core/lib/iomgr/polling_entity.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001105 'src/core/lib/iomgr/pollset.h',
kpayson64539f5062018-03-12 19:16:30 -07001106 'src/core/lib/iomgr/pollset_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001107 'src/core/lib/iomgr/pollset_set.h',
kpayson64539f5062018-03-12 19:16:30 -07001108 'src/core/lib/iomgr/pollset_set_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001109 'src/core/lib/iomgr/pollset_set_windows.h',
1110 'src/core/lib/iomgr/pollset_windows.h',
murgatroid9954070892016-08-08 17:01:18 -07001111 'src/core/lib/iomgr/port.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001112 'src/core/lib/iomgr/resolve_address.h',
kpayson64539f5062018-03-12 19:16:30 -07001113 'src/core/lib/iomgr/resolve_address_custom.h',
Craig Tiller20afa3d2016-10-17 14:52:14 -07001114 'src/core/lib/iomgr/resource_quota.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001115 'src/core/lib/iomgr/sockaddr.h',
kpayson64539f5062018-03-12 19:16:30 -07001116 'src/core/lib/iomgr/sockaddr_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001117 'src/core/lib/iomgr/sockaddr_posix.h',
1118 'src/core/lib/iomgr/sockaddr_utils.h',
Jorge Canizales3bdaa5e2016-06-30 19:15:21 -07001119 'src/core/lib/iomgr/sockaddr_windows.h',
Michael Warresc46b3eb2017-02-22 22:57:04 -05001120 'src/core/lib/iomgr/socket_factory_posix.h',
Yuchen Zengde3daf52016-10-13 17:26:26 -07001121 'src/core/lib/iomgr/socket_mutator.h',
murgatroid9979b32272016-08-08 13:38:30 -07001122 'src/core/lib/iomgr/socket_utils.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001123 'src/core/lib/iomgr/socket_utils_posix.h',
1124 'src/core/lib/iomgr/socket_windows.h',
Craig Tiller819cd882017-04-25 13:18:22 -07001125 'src/core/lib/iomgr/sys_epoll_wrapper.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001126 'src/core/lib/iomgr/tcp_client.h',
Craig Tiller86958762016-09-23 12:05:34 -07001127 'src/core/lib/iomgr/tcp_client_posix.h',
kpayson64539f5062018-03-12 19:16:30 -07001128 'src/core/lib/iomgr/tcp_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001129 'src/core/lib/iomgr/tcp_posix.h',
1130 'src/core/lib/iomgr/tcp_server.h',
Yuchen Zeng47155ed2017-03-13 17:18:07 -07001131 'src/core/lib/iomgr/tcp_server_utils_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001132 'src/core/lib/iomgr/tcp_windows.h',
1133 'src/core/lib/iomgr/time_averaged_stats.h',
1134 'src/core/lib/iomgr/timer.h',
kpayson64539f5062018-03-12 19:16:30 -07001135 'src/core/lib/iomgr/timer_custom.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001136 'src/core/lib/iomgr/timer_heap.h',
Craig Tillerc3571792017-05-02 12:33:38 -07001137 'src/core/lib/iomgr/timer_manager.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001138 'src/core/lib/iomgr/udp_server.h',
1139 'src/core/lib/iomgr/unix_sockets_posix.h',
1140 'src/core/lib/iomgr/wakeup_fd_pipe.h',
1141 'src/core/lib/iomgr/wakeup_fd_posix.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001142 'src/core/lib/json/json.h',
1143 'src/core/lib/json/json_common.h',
1144 'src/core/lib/json/json_reader.h',
1145 'src/core/lib/json/json_writer.h',
Craig Tiller790f6af2017-03-30 12:39:24 -07001146 'src/core/lib/slice/b64.h',
Craig Tillerc3350542016-10-26 16:19:01 -07001147 'src/core/lib/slice/percent_encoding.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001148 'src/core/lib/slice/slice_hash_table.h',
Craig Tiller30d50fe2016-12-06 19:34:32 -08001149 'src/core/lib/slice/slice_internal.h',
Craig Tillerc3350542016-10-26 16:19:01 -07001150 'src/core/lib/slice/slice_string_helpers.h',
Arjun Royf65208a2019-04-29 15:59:20 -07001151 'src/core/lib/slice/slice_utils.h',
David Garcia Quintas396d49d2018-02-28 16:06:30 -08001152 'src/core/lib/slice/slice_weak_hash_table.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001153 'src/core/lib/surface/api_trace.h',
1154 'src/core/lib/surface/call.h',
1155 'src/core/lib/surface/call_test_only.h',
1156 'src/core/lib/surface/channel.h',
1157 'src/core/lib/surface/channel_init.h',
1158 'src/core/lib/surface/channel_stack_type.h',
1159 'src/core/lib/surface/completion_queue.h',
Sree Kuchibhotlabf184282017-03-21 15:18:58 -07001160 'src/core/lib/surface/completion_queue_factory.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001161 'src/core/lib/surface/event_string.h',
1162 'src/core/lib/surface/init.h',
1163 'src/core/lib/surface/lame_client.h',
1164 'src/core/lib/surface/server.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001165 'src/core/lib/surface/validate_metadata.h',
Craig Tiller9e0066b2016-10-20 14:04:18 -07001166 'src/core/lib/transport/bdp_estimator.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001167 'src/core/lib/transport/byte_stream.h',
1168 'src/core/lib/transport/connectivity_state.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001169 'src/core/lib/transport/error_utils.h',
1170 'src/core/lib/transport/http2_errors.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001171 'src/core/lib/transport/metadata.h',
1172 'src/core/lib/transport/metadata_batch.h',
Craig Tillerdd2fa642016-10-20 15:46:32 -07001173 'src/core/lib/transport/pid_controller.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001174 'src/core/lib/transport/static_metadata.h',
Craig Tiller7c70b6c2017-01-23 07:48:42 -08001175 'src/core/lib/transport/status_conversion.h',
Mark D. Roth718c8342018-02-28 13:00:04 -08001176 'src/core/lib/transport/status_metadata.h',
Robbie Shade710d2422016-07-13 15:15:38 -04001177 'src/core/lib/transport/timeout_encoding.h',
Jorge Canizalescc074d92016-06-28 09:52:43 -07001178 'src/core/lib/transport/transport.h',
1179 'src/core/lib/transport/transport_impl.h',
ncteisen44b262c2018-10-31 21:11:28 -07001180 'src/core/lib/uri/uri_parser.h',
Craig Tiller1f477302017-05-05 11:01:25 -07001181 'src/core/lib/debug/trace.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -07001182 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001183 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
Mark D. Roth09e458c2017-05-02 08:13:26 -07001184 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001185 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
Vishal Powara33e7962018-10-16 21:56:22 -07001186 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
ZhouyihaiDingf04fbd12018-06-25 17:30:58 -07001187 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h',
1188 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001189 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
Vishal Powara33e7962018-10-16 21:56:22 -07001190 'src/core/ext/filters/client_channel/lb_policy/xds/xds_channel.h',
1191 'src/core/ext/filters/client_channel/lb_policy/xds/xds_client_stats.h',
1192 'src/core/ext/filters/client_channel/lb_policy/xds/xds_load_balancer_api.h',
Mark D. Roth5e9848e2017-10-06 13:59:32 -07001193 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
Craig Tiller9eb0fde2017-03-31 16:59:30 -07001194 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
1195 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
Esun Kim90fbdc92019-05-20 08:05:01 -07001196 'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h',
Craig Tiller9b3648a2017-04-03 12:25:19 -07001197 'src/core/ext/filters/max_age/max_age_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -07001198 'src/core/ext/filters/message_size/message_size_filter.h',
David Garcia Quintas961353a2018-03-15 16:11:05 -07001199 'src/core/ext/filters/http/client_authority_filter.h',
Muxi Yan29ff4662017-05-15 10:27:55 -07001200 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
Muxi Yan9e593f72019-04-19 14:14:48 -07001201 'src/core/ext/filters/workarounds/workaround_utils.h'
Muxi Yan588b2242018-04-25 14:20:56 -07001202 end
1203
Muxi Yana7643b12018-12-27 11:40:17 -08001204 # CFStream is now default. Leaving this subspec only for compatibility purpose.
1205 s.subspec 'CFStream-Implementation' do |ss|
1206 ss.dependency "#{s.name}/Implementation", version
1207 end
1208
Muxi Yan37480eb2016-07-14 16:22:03 -07001209 s.subspec 'Cronet-Interface' do |ss|
1210 ss.header_mappings_dir = 'include/grpc'
Muxi Yane38b0122017-03-16 20:53:41 -07001211 ss.source_files = 'include/grpc/grpc_cronet.h'
Muxi Yan37480eb2016-07-14 16:22:03 -07001212 end
1213
Muxi Yanf8372c62016-07-29 09:58:55 -07001214 s.subspec 'Cronet-Implementation' do |ss|
Muxi Yan2a5072e2016-07-27 15:10:22 -07001215 ss.header_mappings_dir = '.'
Muxi Yane2de92f2017-01-31 16:30:52 -08001216
1217 ss.dependency "#{s.name}/Interface", version
1218 ss.dependency "#{s.name}/Implementation", version
1219 ss.dependency "#{s.name}/Cronet-Interface", version
1220
Yash Tibrewaldabce0a2017-10-04 11:58:02 -07001221 ss.source_files = 'src/core/ext/transport/cronet/client/secure/cronet_channel_create.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001222 'src/core/ext/transport/cronet/transport/cronet_transport.cc',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001223 'third_party/nanopb/pb_common.c',
1224 'third_party/nanopb/pb_decode.c',
1225 'third_party/nanopb/pb_encode.c',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001226 'src/core/ext/transport/cronet/transport/cronet_transport.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -08001227 'third_party/objective_c/Cronet/bidirectional_stream_c.h',
1228 'third_party/nanopb/pb.h',
1229 'third_party/nanopb/pb_common.h',
1230 'third_party/nanopb/pb_decode.h',
1231 'third_party/nanopb/pb_encode.h'
Muxi Yan2a5072e2016-07-27 15:10:22 -07001232 end
1233
Muxi Yanf8372c62016-07-29 09:58:55 -07001234 s.subspec 'Tests' do |ss|
Muxi Yan37480eb2016-07-14 16:22:03 -07001235 ss.header_mappings_dir = '.'
1236
Muxi Yane2de92f2017-01-31 16:30:52 -08001237 ss.dependency "#{s.name}/Interface", version
1238 ss.dependency "#{s.name}/Implementation", version
1239
yang-ge00ca032018-12-06 13:40:12 -08001240 ss.source_files = 'test/core/end2end/data/client_certs.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001241 'test/core/end2end/data/server1_cert.cc',
1242 'test/core/end2end/data/server1_key.cc',
1243 'test/core/end2end/data/test_root_cert.cc',
1244 'test/core/security/oauth2_utils.cc',
1245 'test/core/end2end/cq_verifier.cc',
1246 'test/core/end2end/fixtures/http_proxy_fixture.cc',
Yihua Zhang0531d3d2018-12-16 14:50:26 -08001247 'test/core/end2end/fixtures/local_util.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001248 'test/core/end2end/fixtures/proxy.cc',
1249 'test/core/iomgr/endpoint_tests.cc',
1250 'test/core/util/debugger_macros.cc',
Yihua Zhangcc936632018-05-08 10:15:03 -07001251 'test/core/util/fuzzer_util.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001252 'test/core/util/grpc_profiler.cc',
1253 'test/core/util/histogram.cc',
1254 'test/core/util/memory_counters.cc',
1255 'test/core/util/mock_endpoint.cc',
1256 'test/core/util/parse_hexstring.cc',
1257 'test/core/util/passthru_endpoint.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -07001258 'test/core/util/port.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001259 'test/core/util/port_isolated_runtime_environment.cc',
1260 'test/core/util/port_server_client.cc',
1261 'test/core/util/slice_splitter.cc',
Vijay Pai8a99fdb2018-01-25 15:38:20 -08001262 'test/core/util/subprocess_windows.cc',
yang-ge00ca032018-12-06 13:40:12 -08001263 'test/core/util/test_config.cc',
Mark D. Rothd6e2b332019-01-10 10:31:16 -08001264 'test/core/util/test_lb_policies.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001265 'test/core/util/tracer_util.cc',
1266 'test/core/util/trickle_endpoint.cc',
Vijay Pai80e23d12018-01-25 21:50:18 -08001267 'test/core/util/cmdline.cc',
Mark D. Rothf85fd022018-10-24 12:29:04 -07001268 'third_party/nanopb/pb_common.c',
1269 'third_party/nanopb/pb_decode.c',
1270 'third_party/nanopb/pb_encode.c',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001271 'test/core/end2end/data/ssl_test_data.h',
1272 'test/core/security/oauth2_utils.h',
1273 'test/core/end2end/cq_verifier.h',
1274 'test/core/end2end/fixtures/http_proxy_fixture.h',
Yihua Zhang0531d3d2018-12-16 14:50:26 -08001275 'test/core/end2end/fixtures/local_util.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001276 'test/core/end2end/fixtures/proxy.h',
1277 'test/core/iomgr/endpoint_tests.h',
1278 'test/core/util/debugger_macros.h',
Yihua Zhangcc936632018-05-08 10:15:03 -07001279 'test/core/util/fuzzer_util.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001280 'test/core/util/grpc_profiler.h',
1281 'test/core/util/histogram.h',
1282 'test/core/util/memory_counters.h',
1283 'test/core/util/mock_endpoint.h',
1284 'test/core/util/parse_hexstring.h',
1285 'test/core/util/passthru_endpoint.h',
1286 'test/core/util/port.h',
1287 'test/core/util/port_server_client.h',
1288 'test/core/util/slice_splitter.h',
Vijay Pai8a99fdb2018-01-25 15:38:20 -08001289 'test/core/util/subprocess.h',
yang-ge00ca032018-12-06 13:40:12 -08001290 'test/core/util/test_config.h',
Mark D. Rothd6e2b332019-01-10 10:31:16 -08001291 'test/core/util/test_lb_policies.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001292 'test/core/util/tracer_util.h',
1293 'test/core/util/trickle_endpoint.h',
Vijay Pai80e23d12018-01-25 21:50:18 -08001294 'test/core/util/cmdline.h',
Mark D. Rothf85fd022018-10-24 12:29:04 -07001295 'third_party/nanopb/pb.h',
1296 'third_party/nanopb/pb_common.h',
1297 'third_party/nanopb/pb_decode.h',
1298 'third_party/nanopb/pb_encode.h',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001299 'test/core/end2end/end2end_tests.cc',
1300 'test/core/end2end/end2end_test_utils.cc',
1301 'test/core/end2end/tests/authority_not_supported.cc',
1302 'test/core/end2end/tests/bad_hostname.cc',
1303 'test/core/end2end/tests/bad_ping.cc',
1304 'test/core/end2end/tests/binary_metadata.cc',
1305 'test/core/end2end/tests/call_creds.cc',
David Garcia Quintas861363d2018-03-26 15:57:33 -07001306 'test/core/end2end/tests/call_host_override.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001307 'test/core/end2end/tests/cancel_after_accept.cc',
1308 'test/core/end2end/tests/cancel_after_client_done.cc',
1309 'test/core/end2end/tests/cancel_after_invoke.cc',
1310 'test/core/end2end/tests/cancel_after_round_trip.cc',
1311 'test/core/end2end/tests/cancel_before_invoke.cc',
1312 'test/core/end2end/tests/cancel_in_a_vacuum.cc',
1313 'test/core/end2end/tests/cancel_with_status.cc',
ncteisenb8a52e02018-06-07 18:58:03 -07001314 'test/core/end2end/tests/channelz.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001315 'test/core/end2end/tests/compressed_payload.cc',
1316 'test/core/end2end/tests/connectivity.cc',
1317 'test/core/end2end/tests/default_host.cc',
1318 'test/core/end2end/tests/disappearing_server.cc',
1319 'test/core/end2end/tests/empty_batch.cc',
1320 'test/core/end2end/tests/filter_call_init_fails.cc',
1321 'test/core/end2end/tests/filter_causes_close.cc',
Mark D. Rotha04b0642019-03-04 14:38:02 -08001322 'test/core/end2end/tests/filter_context.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001323 'test/core/end2end/tests/filter_latency.cc',
Ken Payson6535cfd2018-01-04 12:56:52 -08001324 'test/core/end2end/tests/filter_status_code.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001325 'test/core/end2end/tests/graceful_server_shutdown.cc',
1326 'test/core/end2end/tests/high_initial_seqno.cc',
1327 'test/core/end2end/tests/hpack_size.cc',
1328 'test/core/end2end/tests/idempotent_request.cc',
1329 'test/core/end2end/tests/invoke_large_request.cc',
1330 'test/core/end2end/tests/keepalive_timeout.cc',
1331 'test/core/end2end/tests/large_metadata.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001332 'test/core/end2end/tests/max_concurrent_streams.cc',
1333 'test/core/end2end/tests/max_connection_age.cc',
1334 'test/core/end2end/tests/max_connection_idle.cc',
1335 'test/core/end2end/tests/max_message_length.cc',
1336 'test/core/end2end/tests/negative_deadline.cc',
ncteisena94896f2018-06-07 16:08:48 -07001337 'test/core/end2end/tests/no_error_on_hotpath.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001338 'test/core/end2end/tests/no_logging.cc',
1339 'test/core/end2end/tests/no_op.cc',
1340 'test/core/end2end/tests/payload.cc',
1341 'test/core/end2end/tests/ping.cc',
1342 'test/core/end2end/tests/ping_pong_streaming.cc',
1343 'test/core/end2end/tests/proxy_auth.cc',
1344 'test/core/end2end/tests/registered_call.cc',
1345 'test/core/end2end/tests/request_with_flags.cc',
1346 'test/core/end2end/tests/request_with_payload.cc',
1347 'test/core/end2end/tests/resource_quota_server.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -08001348 'test/core/end2end/tests/retry.cc',
1349 'test/core/end2end/tests/retry_cancellation.cc',
1350 'test/core/end2end/tests/retry_disabled.cc',
1351 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc',
1352 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc',
1353 'test/core/end2end/tests/retry_non_retriable_status.cc',
Mark D. Rothde077ac2018-04-12 08:05:44 -07001354 'test/core/end2end/tests/retry_non_retriable_status_before_recv_trailing_metadata_started.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -08001355 'test/core/end2end/tests/retry_recv_initial_metadata.cc',
1356 'test/core/end2end/tests/retry_recv_message.cc',
1357 'test/core/end2end/tests/retry_server_pushback_delay.cc',
1358 'test/core/end2end/tests/retry_server_pushback_disabled.cc',
1359 'test/core/end2end/tests/retry_streaming.cc',
1360 'test/core/end2end/tests/retry_streaming_after_commit.cc',
1361 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc',
1362 'test/core/end2end/tests/retry_throttled.cc',
1363 'test/core/end2end/tests/retry_too_many_attempts.cc',
Muxi Yanb0f821c2017-12-19 15:37:57 -08001364 'test/core/end2end/tests/server_finishes_request.cc',
1365 'test/core/end2end/tests/shutdown_finishes_calls.cc',
1366 'test/core/end2end/tests/shutdown_finishes_tags.cc',
1367 'test/core/end2end/tests/simple_cacheable_request.cc',
1368 'test/core/end2end/tests/simple_delayed_request.cc',
1369 'test/core/end2end/tests/simple_metadata.cc',
1370 'test/core/end2end/tests/simple_request.cc',
1371 'test/core/end2end/tests/stream_compression_compressed_payload.cc',
1372 'test/core/end2end/tests/stream_compression_payload.cc',
1373 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc',
1374 'test/core/end2end/tests/streaming_error_response.cc',
1375 'test/core/end2end/tests/trailing_metadata.cc',
1376 'test/core/end2end/tests/workaround_cronet_compression.cc',
1377 'test/core/end2end/tests/write_buffering.cc',
1378 'test/core/end2end/tests/write_buffering_at_end.cc',
1379 'test/core/end2end/tests/cancel_test_helpers.h',
1380 'test/core/end2end/end2end_tests.h'
Muxi Yan37480eb2016-07-14 16:22:03 -07001381 end
Muxi Yan43c47102017-07-06 20:51:49 -07001382
1383 # TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
1384 s.prepare_command = <<-END_OF_COMMAND
Muxi Yan1f15b792018-06-12 18:03:44 -07001385 find src/core/ -type f ! -path '*.grpc_back' -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include "(pb(_.*)?\\.h)";#include <nanopb/\\1>;g'
1386 find src/core/ -type f -path '*.grpc_back' -print0 | xargs -0 rm
Muxi Yanf511f242018-09-20 16:13:16 -07001387 find src/core/ -type f \\( -path '*.h' -or -path '*.cc' \\) -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include <openssl/;#include <openssl_grpc/;g'
Muxi Yan43c47102017-07-06 20:51:49 -07001388 END_OF_COMMAND
Jorge Canizalese487a722016-04-30 12:05:26 -07001389end