blob: d45e0c519b3689d0694c72718ccb169079e00338 [file] [log] [blame]
Muxi Yan46ee18b2018-01-05 16:01:16 -08001# This file has been automatically generated from a template file.
2# Please make modifications to `templates/gRPC-C++.podspec.template`
3# instead. This file can be regenerated from the template by running
4# `tools/buildgen/generate_projects.sh`.
5
6# gRPC C++ CocoaPods podspec
7#
8# Copyright 2017 gRPC authors.
9#
10# 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
13#
14# http://www.apache.org/licenses/LICENSE-2.0
15#
16# 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.
21
22
23Pod::Spec.new do |s|
24 s.name = 'gRPC-C++'
25 # TODO (mxyan): use version that match gRPC version when pod is stabilized
Juanli Shen8ceb27a2018-08-27 14:27:55 -070026 # version = '1.16.0-dev'
Muxi Yan64436012018-06-21 14:39:18 -070027 version = '0.0.3'
Muxi Yan46ee18b2018-01-05 16:01:16 -080028 s.version = version
29 s.summary = 'gRPC C++ library'
30 s.homepage = 'https://grpc.io'
31 s.license = 'Apache License, Version 2.0'
32 s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' }
33
Juanli Shen8ceb27a2018-08-27 14:27:55 -070034 grpc_version = '1.16.0-dev'
Muxi Yan46ee18b2018-01-05 16:01:16 -080035
36 s.source = {
37 :git => 'https://github.com/grpc/grpc.git',
38 :tag => "v#{grpc_version}",
39 }
40
41 s.ios.deployment_target = '7.0'
42 s.osx.deployment_target = '10.9'
43 s.requires_arc = false
44
Muxi Yan6be15ee2018-02-20 14:05:33 -080045 name = 'grpcpp'
46 # Use `grpcpp` as framework name so that `#include <grpcpp/xxx.h>` works when built as
47 # framework.
48 s.module_name = name
49
50 # Add include prefix `grpcpp` so that `#include <grpcpp/xxx.h>` works when built as static
51 # library.
52 s.header_dir = name
Muxi Yan46ee18b2018-01-05 16:01:16 -080053
54 s.pod_target_xcconfig = {
55 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(PODS_TARGET_SRCROOT)/include"',
56 'USER_HEADER_SEARCH_PATHS' => '"$(PODS_TARGET_SRCROOT)"',
57 'GCC_PREPROCESSOR_DEFINITIONS' => '"$(inherited)" "COCOAPODS=1" "PB_NO_PACKED_STRUCTS=1"',
58 'CLANG_WARN_STRICT_PROTOTYPES' => 'NO',
59 'CLANG_WARN_DOCUMENTATION_COMMENTS' => 'NO',
60
61 # If we don't set these two settings, `include/grpc/support/time.h` and
62 # `src/core/lib/support/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
63 # build.
64 'USE_HEADERMAP' => 'NO',
65 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
66 }
67
68 s.libraries = 'c++'
69
70 s.default_subspecs = 'Interface', 'Implementation'
71
Muxi Yan6ef01592018-02-21 18:10:49 -080072 s.header_mappings_dir = 'include/grpcpp'
Muxi Yan46ee18b2018-01-05 16:01:16 -080073
Muxi Yan46ee18b2018-01-05 16:01:16 -080074 s.subspec 'Interface' do |ss|
Muxi Yan6be15ee2018-02-20 14:05:33 -080075 ss.header_mappings_dir = 'include/grpcpp'
Muxi Yan46ee18b2018-01-05 16:01:16 -080076
Muxi Yan6be15ee2018-02-20 14:05:33 -080077 ss.source_files = 'include/grpcpp/alarm.h',
Muxi Yan0e00c432018-01-26 15:39:32 -080078 'include/grpcpp/channel.h',
79 'include/grpcpp/client_context.h',
80 'include/grpcpp/completion_queue.h',
81 'include/grpcpp/create_channel.h',
82 'include/grpcpp/create_channel_posix.h',
83 'include/grpcpp/ext/health_check_service_server_builder_option.h',
84 'include/grpcpp/generic/async_generic_service.h',
85 'include/grpcpp/generic/generic_stub.h',
86 'include/grpcpp/grpcpp.h',
87 'include/grpcpp/health_check_service_interface.h',
88 'include/grpcpp/impl/call.h',
89 'include/grpcpp/impl/channel_argument_option.h',
90 'include/grpcpp/impl/client_unary_call.h',
91 'include/grpcpp/impl/codegen/core_codegen.h',
92 'include/grpcpp/impl/grpc_library.h',
93 'include/grpcpp/impl/method_handler_impl.h',
94 'include/grpcpp/impl/rpc_method.h',
95 'include/grpcpp/impl/rpc_service_method.h',
96 'include/grpcpp/impl/serialization_traits.h',
97 'include/grpcpp/impl/server_builder_option.h',
98 'include/grpcpp/impl/server_builder_plugin.h',
99 'include/grpcpp/impl/server_initializer.h',
100 'include/grpcpp/impl/service_type.h',
101 'include/grpcpp/resource_quota.h',
102 'include/grpcpp/security/auth_context.h',
103 'include/grpcpp/security/auth_metadata_processor.h',
104 'include/grpcpp/security/credentials.h',
105 'include/grpcpp/security/server_credentials.h',
106 'include/grpcpp/server.h',
107 'include/grpcpp/server_builder.h',
108 'include/grpcpp/server_context.h',
109 'include/grpcpp/server_posix.h',
110 'include/grpcpp/support/async_stream.h',
111 'include/grpcpp/support/async_unary_call.h',
112 'include/grpcpp/support/byte_buffer.h',
113 'include/grpcpp/support/channel_arguments.h',
Vijay Pai8bf52532018-08-21 14:32:13 -0700114 'include/grpcpp/support/client_callback.h',
Muxi Yan0e00c432018-01-26 15:39:32 -0800115 'include/grpcpp/support/config.h',
ncteisencf5b2662018-02-27 11:55:10 -0800116 'include/grpcpp/support/proto_buffer_reader.h',
117 'include/grpcpp/support/proto_buffer_writer.h',
Muxi Yan0e00c432018-01-26 15:39:32 -0800118 'include/grpcpp/support/slice.h',
119 'include/grpcpp/support/status.h',
120 'include/grpcpp/support/status_code_enum.h',
121 'include/grpcpp/support/string_ref.h',
122 'include/grpcpp/support/stub_options.h',
123 'include/grpcpp/support/sync_stream.h',
124 'include/grpcpp/support/time.h',
ncteisen93a90e62018-06-18 18:39:56 -0700125 'include/grpcpp/impl/codegen/async_generic_service.h',
Muxi Yan0e00c432018-01-26 15:39:32 -0800126 'include/grpcpp/impl/codegen/async_stream.h',
127 'include/grpcpp/impl/codegen/async_unary_call.h',
128 'include/grpcpp/impl/codegen/byte_buffer.h',
129 'include/grpcpp/impl/codegen/call.h',
130 'include/grpcpp/impl/codegen/call_hook.h',
Vijay Pai8bf52532018-08-21 14:32:13 -0700131 'include/grpcpp/impl/codegen/callback_common.h',
Muxi Yan0e00c432018-01-26 15:39:32 -0800132 'include/grpcpp/impl/codegen/channel_interface.h',
Vijay Pai8bf52532018-08-21 14:32:13 -0700133 'include/grpcpp/impl/codegen/client_callback.h',
Muxi Yan0e00c432018-01-26 15:39:32 -0800134 'include/grpcpp/impl/codegen/client_context.h',
135 'include/grpcpp/impl/codegen/client_unary_call.h',
136 'include/grpcpp/impl/codegen/completion_queue.h',
137 'include/grpcpp/impl/codegen/completion_queue_tag.h',
138 'include/grpcpp/impl/codegen/config.h',
139 'include/grpcpp/impl/codegen/core_codegen_interface.h',
140 'include/grpcpp/impl/codegen/create_auth_context.h',
141 'include/grpcpp/impl/codegen/grpc_library.h',
142 'include/grpcpp/impl/codegen/metadata_map.h',
143 'include/grpcpp/impl/codegen/method_handler_impl.h',
144 'include/grpcpp/impl/codegen/rpc_method.h',
145 'include/grpcpp/impl/codegen/rpc_service_method.h',
146 'include/grpcpp/impl/codegen/security/auth_context.h',
147 'include/grpcpp/impl/codegen/serialization_traits.h',
148 'include/grpcpp/impl/codegen/server_context.h',
149 'include/grpcpp/impl/codegen/server_interface.h',
150 'include/grpcpp/impl/codegen/service_type.h',
151 'include/grpcpp/impl/codegen/slice.h',
152 'include/grpcpp/impl/codegen/status.h',
153 'include/grpcpp/impl/codegen/status_code_enum.h',
154 'include/grpcpp/impl/codegen/string_ref.h',
155 'include/grpcpp/impl/codegen/stub_options.h',
156 'include/grpcpp/impl/codegen/sync_stream.h',
157 'include/grpcpp/impl/codegen/time.h'
Muxi Yan46ee18b2018-01-05 16:01:16 -0800158 end
159
160 s.subspec 'Implementation' do |ss|
161 ss.header_mappings_dir = '.'
162 ss.dependency "#{s.name}/Interface", version
163 ss.dependency 'gRPC-Core', grpc_version
164 ss.dependency 'nanopb', '~> 0.3'
165
Muxi Yan6be15ee2018-02-20 14:05:33 -0800166 ss.source_files = 'include/grpcpp/impl/codegen/core_codegen.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800167 'src/cpp/client/secure_credentials.h',
168 'src/cpp/common/secure_auth_context.h',
169 'src/cpp/server/secure_server_credentials.h',
170 'src/cpp/client/create_channel_internal.h',
171 'src/cpp/common/channel_filter.h',
172 'src/cpp/server/dynamic_thread_pool.h',
173 'src/cpp/server/health/default_health_check_service.h',
174 'src/cpp/server/health/health.pb.h',
175 'src/cpp/server/thread_pool_interface.h',
176 'src/cpp/thread_manager/thread_manager.h',
177 'src/cpp/client/insecure_credentials.cc',
178 'src/cpp/client/secure_credentials.cc',
179 'src/cpp/common/auth_property_iterator.cc',
180 'src/cpp/common/secure_auth_context.cc',
181 'src/cpp/common/secure_channel_arguments.cc',
182 'src/cpp/common/secure_create_auth_context.cc',
183 'src/cpp/server/insecure_server_credentials.cc',
184 'src/cpp/server/secure_server_credentials.cc',
185 'src/cpp/client/channel_cc.cc',
186 'src/cpp/client/client_context.cc',
187 'src/cpp/client/create_channel.cc',
188 'src/cpp/client/create_channel_internal.cc',
189 'src/cpp/client/create_channel_posix.cc',
190 'src/cpp/client/credentials_cc.cc',
191 'src/cpp/client/generic_stub.cc',
Vijay Pai9494a9d2018-02-02 09:32:10 -0800192 'src/cpp/common/alarm.cc',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800193 'src/cpp/common/channel_arguments.cc',
194 'src/cpp/common/channel_filter.cc',
195 'src/cpp/common/completion_queue_cc.cc',
196 'src/cpp/common/core_codegen.cc',
197 'src/cpp/common/resource_quota_cc.cc',
198 'src/cpp/common/rpc_method.cc',
199 'src/cpp/common/version_cc.cc',
200 'src/cpp/server/async_generic_service.cc',
201 'src/cpp/server/channel_argument_option.cc',
202 'src/cpp/server/create_default_thread_pool.cc',
203 'src/cpp/server/dynamic_thread_pool.cc',
204 'src/cpp/server/health/default_health_check_service.cc',
205 'src/cpp/server/health/health.pb.c',
206 'src/cpp/server/health/health_check_service.cc',
207 'src/cpp/server/health/health_check_service_server_builder_option.cc',
208 'src/cpp/server/server_builder.cc',
209 'src/cpp/server/server_cc.cc',
210 'src/cpp/server/server_context.cc',
211 'src/cpp/server/server_credentials.cc',
212 'src/cpp/server/server_posix.cc',
213 'src/cpp/thread_manager/thread_manager.cc',
214 'src/cpp/util/byte_buffer_cc.cc',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800215 'src/cpp/util/status.cc',
216 'src/cpp/util/string_ref.cc',
217 'src/cpp/util/time_cc.cc',
218 'src/cpp/codegen/codegen_init.cc',
Mark D. Roth2223e602018-06-27 07:23:33 -0700219 'src/core/lib/gpr/alloc.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800220 'src/core/lib/gpr/arena.h',
221 'src/core/lib/gpr/env.h',
Vijay Paiae376bf2018-01-25 22:54:02 -0800222 'src/core/lib/gpr/host_port.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800223 'src/core/lib/gpr/mpscq.h',
224 'src/core/lib/gpr/murmur_hash.h',
225 'src/core/lib/gpr/spinlock.h',
226 'src/core/lib/gpr/string.h',
227 'src/core/lib/gpr/string_windows.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800228 'src/core/lib/gpr/time_precise.h',
Vijay Paib6cf1232018-01-25 21:02:26 -0800229 'src/core/lib/gpr/tls.h',
230 'src/core/lib/gpr/tls_gcc.h',
231 'src/core/lib/gpr/tls_msvc.h',
232 'src/core/lib/gpr/tls_pthread.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800233 'src/core/lib/gpr/tmpfile.h',
Vijay Paid4d0a302018-01-25 13:24:03 -0800234 'src/core/lib/gpr/useful.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800235 'src/core/lib/gprpp/abstract.h',
236 'src/core/lib/gprpp/atomic.h',
237 'src/core/lib/gprpp/atomic_with_atm.h',
238 'src/core/lib/gprpp/atomic_with_std.h',
kpayson64701e70d2018-04-30 17:40:00 -0700239 'src/core/lib/gprpp/fork.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800240 'src/core/lib/gprpp/manual_constructor.h',
241 'src/core/lib/gprpp/memory.h',
Mark D. Roth7a7e4f52018-08-16 12:04:24 -0700242 'src/core/lib/gprpp/mutex_lock.h',
Vijay Paida693552018-02-16 22:59:03 -0800243 'src/core/lib/gprpp/thd.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800244 'src/core/lib/profiling/timers.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800245 'src/core/ext/transport/chttp2/transport/bin_decoder.h',
246 'src/core/ext/transport/chttp2/transport/bin_encoder.h',
247 'src/core/ext/transport/chttp2/transport/chttp2_transport.h',
248 'src/core/ext/transport/chttp2/transport/flow_control.h',
249 'src/core/ext/transport/chttp2/transport/frame.h',
250 'src/core/ext/transport/chttp2/transport/frame_data.h',
251 'src/core/ext/transport/chttp2/transport/frame_goaway.h',
252 'src/core/ext/transport/chttp2/transport/frame_ping.h',
253 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h',
254 'src/core/ext/transport/chttp2/transport/frame_settings.h',
255 'src/core/ext/transport/chttp2/transport/frame_window_update.h',
256 'src/core/ext/transport/chttp2/transport/hpack_encoder.h',
Hope Casey-Allen327c5142018-09-19 13:47:29 -0700257 'src/core/ext/transport/chttp2/transport/hpack_mapping.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800258 'src/core/ext/transport/chttp2/transport/hpack_parser.h',
259 'src/core/ext/transport/chttp2/transport/hpack_table.h',
260 'src/core/ext/transport/chttp2/transport/http2_settings.h',
261 'src/core/ext/transport/chttp2/transport/huffsyms.h',
262 'src/core/ext/transport/chttp2/transport/incoming_metadata.h',
263 'src/core/ext/transport/chttp2/transport/internal.h',
264 'src/core/ext/transport/chttp2/transport/stream_map.h',
265 'src/core/ext/transport/chttp2/transport/varint.h',
266 'src/core/ext/transport/chttp2/alpn/alpn.h',
267 'src/core/ext/filters/http/client/http_client_filter.h',
268 'src/core/ext/filters/http/message_compress/message_compress_filter.h',
269 'src/core/ext/filters/http/server/http_server_filter.h',
Yihua Zhang392dad72018-05-03 20:12:20 -0700270 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800271 'src/core/lib/security/context/security_context.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800272 'src/core/lib/security/credentials/alts/alts_credentials.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800273 'src/core/lib/security/credentials/composite/composite_credentials.h',
274 'src/core/lib/security/credentials/credentials.h',
275 'src/core/lib/security/credentials/fake/fake_credentials.h',
276 'src/core/lib/security/credentials/google_default/google_default_credentials.h',
277 'src/core/lib/security/credentials/iam/iam_credentials.h',
278 'src/core/lib/security/credentials/jwt/json_token.h',
279 'src/core/lib/security/credentials/jwt/jwt_credentials.h',
280 'src/core/lib/security/credentials/jwt/jwt_verifier.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700281 'src/core/lib/security/credentials/local/local_credentials.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800282 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h',
283 'src/core/lib/security/credentials/plugin/plugin_credentials.h',
284 'src/core/lib/security/credentials/ssl/ssl_credentials.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800285 'src/core/lib/security/security_connector/alts_security_connector.h',
tdbhacksbcd747d2018-07-20 16:41:44 -0700286 'src/core/lib/security/security_connector/load_system_roots.h',
287 'src/core/lib/security/security_connector/load_system_roots_linux.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700288 'src/core/lib/security/security_connector/local_security_connector.h',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800289 'src/core/lib/security/security_connector/security_connector.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800290 'src/core/lib/security/transport/auth_filters.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800291 'src/core/lib/security/transport/secure_endpoint.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800292 'src/core/lib/security/transport/security_handshaker.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800293 'src/core/lib/security/transport/target_authority_table.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800294 'src/core/lib/security/transport/tsi_error.h',
295 'src/core/lib/security/util/json_util.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800296 'src/core/tsi/alts/crypt/gsec.h',
297 'src/core/tsi/alts/frame_protector/alts_counter.h',
298 'src/core/tsi/alts/frame_protector/alts_crypter.h',
299 'src/core/tsi/alts/frame_protector/alts_frame_protector.h',
300 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h',
301 'src/core/tsi/alts/frame_protector/frame_handler.h',
302 'src/core/tsi/alts/handshaker/alts_handshaker_client.h',
303 'src/core/tsi/alts/handshaker/alts_tsi_event.h',
304 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h',
305 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h',
306 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h',
307 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h',
308 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h',
309 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h',
310 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h',
311 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h',
312 'src/core/lib/security/credentials/alts/check_gcp_environment.h',
313 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h',
314 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h',
315 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h',
316 'src/core/tsi/alts/handshaker/alts_tsi_utils.h',
317 'src/core/tsi/alts/handshaker/transport_security_common_api.h',
318 'src/core/tsi/alts/handshaker/altscontext.pb.h',
319 'src/core/tsi/alts/handshaker/handshaker.pb.h',
320 'src/core/tsi/alts/handshaker/transport_security_common.pb.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800321 'src/core/tsi/transport_security.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800322 'src/core/tsi/transport_security_interface.h',
David Garcia Quintas49f625f2018-03-27 11:23:49 -0700323 'src/core/ext/transport/chttp2/client/authority.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800324 'src/core/ext/transport/chttp2/client/chttp2_connector.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800325 'src/core/ext/filters/client_channel/backup_poller.h',
326 'src/core/ext/filters/client_channel/client_channel.h',
ncteisenafb98292018-06-28 18:04:24 -0700327 'src/core/ext/filters/client_channel/client_channel_channelz.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800328 'src/core/ext/filters/client_channel/client_channel_factory.h',
329 'src/core/ext/filters/client_channel/connector.h',
330 'src/core/ext/filters/client_channel/http_connect_handshaker.h',
331 'src/core/ext/filters/client_channel/http_proxy.h',
332 'src/core/ext/filters/client_channel/lb_policy.h',
333 'src/core/ext/filters/client_channel/lb_policy_factory.h',
334 'src/core/ext/filters/client_channel/lb_policy_registry.h',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800335 'src/core/ext/filters/client_channel/method_params.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800336 'src/core/ext/filters/client_channel/parse_address.h',
337 'src/core/ext/filters/client_channel/proxy_mapper.h',
338 'src/core/ext/filters/client_channel/proxy_mapper_registry.h',
339 'src/core/ext/filters/client_channel/resolver.h',
340 'src/core/ext/filters/client_channel/resolver_factory.h',
341 'src/core/ext/filters/client_channel/resolver_registry.h',
342 'src/core/ext/filters/client_channel/retry_throttle.h',
343 'src/core/ext/filters/client_channel/subchannel.h',
344 'src/core/ext/filters/client_channel/subchannel_index.h',
345 'src/core/ext/filters/client_channel/uri_parser.h',
346 'src/core/ext/filters/deadline/deadline_filter.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800347 'src/core/tsi/alts_transport_security.h',
348 'src/core/tsi/fake_transport_security.h',
Yihua Zhangc5f1eda2018-07-02 13:29:27 -0700349 'src/core/tsi/local_transport_security.h',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700350 'src/core/tsi/ssl/session_cache/ssl_session.h',
351 'src/core/tsi/ssl/session_cache/ssl_session_cache.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800352 'src/core/tsi/ssl_transport_security.h',
353 'src/core/tsi/ssl_types.h',
354 'src/core/tsi/transport_security_grpc.h',
Muxi Yanb24b2122018-08-14 10:21:27 -0700355 'src/core/tsi/grpc_shadow_boringssl.h',
Yihua Zhangeaf64862018-03-06 21:40:45 -0800356 'src/core/ext/transport/chttp2/server/chttp2_server.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800357 'src/core/ext/transport/inproc/inproc_transport.h',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800358 'src/core/lib/avl/avl.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800359 'src/core/lib/backoff/backoff.h',
360 'src/core/lib/channel/channel_args.h',
361 'src/core/lib/channel/channel_stack.h',
362 'src/core/lib/channel/channel_stack_builder.h',
ncteisen3b42f832018-03-19 13:22:35 -0700363 'src/core/lib/channel/channel_trace.h',
ncteisenc3c6e062018-05-09 11:10:21 -0700364 'src/core/lib/channel/channelz.h',
ncteisenbba88402018-05-11 11:54:41 -0400365 'src/core/lib/channel/channelz_registry.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800366 'src/core/lib/channel/connected_channel.h',
367 'src/core/lib/channel/context.h',
368 'src/core/lib/channel/handshaker.h',
369 'src/core/lib/channel/handshaker_factory.h',
370 'src/core/lib/channel/handshaker_registry.h',
ncteisen3b42f832018-03-19 13:22:35 -0700371 'src/core/lib/channel/status_util.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800372 'src/core/lib/compression/algorithm_metadata.h',
Muxi Yan5cb25e72018-01-24 16:16:52 -0800373 'src/core/lib/compression/compression_internal.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800374 'src/core/lib/compression/message_compress.h',
375 'src/core/lib/compression/stream_compression.h',
376 'src/core/lib/compression/stream_compression_gzip.h',
377 'src/core/lib/compression/stream_compression_identity.h',
378 'src/core/lib/debug/stats.h',
379 'src/core/lib/debug/stats_data.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800380 'src/core/lib/gprpp/debug_location.h',
381 'src/core/lib/gprpp/inlined_vector.h',
382 'src/core/lib/gprpp/orphanable.h',
383 'src/core/lib/gprpp/ref_counted.h',
384 'src/core/lib/gprpp/ref_counted_ptr.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800385 'src/core/lib/http/format_request.h',
386 'src/core/lib/http/httpcli.h',
387 'src/core/lib/http/parser.h',
388 'src/core/lib/iomgr/block_annotate.h',
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700389 'src/core/lib/iomgr/buffer_list.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800390 'src/core/lib/iomgr/call_combiner.h',
391 'src/core/lib/iomgr/closure.h',
392 'src/core/lib/iomgr/combiner.h',
393 'src/core/lib/iomgr/endpoint.h',
394 'src/core/lib/iomgr/endpoint_pair.h',
395 'src/core/lib/iomgr/error.h',
396 'src/core/lib/iomgr/error_internal.h',
397 'src/core/lib/iomgr/ev_epoll1_linux.h',
398 'src/core/lib/iomgr/ev_epollex_linux.h',
399 'src/core/lib/iomgr/ev_epollsig_linux.h',
400 'src/core/lib/iomgr/ev_poll_posix.h',
401 'src/core/lib/iomgr/ev_posix.h',
402 'src/core/lib/iomgr/exec_ctx.h',
403 'src/core/lib/iomgr/executor.h',
404 'src/core/lib/iomgr/gethostname.h',
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700405 'src/core/lib/iomgr/internal_errqueue.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800406 'src/core/lib/iomgr/iocp_windows.h',
407 'src/core/lib/iomgr/iomgr.h',
kpayson64539f5062018-03-12 19:16:30 -0700408 'src/core/lib/iomgr/iomgr_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800409 'src/core/lib/iomgr/iomgr_internal.h',
410 'src/core/lib/iomgr/iomgr_posix.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800411 'src/core/lib/iomgr/is_epollexclusive_available.h',
412 'src/core/lib/iomgr/load_file.h',
413 'src/core/lib/iomgr/lockfree_event.h',
414 'src/core/lib/iomgr/nameser.h',
415 'src/core/lib/iomgr/network_status_tracker.h',
416 'src/core/lib/iomgr/polling_entity.h',
417 'src/core/lib/iomgr/pollset.h',
kpayson64539f5062018-03-12 19:16:30 -0700418 'src/core/lib/iomgr/pollset_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800419 'src/core/lib/iomgr/pollset_set.h',
kpayson64539f5062018-03-12 19:16:30 -0700420 'src/core/lib/iomgr/pollset_set_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800421 'src/core/lib/iomgr/pollset_set_windows.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800422 'src/core/lib/iomgr/pollset_windows.h',
423 'src/core/lib/iomgr/port.h',
424 'src/core/lib/iomgr/resolve_address.h',
kpayson64539f5062018-03-12 19:16:30 -0700425 'src/core/lib/iomgr/resolve_address_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800426 'src/core/lib/iomgr/resource_quota.h',
427 'src/core/lib/iomgr/sockaddr.h',
kpayson64539f5062018-03-12 19:16:30 -0700428 'src/core/lib/iomgr/sockaddr_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800429 'src/core/lib/iomgr/sockaddr_posix.h',
430 'src/core/lib/iomgr/sockaddr_utils.h',
431 'src/core/lib/iomgr/sockaddr_windows.h',
432 'src/core/lib/iomgr/socket_factory_posix.h',
433 'src/core/lib/iomgr/socket_mutator.h',
434 'src/core/lib/iomgr/socket_utils.h',
435 'src/core/lib/iomgr/socket_utils_posix.h',
436 'src/core/lib/iomgr/socket_windows.h',
437 'src/core/lib/iomgr/sys_epoll_wrapper.h',
438 'src/core/lib/iomgr/tcp_client.h',
439 'src/core/lib/iomgr/tcp_client_posix.h',
kpayson64539f5062018-03-12 19:16:30 -0700440 'src/core/lib/iomgr/tcp_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800441 'src/core/lib/iomgr/tcp_posix.h',
442 'src/core/lib/iomgr/tcp_server.h',
443 'src/core/lib/iomgr/tcp_server_utils_posix.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800444 'src/core/lib/iomgr/tcp_windows.h',
445 'src/core/lib/iomgr/time_averaged_stats.h',
446 'src/core/lib/iomgr/timer.h',
kpayson64539f5062018-03-12 19:16:30 -0700447 'src/core/lib/iomgr/timer_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800448 'src/core/lib/iomgr/timer_heap.h',
449 'src/core/lib/iomgr/timer_manager.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800450 'src/core/lib/iomgr/udp_server.h',
451 'src/core/lib/iomgr/unix_sockets_posix.h',
452 'src/core/lib/iomgr/wakeup_fd_cv.h',
453 'src/core/lib/iomgr/wakeup_fd_pipe.h',
454 'src/core/lib/iomgr/wakeup_fd_posix.h',
455 'src/core/lib/json/json.h',
456 'src/core/lib/json/json_common.h',
457 'src/core/lib/json/json_reader.h',
458 'src/core/lib/json/json_writer.h',
459 'src/core/lib/slice/b64.h',
460 'src/core/lib/slice/percent_encoding.h',
461 'src/core/lib/slice/slice_hash_table.h',
462 'src/core/lib/slice/slice_internal.h',
463 'src/core/lib/slice/slice_string_helpers.h',
David Garcia Quintas396d49d2018-02-28 16:06:30 -0800464 'src/core/lib/slice/slice_weak_hash_table.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800465 'src/core/lib/surface/api_trace.h',
466 'src/core/lib/surface/call.h',
467 'src/core/lib/surface/call_test_only.h',
468 'src/core/lib/surface/channel.h',
469 'src/core/lib/surface/channel_init.h',
470 'src/core/lib/surface/channel_stack_type.h',
471 'src/core/lib/surface/completion_queue.h',
472 'src/core/lib/surface/completion_queue_factory.h',
473 'src/core/lib/surface/event_string.h',
474 'src/core/lib/surface/init.h',
475 'src/core/lib/surface/lame_client.h',
476 'src/core/lib/surface/server.h',
477 'src/core/lib/surface/validate_metadata.h',
478 'src/core/lib/transport/bdp_estimator.h',
479 'src/core/lib/transport/byte_stream.h',
480 'src/core/lib/transport/connectivity_state.h',
481 'src/core/lib/transport/error_utils.h',
482 'src/core/lib/transport/http2_errors.h',
483 'src/core/lib/transport/metadata.h',
484 'src/core/lib/transport/metadata_batch.h',
485 'src/core/lib/transport/pid_controller.h',
486 'src/core/lib/transport/service_config.h',
487 'src/core/lib/transport/static_metadata.h',
488 'src/core/lib/transport/status_conversion.h',
Mark D. Roth718c8342018-02-28 13:00:04 -0800489 'src/core/lib/transport/status_metadata.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800490 'src/core/lib/transport/timeout_encoding.h',
491 'src/core/lib/transport/transport.h',
492 'src/core/lib/transport/transport_impl.h',
493 'src/core/lib/debug/trace.h',
494 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800495 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h',
496 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h',
497 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h',
ZhouyihaiDingf04fbd12018-06-25 17:30:58 -0700498 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h',
499 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800500 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h',
501 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h',
502 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h',
503 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h',
504 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800505 'src/core/ext/filters/max_age/max_age_filter.h',
506 'src/core/ext/filters/message_size/message_size_filter.h',
David Garcia Quintas961353a2018-03-15 16:11:05 -0700507 'src/core/ext/filters/http/client_authority_filter.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800508 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h',
509 'src/core/ext/filters/workarounds/workaround_utils.h'
510
Muxi Yan6be15ee2018-02-20 14:05:33 -0800511 ss.private_header_files = 'include/grpcpp/impl/codegen/core_codegen.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800512 'src/cpp/client/secure_credentials.h',
513 'src/cpp/common/secure_auth_context.h',
514 'src/cpp/server/secure_server_credentials.h',
515 'src/cpp/client/create_channel_internal.h',
516 'src/cpp/common/channel_filter.h',
517 'src/cpp/server/dynamic_thread_pool.h',
518 'src/cpp/server/health/default_health_check_service.h',
519 'src/cpp/server/health/health.pb.h',
520 'src/cpp/server/thread_pool_interface.h',
521 'src/cpp/thread_manager/thread_manager.h',
Mark D. Roth2223e602018-06-27 07:23:33 -0700522 'src/core/lib/gpr/alloc.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800523 'src/core/lib/gpr/arena.h',
524 'src/core/lib/gpr/env.h',
Vijay Paiae376bf2018-01-25 22:54:02 -0800525 'src/core/lib/gpr/host_port.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800526 'src/core/lib/gpr/mpscq.h',
527 'src/core/lib/gpr/murmur_hash.h',
528 'src/core/lib/gpr/spinlock.h',
529 'src/core/lib/gpr/string.h',
530 'src/core/lib/gpr/string_windows.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800531 'src/core/lib/gpr/time_precise.h',
Vijay Paib6cf1232018-01-25 21:02:26 -0800532 'src/core/lib/gpr/tls.h',
533 'src/core/lib/gpr/tls_gcc.h',
534 'src/core/lib/gpr/tls_msvc.h',
535 'src/core/lib/gpr/tls_pthread.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800536 'src/core/lib/gpr/tmpfile.h',
Vijay Paid4d0a302018-01-25 13:24:03 -0800537 'src/core/lib/gpr/useful.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800538 'src/core/lib/gprpp/abstract.h',
539 'src/core/lib/gprpp/atomic.h',
540 'src/core/lib/gprpp/atomic_with_atm.h',
541 'src/core/lib/gprpp/atomic_with_std.h',
kpayson64701e70d2018-04-30 17:40:00 -0700542 'src/core/lib/gprpp/fork.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800543 'src/core/lib/gprpp/manual_constructor.h',
544 'src/core/lib/gprpp/memory.h',
Mark D. Roth7a7e4f52018-08-16 12:04:24 -0700545 'src/core/lib/gprpp/mutex_lock.h',
Vijay Paida693552018-02-16 22:59:03 -0800546 'src/core/lib/gprpp/thd.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800547 'src/core/lib/profiling/timers.h',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800548 'src/core/lib/avl/avl.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800549 'src/core/lib/backoff/backoff.h',
550 'src/core/lib/channel/channel_args.h',
551 'src/core/lib/channel/channel_stack.h',
552 'src/core/lib/channel/channel_stack_builder.h',
ncteisen3b42f832018-03-19 13:22:35 -0700553 'src/core/lib/channel/channel_trace.h',
ncteisenc3c6e062018-05-09 11:10:21 -0700554 'src/core/lib/channel/channelz.h',
ncteisenbba88402018-05-11 11:54:41 -0400555 'src/core/lib/channel/channelz_registry.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800556 'src/core/lib/channel/connected_channel.h',
557 'src/core/lib/channel/context.h',
558 'src/core/lib/channel/handshaker.h',
559 'src/core/lib/channel/handshaker_factory.h',
560 'src/core/lib/channel/handshaker_registry.h',
ncteisen3b42f832018-03-19 13:22:35 -0700561 'src/core/lib/channel/status_util.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800562 'src/core/lib/compression/algorithm_metadata.h',
Muxi Yan5cb25e72018-01-24 16:16:52 -0800563 'src/core/lib/compression/compression_internal.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800564 'src/core/lib/compression/message_compress.h',
565 'src/core/lib/compression/stream_compression.h',
566 'src/core/lib/compression/stream_compression_gzip.h',
567 'src/core/lib/compression/stream_compression_identity.h',
568 'src/core/lib/debug/stats.h',
569 'src/core/lib/debug/stats_data.h',
Muxi Yan9492a922018-01-21 15:18:04 -0800570 'src/core/lib/gprpp/debug_location.h',
571 'src/core/lib/gprpp/inlined_vector.h',
572 'src/core/lib/gprpp/orphanable.h',
573 'src/core/lib/gprpp/ref_counted.h',
574 'src/core/lib/gprpp/ref_counted_ptr.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800575 'src/core/lib/http/format_request.h',
576 'src/core/lib/http/httpcli.h',
577 'src/core/lib/http/parser.h',
578 'src/core/lib/iomgr/block_annotate.h',
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700579 'src/core/lib/iomgr/buffer_list.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800580 'src/core/lib/iomgr/call_combiner.h',
581 'src/core/lib/iomgr/closure.h',
582 'src/core/lib/iomgr/combiner.h',
583 'src/core/lib/iomgr/endpoint.h',
584 'src/core/lib/iomgr/endpoint_pair.h',
585 'src/core/lib/iomgr/error.h',
586 'src/core/lib/iomgr/error_internal.h',
587 'src/core/lib/iomgr/ev_epoll1_linux.h',
588 'src/core/lib/iomgr/ev_epollex_linux.h',
589 'src/core/lib/iomgr/ev_epollsig_linux.h',
590 'src/core/lib/iomgr/ev_poll_posix.h',
591 'src/core/lib/iomgr/ev_posix.h',
592 'src/core/lib/iomgr/exec_ctx.h',
593 'src/core/lib/iomgr/executor.h',
594 'src/core/lib/iomgr/gethostname.h',
Yash Tibrewal8d47cd42018-08-27 14:56:01 -0700595 'src/core/lib/iomgr/internal_errqueue.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800596 'src/core/lib/iomgr/iocp_windows.h',
597 'src/core/lib/iomgr/iomgr.h',
kpayson64539f5062018-03-12 19:16:30 -0700598 'src/core/lib/iomgr/iomgr_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800599 'src/core/lib/iomgr/iomgr_internal.h',
600 'src/core/lib/iomgr/iomgr_posix.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800601 'src/core/lib/iomgr/is_epollexclusive_available.h',
602 'src/core/lib/iomgr/load_file.h',
603 'src/core/lib/iomgr/lockfree_event.h',
604 'src/core/lib/iomgr/nameser.h',
605 'src/core/lib/iomgr/network_status_tracker.h',
606 'src/core/lib/iomgr/polling_entity.h',
607 'src/core/lib/iomgr/pollset.h',
kpayson64539f5062018-03-12 19:16:30 -0700608 'src/core/lib/iomgr/pollset_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800609 'src/core/lib/iomgr/pollset_set.h',
kpayson64539f5062018-03-12 19:16:30 -0700610 'src/core/lib/iomgr/pollset_set_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800611 'src/core/lib/iomgr/pollset_set_windows.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800612 'src/core/lib/iomgr/pollset_windows.h',
613 'src/core/lib/iomgr/port.h',
614 'src/core/lib/iomgr/resolve_address.h',
kpayson64539f5062018-03-12 19:16:30 -0700615 'src/core/lib/iomgr/resolve_address_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800616 'src/core/lib/iomgr/resource_quota.h',
617 'src/core/lib/iomgr/sockaddr.h',
kpayson64539f5062018-03-12 19:16:30 -0700618 'src/core/lib/iomgr/sockaddr_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800619 'src/core/lib/iomgr/sockaddr_posix.h',
620 'src/core/lib/iomgr/sockaddr_utils.h',
621 'src/core/lib/iomgr/sockaddr_windows.h',
622 'src/core/lib/iomgr/socket_factory_posix.h',
623 'src/core/lib/iomgr/socket_mutator.h',
624 'src/core/lib/iomgr/socket_utils.h',
625 'src/core/lib/iomgr/socket_utils_posix.h',
626 'src/core/lib/iomgr/socket_windows.h',
627 'src/core/lib/iomgr/sys_epoll_wrapper.h',
628 'src/core/lib/iomgr/tcp_client.h',
629 'src/core/lib/iomgr/tcp_client_posix.h',
kpayson64539f5062018-03-12 19:16:30 -0700630 'src/core/lib/iomgr/tcp_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800631 'src/core/lib/iomgr/tcp_posix.h',
632 'src/core/lib/iomgr/tcp_server.h',
633 'src/core/lib/iomgr/tcp_server_utils_posix.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800634 'src/core/lib/iomgr/tcp_windows.h',
635 'src/core/lib/iomgr/time_averaged_stats.h',
636 'src/core/lib/iomgr/timer.h',
kpayson64539f5062018-03-12 19:16:30 -0700637 'src/core/lib/iomgr/timer_custom.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800638 'src/core/lib/iomgr/timer_heap.h',
639 'src/core/lib/iomgr/timer_manager.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800640 'src/core/lib/iomgr/udp_server.h',
641 'src/core/lib/iomgr/unix_sockets_posix.h',
642 'src/core/lib/iomgr/wakeup_fd_cv.h',
643 'src/core/lib/iomgr/wakeup_fd_pipe.h',
644 'src/core/lib/iomgr/wakeup_fd_posix.h',
645 'src/core/lib/json/json.h',
646 'src/core/lib/json/json_common.h',
647 'src/core/lib/json/json_reader.h',
648 'src/core/lib/json/json_writer.h',
649 'src/core/lib/slice/b64.h',
650 'src/core/lib/slice/percent_encoding.h',
651 'src/core/lib/slice/slice_hash_table.h',
652 'src/core/lib/slice/slice_internal.h',
653 'src/core/lib/slice/slice_string_helpers.h',
David Garcia Quintas396d49d2018-02-28 16:06:30 -0800654 'src/core/lib/slice/slice_weak_hash_table.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800655 'src/core/lib/surface/api_trace.h',
656 'src/core/lib/surface/call.h',
657 'src/core/lib/surface/call_test_only.h',
658 'src/core/lib/surface/channel.h',
659 'src/core/lib/surface/channel_init.h',
660 'src/core/lib/surface/channel_stack_type.h',
661 'src/core/lib/surface/completion_queue.h',
662 'src/core/lib/surface/completion_queue_factory.h',
663 'src/core/lib/surface/event_string.h',
664 'src/core/lib/surface/init.h',
665 'src/core/lib/surface/lame_client.h',
666 'src/core/lib/surface/server.h',
667 'src/core/lib/surface/validate_metadata.h',
668 'src/core/lib/transport/bdp_estimator.h',
669 'src/core/lib/transport/byte_stream.h',
670 'src/core/lib/transport/connectivity_state.h',
671 'src/core/lib/transport/error_utils.h',
672 'src/core/lib/transport/http2_errors.h',
673 'src/core/lib/transport/metadata.h',
674 'src/core/lib/transport/metadata_batch.h',
675 'src/core/lib/transport/pid_controller.h',
676 'src/core/lib/transport/service_config.h',
677 'src/core/lib/transport/static_metadata.h',
678 'src/core/lib/transport/status_conversion.h',
Mark D. Roth718c8342018-02-28 13:00:04 -0800679 'src/core/lib/transport/status_metadata.h',
Muxi Yan46ee18b2018-01-05 16:01:16 -0800680 'src/core/lib/transport/timeout_encoding.h',
681 'src/core/lib/transport/transport.h',
682 'src/core/lib/transport/transport_impl.h',
683 'src/core/lib/debug/trace.h',
684 'src/core/ext/transport/inproc/inproc_transport.h'
685 end
686
Muxi Yan64436012018-06-21 14:39:18 -0700687 s.subspec 'Protobuf' do |ss|
688 ss.header_mappings_dir = 'include/grpcpp'
689 ss.dependency "#{s.name}/Interface", version
690
691 ss.source_files = 'include/grpcpp/impl/codegen/proto_buffer_reader.h',
692 'include/grpcpp/impl/codegen/proto_buffer_writer.h',
693 'include/grpcpp/impl/codegen/proto_utils.h',
694 'include/grpcpp/impl/codegen/config_protobuf.h',
695 'include/grpcpp/impl/codegen/config_protobuf.h'
696 end
697
Muxi Yan46ee18b2018-01-05 16:01:16 -0800698 s.prepare_command = <<-END_OF_COMMAND
Muxi Yan358c6252018-06-13 09:34:19 -0700699 find src/cpp/ -type f ! -path '*.grpc_back' -print0 | xargs -0 -L1 sed -E -i'.grpc_back' 's;#include "(pb(_.*)?\\.h)";#include <nanopb/\\1>;g'
700 find src/cpp/ -type f -path '*.grpc_back' -print0 | xargs -0 rm
701 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'
702 find src/core/ -type f -path '*.grpc_back' -print0 | xargs -0 rm
Muxi Yan46ee18b2018-01-05 16:01:16 -0800703 END_OF_COMMAND
704end