Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 1 | # 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 | |
| 23 | Pod::Spec.new do |s| |
| 24 | s.name = 'gRPC-C++' |
| 25 | # TODO (mxyan): use version that match gRPC version when pod is stabilized |
Srini Polavarapu | 8c9af74 | 2018-07-19 09:52:56 -0700 | [diff] [blame] | 26 | # version = '1.15.0-dev' |
Muxi Yan | 6443601 | 2018-06-21 14:39:18 -0700 | [diff] [blame] | 27 | version = '0.0.3' |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 28 | 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 | |
Srini Polavarapu | 8c9af74 | 2018-07-19 09:52:56 -0700 | [diff] [blame] | 34 | grpc_version = '1.15.0-dev' |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 35 | |
| 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 Yan | 6be15ee | 2018-02-20 14:05:33 -0800 | [diff] [blame] | 45 | 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 Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 53 | |
| 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 Yan | 6ef0159 | 2018-02-21 18:10:49 -0800 | [diff] [blame] | 72 | s.header_mappings_dir = 'include/grpcpp' |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 73 | |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 74 | s.subspec 'Interface' do |ss| |
Muxi Yan | 6be15ee | 2018-02-20 14:05:33 -0800 | [diff] [blame] | 75 | ss.header_mappings_dir = 'include/grpcpp' |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 76 | |
Muxi Yan | 6be15ee | 2018-02-20 14:05:33 -0800 | [diff] [blame] | 77 | ss.source_files = 'include/grpcpp/alarm.h', |
Muxi Yan | 0e00c43 | 2018-01-26 15:39:32 -0800 | [diff] [blame] | 78 | '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', |
| 114 | 'include/grpcpp/support/config.h', |
ncteisen | cf5b266 | 2018-02-27 11:55:10 -0800 | [diff] [blame] | 115 | 'include/grpcpp/support/proto_buffer_reader.h', |
| 116 | 'include/grpcpp/support/proto_buffer_writer.h', |
Muxi Yan | 0e00c43 | 2018-01-26 15:39:32 -0800 | [diff] [blame] | 117 | 'include/grpcpp/support/slice.h', |
| 118 | 'include/grpcpp/support/status.h', |
| 119 | 'include/grpcpp/support/status_code_enum.h', |
| 120 | 'include/grpcpp/support/string_ref.h', |
| 121 | 'include/grpcpp/support/stub_options.h', |
| 122 | 'include/grpcpp/support/sync_stream.h', |
| 123 | 'include/grpcpp/support/time.h', |
ncteisen | 93a90e6 | 2018-06-18 18:39:56 -0700 | [diff] [blame] | 124 | 'include/grpcpp/impl/codegen/async_generic_service.h', |
Muxi Yan | 0e00c43 | 2018-01-26 15:39:32 -0800 | [diff] [blame] | 125 | 'include/grpcpp/impl/codegen/async_stream.h', |
| 126 | 'include/grpcpp/impl/codegen/async_unary_call.h', |
| 127 | 'include/grpcpp/impl/codegen/byte_buffer.h', |
| 128 | 'include/grpcpp/impl/codegen/call.h', |
| 129 | 'include/grpcpp/impl/codegen/call_hook.h', |
| 130 | 'include/grpcpp/impl/codegen/channel_interface.h', |
| 131 | 'include/grpcpp/impl/codegen/client_context.h', |
| 132 | 'include/grpcpp/impl/codegen/client_unary_call.h', |
| 133 | 'include/grpcpp/impl/codegen/completion_queue.h', |
| 134 | 'include/grpcpp/impl/codegen/completion_queue_tag.h', |
| 135 | 'include/grpcpp/impl/codegen/config.h', |
| 136 | 'include/grpcpp/impl/codegen/core_codegen_interface.h', |
| 137 | 'include/grpcpp/impl/codegen/create_auth_context.h', |
| 138 | 'include/grpcpp/impl/codegen/grpc_library.h', |
| 139 | 'include/grpcpp/impl/codegen/metadata_map.h', |
| 140 | 'include/grpcpp/impl/codegen/method_handler_impl.h', |
| 141 | 'include/grpcpp/impl/codegen/rpc_method.h', |
| 142 | 'include/grpcpp/impl/codegen/rpc_service_method.h', |
| 143 | 'include/grpcpp/impl/codegen/security/auth_context.h', |
| 144 | 'include/grpcpp/impl/codegen/serialization_traits.h', |
| 145 | 'include/grpcpp/impl/codegen/server_context.h', |
| 146 | 'include/grpcpp/impl/codegen/server_interface.h', |
| 147 | 'include/grpcpp/impl/codegen/service_type.h', |
| 148 | 'include/grpcpp/impl/codegen/slice.h', |
| 149 | 'include/grpcpp/impl/codegen/status.h', |
| 150 | 'include/grpcpp/impl/codegen/status_code_enum.h', |
| 151 | 'include/grpcpp/impl/codegen/string_ref.h', |
| 152 | 'include/grpcpp/impl/codegen/stub_options.h', |
| 153 | 'include/grpcpp/impl/codegen/sync_stream.h', |
| 154 | 'include/grpcpp/impl/codegen/time.h' |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 155 | end |
| 156 | |
| 157 | s.subspec 'Implementation' do |ss| |
| 158 | ss.header_mappings_dir = '.' |
| 159 | ss.dependency "#{s.name}/Interface", version |
| 160 | ss.dependency 'gRPC-Core', grpc_version |
| 161 | ss.dependency 'nanopb', '~> 0.3' |
| 162 | |
Muxi Yan | 6be15ee | 2018-02-20 14:05:33 -0800 | [diff] [blame] | 163 | ss.source_files = 'include/grpcpp/impl/codegen/core_codegen.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 164 | 'src/cpp/client/secure_credentials.h', |
| 165 | 'src/cpp/common/secure_auth_context.h', |
| 166 | 'src/cpp/server/secure_server_credentials.h', |
| 167 | 'src/cpp/client/create_channel_internal.h', |
| 168 | 'src/cpp/common/channel_filter.h', |
| 169 | 'src/cpp/server/dynamic_thread_pool.h', |
| 170 | 'src/cpp/server/health/default_health_check_service.h', |
| 171 | 'src/cpp/server/health/health.pb.h', |
| 172 | 'src/cpp/server/thread_pool_interface.h', |
| 173 | 'src/cpp/thread_manager/thread_manager.h', |
| 174 | 'src/cpp/client/insecure_credentials.cc', |
| 175 | 'src/cpp/client/secure_credentials.cc', |
| 176 | 'src/cpp/common/auth_property_iterator.cc', |
| 177 | 'src/cpp/common/secure_auth_context.cc', |
| 178 | 'src/cpp/common/secure_channel_arguments.cc', |
| 179 | 'src/cpp/common/secure_create_auth_context.cc', |
| 180 | 'src/cpp/server/insecure_server_credentials.cc', |
| 181 | 'src/cpp/server/secure_server_credentials.cc', |
| 182 | 'src/cpp/client/channel_cc.cc', |
| 183 | 'src/cpp/client/client_context.cc', |
| 184 | 'src/cpp/client/create_channel.cc', |
| 185 | 'src/cpp/client/create_channel_internal.cc', |
| 186 | 'src/cpp/client/create_channel_posix.cc', |
| 187 | 'src/cpp/client/credentials_cc.cc', |
| 188 | 'src/cpp/client/generic_stub.cc', |
Vijay Pai | 9494a9d | 2018-02-02 09:32:10 -0800 | [diff] [blame] | 189 | 'src/cpp/common/alarm.cc', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 190 | 'src/cpp/common/channel_arguments.cc', |
| 191 | 'src/cpp/common/channel_filter.cc', |
| 192 | 'src/cpp/common/completion_queue_cc.cc', |
| 193 | 'src/cpp/common/core_codegen.cc', |
| 194 | 'src/cpp/common/resource_quota_cc.cc', |
| 195 | 'src/cpp/common/rpc_method.cc', |
| 196 | 'src/cpp/common/version_cc.cc', |
| 197 | 'src/cpp/server/async_generic_service.cc', |
| 198 | 'src/cpp/server/channel_argument_option.cc', |
| 199 | 'src/cpp/server/create_default_thread_pool.cc', |
| 200 | 'src/cpp/server/dynamic_thread_pool.cc', |
| 201 | 'src/cpp/server/health/default_health_check_service.cc', |
| 202 | 'src/cpp/server/health/health.pb.c', |
| 203 | 'src/cpp/server/health/health_check_service.cc', |
| 204 | 'src/cpp/server/health/health_check_service_server_builder_option.cc', |
| 205 | 'src/cpp/server/server_builder.cc', |
| 206 | 'src/cpp/server/server_cc.cc', |
| 207 | 'src/cpp/server/server_context.cc', |
| 208 | 'src/cpp/server/server_credentials.cc', |
| 209 | 'src/cpp/server/server_posix.cc', |
| 210 | 'src/cpp/thread_manager/thread_manager.cc', |
| 211 | 'src/cpp/util/byte_buffer_cc.cc', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 212 | 'src/cpp/util/status.cc', |
| 213 | 'src/cpp/util/string_ref.cc', |
| 214 | 'src/cpp/util/time_cc.cc', |
| 215 | 'src/cpp/codegen/codegen_init.cc', |
Mark D. Roth | 2223e60 | 2018-06-27 07:23:33 -0700 | [diff] [blame] | 216 | 'src/core/lib/gpr/alloc.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 217 | 'src/core/lib/gpr/arena.h', |
| 218 | 'src/core/lib/gpr/env.h', |
Vijay Pai | ae376bf | 2018-01-25 22:54:02 -0800 | [diff] [blame] | 219 | 'src/core/lib/gpr/host_port.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 220 | 'src/core/lib/gpr/mpscq.h', |
| 221 | 'src/core/lib/gpr/murmur_hash.h', |
| 222 | 'src/core/lib/gpr/spinlock.h', |
| 223 | 'src/core/lib/gpr/string.h', |
| 224 | 'src/core/lib/gpr/string_windows.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 225 | 'src/core/lib/gpr/time_precise.h', |
Vijay Pai | b6cf123 | 2018-01-25 21:02:26 -0800 | [diff] [blame] | 226 | 'src/core/lib/gpr/tls.h', |
| 227 | 'src/core/lib/gpr/tls_gcc.h', |
| 228 | 'src/core/lib/gpr/tls_msvc.h', |
| 229 | 'src/core/lib/gpr/tls_pthread.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 230 | 'src/core/lib/gpr/tmpfile.h', |
Vijay Pai | d4d0a30 | 2018-01-25 13:24:03 -0800 | [diff] [blame] | 231 | 'src/core/lib/gpr/useful.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 232 | 'src/core/lib/gprpp/abstract.h', |
| 233 | 'src/core/lib/gprpp/atomic.h', |
| 234 | 'src/core/lib/gprpp/atomic_with_atm.h', |
| 235 | 'src/core/lib/gprpp/atomic_with_std.h', |
kpayson64 | 701e70d | 2018-04-30 17:40:00 -0700 | [diff] [blame] | 236 | 'src/core/lib/gprpp/fork.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 237 | 'src/core/lib/gprpp/manual_constructor.h', |
| 238 | 'src/core/lib/gprpp/memory.h', |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 239 | 'src/core/lib/gprpp/thd.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 240 | 'src/core/lib/profiling/timers.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 241 | 'src/core/ext/transport/chttp2/transport/bin_decoder.h', |
| 242 | 'src/core/ext/transport/chttp2/transport/bin_encoder.h', |
| 243 | 'src/core/ext/transport/chttp2/transport/chttp2_transport.h', |
| 244 | 'src/core/ext/transport/chttp2/transport/flow_control.h', |
| 245 | 'src/core/ext/transport/chttp2/transport/frame.h', |
| 246 | 'src/core/ext/transport/chttp2/transport/frame_data.h', |
| 247 | 'src/core/ext/transport/chttp2/transport/frame_goaway.h', |
| 248 | 'src/core/ext/transport/chttp2/transport/frame_ping.h', |
| 249 | 'src/core/ext/transport/chttp2/transport/frame_rst_stream.h', |
| 250 | 'src/core/ext/transport/chttp2/transport/frame_settings.h', |
| 251 | 'src/core/ext/transport/chttp2/transport/frame_window_update.h', |
| 252 | 'src/core/ext/transport/chttp2/transport/hpack_encoder.h', |
| 253 | 'src/core/ext/transport/chttp2/transport/hpack_parser.h', |
| 254 | 'src/core/ext/transport/chttp2/transport/hpack_table.h', |
| 255 | 'src/core/ext/transport/chttp2/transport/http2_settings.h', |
| 256 | 'src/core/ext/transport/chttp2/transport/huffsyms.h', |
| 257 | 'src/core/ext/transport/chttp2/transport/incoming_metadata.h', |
| 258 | 'src/core/ext/transport/chttp2/transport/internal.h', |
| 259 | 'src/core/ext/transport/chttp2/transport/stream_map.h', |
| 260 | 'src/core/ext/transport/chttp2/transport/varint.h', |
| 261 | 'src/core/ext/transport/chttp2/alpn/alpn.h', |
| 262 | 'src/core/ext/filters/http/client/http_client_filter.h', |
| 263 | 'src/core/ext/filters/http/message_compress/message_compress_filter.h', |
| 264 | 'src/core/ext/filters/http/server/http_server_filter.h', |
Yihua Zhang | 392dad7 | 2018-05-03 20:12:20 -0700 | [diff] [blame] | 265 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 266 | 'src/core/lib/security/context/security_context.h', |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 267 | 'src/core/lib/security/credentials/alts/alts_credentials.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 268 | 'src/core/lib/security/credentials/composite/composite_credentials.h', |
| 269 | 'src/core/lib/security/credentials/credentials.h', |
| 270 | 'src/core/lib/security/credentials/fake/fake_credentials.h', |
| 271 | 'src/core/lib/security/credentials/google_default/google_default_credentials.h', |
| 272 | 'src/core/lib/security/credentials/iam/iam_credentials.h', |
| 273 | 'src/core/lib/security/credentials/jwt/json_token.h', |
| 274 | 'src/core/lib/security/credentials/jwt/jwt_credentials.h', |
| 275 | 'src/core/lib/security/credentials/jwt/jwt_verifier.h', |
Yihua Zhang | c5f1eda | 2018-07-02 13:29:27 -0700 | [diff] [blame] | 276 | 'src/core/lib/security/credentials/local/local_credentials.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 277 | 'src/core/lib/security/credentials/oauth2/oauth2_credentials.h', |
| 278 | 'src/core/lib/security/credentials/plugin/plugin_credentials.h', |
| 279 | 'src/core/lib/security/credentials/ssl/ssl_credentials.h', |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 280 | 'src/core/lib/security/security_connector/alts_security_connector.h', |
tdbhacks | bcd747d | 2018-07-20 16:41:44 -0700 | [diff] [blame] | 281 | 'src/core/lib/security/security_connector/load_system_roots.h', |
| 282 | 'src/core/lib/security/security_connector/load_system_roots_linux.h', |
Yihua Zhang | c5f1eda | 2018-07-02 13:29:27 -0700 | [diff] [blame] | 283 | 'src/core/lib/security/security_connector/local_security_connector.h', |
Yihua Zhang | 75f0a9f | 2018-02-20 10:09:47 -0800 | [diff] [blame] | 284 | 'src/core/lib/security/security_connector/security_connector.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 285 | 'src/core/lib/security/transport/auth_filters.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 286 | 'src/core/lib/security/transport/secure_endpoint.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 287 | 'src/core/lib/security/transport/security_handshaker.h', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 288 | 'src/core/lib/security/transport/target_authority_table.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 289 | 'src/core/lib/security/transport/tsi_error.h', |
| 290 | 'src/core/lib/security/util/json_util.h', |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 291 | 'src/core/tsi/alts/crypt/gsec.h', |
| 292 | 'src/core/tsi/alts/frame_protector/alts_counter.h', |
| 293 | 'src/core/tsi/alts/frame_protector/alts_crypter.h', |
| 294 | 'src/core/tsi/alts/frame_protector/alts_frame_protector.h', |
| 295 | 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h', |
| 296 | 'src/core/tsi/alts/frame_protector/frame_handler.h', |
| 297 | 'src/core/tsi/alts/handshaker/alts_handshaker_client.h', |
| 298 | 'src/core/tsi/alts/handshaker/alts_tsi_event.h', |
| 299 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.h', |
| 300 | 'src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h', |
| 301 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h', |
| 302 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h', |
| 303 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h', |
| 304 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h', |
| 305 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h', |
| 306 | 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h', |
| 307 | 'src/core/lib/security/credentials/alts/check_gcp_environment.h', |
| 308 | 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h', |
| 309 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.h', |
| 310 | 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.h', |
| 311 | 'src/core/tsi/alts/handshaker/alts_tsi_utils.h', |
| 312 | 'src/core/tsi/alts/handshaker/transport_security_common_api.h', |
| 313 | 'src/core/tsi/alts/handshaker/altscontext.pb.h', |
| 314 | 'src/core/tsi/alts/handshaker/handshaker.pb.h', |
| 315 | 'src/core/tsi/alts/handshaker/transport_security_common.pb.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 316 | 'src/core/tsi/transport_security.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 317 | 'src/core/tsi/transport_security_interface.h', |
David Garcia Quintas | 49f625f | 2018-03-27 11:23:49 -0700 | [diff] [blame] | 318 | 'src/core/ext/transport/chttp2/client/authority.h', |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 319 | 'src/core/ext/transport/chttp2/client/chttp2_connector.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 320 | 'src/core/ext/filters/client_channel/backup_poller.h', |
| 321 | 'src/core/ext/filters/client_channel/client_channel.h', |
ncteisen | afb9829 | 2018-06-28 18:04:24 -0700 | [diff] [blame] | 322 | 'src/core/ext/filters/client_channel/client_channel_channelz.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 323 | 'src/core/ext/filters/client_channel/client_channel_factory.h', |
| 324 | 'src/core/ext/filters/client_channel/connector.h', |
| 325 | 'src/core/ext/filters/client_channel/http_connect_handshaker.h', |
| 326 | 'src/core/ext/filters/client_channel/http_proxy.h', |
| 327 | 'src/core/ext/filters/client_channel/lb_policy.h', |
| 328 | 'src/core/ext/filters/client_channel/lb_policy_factory.h', |
| 329 | 'src/core/ext/filters/client_channel/lb_policy_registry.h', |
Mark D. Roth | 3e7f2df | 2018-02-26 13:17:06 -0800 | [diff] [blame] | 330 | 'src/core/ext/filters/client_channel/method_params.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 331 | 'src/core/ext/filters/client_channel/parse_address.h', |
| 332 | 'src/core/ext/filters/client_channel/proxy_mapper.h', |
| 333 | 'src/core/ext/filters/client_channel/proxy_mapper_registry.h', |
| 334 | 'src/core/ext/filters/client_channel/resolver.h', |
| 335 | 'src/core/ext/filters/client_channel/resolver_factory.h', |
| 336 | 'src/core/ext/filters/client_channel/resolver_registry.h', |
| 337 | 'src/core/ext/filters/client_channel/retry_throttle.h', |
| 338 | 'src/core/ext/filters/client_channel/subchannel.h', |
| 339 | 'src/core/ext/filters/client_channel/subchannel_index.h', |
| 340 | 'src/core/ext/filters/client_channel/uri_parser.h', |
| 341 | 'src/core/ext/filters/deadline/deadline_filter.h', |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 342 | 'src/core/tsi/alts_transport_security.h', |
| 343 | 'src/core/tsi/fake_transport_security.h', |
Yihua Zhang | c5f1eda | 2018-07-02 13:29:27 -0700 | [diff] [blame] | 344 | 'src/core/tsi/local_transport_security.h', |
Ruslan Nigmatullin | 99d0cee | 2018-03-20 09:18:29 -0700 | [diff] [blame] | 345 | 'src/core/tsi/ssl/session_cache/ssl_session.h', |
| 346 | 'src/core/tsi/ssl/session_cache/ssl_session_cache.h', |
Yihua Zhang | eaf6486 | 2018-03-06 21:40:45 -0800 | [diff] [blame] | 347 | 'src/core/tsi/ssl_transport_security.h', |
| 348 | 'src/core/tsi/ssl_types.h', |
| 349 | 'src/core/tsi/transport_security_grpc.h', |
| 350 | 'src/core/ext/transport/chttp2/server/chttp2_server.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 351 | 'src/core/ext/transport/inproc/inproc_transport.h', |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 352 | 'src/core/lib/avl/avl.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 353 | 'src/core/lib/backoff/backoff.h', |
| 354 | 'src/core/lib/channel/channel_args.h', |
| 355 | 'src/core/lib/channel/channel_stack.h', |
| 356 | 'src/core/lib/channel/channel_stack_builder.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 357 | 'src/core/lib/channel/channel_trace.h', |
ncteisen | c3c6e06 | 2018-05-09 11:10:21 -0700 | [diff] [blame] | 358 | 'src/core/lib/channel/channelz.h', |
ncteisen | bba8840 | 2018-05-11 11:54:41 -0400 | [diff] [blame] | 359 | 'src/core/lib/channel/channelz_registry.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 360 | 'src/core/lib/channel/connected_channel.h', |
| 361 | 'src/core/lib/channel/context.h', |
| 362 | 'src/core/lib/channel/handshaker.h', |
| 363 | 'src/core/lib/channel/handshaker_factory.h', |
| 364 | 'src/core/lib/channel/handshaker_registry.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 365 | 'src/core/lib/channel/status_util.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 366 | 'src/core/lib/compression/algorithm_metadata.h', |
Muxi Yan | 5cb25e7 | 2018-01-24 16:16:52 -0800 | [diff] [blame] | 367 | 'src/core/lib/compression/compression_internal.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 368 | 'src/core/lib/compression/message_compress.h', |
| 369 | 'src/core/lib/compression/stream_compression.h', |
| 370 | 'src/core/lib/compression/stream_compression_gzip.h', |
| 371 | 'src/core/lib/compression/stream_compression_identity.h', |
| 372 | 'src/core/lib/debug/stats.h', |
| 373 | 'src/core/lib/debug/stats_data.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 374 | 'src/core/lib/gprpp/debug_location.h', |
| 375 | 'src/core/lib/gprpp/inlined_vector.h', |
| 376 | 'src/core/lib/gprpp/orphanable.h', |
| 377 | 'src/core/lib/gprpp/ref_counted.h', |
| 378 | 'src/core/lib/gprpp/ref_counted_ptr.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 379 | 'src/core/lib/http/format_request.h', |
| 380 | 'src/core/lib/http/httpcli.h', |
| 381 | 'src/core/lib/http/parser.h', |
| 382 | 'src/core/lib/iomgr/block_annotate.h', |
| 383 | 'src/core/lib/iomgr/call_combiner.h', |
| 384 | 'src/core/lib/iomgr/closure.h', |
| 385 | 'src/core/lib/iomgr/combiner.h', |
| 386 | 'src/core/lib/iomgr/endpoint.h', |
| 387 | 'src/core/lib/iomgr/endpoint_pair.h', |
| 388 | 'src/core/lib/iomgr/error.h', |
| 389 | 'src/core/lib/iomgr/error_internal.h', |
| 390 | 'src/core/lib/iomgr/ev_epoll1_linux.h', |
| 391 | 'src/core/lib/iomgr/ev_epollex_linux.h', |
| 392 | 'src/core/lib/iomgr/ev_epollsig_linux.h', |
| 393 | 'src/core/lib/iomgr/ev_poll_posix.h', |
| 394 | 'src/core/lib/iomgr/ev_posix.h', |
| 395 | 'src/core/lib/iomgr/exec_ctx.h', |
| 396 | 'src/core/lib/iomgr/executor.h', |
| 397 | 'src/core/lib/iomgr/gethostname.h', |
| 398 | 'src/core/lib/iomgr/iocp_windows.h', |
| 399 | 'src/core/lib/iomgr/iomgr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 400 | 'src/core/lib/iomgr/iomgr_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 401 | 'src/core/lib/iomgr/iomgr_internal.h', |
| 402 | 'src/core/lib/iomgr/iomgr_posix.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 403 | 'src/core/lib/iomgr/is_epollexclusive_available.h', |
| 404 | 'src/core/lib/iomgr/load_file.h', |
| 405 | 'src/core/lib/iomgr/lockfree_event.h', |
| 406 | 'src/core/lib/iomgr/nameser.h', |
| 407 | 'src/core/lib/iomgr/network_status_tracker.h', |
| 408 | 'src/core/lib/iomgr/polling_entity.h', |
| 409 | 'src/core/lib/iomgr/pollset.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 410 | 'src/core/lib/iomgr/pollset_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 411 | 'src/core/lib/iomgr/pollset_set.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 412 | 'src/core/lib/iomgr/pollset_set_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 413 | 'src/core/lib/iomgr/pollset_set_windows.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 414 | 'src/core/lib/iomgr/pollset_windows.h', |
| 415 | 'src/core/lib/iomgr/port.h', |
| 416 | 'src/core/lib/iomgr/resolve_address.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 417 | 'src/core/lib/iomgr/resolve_address_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 418 | 'src/core/lib/iomgr/resource_quota.h', |
| 419 | 'src/core/lib/iomgr/sockaddr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 420 | 'src/core/lib/iomgr/sockaddr_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 421 | 'src/core/lib/iomgr/sockaddr_posix.h', |
| 422 | 'src/core/lib/iomgr/sockaddr_utils.h', |
| 423 | 'src/core/lib/iomgr/sockaddr_windows.h', |
| 424 | 'src/core/lib/iomgr/socket_factory_posix.h', |
| 425 | 'src/core/lib/iomgr/socket_mutator.h', |
| 426 | 'src/core/lib/iomgr/socket_utils.h', |
| 427 | 'src/core/lib/iomgr/socket_utils_posix.h', |
| 428 | 'src/core/lib/iomgr/socket_windows.h', |
| 429 | 'src/core/lib/iomgr/sys_epoll_wrapper.h', |
| 430 | 'src/core/lib/iomgr/tcp_client.h', |
| 431 | 'src/core/lib/iomgr/tcp_client_posix.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 432 | 'src/core/lib/iomgr/tcp_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 433 | 'src/core/lib/iomgr/tcp_posix.h', |
| 434 | 'src/core/lib/iomgr/tcp_server.h', |
| 435 | 'src/core/lib/iomgr/tcp_server_utils_posix.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 436 | 'src/core/lib/iomgr/tcp_windows.h', |
| 437 | 'src/core/lib/iomgr/time_averaged_stats.h', |
| 438 | 'src/core/lib/iomgr/timer.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 439 | 'src/core/lib/iomgr/timer_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 440 | 'src/core/lib/iomgr/timer_heap.h', |
| 441 | 'src/core/lib/iomgr/timer_manager.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 442 | 'src/core/lib/iomgr/udp_server.h', |
| 443 | 'src/core/lib/iomgr/unix_sockets_posix.h', |
| 444 | 'src/core/lib/iomgr/wakeup_fd_cv.h', |
| 445 | 'src/core/lib/iomgr/wakeup_fd_pipe.h', |
| 446 | 'src/core/lib/iomgr/wakeup_fd_posix.h', |
| 447 | 'src/core/lib/json/json.h', |
| 448 | 'src/core/lib/json/json_common.h', |
| 449 | 'src/core/lib/json/json_reader.h', |
| 450 | 'src/core/lib/json/json_writer.h', |
| 451 | 'src/core/lib/slice/b64.h', |
| 452 | 'src/core/lib/slice/percent_encoding.h', |
| 453 | 'src/core/lib/slice/slice_hash_table.h', |
| 454 | 'src/core/lib/slice/slice_internal.h', |
| 455 | 'src/core/lib/slice/slice_string_helpers.h', |
David Garcia Quintas | 396d49d | 2018-02-28 16:06:30 -0800 | [diff] [blame] | 456 | 'src/core/lib/slice/slice_weak_hash_table.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 457 | 'src/core/lib/surface/api_trace.h', |
| 458 | 'src/core/lib/surface/call.h', |
| 459 | 'src/core/lib/surface/call_test_only.h', |
| 460 | 'src/core/lib/surface/channel.h', |
| 461 | 'src/core/lib/surface/channel_init.h', |
| 462 | 'src/core/lib/surface/channel_stack_type.h', |
| 463 | 'src/core/lib/surface/completion_queue.h', |
| 464 | 'src/core/lib/surface/completion_queue_factory.h', |
| 465 | 'src/core/lib/surface/event_string.h', |
| 466 | 'src/core/lib/surface/init.h', |
| 467 | 'src/core/lib/surface/lame_client.h', |
| 468 | 'src/core/lib/surface/server.h', |
| 469 | 'src/core/lib/surface/validate_metadata.h', |
| 470 | 'src/core/lib/transport/bdp_estimator.h', |
| 471 | 'src/core/lib/transport/byte_stream.h', |
| 472 | 'src/core/lib/transport/connectivity_state.h', |
| 473 | 'src/core/lib/transport/error_utils.h', |
| 474 | 'src/core/lib/transport/http2_errors.h', |
| 475 | 'src/core/lib/transport/metadata.h', |
| 476 | 'src/core/lib/transport/metadata_batch.h', |
| 477 | 'src/core/lib/transport/pid_controller.h', |
| 478 | 'src/core/lib/transport/service_config.h', |
| 479 | 'src/core/lib/transport/static_metadata.h', |
| 480 | 'src/core/lib/transport/status_conversion.h', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 481 | 'src/core/lib/transport/status_metadata.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 482 | 'src/core/lib/transport/timeout_encoding.h', |
| 483 | 'src/core/lib/transport/transport.h', |
| 484 | 'src/core/lib/transport/transport_impl.h', |
| 485 | 'src/core/lib/debug/trace.h', |
| 486 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 487 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.h', |
| 488 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h', |
| 489 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h', |
ZhouyihaiDing | f04fbd1 | 2018-06-25 17:30:58 -0700 | [diff] [blame] | 490 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h', |
| 491 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 492 | 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h', |
| 493 | 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h', |
| 494 | 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.h', |
| 495 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h', |
| 496 | 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 497 | 'src/core/ext/filters/max_age/max_age_filter.h', |
| 498 | 'src/core/ext/filters/message_size/message_size_filter.h', |
David Garcia Quintas | 961353a | 2018-03-15 16:11:05 -0700 | [diff] [blame] | 499 | 'src/core/ext/filters/http/client_authority_filter.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 500 | 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.h', |
| 501 | 'src/core/ext/filters/workarounds/workaround_utils.h' |
| 502 | |
Muxi Yan | 6be15ee | 2018-02-20 14:05:33 -0800 | [diff] [blame] | 503 | ss.private_header_files = 'include/grpcpp/impl/codegen/core_codegen.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 504 | 'src/cpp/client/secure_credentials.h', |
| 505 | 'src/cpp/common/secure_auth_context.h', |
| 506 | 'src/cpp/server/secure_server_credentials.h', |
| 507 | 'src/cpp/client/create_channel_internal.h', |
| 508 | 'src/cpp/common/channel_filter.h', |
| 509 | 'src/cpp/server/dynamic_thread_pool.h', |
| 510 | 'src/cpp/server/health/default_health_check_service.h', |
| 511 | 'src/cpp/server/health/health.pb.h', |
| 512 | 'src/cpp/server/thread_pool_interface.h', |
| 513 | 'src/cpp/thread_manager/thread_manager.h', |
Mark D. Roth | 2223e60 | 2018-06-27 07:23:33 -0700 | [diff] [blame] | 514 | 'src/core/lib/gpr/alloc.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 515 | 'src/core/lib/gpr/arena.h', |
| 516 | 'src/core/lib/gpr/env.h', |
Vijay Pai | ae376bf | 2018-01-25 22:54:02 -0800 | [diff] [blame] | 517 | 'src/core/lib/gpr/host_port.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 518 | 'src/core/lib/gpr/mpscq.h', |
| 519 | 'src/core/lib/gpr/murmur_hash.h', |
| 520 | 'src/core/lib/gpr/spinlock.h', |
| 521 | 'src/core/lib/gpr/string.h', |
| 522 | 'src/core/lib/gpr/string_windows.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 523 | 'src/core/lib/gpr/time_precise.h', |
Vijay Pai | b6cf123 | 2018-01-25 21:02:26 -0800 | [diff] [blame] | 524 | 'src/core/lib/gpr/tls.h', |
| 525 | 'src/core/lib/gpr/tls_gcc.h', |
| 526 | 'src/core/lib/gpr/tls_msvc.h', |
| 527 | 'src/core/lib/gpr/tls_pthread.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 528 | 'src/core/lib/gpr/tmpfile.h', |
Vijay Pai | d4d0a30 | 2018-01-25 13:24:03 -0800 | [diff] [blame] | 529 | 'src/core/lib/gpr/useful.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 530 | 'src/core/lib/gprpp/abstract.h', |
| 531 | 'src/core/lib/gprpp/atomic.h', |
| 532 | 'src/core/lib/gprpp/atomic_with_atm.h', |
| 533 | 'src/core/lib/gprpp/atomic_with_std.h', |
kpayson64 | 701e70d | 2018-04-30 17:40:00 -0700 | [diff] [blame] | 534 | 'src/core/lib/gprpp/fork.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 535 | 'src/core/lib/gprpp/manual_constructor.h', |
| 536 | 'src/core/lib/gprpp/memory.h', |
Vijay Pai | da69355 | 2018-02-16 22:59:03 -0800 | [diff] [blame] | 537 | 'src/core/lib/gprpp/thd.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 538 | 'src/core/lib/profiling/timers.h', |
Vijay Pai | 8f4fbb1 | 2018-02-08 10:04:08 -0800 | [diff] [blame] | 539 | 'src/core/lib/avl/avl.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 540 | 'src/core/lib/backoff/backoff.h', |
| 541 | 'src/core/lib/channel/channel_args.h', |
| 542 | 'src/core/lib/channel/channel_stack.h', |
| 543 | 'src/core/lib/channel/channel_stack_builder.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 544 | 'src/core/lib/channel/channel_trace.h', |
ncteisen | c3c6e06 | 2018-05-09 11:10:21 -0700 | [diff] [blame] | 545 | 'src/core/lib/channel/channelz.h', |
ncteisen | bba8840 | 2018-05-11 11:54:41 -0400 | [diff] [blame] | 546 | 'src/core/lib/channel/channelz_registry.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 547 | 'src/core/lib/channel/connected_channel.h', |
| 548 | 'src/core/lib/channel/context.h', |
| 549 | 'src/core/lib/channel/handshaker.h', |
| 550 | 'src/core/lib/channel/handshaker_factory.h', |
| 551 | 'src/core/lib/channel/handshaker_registry.h', |
ncteisen | 3b42f83 | 2018-03-19 13:22:35 -0700 | [diff] [blame] | 552 | 'src/core/lib/channel/status_util.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 553 | 'src/core/lib/compression/algorithm_metadata.h', |
Muxi Yan | 5cb25e7 | 2018-01-24 16:16:52 -0800 | [diff] [blame] | 554 | 'src/core/lib/compression/compression_internal.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 555 | 'src/core/lib/compression/message_compress.h', |
| 556 | 'src/core/lib/compression/stream_compression.h', |
| 557 | 'src/core/lib/compression/stream_compression_gzip.h', |
| 558 | 'src/core/lib/compression/stream_compression_identity.h', |
| 559 | 'src/core/lib/debug/stats.h', |
| 560 | 'src/core/lib/debug/stats_data.h', |
Muxi Yan | 9492a92 | 2018-01-21 15:18:04 -0800 | [diff] [blame] | 561 | 'src/core/lib/gprpp/debug_location.h', |
| 562 | 'src/core/lib/gprpp/inlined_vector.h', |
| 563 | 'src/core/lib/gprpp/orphanable.h', |
| 564 | 'src/core/lib/gprpp/ref_counted.h', |
| 565 | 'src/core/lib/gprpp/ref_counted_ptr.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 566 | 'src/core/lib/http/format_request.h', |
| 567 | 'src/core/lib/http/httpcli.h', |
| 568 | 'src/core/lib/http/parser.h', |
| 569 | 'src/core/lib/iomgr/block_annotate.h', |
| 570 | 'src/core/lib/iomgr/call_combiner.h', |
| 571 | 'src/core/lib/iomgr/closure.h', |
| 572 | 'src/core/lib/iomgr/combiner.h', |
| 573 | 'src/core/lib/iomgr/endpoint.h', |
| 574 | 'src/core/lib/iomgr/endpoint_pair.h', |
| 575 | 'src/core/lib/iomgr/error.h', |
| 576 | 'src/core/lib/iomgr/error_internal.h', |
| 577 | 'src/core/lib/iomgr/ev_epoll1_linux.h', |
| 578 | 'src/core/lib/iomgr/ev_epollex_linux.h', |
| 579 | 'src/core/lib/iomgr/ev_epollsig_linux.h', |
| 580 | 'src/core/lib/iomgr/ev_poll_posix.h', |
| 581 | 'src/core/lib/iomgr/ev_posix.h', |
| 582 | 'src/core/lib/iomgr/exec_ctx.h', |
| 583 | 'src/core/lib/iomgr/executor.h', |
| 584 | 'src/core/lib/iomgr/gethostname.h', |
| 585 | 'src/core/lib/iomgr/iocp_windows.h', |
| 586 | 'src/core/lib/iomgr/iomgr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 587 | 'src/core/lib/iomgr/iomgr_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 588 | 'src/core/lib/iomgr/iomgr_internal.h', |
| 589 | 'src/core/lib/iomgr/iomgr_posix.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 590 | 'src/core/lib/iomgr/is_epollexclusive_available.h', |
| 591 | 'src/core/lib/iomgr/load_file.h', |
| 592 | 'src/core/lib/iomgr/lockfree_event.h', |
| 593 | 'src/core/lib/iomgr/nameser.h', |
| 594 | 'src/core/lib/iomgr/network_status_tracker.h', |
| 595 | 'src/core/lib/iomgr/polling_entity.h', |
| 596 | 'src/core/lib/iomgr/pollset.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 597 | 'src/core/lib/iomgr/pollset_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 598 | 'src/core/lib/iomgr/pollset_set.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 599 | 'src/core/lib/iomgr/pollset_set_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 600 | 'src/core/lib/iomgr/pollset_set_windows.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 601 | 'src/core/lib/iomgr/pollset_windows.h', |
| 602 | 'src/core/lib/iomgr/port.h', |
| 603 | 'src/core/lib/iomgr/resolve_address.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 604 | 'src/core/lib/iomgr/resolve_address_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 605 | 'src/core/lib/iomgr/resource_quota.h', |
| 606 | 'src/core/lib/iomgr/sockaddr.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 607 | 'src/core/lib/iomgr/sockaddr_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 608 | 'src/core/lib/iomgr/sockaddr_posix.h', |
| 609 | 'src/core/lib/iomgr/sockaddr_utils.h', |
| 610 | 'src/core/lib/iomgr/sockaddr_windows.h', |
| 611 | 'src/core/lib/iomgr/socket_factory_posix.h', |
| 612 | 'src/core/lib/iomgr/socket_mutator.h', |
| 613 | 'src/core/lib/iomgr/socket_utils.h', |
| 614 | 'src/core/lib/iomgr/socket_utils_posix.h', |
| 615 | 'src/core/lib/iomgr/socket_windows.h', |
| 616 | 'src/core/lib/iomgr/sys_epoll_wrapper.h', |
| 617 | 'src/core/lib/iomgr/tcp_client.h', |
| 618 | 'src/core/lib/iomgr/tcp_client_posix.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 619 | 'src/core/lib/iomgr/tcp_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 620 | 'src/core/lib/iomgr/tcp_posix.h', |
| 621 | 'src/core/lib/iomgr/tcp_server.h', |
| 622 | 'src/core/lib/iomgr/tcp_server_utils_posix.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 623 | 'src/core/lib/iomgr/tcp_windows.h', |
| 624 | 'src/core/lib/iomgr/time_averaged_stats.h', |
| 625 | 'src/core/lib/iomgr/timer.h', |
kpayson64 | 539f506 | 2018-03-12 19:16:30 -0700 | [diff] [blame] | 626 | 'src/core/lib/iomgr/timer_custom.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 627 | 'src/core/lib/iomgr/timer_heap.h', |
| 628 | 'src/core/lib/iomgr/timer_manager.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 629 | 'src/core/lib/iomgr/udp_server.h', |
| 630 | 'src/core/lib/iomgr/unix_sockets_posix.h', |
| 631 | 'src/core/lib/iomgr/wakeup_fd_cv.h', |
| 632 | 'src/core/lib/iomgr/wakeup_fd_pipe.h', |
| 633 | 'src/core/lib/iomgr/wakeup_fd_posix.h', |
| 634 | 'src/core/lib/json/json.h', |
| 635 | 'src/core/lib/json/json_common.h', |
| 636 | 'src/core/lib/json/json_reader.h', |
| 637 | 'src/core/lib/json/json_writer.h', |
| 638 | 'src/core/lib/slice/b64.h', |
| 639 | 'src/core/lib/slice/percent_encoding.h', |
| 640 | 'src/core/lib/slice/slice_hash_table.h', |
| 641 | 'src/core/lib/slice/slice_internal.h', |
| 642 | 'src/core/lib/slice/slice_string_helpers.h', |
David Garcia Quintas | 396d49d | 2018-02-28 16:06:30 -0800 | [diff] [blame] | 643 | 'src/core/lib/slice/slice_weak_hash_table.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 644 | 'src/core/lib/surface/api_trace.h', |
| 645 | 'src/core/lib/surface/call.h', |
| 646 | 'src/core/lib/surface/call_test_only.h', |
| 647 | 'src/core/lib/surface/channel.h', |
| 648 | 'src/core/lib/surface/channel_init.h', |
| 649 | 'src/core/lib/surface/channel_stack_type.h', |
| 650 | 'src/core/lib/surface/completion_queue.h', |
| 651 | 'src/core/lib/surface/completion_queue_factory.h', |
| 652 | 'src/core/lib/surface/event_string.h', |
| 653 | 'src/core/lib/surface/init.h', |
| 654 | 'src/core/lib/surface/lame_client.h', |
| 655 | 'src/core/lib/surface/server.h', |
| 656 | 'src/core/lib/surface/validate_metadata.h', |
| 657 | 'src/core/lib/transport/bdp_estimator.h', |
| 658 | 'src/core/lib/transport/byte_stream.h', |
| 659 | 'src/core/lib/transport/connectivity_state.h', |
| 660 | 'src/core/lib/transport/error_utils.h', |
| 661 | 'src/core/lib/transport/http2_errors.h', |
| 662 | 'src/core/lib/transport/metadata.h', |
| 663 | 'src/core/lib/transport/metadata_batch.h', |
| 664 | 'src/core/lib/transport/pid_controller.h', |
| 665 | 'src/core/lib/transport/service_config.h', |
| 666 | 'src/core/lib/transport/static_metadata.h', |
| 667 | 'src/core/lib/transport/status_conversion.h', |
Mark D. Roth | 718c834 | 2018-02-28 13:00:04 -0800 | [diff] [blame] | 668 | 'src/core/lib/transport/status_metadata.h', |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 669 | 'src/core/lib/transport/timeout_encoding.h', |
| 670 | 'src/core/lib/transport/transport.h', |
| 671 | 'src/core/lib/transport/transport_impl.h', |
| 672 | 'src/core/lib/debug/trace.h', |
| 673 | 'src/core/ext/transport/inproc/inproc_transport.h' |
| 674 | end |
| 675 | |
Muxi Yan | 6443601 | 2018-06-21 14:39:18 -0700 | [diff] [blame] | 676 | s.subspec 'Protobuf' do |ss| |
| 677 | ss.header_mappings_dir = 'include/grpcpp' |
| 678 | ss.dependency "#{s.name}/Interface", version |
| 679 | |
| 680 | ss.source_files = 'include/grpcpp/impl/codegen/proto_buffer_reader.h', |
| 681 | 'include/grpcpp/impl/codegen/proto_buffer_writer.h', |
| 682 | 'include/grpcpp/impl/codegen/proto_utils.h', |
| 683 | 'include/grpcpp/impl/codegen/config_protobuf.h', |
| 684 | 'include/grpcpp/impl/codegen/config_protobuf.h' |
| 685 | end |
| 686 | |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 687 | s.prepare_command = <<-END_OF_COMMAND |
Muxi Yan | 358c625 | 2018-06-13 09:34:19 -0700 | [diff] [blame] | 688 | 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' |
| 689 | find src/cpp/ -type f -path '*.grpc_back' -print0 | xargs -0 rm |
| 690 | 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' |
| 691 | find src/core/ -type f -path '*.grpc_back' -print0 | xargs -0 rm |
Muxi Yan | 46ee18b | 2018-01-05 16:01:16 -0800 | [diff] [blame] | 692 | END_OF_COMMAND |
| 693 | end |