murgatroid99 | f680af0 | 2015-06-22 11:20:24 -0700 | [diff] [blame] | 1 | # GRPC CocoaPods podspec |
| 2 | # This file has been automatically generated from a template file. |
| 3 | # Please look at the templates directory instead. |
| 4 | # This file can be regenerated from the template by running |
| 5 | # tools/buildgen/generate_projects.sh |
| 6 | |
| 7 | # Copyright 2015, Google Inc. |
| 8 | # All rights reserved. |
| 9 | # |
| 10 | # Redistribution and use in source and binary forms, with or without |
| 11 | # modification, are permitted provided that the following conditions are |
| 12 | # met: |
| 13 | # |
| 14 | # * Redistributions of source code must retain the above copyright |
| 15 | # notice, this list of conditions and the following disclaimer. |
| 16 | # * Redistributions in binary form must reproduce the above |
| 17 | # copyright notice, this list of conditions and the following disclaimer |
| 18 | # in the documentation and/or other materials provided with the |
| 19 | # distribution. |
| 20 | # * Neither the name of Google Inc. nor the names of its |
| 21 | # contributors may be used to endorse or promote products derived from |
| 22 | # this software without specific prior written permission. |
| 23 | # |
| 24 | # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 25 | # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 26 | # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 27 | # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 28 | # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 29 | # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 30 | # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 31 | # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 32 | # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 33 | # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 34 | # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 35 | |
murgatroid99 | f398d5c | 2015-06-16 14:07:36 -0700 | [diff] [blame] | 36 | |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 37 | Pod::Spec.new do |s| |
| 38 | s.name = 'gRPC' |
Jorge Canizales | aff5664 | 2015-10-12 19:31:25 -0700 | [diff] [blame] | 39 | version = '0.11.2' |
Jorge Canizales | c825f42 | 2015-09-28 21:43:48 -0700 | [diff] [blame] | 40 | s.version = version |
Jorge Canizales | 043dc72 | 2015-06-02 15:15:07 -0700 | [diff] [blame] | 41 | s.summary = 'gRPC client library for iOS/OSX' |
| 42 | s.homepage = 'http://www.grpc.io' |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 43 | s.license = 'New BSD' |
Jorge Canizales | 043dc72 | 2015-06-02 15:15:07 -0700 | [diff] [blame] | 44 | s.authors = { 'The gRPC contributors' => 'grpc-packages@google.com' } |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 45 | |
Jorge Canizales | c825f42 | 2015-09-28 21:43:48 -0700 | [diff] [blame] | 46 | s.source = { :git => 'https://github.com/grpc/grpc.git', |
| 47 | :tag => "release-#{version.gsub(/\./, '_')}-objectivec-#{version}" } |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 48 | |
Nicolas "Pixel" Noble | cff6469 | 2015-10-03 02:01:51 +0200 | [diff] [blame] | 49 | |
Craig Tiller | ba49645 | 2015-09-21 17:15:19 -0700 | [diff] [blame] | 50 | s.ios.deployment_target = '7.1' |
| 51 | s.osx.deployment_target = '10.9' |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 52 | s.requires_arc = true |
| 53 | |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 54 | objc_dir = 'src/objective-c' |
| 55 | |
Jorge Canizales | 461b094 | 2015-06-02 20:40:50 -0700 | [diff] [blame] | 56 | # Reactive Extensions library for iOS. |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 57 | s.subspec 'RxLibrary' do |ss| |
| 58 | src_dir = "#{objc_dir}/RxLibrary" |
| 59 | ss.source_files = "#{src_dir}/*.{h,m}", "#{src_dir}/**/*.{h,m}" |
| 60 | ss.private_header_files = "#{src_dir}/private/*.h" |
| 61 | ss.header_mappings_dir = "#{objc_dir}" |
Jorge Canizales | 045fabb | 2015-04-21 11:39:37 -0700 | [diff] [blame] | 62 | end |
| 63 | |
Jorge Canizales | 461b094 | 2015-06-02 20:40:50 -0700 | [diff] [blame] | 64 | # Core cross-platform gRPC library, written in C. |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 65 | s.subspec 'C-Core' do |ss| |
Craig Tiller | 0ba432d | 2015-10-09 16:57:11 -0700 | [diff] [blame] | 66 | ss.source_files = 'src/core/profiling/timers.h', |
| 67 | 'src/core/support/block_annotate.h', |
vjpai | 9839d28 | 2015-09-24 17:55:18 -0700 | [diff] [blame] | 68 | 'src/core/support/env.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 69 | 'src/core/support/file.h', |
| 70 | 'src/core/support/murmur_hash.h', |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 71 | 'src/core/support/stack_lockfree.h', |
Jorge Canizales | aff5664 | 2015-10-12 19:31:25 -0700 | [diff] [blame] | 72 | 'src/core/support/string.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 73 | 'src/core/support/string_win32.h', |
| 74 | 'src/core/support/thd_internal.h', |
Hongyu Chen | a0f149e | 2015-08-24 16:27:19 -0700 | [diff] [blame] | 75 | 'src/core/support/time_precise.h', |
Jorge Canizales | 0c8a3d8 | 2015-10-13 13:04:54 -0700 | [diff] [blame] | 76 | 'include/grpc/support/alloc.h', |
| 77 | 'include/grpc/support/atm.h', |
| 78 | 'include/grpc/support/atm_gcc_atomic.h', |
| 79 | 'include/grpc/support/atm_gcc_sync.h', |
| 80 | 'include/grpc/support/atm_win32.h', |
| 81 | 'include/grpc/support/cmdline.h', |
| 82 | 'include/grpc/support/cpu.h', |
| 83 | 'include/grpc/support/histogram.h', |
| 84 | 'include/grpc/support/host_port.h', |
| 85 | 'include/grpc/support/log.h', |
| 86 | 'include/grpc/support/log_win32.h', |
| 87 | 'include/grpc/support/port_platform.h', |
| 88 | 'include/grpc/support/slice.h', |
| 89 | 'include/grpc/support/slice_buffer.h', |
| 90 | 'include/grpc/support/string_util.h', |
| 91 | 'include/grpc/support/subprocess.h', |
| 92 | 'include/grpc/support/sync.h', |
| 93 | 'include/grpc/support/sync_generic.h', |
| 94 | 'include/grpc/support/sync_posix.h', |
| 95 | 'include/grpc/support/sync_win32.h', |
| 96 | 'include/grpc/support/thd.h', |
| 97 | 'include/grpc/support/time.h', |
| 98 | 'include/grpc/support/tls.h', |
| 99 | 'include/grpc/support/tls_gcc.h', |
| 100 | 'include/grpc/support/tls_msvc.h', |
| 101 | 'include/grpc/support/tls_pthread.h', |
| 102 | 'include/grpc/support/useful.h', |
Craig Tiller | 0ba432d | 2015-10-09 16:57:11 -0700 | [diff] [blame] | 103 | 'src/core/profiling/basic_timers.c', |
| 104 | 'src/core/profiling/stap_timers.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 105 | 'src/core/support/alloc.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 106 | 'src/core/support/cmdline.c', |
| 107 | 'src/core/support/cpu_iphone.c', |
| 108 | 'src/core/support/cpu_linux.c', |
| 109 | 'src/core/support/cpu_posix.c', |
| 110 | 'src/core/support/cpu_windows.c', |
| 111 | 'src/core/support/env_linux.c', |
| 112 | 'src/core/support/env_posix.c', |
| 113 | 'src/core/support/env_win32.c', |
| 114 | 'src/core/support/file.c', |
| 115 | 'src/core/support/file_posix.c', |
| 116 | 'src/core/support/file_win32.c', |
| 117 | 'src/core/support/histogram.c', |
| 118 | 'src/core/support/host_port.c', |
| 119 | 'src/core/support/log.c', |
| 120 | 'src/core/support/log_android.c', |
| 121 | 'src/core/support/log_linux.c', |
| 122 | 'src/core/support/log_posix.c', |
| 123 | 'src/core/support/log_win32.c', |
| 124 | 'src/core/support/murmur_hash.c', |
| 125 | 'src/core/support/slice.c', |
| 126 | 'src/core/support/slice_buffer.c', |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 127 | 'src/core/support/stack_lockfree.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 128 | 'src/core/support/string.c', |
| 129 | 'src/core/support/string_posix.c', |
| 130 | 'src/core/support/string_win32.c', |
| 131 | 'src/core/support/subprocess_posix.c', |
| 132 | 'src/core/support/sync.c', |
| 133 | 'src/core/support/sync_posix.c', |
| 134 | 'src/core/support/sync_win32.c', |
| 135 | 'src/core/support/thd.c', |
| 136 | 'src/core/support/thd_posix.c', |
| 137 | 'src/core/support/thd_win32.c', |
| 138 | 'src/core/support/time.c', |
| 139 | 'src/core/support/time_posix.c', |
Craig Tiller | 504ed59 | 2015-10-08 07:38:43 -0700 | [diff] [blame] | 140 | 'src/core/support/time_precise.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 141 | 'src/core/support/time_win32.c', |
| 142 | 'src/core/support/tls_pthread.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 143 | 'src/core/security/auth_filters.h', |
| 144 | 'src/core/security/base64.h', |
| 145 | 'src/core/security/credentials.h', |
Julien Boeuf | 87047d7 | 2015-08-21 14:30:33 -0700 | [diff] [blame] | 146 | 'src/core/security/handshake.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 147 | 'src/core/security/json_token.h', |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 148 | 'src/core/security/jwt_verifier.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 149 | 'src/core/security/secure_endpoint.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 150 | 'src/core/security/security_connector.h', |
| 151 | 'src/core/security/security_context.h', |
| 152 | 'src/core/tsi/fake_transport_security.h', |
| 153 | 'src/core/tsi/ssl_transport_security.h', |
| 154 | 'src/core/tsi/transport_security.h', |
| 155 | 'src/core/tsi/transport_security_interface.h', |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 156 | 'src/core/census/grpc_filter.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 157 | 'src/core/channel/channel_args.h', |
| 158 | 'src/core/channel/channel_stack.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 159 | 'src/core/channel/client_channel.h', |
David Garcia Quintas | 7b1bd2c | 2015-10-05 18:22:10 -0700 | [diff] [blame] | 160 | 'src/core/channel/client_uchannel.h', |
David Garcia Quintas | 8a18709 | 2015-07-01 14:52:44 -0700 | [diff] [blame] | 161 | 'src/core/channel/compress_filter.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 162 | 'src/core/channel/connected_channel.h', |
| 163 | 'src/core/channel/context.h', |
| 164 | 'src/core/channel/http_client_filter.h', |
| 165 | 'src/core/channel/http_server_filter.h', |
| 166 | 'src/core/channel/noop_filter.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 167 | 'src/core/channel/subchannel_call_holder.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 168 | 'src/core/client_config/client_config.h', |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 169 | 'src/core/client_config/connector.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 170 | 'src/core/client_config/lb_policies/pick_first.h', |
David Garcia Quintas | 4fb049b | 2015-09-03 17:26:06 -0700 | [diff] [blame] | 171 | 'src/core/client_config/lb_policies/round_robin.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 172 | 'src/core/client_config/lb_policy.h', |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame] | 173 | 'src/core/client_config/lb_policy_factory.h', |
| 174 | 'src/core/client_config/lb_policy_registry.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 175 | 'src/core/client_config/resolver.h', |
| 176 | 'src/core/client_config/resolver_factory.h', |
| 177 | 'src/core/client_config/resolver_registry.h', |
| 178 | 'src/core/client_config/resolvers/dns_resolver.h', |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 179 | 'src/core/client_config/resolvers/sockaddr_resolver.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 180 | 'src/core/client_config/subchannel.h', |
| 181 | 'src/core/client_config/subchannel_factory.h', |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 182 | 'src/core/client_config/subchannel_factory_decorators/add_channel_arg.h', |
| 183 | 'src/core/client_config/subchannel_factory_decorators/merge_channel_args.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 184 | 'src/core/client_config/uri_parser.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 185 | 'src/core/compression/message_compress.h', |
| 186 | 'src/core/debug/trace.h', |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 187 | 'src/core/httpcli/format_request.h', |
| 188 | 'src/core/httpcli/httpcli.h', |
| 189 | 'src/core/httpcli/parser.h', |
Craig Tiller | 298751c | 2015-09-22 09:41:05 -0700 | [diff] [blame] | 190 | 'src/core/iomgr/closure.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 191 | 'src/core/iomgr/endpoint.h', |
| 192 | 'src/core/iomgr/endpoint_pair.h', |
Craig Tiller | 298751c | 2015-09-22 09:41:05 -0700 | [diff] [blame] | 193 | 'src/core/iomgr/exec_ctx.h', |
David Garcia Quintas | 4bc3463 | 2015-10-07 16:12:35 -0700 | [diff] [blame] | 194 | 'src/core/iomgr/executor.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 195 | 'src/core/iomgr/fd_posix.h', |
| 196 | 'src/core/iomgr/iocp_windows.h', |
| 197 | 'src/core/iomgr/iomgr.h', |
| 198 | 'src/core/iomgr/iomgr_internal.h', |
| 199 | 'src/core/iomgr/iomgr_posix.h', |
| 200 | 'src/core/iomgr/pollset.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 201 | 'src/core/iomgr/pollset_posix.h', |
| 202 | 'src/core/iomgr/pollset_set.h', |
| 203 | 'src/core/iomgr/pollset_set_posix.h', |
| 204 | 'src/core/iomgr/pollset_set_windows.h', |
| 205 | 'src/core/iomgr/pollset_windows.h', |
| 206 | 'src/core/iomgr/resolve_address.h', |
| 207 | 'src/core/iomgr/sockaddr.h', |
| 208 | 'src/core/iomgr/sockaddr_posix.h', |
| 209 | 'src/core/iomgr/sockaddr_utils.h', |
| 210 | 'src/core/iomgr/sockaddr_win32.h', |
| 211 | 'src/core/iomgr/socket_utils_posix.h', |
| 212 | 'src/core/iomgr/socket_windows.h', |
| 213 | 'src/core/iomgr/tcp_client.h', |
| 214 | 'src/core/iomgr/tcp_posix.h', |
| 215 | 'src/core/iomgr/tcp_server.h', |
| 216 | 'src/core/iomgr/tcp_windows.h', |
| 217 | 'src/core/iomgr/time_averaged_stats.h', |
David Garcia Quintas | b65e421 | 2015-10-14 12:00:21 -0700 | [diff] [blame] | 218 | 'src/core/iomgr/timer.h', |
| 219 | 'src/core/iomgr/timer_heap.h', |
| 220 | 'src/core/iomgr/timer_internal.h', |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 221 | 'src/core/iomgr/udp_server.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 222 | 'src/core/iomgr/wakeup_fd_pipe.h', |
| 223 | 'src/core/iomgr/wakeup_fd_posix.h', |
Craig Tiller | 73b6606 | 2015-09-09 09:34:46 -0700 | [diff] [blame] | 224 | 'src/core/iomgr/workqueue.h', |
| 225 | 'src/core/iomgr/workqueue_posix.h', |
| 226 | 'src/core/iomgr/workqueue_windows.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 227 | 'src/core/json/json.h', |
| 228 | 'src/core/json/json_common.h', |
| 229 | 'src/core/json/json_reader.h', |
| 230 | 'src/core/json/json_writer.h', |
yang-g | 31ff8bc | 2015-08-25 14:09:06 -0700 | [diff] [blame] | 231 | 'src/core/statistics/census_interface.h', |
| 232 | 'src/core/statistics/census_rpc_stats.h', |
Masood Malekghassemi | 9229810 | 2015-08-20 18:50:17 -0700 | [diff] [blame] | 233 | 'src/core/surface/api_trace.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 234 | 'src/core/surface/call.h', |
David Garcia Quintas | 0c33188 | 2015-10-08 14:51:54 -0700 | [diff] [blame] | 235 | 'src/core/surface/call_test_only.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 236 | 'src/core/surface/channel.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 237 | 'src/core/surface/completion_queue.h', |
| 238 | 'src/core/surface/event_string.h', |
| 239 | 'src/core/surface/init.h', |
| 240 | 'src/core/surface/server.h', |
| 241 | 'src/core/surface/surface_trace.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 242 | 'src/core/transport/byte_stream.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 243 | 'src/core/transport/chttp2/alpn.h', |
| 244 | 'src/core/transport/chttp2/bin_encoder.h', |
| 245 | 'src/core/transport/chttp2/frame.h', |
| 246 | 'src/core/transport/chttp2/frame_data.h', |
| 247 | 'src/core/transport/chttp2/frame_goaway.h', |
| 248 | 'src/core/transport/chttp2/frame_ping.h', |
| 249 | 'src/core/transport/chttp2/frame_rst_stream.h', |
| 250 | 'src/core/transport/chttp2/frame_settings.h', |
| 251 | 'src/core/transport/chttp2/frame_window_update.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 252 | 'src/core/transport/chttp2/hpack_encoder.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 253 | 'src/core/transport/chttp2/hpack_parser.h', |
| 254 | 'src/core/transport/chttp2/hpack_table.h', |
| 255 | 'src/core/transport/chttp2/http2_errors.h', |
| 256 | 'src/core/transport/chttp2/huffsyms.h', |
Craig Tiller | 6e8c7e8 | 2015-06-25 08:52:40 -0700 | [diff] [blame] | 257 | 'src/core/transport/chttp2/incoming_metadata.h', |
| 258 | 'src/core/transport/chttp2/internal.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 259 | 'src/core/transport/chttp2/status_conversion.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 260 | 'src/core/transport/chttp2/stream_map.h', |
| 261 | 'src/core/transport/chttp2/timeout_encoding.h', |
| 262 | 'src/core/transport/chttp2/varint.h', |
| 263 | 'src/core/transport/chttp2_transport.h', |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 264 | 'src/core/transport/connectivity_state.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 265 | 'src/core/transport/metadata.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 266 | 'src/core/transport/metadata_batch.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 267 | 'src/core/transport/transport.h', |
| 268 | 'src/core/transport/transport_impl.h', |
Alistair Veitch | 1c09acc | 2015-08-31 16:57:32 -0700 | [diff] [blame] | 269 | 'src/core/census/aggregation.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 270 | 'src/core/census/context.h', |
Alistair Veitch | 9a09982 | 2015-08-27 13:16:00 -0700 | [diff] [blame] | 271 | 'src/core/census/rpc_metric_id.h', |
Jorge Canizales | 0c8a3d8 | 2015-10-13 13:04:54 -0700 | [diff] [blame] | 272 | 'include/grpc/grpc_security.h', |
| 273 | 'include/grpc/byte_buffer.h', |
| 274 | 'include/grpc/byte_buffer_reader.h', |
| 275 | 'include/grpc/compression.h', |
| 276 | 'include/grpc/grpc.h', |
| 277 | 'include/grpc/status.h', |
| 278 | 'include/grpc/census.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 279 | 'src/core/httpcli/httpcli_security_connector.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 280 | 'src/core/security/base64.c', |
| 281 | 'src/core/security/client_auth_filter.c', |
| 282 | 'src/core/security/credentials.c', |
| 283 | 'src/core/security/credentials_metadata.c', |
| 284 | 'src/core/security/credentials_posix.c', |
| 285 | 'src/core/security/credentials_win32.c', |
| 286 | 'src/core/security/google_default_credentials.c', |
Julien Boeuf | 87047d7 | 2015-08-21 14:30:33 -0700 | [diff] [blame] | 287 | 'src/core/security/handshake.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 288 | 'src/core/security/json_token.c', |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 289 | 'src/core/security/jwt_verifier.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 290 | 'src/core/security/secure_endpoint.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 291 | 'src/core/security/security_connector.c', |
| 292 | 'src/core/security/security_context.c', |
| 293 | 'src/core/security/server_auth_filter.c', |
| 294 | 'src/core/security/server_secure_chttp2.c', |
| 295 | 'src/core/surface/init_secure.c', |
| 296 | 'src/core/surface/secure_channel_create.c', |
| 297 | 'src/core/tsi/fake_transport_security.c', |
| 298 | 'src/core/tsi/ssl_transport_security.c', |
| 299 | 'src/core/tsi/transport_security.c', |
| 300 | 'src/core/census/grpc_context.c', |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 301 | 'src/core/census/grpc_filter.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 302 | 'src/core/channel/channel_args.c', |
| 303 | 'src/core/channel/channel_stack.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 304 | 'src/core/channel/client_channel.c', |
David Garcia Quintas | 7b1bd2c | 2015-10-05 18:22:10 -0700 | [diff] [blame] | 305 | 'src/core/channel/client_uchannel.c', |
David Garcia Quintas | 8a18709 | 2015-07-01 14:52:44 -0700 | [diff] [blame] | 306 | 'src/core/channel/compress_filter.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 307 | 'src/core/channel/connected_channel.c', |
| 308 | 'src/core/channel/http_client_filter.c', |
| 309 | 'src/core/channel/http_server_filter.c', |
| 310 | 'src/core/channel/noop_filter.c', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 311 | 'src/core/channel/subchannel_call_holder.c', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 312 | 'src/core/client_config/client_config.c', |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 313 | 'src/core/client_config/connector.c', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 314 | 'src/core/client_config/lb_policies/pick_first.c', |
David Garcia Quintas | 4fb049b | 2015-09-03 17:26:06 -0700 | [diff] [blame] | 315 | 'src/core/client_config/lb_policies/round_robin.c', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 316 | 'src/core/client_config/lb_policy.c', |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame] | 317 | 'src/core/client_config/lb_policy_factory.c', |
| 318 | 'src/core/client_config/lb_policy_registry.c', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 319 | 'src/core/client_config/resolver.c', |
| 320 | 'src/core/client_config/resolver_factory.c', |
| 321 | 'src/core/client_config/resolver_registry.c', |
| 322 | 'src/core/client_config/resolvers/dns_resolver.c', |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 323 | 'src/core/client_config/resolvers/sockaddr_resolver.c', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 324 | 'src/core/client_config/subchannel.c', |
| 325 | 'src/core/client_config/subchannel_factory.c', |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 326 | 'src/core/client_config/subchannel_factory_decorators/add_channel_arg.c', |
| 327 | 'src/core/client_config/subchannel_factory_decorators/merge_channel_args.c', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 328 | 'src/core/client_config/uri_parser.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 329 | 'src/core/compression/algorithm.c', |
| 330 | 'src/core/compression/message_compress.c', |
| 331 | 'src/core/debug/trace.c', |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 332 | 'src/core/httpcli/format_request.c', |
| 333 | 'src/core/httpcli/httpcli.c', |
| 334 | 'src/core/httpcli/parser.c', |
Craig Tiller | 298751c | 2015-09-22 09:41:05 -0700 | [diff] [blame] | 335 | 'src/core/iomgr/closure.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 336 | 'src/core/iomgr/endpoint.c', |
| 337 | 'src/core/iomgr/endpoint_pair_posix.c', |
| 338 | 'src/core/iomgr/endpoint_pair_windows.c', |
Craig Tiller | 8af4c33 | 2015-09-22 12:32:31 -0700 | [diff] [blame] | 339 | 'src/core/iomgr/exec_ctx.c', |
David Garcia Quintas | 4bc3463 | 2015-10-07 16:12:35 -0700 | [diff] [blame] | 340 | 'src/core/iomgr/executor.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 341 | 'src/core/iomgr/fd_posix.c', |
| 342 | 'src/core/iomgr/iocp_windows.c', |
| 343 | 'src/core/iomgr/iomgr.c', |
| 344 | 'src/core/iomgr/iomgr_posix.c', |
| 345 | 'src/core/iomgr/iomgr_windows.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 346 | 'src/core/iomgr/pollset_multipoller_with_epoll.c', |
| 347 | 'src/core/iomgr/pollset_multipoller_with_poll_posix.c', |
| 348 | 'src/core/iomgr/pollset_posix.c', |
| 349 | 'src/core/iomgr/pollset_set_posix.c', |
| 350 | 'src/core/iomgr/pollset_set_windows.c', |
| 351 | 'src/core/iomgr/pollset_windows.c', |
| 352 | 'src/core/iomgr/resolve_address_posix.c', |
| 353 | 'src/core/iomgr/resolve_address_windows.c', |
| 354 | 'src/core/iomgr/sockaddr_utils.c', |
| 355 | 'src/core/iomgr/socket_utils_common_posix.c', |
| 356 | 'src/core/iomgr/socket_utils_linux.c', |
| 357 | 'src/core/iomgr/socket_utils_posix.c', |
| 358 | 'src/core/iomgr/socket_windows.c', |
| 359 | 'src/core/iomgr/tcp_client_posix.c', |
| 360 | 'src/core/iomgr/tcp_client_windows.c', |
| 361 | 'src/core/iomgr/tcp_posix.c', |
| 362 | 'src/core/iomgr/tcp_server_posix.c', |
| 363 | 'src/core/iomgr/tcp_server_windows.c', |
| 364 | 'src/core/iomgr/tcp_windows.c', |
| 365 | 'src/core/iomgr/time_averaged_stats.c', |
David Garcia Quintas | b65e421 | 2015-10-14 12:00:21 -0700 | [diff] [blame] | 366 | 'src/core/iomgr/timer.c', |
| 367 | 'src/core/iomgr/timer_heap.c', |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 368 | 'src/core/iomgr/udp_server.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 369 | 'src/core/iomgr/wakeup_fd_eventfd.c', |
| 370 | 'src/core/iomgr/wakeup_fd_nospecial.c', |
| 371 | 'src/core/iomgr/wakeup_fd_pipe.c', |
| 372 | 'src/core/iomgr/wakeup_fd_posix.c', |
Craig Tiller | 73b6606 | 2015-09-09 09:34:46 -0700 | [diff] [blame] | 373 | 'src/core/iomgr/workqueue_posix.c', |
| 374 | 'src/core/iomgr/workqueue_windows.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 375 | 'src/core/json/json.c', |
| 376 | 'src/core/json/json_reader.c', |
| 377 | 'src/core/json/json_string.c', |
| 378 | 'src/core/json/json_writer.c', |
Masood Malekghassemi | fe1093c | 2015-08-19 19:15:24 -0700 | [diff] [blame] | 379 | 'src/core/surface/api_trace.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 380 | 'src/core/surface/byte_buffer.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 381 | 'src/core/surface/byte_buffer_reader.c', |
| 382 | 'src/core/surface/call.c', |
| 383 | 'src/core/surface/call_details.c', |
| 384 | 'src/core/surface/call_log_batch.c', |
| 385 | 'src/core/surface/channel.c', |
Craig Tiller | 48cb07c | 2015-07-15 16:16:15 -0700 | [diff] [blame] | 386 | 'src/core/surface/channel_connectivity.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 387 | 'src/core/surface/channel_create.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 388 | 'src/core/surface/completion_queue.c', |
| 389 | 'src/core/surface/event_string.c', |
| 390 | 'src/core/surface/init.c', |
| 391 | 'src/core/surface/lame_client.c', |
| 392 | 'src/core/surface/metadata_array.c', |
| 393 | 'src/core/surface/server.c', |
| 394 | 'src/core/surface/server_chttp2.c', |
| 395 | 'src/core/surface/server_create.c', |
Craig Tiller | 2e622bc | 2015-07-10 07:46:03 -0700 | [diff] [blame] | 396 | 'src/core/surface/version.c', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 397 | 'src/core/transport/byte_stream.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 398 | 'src/core/transport/chttp2/alpn.c', |
| 399 | 'src/core/transport/chttp2/bin_encoder.c', |
| 400 | 'src/core/transport/chttp2/frame_data.c', |
| 401 | 'src/core/transport/chttp2/frame_goaway.c', |
| 402 | 'src/core/transport/chttp2/frame_ping.c', |
| 403 | 'src/core/transport/chttp2/frame_rst_stream.c', |
| 404 | 'src/core/transport/chttp2/frame_settings.c', |
| 405 | 'src/core/transport/chttp2/frame_window_update.c', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 406 | 'src/core/transport/chttp2/hpack_encoder.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 407 | 'src/core/transport/chttp2/hpack_parser.c', |
| 408 | 'src/core/transport/chttp2/hpack_table.c', |
| 409 | 'src/core/transport/chttp2/huffsyms.c', |
Craig Tiller | 6e8c7e8 | 2015-06-25 08:52:40 -0700 | [diff] [blame] | 410 | 'src/core/transport/chttp2/incoming_metadata.c', |
| 411 | 'src/core/transport/chttp2/parsing.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 412 | 'src/core/transport/chttp2/status_conversion.c', |
Craig Tiller | 6e8c7e8 | 2015-06-25 08:52:40 -0700 | [diff] [blame] | 413 | 'src/core/transport/chttp2/stream_lists.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 414 | 'src/core/transport/chttp2/stream_map.c', |
| 415 | 'src/core/transport/chttp2/timeout_encoding.c', |
| 416 | 'src/core/transport/chttp2/varint.c', |
Craig Tiller | 6e8c7e8 | 2015-06-25 08:52:40 -0700 | [diff] [blame] | 417 | 'src/core/transport/chttp2/writing.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 418 | 'src/core/transport/chttp2_transport.c', |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 419 | 'src/core/transport/connectivity_state.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 420 | 'src/core/transport/metadata.c', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 421 | 'src/core/transport/metadata_batch.c', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 422 | 'src/core/transport/transport.c', |
| 423 | 'src/core/transport/transport_op_string.c', |
| 424 | 'src/core/census/context.c', |
Alistair Veitch | 635899d | 2015-07-17 16:02:24 -0700 | [diff] [blame] | 425 | 'src/core/census/initialize.c', |
Alistair Veitch | e6d0ad3 | 2015-08-13 09:59:48 -0700 | [diff] [blame] | 426 | 'src/core/census/operation.c', |
Alistair Veitch | 0383d49 | 2015-07-26 15:29:00 -0700 | [diff] [blame] | 427 | 'src/core/census/tracing.c' |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 428 | |
Craig Tiller | 0ba432d | 2015-10-09 16:57:11 -0700 | [diff] [blame] | 429 | ss.private_header_files = 'src/core/profiling/timers.h', |
| 430 | 'src/core/support/block_annotate.h', |
vjpai | 9839d28 | 2015-09-24 17:55:18 -0700 | [diff] [blame] | 431 | 'src/core/support/env.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 432 | 'src/core/support/file.h', |
| 433 | 'src/core/support/murmur_hash.h', |
Vijay Pai | 005e305 | 2015-07-10 15:18:45 -0700 | [diff] [blame] | 434 | 'src/core/support/stack_lockfree.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 435 | 'src/core/support/string.h', |
| 436 | 'src/core/support/string_win32.h', |
| 437 | 'src/core/support/thd_internal.h', |
Hongyu Chen | a0f149e | 2015-08-24 16:27:19 -0700 | [diff] [blame] | 438 | 'src/core/support/time_precise.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 439 | 'src/core/security/auth_filters.h', |
| 440 | 'src/core/security/base64.h', |
| 441 | 'src/core/security/credentials.h', |
Julien Boeuf | 87047d7 | 2015-08-21 14:30:33 -0700 | [diff] [blame] | 442 | 'src/core/security/handshake.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 443 | 'src/core/security/json_token.h', |
Julien Boeuf | feca1bf | 2015-06-22 16:46:20 +0200 | [diff] [blame] | 444 | 'src/core/security/jwt_verifier.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 445 | 'src/core/security/secure_endpoint.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 446 | 'src/core/security/security_connector.h', |
| 447 | 'src/core/security/security_context.h', |
| 448 | 'src/core/tsi/fake_transport_security.h', |
| 449 | 'src/core/tsi/ssl_transport_security.h', |
| 450 | 'src/core/tsi/transport_security.h', |
| 451 | 'src/core/tsi/transport_security_interface.h', |
Hongyu Chen | e09dc78 | 2015-08-21 11:28:33 -0700 | [diff] [blame] | 452 | 'src/core/census/grpc_filter.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 453 | 'src/core/channel/channel_args.h', |
| 454 | 'src/core/channel/channel_stack.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 455 | 'src/core/channel/client_channel.h', |
David Garcia Quintas | 7b1bd2c | 2015-10-05 18:22:10 -0700 | [diff] [blame] | 456 | 'src/core/channel/client_uchannel.h', |
David Garcia Quintas | 8a18709 | 2015-07-01 14:52:44 -0700 | [diff] [blame] | 457 | 'src/core/channel/compress_filter.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 458 | 'src/core/channel/connected_channel.h', |
| 459 | 'src/core/channel/context.h', |
| 460 | 'src/core/channel/http_client_filter.h', |
| 461 | 'src/core/channel/http_server_filter.h', |
| 462 | 'src/core/channel/noop_filter.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 463 | 'src/core/channel/subchannel_call_holder.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 464 | 'src/core/client_config/client_config.h', |
Craig Tiller | 9162466 | 2015-06-25 16:31:02 -0700 | [diff] [blame] | 465 | 'src/core/client_config/connector.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 466 | 'src/core/client_config/lb_policies/pick_first.h', |
David Garcia Quintas | 4fb049b | 2015-09-03 17:26:06 -0700 | [diff] [blame] | 467 | 'src/core/client_config/lb_policies/round_robin.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 468 | 'src/core/client_config/lb_policy.h', |
David Garcia Quintas | 5c4543d | 2015-09-03 15:49:56 -0700 | [diff] [blame] | 469 | 'src/core/client_config/lb_policy_factory.h', |
| 470 | 'src/core/client_config/lb_policy_registry.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 471 | 'src/core/client_config/resolver.h', |
| 472 | 'src/core/client_config/resolver_factory.h', |
| 473 | 'src/core/client_config/resolver_registry.h', |
| 474 | 'src/core/client_config/resolvers/dns_resolver.h', |
Craig Tiller | 698d00c | 2015-07-20 12:32:58 -0700 | [diff] [blame] | 475 | 'src/core/client_config/resolvers/sockaddr_resolver.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 476 | 'src/core/client_config/subchannel.h', |
| 477 | 'src/core/client_config/subchannel_factory.h', |
Craig Tiller | 83f4d4e | 2015-07-29 18:14:41 -0700 | [diff] [blame] | 478 | 'src/core/client_config/subchannel_factory_decorators/add_channel_arg.h', |
| 479 | 'src/core/client_config/subchannel_factory_decorators/merge_channel_args.h', |
Craig Tiller | 4b62811 | 2015-06-25 08:58:23 -0700 | [diff] [blame] | 480 | 'src/core/client_config/uri_parser.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 481 | 'src/core/compression/message_compress.h', |
| 482 | 'src/core/debug/trace.h', |
Craig Tiller | f53d9c8 | 2015-08-04 14:19:43 -0700 | [diff] [blame] | 483 | 'src/core/httpcli/format_request.h', |
| 484 | 'src/core/httpcli/httpcli.h', |
| 485 | 'src/core/httpcli/parser.h', |
Craig Tiller | 298751c | 2015-09-22 09:41:05 -0700 | [diff] [blame] | 486 | 'src/core/iomgr/closure.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 487 | 'src/core/iomgr/endpoint.h', |
| 488 | 'src/core/iomgr/endpoint_pair.h', |
Craig Tiller | 298751c | 2015-09-22 09:41:05 -0700 | [diff] [blame] | 489 | 'src/core/iomgr/exec_ctx.h', |
David Garcia Quintas | 4bc3463 | 2015-10-07 16:12:35 -0700 | [diff] [blame] | 490 | 'src/core/iomgr/executor.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 491 | 'src/core/iomgr/fd_posix.h', |
| 492 | 'src/core/iomgr/iocp_windows.h', |
| 493 | 'src/core/iomgr/iomgr.h', |
| 494 | 'src/core/iomgr/iomgr_internal.h', |
| 495 | 'src/core/iomgr/iomgr_posix.h', |
| 496 | 'src/core/iomgr/pollset.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 497 | 'src/core/iomgr/pollset_posix.h', |
| 498 | 'src/core/iomgr/pollset_set.h', |
| 499 | 'src/core/iomgr/pollset_set_posix.h', |
| 500 | 'src/core/iomgr/pollset_set_windows.h', |
| 501 | 'src/core/iomgr/pollset_windows.h', |
| 502 | 'src/core/iomgr/resolve_address.h', |
| 503 | 'src/core/iomgr/sockaddr.h', |
| 504 | 'src/core/iomgr/sockaddr_posix.h', |
| 505 | 'src/core/iomgr/sockaddr_utils.h', |
| 506 | 'src/core/iomgr/sockaddr_win32.h', |
| 507 | 'src/core/iomgr/socket_utils_posix.h', |
| 508 | 'src/core/iomgr/socket_windows.h', |
| 509 | 'src/core/iomgr/tcp_client.h', |
| 510 | 'src/core/iomgr/tcp_posix.h', |
| 511 | 'src/core/iomgr/tcp_server.h', |
| 512 | 'src/core/iomgr/tcp_windows.h', |
| 513 | 'src/core/iomgr/time_averaged_stats.h', |
David Garcia Quintas | b65e421 | 2015-10-14 12:00:21 -0700 | [diff] [blame] | 514 | 'src/core/iomgr/timer.h', |
| 515 | 'src/core/iomgr/timer_heap.h', |
| 516 | 'src/core/iomgr/timer_internal.h', |
Robbie Shade | 6953529 | 2015-07-10 14:27:34 -0400 | [diff] [blame] | 517 | 'src/core/iomgr/udp_server.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 518 | 'src/core/iomgr/wakeup_fd_pipe.h', |
| 519 | 'src/core/iomgr/wakeup_fd_posix.h', |
Craig Tiller | 73b6606 | 2015-09-09 09:34:46 -0700 | [diff] [blame] | 520 | 'src/core/iomgr/workqueue.h', |
| 521 | 'src/core/iomgr/workqueue_posix.h', |
| 522 | 'src/core/iomgr/workqueue_windows.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 523 | 'src/core/json/json.h', |
| 524 | 'src/core/json/json_common.h', |
| 525 | 'src/core/json/json_reader.h', |
| 526 | 'src/core/json/json_writer.h', |
yang-g | 31ff8bc | 2015-08-25 14:09:06 -0700 | [diff] [blame] | 527 | 'src/core/statistics/census_interface.h', |
| 528 | 'src/core/statistics/census_rpc_stats.h', |
Masood Malekghassemi | 9229810 | 2015-08-20 18:50:17 -0700 | [diff] [blame] | 529 | 'src/core/surface/api_trace.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 530 | 'src/core/surface/call.h', |
David Garcia Quintas | 0c33188 | 2015-10-08 14:51:54 -0700 | [diff] [blame] | 531 | 'src/core/surface/call_test_only.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 532 | 'src/core/surface/channel.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 533 | 'src/core/surface/completion_queue.h', |
| 534 | 'src/core/surface/event_string.h', |
| 535 | 'src/core/surface/init.h', |
| 536 | 'src/core/surface/server.h', |
| 537 | 'src/core/surface/surface_trace.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 538 | 'src/core/transport/byte_stream.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 539 | 'src/core/transport/chttp2/alpn.h', |
| 540 | 'src/core/transport/chttp2/bin_encoder.h', |
| 541 | 'src/core/transport/chttp2/frame.h', |
| 542 | 'src/core/transport/chttp2/frame_data.h', |
| 543 | 'src/core/transport/chttp2/frame_goaway.h', |
| 544 | 'src/core/transport/chttp2/frame_ping.h', |
| 545 | 'src/core/transport/chttp2/frame_rst_stream.h', |
| 546 | 'src/core/transport/chttp2/frame_settings.h', |
| 547 | 'src/core/transport/chttp2/frame_window_update.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 548 | 'src/core/transport/chttp2/hpack_encoder.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 549 | 'src/core/transport/chttp2/hpack_parser.h', |
| 550 | 'src/core/transport/chttp2/hpack_table.h', |
| 551 | 'src/core/transport/chttp2/http2_errors.h', |
| 552 | 'src/core/transport/chttp2/huffsyms.h', |
Craig Tiller | 6e8c7e8 | 2015-06-25 08:52:40 -0700 | [diff] [blame] | 553 | 'src/core/transport/chttp2/incoming_metadata.h', |
| 554 | 'src/core/transport/chttp2/internal.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 555 | 'src/core/transport/chttp2/status_conversion.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 556 | 'src/core/transport/chttp2/stream_map.h', |
| 557 | 'src/core/transport/chttp2/timeout_encoding.h', |
| 558 | 'src/core/transport/chttp2/varint.h', |
| 559 | 'src/core/transport/chttp2_transport.h', |
Craig Tiller | 08a1cf8 | 2015-06-29 09:37:52 -0700 | [diff] [blame] | 560 | 'src/core/transport/connectivity_state.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 561 | 'src/core/transport/metadata.h', |
Craig Tiller | ca1593a | 2015-11-02 14:08:33 -0800 | [diff] [blame] | 562 | 'src/core/transport/metadata_batch.h', |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 563 | 'src/core/transport/transport.h', |
| 564 | 'src/core/transport/transport_impl.h', |
Alistair Veitch | 1c09acc | 2015-08-31 16:57:32 -0700 | [diff] [blame] | 565 | 'src/core/census/aggregation.h', |
Alistair Veitch | 635899d | 2015-07-17 16:02:24 -0700 | [diff] [blame] | 566 | 'src/core/census/context.h', |
Alistair Veitch | 9a09982 | 2015-08-27 13:16:00 -0700 | [diff] [blame] | 567 | 'src/core/census/rpc_metric_id.h' |
Craig Tiller | eb327fb | 2015-06-23 16:51:38 -0700 | [diff] [blame] | 568 | |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 569 | ss.header_mappings_dir = '.' |
Jorge Canizales | 951875f | 2015-10-13 18:36:00 -0700 | [diff] [blame] | 570 | # This isn't officially supported in Cocoapods. We've asked for an alternative: |
| 571 | # https://github.com/CocoaPods/CocoaPods/issues/4386 |
Jorge Canizales | 10622a8 | 2015-10-28 07:10:47 -0700 | [diff] [blame] | 572 | ss.xcconfig = { |
| 573 | 'USE_HEADERMAP' => 'NO', |
| 574 | 'ALWAYS_SEARCH_USER_PATHS' => 'NO', |
| 575 | 'USER_HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC"', |
| 576 | 'HEADER_SEARCH_PATHS' => '"$(PODS_ROOT)/Headers/Private/gRPC/include"' |
| 577 | } |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 578 | |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 579 | ss.requires_arc = false |
| 580 | ss.libraries = 'z' |
| 581 | ss.dependency 'OpenSSL', '~> 1.0.200' |
Jorge Canizales | 63c3efb | 2015-07-17 18:53:20 -0700 | [diff] [blame] | 582 | |
| 583 | # ss.compiler_flags = '-GCC_WARN_INHIBIT_ALL_WARNINGS', '-w' |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 584 | end |
| 585 | |
Jorge Canizales | 461b094 | 2015-06-02 20:40:50 -0700 | [diff] [blame] | 586 | # Objective-C wrapper around the core gRPC library. |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 587 | s.subspec 'GRPCClient' do |ss| |
| 588 | src_dir = "#{objc_dir}/GRPCClient" |
| 589 | ss.source_files = "#{src_dir}/*.{h,m}", "#{src_dir}/**/*.{h,m}" |
| 590 | ss.private_header_files = "#{src_dir}/private/*.h" |
| 591 | ss.header_mappings_dir = "#{objc_dir}" |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 592 | |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 593 | ss.dependency 'gRPC/C-Core' |
| 594 | ss.dependency 'gRPC/RxLibrary' |
Jorge Canizales | ba37a3e | 2015-03-23 15:34:58 -0700 | [diff] [blame] | 595 | |
Jorge Canizales | 8957cae | 2015-04-22 23:40:18 -0700 | [diff] [blame] | 596 | # Certificates, to be able to establish TLS connections: |
Jorge Canizales | bb54ae8 | 2015-06-28 06:50:58 -0700 | [diff] [blame] | 597 | ss.resource_bundles = { 'gRPCCertificates' => ['etc/roots.pem'] } |
Jorge Canizales | 8957cae | 2015-04-22 23:40:18 -0700 | [diff] [blame] | 598 | end |
| 599 | |
Jorge Canizales | 461b094 | 2015-06-02 20:40:50 -0700 | [diff] [blame] | 600 | # RPC library for ProtocolBuffers, based on gRPC |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 601 | s.subspec 'ProtoRPC' do |ss| |
| 602 | src_dir = "#{objc_dir}/ProtoRPC" |
| 603 | ss.source_files = "#{src_dir}/*.{h,m}" |
| 604 | ss.header_mappings_dir = "#{objc_dir}" |
Jorge Canizales | 8957cae | 2015-04-22 23:40:18 -0700 | [diff] [blame] | 605 | |
Jorge Canizales | ea9b4fd | 2015-06-21 13:37:28 -0700 | [diff] [blame] | 606 | ss.dependency 'gRPC/GRPCClient' |
| 607 | ss.dependency 'gRPC/RxLibrary' |
Craig Tiller | ba49645 | 2015-09-21 17:15:19 -0700 | [diff] [blame] | 608 | ss.dependency 'Protobuf', '~> 3.0.0-alpha-4' |
Jorge Canizales | 8957cae | 2015-04-22 23:40:18 -0700 | [diff] [blame] | 609 | end |
Jorge Canizales | c2d7ecb | 2015-02-27 01:22:41 -0800 | [diff] [blame] | 610 | end |