blob: f049e3c4056b3f5250857201935fcea577ede789 [file] [log] [blame]
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001# GRPC Bazel BUILD file.
Jorge Canizales3beb2402015-07-02 01:30:33 -07002# This currently builds C, C++ and Objective-C code.
Nicolas "Pixel" Nobled49893d2015-04-21 04:57:45 +02003# This file has been automatically generated from a template file.
4# Please look at the templates directory instead.
murgatroid99f680af02015-06-22 11:20:24 -07005# This file can be regenerated from the template by running
6# tools/buildgen/generate_projects.sh
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02007
8# Copyright 2015, Google Inc.
9# All rights reserved.
10#
11# Redistribution and use in source and binary forms, with or without
12# modification, are permitted provided that the following conditions are
13# met:
14#
15# * Redistributions of source code must retain the above copyright
16# notice, this list of conditions and the following disclaimer.
17# * Redistributions in binary form must reproduce the above
18# copyright notice, this list of conditions and the following disclaimer
19# in the documentation and/or other materials provided with the
20# distribution.
21# * Neither the name of Google Inc. nor the names of its
22# contributors may be used to endorse or promote products derived from
23# this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
37licenses(["notice"]) # 3-clause BSD
38
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070039package(default_visibility = ["//visibility:public"])
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020040
41
42
43
Rob Earhartb7b8d052016-03-29 11:35:29 -070044
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020045cc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -080046 name = "gpr",
47 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -070048 "src/core/lib/profiling/timers.h",
49 "src/core/lib/support/backoff.h",
50 "src/core/lib/support/block_annotate.h",
51 "src/core/lib/support/env.h",
52 "src/core/lib/support/load_file.h",
53 "src/core/lib/support/murmur_hash.h",
54 "src/core/lib/support/stack_lockfree.h",
55 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070056 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -070057 "src/core/lib/support/thd_internal.h",
58 "src/core/lib/support/time_precise.h",
59 "src/core/lib/support/tmpfile.h",
60 "src/core/lib/profiling/basic_timers.c",
61 "src/core/lib/profiling/stap_timers.c",
62 "src/core/lib/support/alloc.c",
63 "src/core/lib/support/avl.c",
64 "src/core/lib/support/backoff.c",
65 "src/core/lib/support/cmdline.c",
66 "src/core/lib/support/cpu_iphone.c",
67 "src/core/lib/support/cpu_linux.c",
68 "src/core/lib/support/cpu_posix.c",
69 "src/core/lib/support/cpu_windows.c",
70 "src/core/lib/support/env_linux.c",
71 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070072 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070073 "src/core/lib/support/histogram.c",
74 "src/core/lib/support/host_port.c",
75 "src/core/lib/support/load_file.c",
76 "src/core/lib/support/log.c",
77 "src/core/lib/support/log_android.c",
78 "src/core/lib/support/log_linux.c",
79 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070080 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070081 "src/core/lib/support/murmur_hash.c",
82 "src/core/lib/support/slice.c",
83 "src/core/lib/support/slice_buffer.c",
84 "src/core/lib/support/stack_lockfree.c",
85 "src/core/lib/support/string.c",
86 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -070087 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070088 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070089 "src/core/lib/support/subprocess_posix.c",
90 "src/core/lib/support/subprocess_windows.c",
91 "src/core/lib/support/sync.c",
92 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070093 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070094 "src/core/lib/support/thd.c",
95 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070096 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070097 "src/core/lib/support/time.c",
98 "src/core/lib/support/time_posix.c",
99 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700100 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700101 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200102 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700103 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700104 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700105 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -0800106 ],
107 hdrs = [
108 "include/grpc/support/alloc.h",
109 "include/grpc/support/atm.h",
110 "include/grpc/support/atm_gcc_atomic.h",
111 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700112 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800113 "include/grpc/support/avl.h",
114 "include/grpc/support/cmdline.h",
115 "include/grpc/support/cpu.h",
116 "include/grpc/support/histogram.h",
117 "include/grpc/support/host_port.h",
118 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700119 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800120 "include/grpc/support/port_platform.h",
121 "include/grpc/support/slice.h",
122 "include/grpc/support/slice_buffer.h",
123 "include/grpc/support/string_util.h",
124 "include/grpc/support/subprocess.h",
125 "include/grpc/support/sync.h",
126 "include/grpc/support/sync_generic.h",
127 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700128 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800129 "include/grpc/support/thd.h",
130 "include/grpc/support/time.h",
131 "include/grpc/support/tls.h",
132 "include/grpc/support/tls_gcc.h",
133 "include/grpc/support/tls_msvc.h",
134 "include/grpc/support/tls_pthread.h",
135 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700136 "include/grpc/impl/codegen/alloc.h",
137 "include/grpc/impl/codegen/atm.h",
138 "include/grpc/impl/codegen/atm_gcc_atomic.h",
139 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700140 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700141 "include/grpc/impl/codegen/log.h",
142 "include/grpc/impl/codegen/port_platform.h",
143 "include/grpc/impl/codegen/slice.h",
144 "include/grpc/impl/codegen/slice_buffer.h",
145 "include/grpc/impl/codegen/sync.h",
146 "include/grpc/impl/codegen/sync_generic.h",
147 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700148 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700149 "include/grpc/impl/codegen/time.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800150 ],
151 includes = [
152 "include",
153 ".",
154 ],
155 deps = [
156 ],
157)
158
159
Rob Earhartb7b8d052016-03-29 11:35:29 -0700160
Craig Tillerda179ce2016-02-09 12:01:53 -0800161cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700162 name = "grpc",
163 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700164 "src/core/lib/channel/channel_args.h",
165 "src/core/lib/channel/channel_stack.h",
166 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700167 "src/core/lib/channel/compress_filter.h",
168 "src/core/lib/channel/connected_channel.h",
169 "src/core/lib/channel/context.h",
170 "src/core/lib/channel/http_client_filter.h",
171 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700172 "src/core/lib/compression/algorithm_metadata.h",
173 "src/core/lib/compression/message_compress.h",
174 "src/core/lib/debug/trace.h",
175 "src/core/lib/http/format_request.h",
176 "src/core/lib/http/httpcli.h",
177 "src/core/lib/http/parser.h",
178 "src/core/lib/iomgr/closure.h",
179 "src/core/lib/iomgr/endpoint.h",
180 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700181 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700182 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700183 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700184 "src/core/lib/iomgr/exec_ctx.h",
185 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700186 "src/core/lib/iomgr/iocp_windows.h",
187 "src/core/lib/iomgr/iomgr.h",
188 "src/core/lib/iomgr/iomgr_internal.h",
189 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700190 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700191 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700192 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700193 "src/core/lib/iomgr/pollset_set_windows.h",
194 "src/core/lib/iomgr/pollset_windows.h",
195 "src/core/lib/iomgr/resolve_address.h",
196 "src/core/lib/iomgr/sockaddr.h",
197 "src/core/lib/iomgr/sockaddr_posix.h",
198 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700199 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700200 "src/core/lib/iomgr/socket_utils_posix.h",
201 "src/core/lib/iomgr/socket_windows.h",
202 "src/core/lib/iomgr/tcp_client.h",
203 "src/core/lib/iomgr/tcp_posix.h",
204 "src/core/lib/iomgr/tcp_server.h",
205 "src/core/lib/iomgr/tcp_windows.h",
206 "src/core/lib/iomgr/time_averaged_stats.h",
207 "src/core/lib/iomgr/timer.h",
208 "src/core/lib/iomgr/timer_heap.h",
209 "src/core/lib/iomgr/udp_server.h",
210 "src/core/lib/iomgr/unix_sockets_posix.h",
211 "src/core/lib/iomgr/wakeup_fd_pipe.h",
212 "src/core/lib/iomgr/wakeup_fd_posix.h",
213 "src/core/lib/iomgr/workqueue.h",
214 "src/core/lib/iomgr/workqueue_posix.h",
215 "src/core/lib/iomgr/workqueue_windows.h",
216 "src/core/lib/json/json.h",
217 "src/core/lib/json/json_common.h",
218 "src/core/lib/json/json_reader.h",
219 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700220 "src/core/lib/surface/api_trace.h",
221 "src/core/lib/surface/call.h",
222 "src/core/lib/surface/call_test_only.h",
223 "src/core/lib/surface/channel.h",
224 "src/core/lib/surface/channel_init.h",
225 "src/core/lib/surface/channel_stack_type.h",
226 "src/core/lib/surface/completion_queue.h",
227 "src/core/lib/surface/event_string.h",
228 "src/core/lib/surface/init.h",
229 "src/core/lib/surface/lame_client.h",
230 "src/core/lib/surface/server.h",
231 "src/core/lib/surface/surface_trace.h",
232 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700233 "src/core/lib/transport/connectivity_state.h",
234 "src/core/lib/transport/metadata.h",
235 "src/core/lib/transport/metadata_batch.h",
236 "src/core/lib/transport/static_metadata.h",
237 "src/core/lib/transport/transport.h",
238 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700239 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700240 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
241 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
242 "src/core/ext/transport/chttp2/transport/frame.h",
243 "src/core/ext/transport/chttp2/transport/frame_data.h",
244 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
245 "src/core/ext/transport/chttp2/transport/frame_ping.h",
246 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
247 "src/core/ext/transport/chttp2/transport/frame_settings.h",
248 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
249 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
250 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
251 "src/core/ext/transport/chttp2/transport/hpack_table.h",
252 "src/core/ext/transport/chttp2/transport/http2_errors.h",
253 "src/core/ext/transport/chttp2/transport/huffsyms.h",
254 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
255 "src/core/ext/transport/chttp2/transport/internal.h",
256 "src/core/ext/transport/chttp2/transport/status_conversion.h",
257 "src/core/ext/transport/chttp2/transport/stream_map.h",
258 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
259 "src/core/ext/transport/chttp2/transport/varint.h",
260 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700261 "src/core/lib/security/context/security_context.h",
262 "src/core/lib/security/credentials/composite/composite_credentials.h",
263 "src/core/lib/security/credentials/credentials.h",
264 "src/core/lib/security/credentials/fake/fake_credentials.h",
265 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
266 "src/core/lib/security/credentials/iam/iam_credentials.h",
267 "src/core/lib/security/credentials/jwt/json_token.h",
268 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
269 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
270 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
271 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
272 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
273 "src/core/lib/security/transport/auth_filters.h",
274 "src/core/lib/security/transport/handshake.h",
275 "src/core/lib/security/transport/secure_endpoint.h",
276 "src/core/lib/security/transport/security_connector.h",
277 "src/core/lib/security/util/b64.h",
278 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700279 "src/core/lib/tsi/fake_transport_security.h",
280 "src/core/lib/tsi/ssl_transport_security.h",
281 "src/core/lib/tsi/ssl_types.h",
282 "src/core/lib/tsi/transport_security.h",
283 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700284 "src/core/ext/client_config/client_channel.h",
285 "src/core/ext/client_config/client_channel_factory.h",
286 "src/core/ext/client_config/client_config.h",
287 "src/core/ext/client_config/connector.h",
288 "src/core/ext/client_config/initial_connect_string.h",
289 "src/core/ext/client_config/lb_policy.h",
290 "src/core/ext/client_config/lb_policy_factory.h",
291 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700292 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700293 "src/core/ext/client_config/resolver.h",
294 "src/core/ext/client_config/resolver_factory.h",
295 "src/core/ext/client_config/resolver_registry.h",
296 "src/core/ext/client_config/subchannel.h",
297 "src/core/ext/client_config/subchannel_call_holder.h",
298 "src/core/ext/client_config/subchannel_index.h",
299 "src/core/ext/client_config/uri_parser.h",
300 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700301 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700302 "src/core/ext/load_reporting/load_reporting.h",
303 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700304 "src/core/ext/census/aggregation.h",
305 "src/core/ext/census/census_interface.h",
306 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700307 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700308 "src/core/ext/census/grpc_filter.h",
309 "src/core/ext/census/mlog.h",
310 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700311 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700312 "src/core/lib/channel/channel_args.c",
313 "src/core/lib/channel/channel_stack.c",
314 "src/core/lib/channel/channel_stack_builder.c",
315 "src/core/lib/channel/compress_filter.c",
316 "src/core/lib/channel/connected_channel.c",
317 "src/core/lib/channel/http_client_filter.c",
318 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -0700319 "src/core/lib/compression/compression.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700320 "src/core/lib/compression/message_compress.c",
321 "src/core/lib/debug/trace.c",
322 "src/core/lib/http/format_request.c",
323 "src/core/lib/http/httpcli.c",
324 "src/core/lib/http/parser.c",
325 "src/core/lib/iomgr/closure.c",
326 "src/core/lib/iomgr/endpoint.c",
327 "src/core/lib/iomgr/endpoint_pair_posix.c",
328 "src/core/lib/iomgr/endpoint_pair_windows.c",
329 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700330 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700331 "src/core/lib/iomgr/ev_posix.c",
332 "src/core/lib/iomgr/exec_ctx.c",
333 "src/core/lib/iomgr/executor.c",
334 "src/core/lib/iomgr/iocp_windows.c",
335 "src/core/lib/iomgr/iomgr.c",
336 "src/core/lib/iomgr/iomgr_posix.c",
337 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700338 "src/core/lib/iomgr/polling_entity.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700339 "src/core/lib/iomgr/pollset_set_windows.c",
340 "src/core/lib/iomgr/pollset_windows.c",
341 "src/core/lib/iomgr/resolve_address_posix.c",
342 "src/core/lib/iomgr/resolve_address_windows.c",
343 "src/core/lib/iomgr/sockaddr_utils.c",
344 "src/core/lib/iomgr/socket_utils_common_posix.c",
345 "src/core/lib/iomgr/socket_utils_linux.c",
346 "src/core/lib/iomgr/socket_utils_posix.c",
347 "src/core/lib/iomgr/socket_windows.c",
348 "src/core/lib/iomgr/tcp_client_posix.c",
349 "src/core/lib/iomgr/tcp_client_windows.c",
350 "src/core/lib/iomgr/tcp_posix.c",
351 "src/core/lib/iomgr/tcp_server_posix.c",
352 "src/core/lib/iomgr/tcp_server_windows.c",
353 "src/core/lib/iomgr/tcp_windows.c",
354 "src/core/lib/iomgr/time_averaged_stats.c",
355 "src/core/lib/iomgr/timer.c",
356 "src/core/lib/iomgr/timer_heap.c",
357 "src/core/lib/iomgr/udp_server.c",
358 "src/core/lib/iomgr/unix_sockets_posix.c",
359 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
360 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
361 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
362 "src/core/lib/iomgr/wakeup_fd_pipe.c",
363 "src/core/lib/iomgr/wakeup_fd_posix.c",
364 "src/core/lib/iomgr/workqueue_posix.c",
365 "src/core/lib/iomgr/workqueue_windows.c",
366 "src/core/lib/json/json.c",
367 "src/core/lib/json/json_reader.c",
368 "src/core/lib/json/json_string.c",
369 "src/core/lib/json/json_writer.c",
370 "src/core/lib/surface/alarm.c",
371 "src/core/lib/surface/api_trace.c",
372 "src/core/lib/surface/byte_buffer.c",
373 "src/core/lib/surface/byte_buffer_reader.c",
374 "src/core/lib/surface/call.c",
375 "src/core/lib/surface/call_details.c",
376 "src/core/lib/surface/call_log_batch.c",
377 "src/core/lib/surface/channel.c",
378 "src/core/lib/surface/channel_init.c",
379 "src/core/lib/surface/channel_ping.c",
380 "src/core/lib/surface/channel_stack_type.c",
381 "src/core/lib/surface/completion_queue.c",
382 "src/core/lib/surface/event_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700383 "src/core/lib/surface/lame_client.c",
384 "src/core/lib/surface/metadata_array.c",
385 "src/core/lib/surface/server.c",
386 "src/core/lib/surface/validate_metadata.c",
387 "src/core/lib/surface/version.c",
388 "src/core/lib/transport/byte_stream.c",
389 "src/core/lib/transport/connectivity_state.c",
390 "src/core/lib/transport/metadata.c",
391 "src/core/lib/transport/metadata_batch.c",
392 "src/core/lib/transport/static_metadata.c",
393 "src/core/lib/transport/transport.c",
394 "src/core/lib/transport/transport_op_string.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700395 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700396 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700397 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
398 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700399 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
400 "src/core/ext/transport/chttp2/transport/frame_data.c",
401 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
402 "src/core/ext/transport/chttp2/transport/frame_ping.c",
403 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
404 "src/core/ext/transport/chttp2/transport/frame_settings.c",
405 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
406 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
407 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
408 "src/core/ext/transport/chttp2/transport/hpack_table.c",
409 "src/core/ext/transport/chttp2/transport/huffsyms.c",
410 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
411 "src/core/ext/transport/chttp2/transport/parsing.c",
412 "src/core/ext/transport/chttp2/transport/status_conversion.c",
413 "src/core/ext/transport/chttp2/transport/stream_lists.c",
414 "src/core/ext/transport/chttp2/transport/stream_map.c",
415 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
416 "src/core/ext/transport/chttp2/transport/varint.c",
417 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700418 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700419 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700420 "src/core/lib/security/context/security_context.c",
421 "src/core/lib/security/credentials/composite/composite_credentials.c",
422 "src/core/lib/security/credentials/credentials.c",
423 "src/core/lib/security/credentials/credentials_metadata.c",
424 "src/core/lib/security/credentials/fake/fake_credentials.c",
425 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -0700426 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700427 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
428 "src/core/lib/security/credentials/iam/iam_credentials.c",
429 "src/core/lib/security/credentials/jwt/json_token.c",
430 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
431 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
432 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
433 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
434 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
435 "src/core/lib/security/transport/client_auth_filter.c",
436 "src/core/lib/security/transport/handshake.c",
437 "src/core/lib/security/transport/secure_endpoint.c",
438 "src/core/lib/security/transport/security_connector.c",
439 "src/core/lib/security/transport/server_auth_filter.c",
440 "src/core/lib/security/util/b64.c",
441 "src/core/lib/security/util/json_util.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700442 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700443 "src/core/lib/tsi/fake_transport_security.c",
444 "src/core/lib/tsi/ssl_transport_security.c",
445 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700446 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
447 "src/core/ext/client_config/channel_connectivity.c",
448 "src/core/ext/client_config/client_channel.c",
449 "src/core/ext/client_config/client_channel_factory.c",
450 "src/core/ext/client_config/client_config.c",
451 "src/core/ext/client_config/client_config_plugin.c",
452 "src/core/ext/client_config/connector.c",
453 "src/core/ext/client_config/default_initial_connect_string.c",
454 "src/core/ext/client_config/initial_connect_string.c",
455 "src/core/ext/client_config/lb_policy.c",
456 "src/core/ext/client_config/lb_policy_factory.c",
457 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700458 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700459 "src/core/ext/client_config/resolver.c",
460 "src/core/ext/client_config/resolver_factory.c",
461 "src/core/ext/client_config/resolver_registry.c",
462 "src/core/ext/client_config/subchannel.c",
463 "src/core/ext/client_config/subchannel_call_holder.c",
464 "src/core/ext/client_config/subchannel_index.c",
465 "src/core/ext/client_config/uri_parser.c",
466 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -0700467 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700468 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700469 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700470 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700471 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700472 "src/core/ext/lb_policy/pick_first/pick_first.c",
473 "src/core/ext/lb_policy/round_robin/round_robin.c",
474 "src/core/ext/resolver/dns/native/dns_resolver.c",
475 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700476 "src/core/ext/load_reporting/load_reporting.c",
477 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700478 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700479 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700480 "src/core/ext/census/grpc_context.c",
481 "src/core/ext/census/grpc_filter.c",
482 "src/core/ext/census/grpc_plugin.c",
483 "src/core/ext/census/initialize.c",
484 "src/core/ext/census/mlog.c",
485 "src/core/ext/census/operation.c",
486 "src/core/ext/census/placeholders.c",
487 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700488 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700489 ],
490 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700491 "include/grpc/byte_buffer.h",
492 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700493 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700494 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700495 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700496 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700497 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700498 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700499 "include/grpc/impl/codegen/compression_types.h",
500 "include/grpc/impl/codegen/connectivity_state.h",
501 "include/grpc/impl/codegen/grpc_types.h",
502 "include/grpc/impl/codegen/propagation_bits.h",
503 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700504 "include/grpc/impl/codegen/alloc.h",
505 "include/grpc/impl/codegen/atm.h",
506 "include/grpc/impl/codegen/atm_gcc_atomic.h",
507 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700508 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700509 "include/grpc/impl/codegen/log.h",
510 "include/grpc/impl/codegen/port_platform.h",
511 "include/grpc/impl/codegen/slice.h",
512 "include/grpc/impl/codegen/slice_buffer.h",
513 "include/grpc/impl/codegen/sync.h",
514 "include/grpc/impl/codegen/sync_generic.h",
515 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700516 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700517 "include/grpc/impl/codegen/time.h",
518 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700519 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700520 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700521 ],
522 includes = [
523 "include",
524 ".",
525 ],
526 deps = [
527 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700528 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800529 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700530 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700531 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800532 copts = [
533 "-std=gnu99",
534 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200535)
536
537
Rob Earhartb7b8d052016-03-29 11:35:29 -0700538
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700539cc_library(
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700540 name = "grpc_cronet",
541 srcs = [
542 "src/core/lib/channel/channel_args.h",
543 "src/core/lib/channel/channel_stack.h",
544 "src/core/lib/channel/channel_stack_builder.h",
545 "src/core/lib/channel/compress_filter.h",
546 "src/core/lib/channel/connected_channel.h",
547 "src/core/lib/channel/context.h",
548 "src/core/lib/channel/http_client_filter.h",
549 "src/core/lib/channel/http_server_filter.h",
550 "src/core/lib/compression/algorithm_metadata.h",
551 "src/core/lib/compression/message_compress.h",
552 "src/core/lib/debug/trace.h",
553 "src/core/lib/http/format_request.h",
554 "src/core/lib/http/httpcli.h",
555 "src/core/lib/http/parser.h",
556 "src/core/lib/iomgr/closure.h",
557 "src/core/lib/iomgr/endpoint.h",
558 "src/core/lib/iomgr/endpoint_pair.h",
559 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
560 "src/core/lib/iomgr/ev_poll_posix.h",
561 "src/core/lib/iomgr/ev_posix.h",
562 "src/core/lib/iomgr/exec_ctx.h",
563 "src/core/lib/iomgr/executor.h",
564 "src/core/lib/iomgr/iocp_windows.h",
565 "src/core/lib/iomgr/iomgr.h",
566 "src/core/lib/iomgr/iomgr_internal.h",
567 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700568 "src/core/lib/iomgr/polling_entity.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700569 "src/core/lib/iomgr/pollset.h",
570 "src/core/lib/iomgr/pollset_set.h",
571 "src/core/lib/iomgr/pollset_set_windows.h",
572 "src/core/lib/iomgr/pollset_windows.h",
573 "src/core/lib/iomgr/resolve_address.h",
574 "src/core/lib/iomgr/sockaddr.h",
575 "src/core/lib/iomgr/sockaddr_posix.h",
576 "src/core/lib/iomgr/sockaddr_utils.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700577 "src/core/lib/iomgr/sockaddr_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700578 "src/core/lib/iomgr/socket_utils_posix.h",
579 "src/core/lib/iomgr/socket_windows.h",
580 "src/core/lib/iomgr/tcp_client.h",
581 "src/core/lib/iomgr/tcp_posix.h",
582 "src/core/lib/iomgr/tcp_server.h",
583 "src/core/lib/iomgr/tcp_windows.h",
584 "src/core/lib/iomgr/time_averaged_stats.h",
585 "src/core/lib/iomgr/timer.h",
586 "src/core/lib/iomgr/timer_heap.h",
587 "src/core/lib/iomgr/udp_server.h",
588 "src/core/lib/iomgr/unix_sockets_posix.h",
589 "src/core/lib/iomgr/wakeup_fd_pipe.h",
590 "src/core/lib/iomgr/wakeup_fd_posix.h",
591 "src/core/lib/iomgr/workqueue.h",
592 "src/core/lib/iomgr/workqueue_posix.h",
593 "src/core/lib/iomgr/workqueue_windows.h",
594 "src/core/lib/json/json.h",
595 "src/core/lib/json/json_common.h",
596 "src/core/lib/json/json_reader.h",
597 "src/core/lib/json/json_writer.h",
598 "src/core/lib/surface/api_trace.h",
599 "src/core/lib/surface/call.h",
600 "src/core/lib/surface/call_test_only.h",
601 "src/core/lib/surface/channel.h",
602 "src/core/lib/surface/channel_init.h",
603 "src/core/lib/surface/channel_stack_type.h",
604 "src/core/lib/surface/completion_queue.h",
605 "src/core/lib/surface/event_string.h",
606 "src/core/lib/surface/init.h",
607 "src/core/lib/surface/lame_client.h",
608 "src/core/lib/surface/server.h",
609 "src/core/lib/surface/surface_trace.h",
610 "src/core/lib/transport/byte_stream.h",
611 "src/core/lib/transport/connectivity_state.h",
612 "src/core/lib/transport/metadata.h",
613 "src/core/lib/transport/metadata_batch.h",
614 "src/core/lib/transport/static_metadata.h",
615 "src/core/lib/transport/transport.h",
616 "src/core/lib/transport/transport_impl.h",
617 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700618 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700619 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
620 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
621 "src/core/ext/transport/chttp2/transport/frame.h",
622 "src/core/ext/transport/chttp2/transport/frame_data.h",
623 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
624 "src/core/ext/transport/chttp2/transport/frame_ping.h",
625 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
626 "src/core/ext/transport/chttp2/transport/frame_settings.h",
627 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
628 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
629 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
630 "src/core/ext/transport/chttp2/transport/hpack_table.h",
631 "src/core/ext/transport/chttp2/transport/http2_errors.h",
632 "src/core/ext/transport/chttp2/transport/huffsyms.h",
633 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
634 "src/core/ext/transport/chttp2/transport/internal.h",
635 "src/core/ext/transport/chttp2/transport/status_conversion.h",
636 "src/core/ext/transport/chttp2/transport/stream_map.h",
637 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
638 "src/core/ext/transport/chttp2/transport/varint.h",
639 "src/core/ext/transport/chttp2/alpn/alpn.h",
640 "src/core/ext/client_config/client_channel.h",
641 "src/core/ext/client_config/client_channel_factory.h",
642 "src/core/ext/client_config/client_config.h",
643 "src/core/ext/client_config/connector.h",
644 "src/core/ext/client_config/initial_connect_string.h",
645 "src/core/ext/client_config/lb_policy.h",
646 "src/core/ext/client_config/lb_policy_factory.h",
647 "src/core/ext/client_config/lb_policy_registry.h",
648 "src/core/ext/client_config/parse_address.h",
649 "src/core/ext/client_config/resolver.h",
650 "src/core/ext/client_config/resolver_factory.h",
651 "src/core/ext/client_config/resolver_registry.h",
652 "src/core/ext/client_config/subchannel.h",
653 "src/core/ext/client_config/subchannel_call_holder.h",
654 "src/core/ext/client_config/subchannel_index.h",
655 "src/core/ext/client_config/uri_parser.h",
656 "src/core/lib/security/context/security_context.h",
657 "src/core/lib/security/credentials/composite/composite_credentials.h",
658 "src/core/lib/security/credentials/credentials.h",
659 "src/core/lib/security/credentials/fake/fake_credentials.h",
660 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
661 "src/core/lib/security/credentials/iam/iam_credentials.h",
662 "src/core/lib/security/credentials/jwt/json_token.h",
663 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
664 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
665 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
666 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
667 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
668 "src/core/lib/security/transport/auth_filters.h",
669 "src/core/lib/security/transport/handshake.h",
670 "src/core/lib/security/transport/secure_endpoint.h",
671 "src/core/lib/security/transport/security_connector.h",
672 "src/core/lib/security/util/b64.h",
673 "src/core/lib/security/util/json_util.h",
674 "src/core/lib/tsi/fake_transport_security.h",
675 "src/core/lib/tsi/ssl_transport_security.h",
676 "src/core/lib/tsi/ssl_types.h",
677 "src/core/lib/tsi/transport_security.h",
678 "src/core/lib/tsi/transport_security_interface.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700679 "src/core/lib/surface/init.c",
680 "src/core/lib/channel/channel_args.c",
681 "src/core/lib/channel/channel_stack.c",
682 "src/core/lib/channel/channel_stack_builder.c",
683 "src/core/lib/channel/compress_filter.c",
684 "src/core/lib/channel/connected_channel.c",
685 "src/core/lib/channel/http_client_filter.c",
686 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintas37e516e2016-06-07 21:23:41 -0700687 "src/core/lib/compression/compression.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700688 "src/core/lib/compression/message_compress.c",
689 "src/core/lib/debug/trace.c",
690 "src/core/lib/http/format_request.c",
691 "src/core/lib/http/httpcli.c",
692 "src/core/lib/http/parser.c",
693 "src/core/lib/iomgr/closure.c",
694 "src/core/lib/iomgr/endpoint.c",
695 "src/core/lib/iomgr/endpoint_pair_posix.c",
696 "src/core/lib/iomgr/endpoint_pair_windows.c",
697 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
698 "src/core/lib/iomgr/ev_poll_posix.c",
699 "src/core/lib/iomgr/ev_posix.c",
700 "src/core/lib/iomgr/exec_ctx.c",
701 "src/core/lib/iomgr/executor.c",
702 "src/core/lib/iomgr/iocp_windows.c",
703 "src/core/lib/iomgr/iomgr.c",
704 "src/core/lib/iomgr/iomgr_posix.c",
705 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700706 "src/core/lib/iomgr/polling_entity.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700707 "src/core/lib/iomgr/pollset_set_windows.c",
708 "src/core/lib/iomgr/pollset_windows.c",
709 "src/core/lib/iomgr/resolve_address_posix.c",
710 "src/core/lib/iomgr/resolve_address_windows.c",
711 "src/core/lib/iomgr/sockaddr_utils.c",
712 "src/core/lib/iomgr/socket_utils_common_posix.c",
713 "src/core/lib/iomgr/socket_utils_linux.c",
714 "src/core/lib/iomgr/socket_utils_posix.c",
715 "src/core/lib/iomgr/socket_windows.c",
716 "src/core/lib/iomgr/tcp_client_posix.c",
717 "src/core/lib/iomgr/tcp_client_windows.c",
718 "src/core/lib/iomgr/tcp_posix.c",
719 "src/core/lib/iomgr/tcp_server_posix.c",
720 "src/core/lib/iomgr/tcp_server_windows.c",
721 "src/core/lib/iomgr/tcp_windows.c",
722 "src/core/lib/iomgr/time_averaged_stats.c",
723 "src/core/lib/iomgr/timer.c",
724 "src/core/lib/iomgr/timer_heap.c",
725 "src/core/lib/iomgr/udp_server.c",
726 "src/core/lib/iomgr/unix_sockets_posix.c",
727 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
728 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
729 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
730 "src/core/lib/iomgr/wakeup_fd_pipe.c",
731 "src/core/lib/iomgr/wakeup_fd_posix.c",
732 "src/core/lib/iomgr/workqueue_posix.c",
733 "src/core/lib/iomgr/workqueue_windows.c",
734 "src/core/lib/json/json.c",
735 "src/core/lib/json/json_reader.c",
736 "src/core/lib/json/json_string.c",
737 "src/core/lib/json/json_writer.c",
738 "src/core/lib/surface/alarm.c",
739 "src/core/lib/surface/api_trace.c",
740 "src/core/lib/surface/byte_buffer.c",
741 "src/core/lib/surface/byte_buffer_reader.c",
742 "src/core/lib/surface/call.c",
743 "src/core/lib/surface/call_details.c",
744 "src/core/lib/surface/call_log_batch.c",
745 "src/core/lib/surface/channel.c",
746 "src/core/lib/surface/channel_init.c",
747 "src/core/lib/surface/channel_ping.c",
748 "src/core/lib/surface/channel_stack_type.c",
749 "src/core/lib/surface/completion_queue.c",
750 "src/core/lib/surface/event_string.c",
751 "src/core/lib/surface/lame_client.c",
752 "src/core/lib/surface/metadata_array.c",
753 "src/core/lib/surface/server.c",
754 "src/core/lib/surface/validate_metadata.c",
755 "src/core/lib/surface/version.c",
756 "src/core/lib/transport/byte_stream.c",
757 "src/core/lib/transport/connectivity_state.c",
758 "src/core/lib/transport/metadata.c",
759 "src/core/lib/transport/metadata_batch.c",
760 "src/core/lib/transport/static_metadata.c",
761 "src/core/lib/transport/transport.c",
762 "src/core/lib/transport/transport_op_string.c",
763 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
764 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
765 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700766 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700767 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700768 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
769 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
770 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
771 "src/core/ext/transport/chttp2/transport/frame_data.c",
772 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
773 "src/core/ext/transport/chttp2/transport/frame_ping.c",
774 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
775 "src/core/ext/transport/chttp2/transport/frame_settings.c",
776 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
777 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
778 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
779 "src/core/ext/transport/chttp2/transport/hpack_table.c",
780 "src/core/ext/transport/chttp2/transport/huffsyms.c",
781 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
782 "src/core/ext/transport/chttp2/transport/parsing.c",
783 "src/core/ext/transport/chttp2/transport/status_conversion.c",
784 "src/core/ext/transport/chttp2/transport/stream_lists.c",
785 "src/core/ext/transport/chttp2/transport/stream_map.c",
786 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
787 "src/core/ext/transport/chttp2/transport/varint.c",
788 "src/core/ext/transport/chttp2/transport/writing.c",
789 "src/core/ext/transport/chttp2/alpn/alpn.c",
790 "src/core/ext/client_config/channel_connectivity.c",
791 "src/core/ext/client_config/client_channel.c",
792 "src/core/ext/client_config/client_channel_factory.c",
793 "src/core/ext/client_config/client_config.c",
794 "src/core/ext/client_config/client_config_plugin.c",
795 "src/core/ext/client_config/connector.c",
796 "src/core/ext/client_config/default_initial_connect_string.c",
797 "src/core/ext/client_config/initial_connect_string.c",
798 "src/core/ext/client_config/lb_policy.c",
799 "src/core/ext/client_config/lb_policy_factory.c",
800 "src/core/ext/client_config/lb_policy_registry.c",
801 "src/core/ext/client_config/parse_address.c",
802 "src/core/ext/client_config/resolver.c",
803 "src/core/ext/client_config/resolver_factory.c",
804 "src/core/ext/client_config/resolver_registry.c",
805 "src/core/ext/client_config/subchannel.c",
806 "src/core/ext/client_config/subchannel_call_holder.c",
807 "src/core/ext/client_config/subchannel_index.c",
808 "src/core/ext/client_config/uri_parser.c",
809 "src/core/lib/http/httpcli_security_connector.c",
810 "src/core/lib/security/context/security_context.c",
811 "src/core/lib/security/credentials/composite/composite_credentials.c",
812 "src/core/lib/security/credentials/credentials.c",
813 "src/core/lib/security/credentials/credentials_metadata.c",
814 "src/core/lib/security/credentials/fake/fake_credentials.c",
815 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700816 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700817 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
818 "src/core/lib/security/credentials/iam/iam_credentials.c",
819 "src/core/lib/security/credentials/jwt/json_token.c",
820 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
821 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
822 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
823 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
824 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
825 "src/core/lib/security/transport/client_auth_filter.c",
826 "src/core/lib/security/transport/handshake.c",
827 "src/core/lib/security/transport/secure_endpoint.c",
828 "src/core/lib/security/transport/security_connector.c",
829 "src/core/lib/security/transport/server_auth_filter.c",
830 "src/core/lib/security/util/b64.c",
831 "src/core/lib/security/util/json_util.c",
832 "src/core/lib/surface/init_secure.c",
833 "src/core/lib/tsi/fake_transport_security.c",
834 "src/core/lib/tsi/ssl_transport_security.c",
835 "src/core/lib/tsi/transport_security.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700836 "src/core/plugin_registry/grpc_cronet_plugin_registry.c",
837 ],
838 hdrs = [
839 "include/grpc/byte_buffer.h",
840 "include/grpc/byte_buffer_reader.h",
841 "include/grpc/compression.h",
842 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700843 "include/grpc/grpc_posix.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700844 "include/grpc/status.h",
845 "include/grpc/impl/codegen/byte_buffer.h",
846 "include/grpc/impl/codegen/byte_buffer_reader.h",
847 "include/grpc/impl/codegen/compression_types.h",
848 "include/grpc/impl/codegen/connectivity_state.h",
849 "include/grpc/impl/codegen/grpc_types.h",
850 "include/grpc/impl/codegen/propagation_bits.h",
851 "include/grpc/impl/codegen/status.h",
852 "include/grpc/impl/codegen/alloc.h",
853 "include/grpc/impl/codegen/atm.h",
854 "include/grpc/impl/codegen/atm_gcc_atomic.h",
855 "include/grpc/impl/codegen/atm_gcc_sync.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700856 "include/grpc/impl/codegen/atm_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700857 "include/grpc/impl/codegen/log.h",
858 "include/grpc/impl/codegen/port_platform.h",
859 "include/grpc/impl/codegen/slice.h",
860 "include/grpc/impl/codegen/slice_buffer.h",
861 "include/grpc/impl/codegen/sync.h",
862 "include/grpc/impl/codegen/sync_generic.h",
863 "include/grpc/impl/codegen/sync_posix.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700864 "include/grpc/impl/codegen/sync_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700865 "include/grpc/impl/codegen/time.h",
866 "include/grpc/grpc_cronet.h",
867 "include/grpc/grpc_security.h",
868 "include/grpc/grpc_security_constants.h",
869 ],
870 includes = [
871 "include",
872 ".",
873 ],
874 deps = [
875 "//external:libssl",
876 ":gpr",
877 ],
878)
879
880
881
882cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700883 name = "grpc_unsecure",
884 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700885 "src/core/lib/channel/channel_args.h",
886 "src/core/lib/channel/channel_stack.h",
887 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700888 "src/core/lib/channel/compress_filter.h",
889 "src/core/lib/channel/connected_channel.h",
890 "src/core/lib/channel/context.h",
891 "src/core/lib/channel/http_client_filter.h",
892 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700893 "src/core/lib/compression/algorithm_metadata.h",
894 "src/core/lib/compression/message_compress.h",
895 "src/core/lib/debug/trace.h",
896 "src/core/lib/http/format_request.h",
897 "src/core/lib/http/httpcli.h",
898 "src/core/lib/http/parser.h",
899 "src/core/lib/iomgr/closure.h",
900 "src/core/lib/iomgr/endpoint.h",
901 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700902 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700903 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700904 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700905 "src/core/lib/iomgr/exec_ctx.h",
906 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700907 "src/core/lib/iomgr/iocp_windows.h",
908 "src/core/lib/iomgr/iomgr.h",
909 "src/core/lib/iomgr/iomgr_internal.h",
910 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700911 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700912 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700913 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700914 "src/core/lib/iomgr/pollset_set_windows.h",
915 "src/core/lib/iomgr/pollset_windows.h",
916 "src/core/lib/iomgr/resolve_address.h",
917 "src/core/lib/iomgr/sockaddr.h",
918 "src/core/lib/iomgr/sockaddr_posix.h",
919 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700920 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700921 "src/core/lib/iomgr/socket_utils_posix.h",
922 "src/core/lib/iomgr/socket_windows.h",
923 "src/core/lib/iomgr/tcp_client.h",
924 "src/core/lib/iomgr/tcp_posix.h",
925 "src/core/lib/iomgr/tcp_server.h",
926 "src/core/lib/iomgr/tcp_windows.h",
927 "src/core/lib/iomgr/time_averaged_stats.h",
928 "src/core/lib/iomgr/timer.h",
929 "src/core/lib/iomgr/timer_heap.h",
930 "src/core/lib/iomgr/udp_server.h",
931 "src/core/lib/iomgr/unix_sockets_posix.h",
932 "src/core/lib/iomgr/wakeup_fd_pipe.h",
933 "src/core/lib/iomgr/wakeup_fd_posix.h",
934 "src/core/lib/iomgr/workqueue.h",
935 "src/core/lib/iomgr/workqueue_posix.h",
936 "src/core/lib/iomgr/workqueue_windows.h",
937 "src/core/lib/json/json.h",
938 "src/core/lib/json/json_common.h",
939 "src/core/lib/json/json_reader.h",
940 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700941 "src/core/lib/surface/api_trace.h",
942 "src/core/lib/surface/call.h",
943 "src/core/lib/surface/call_test_only.h",
944 "src/core/lib/surface/channel.h",
945 "src/core/lib/surface/channel_init.h",
946 "src/core/lib/surface/channel_stack_type.h",
947 "src/core/lib/surface/completion_queue.h",
948 "src/core/lib/surface/event_string.h",
949 "src/core/lib/surface/init.h",
950 "src/core/lib/surface/lame_client.h",
951 "src/core/lib/surface/server.h",
952 "src/core/lib/surface/surface_trace.h",
953 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700954 "src/core/lib/transport/connectivity_state.h",
955 "src/core/lib/transport/metadata.h",
956 "src/core/lib/transport/metadata_batch.h",
957 "src/core/lib/transport/static_metadata.h",
958 "src/core/lib/transport/transport.h",
959 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700960 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700961 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
962 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
963 "src/core/ext/transport/chttp2/transport/frame.h",
964 "src/core/ext/transport/chttp2/transport/frame_data.h",
965 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
966 "src/core/ext/transport/chttp2/transport/frame_ping.h",
967 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
968 "src/core/ext/transport/chttp2/transport/frame_settings.h",
969 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
970 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
971 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
972 "src/core/ext/transport/chttp2/transport/hpack_table.h",
973 "src/core/ext/transport/chttp2/transport/http2_errors.h",
974 "src/core/ext/transport/chttp2/transport/huffsyms.h",
975 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
976 "src/core/ext/transport/chttp2/transport/internal.h",
977 "src/core/ext/transport/chttp2/transport/status_conversion.h",
978 "src/core/ext/transport/chttp2/transport/stream_map.h",
979 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
980 "src/core/ext/transport/chttp2/transport/varint.h",
981 "src/core/ext/transport/chttp2/alpn/alpn.h",
982 "src/core/ext/client_config/client_channel.h",
983 "src/core/ext/client_config/client_channel_factory.h",
984 "src/core/ext/client_config/client_config.h",
985 "src/core/ext/client_config/connector.h",
986 "src/core/ext/client_config/initial_connect_string.h",
987 "src/core/ext/client_config/lb_policy.h",
988 "src/core/ext/client_config/lb_policy_factory.h",
989 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700990 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700991 "src/core/ext/client_config/resolver.h",
992 "src/core/ext/client_config/resolver_factory.h",
993 "src/core/ext/client_config/resolver_registry.h",
994 "src/core/ext/client_config/subchannel.h",
995 "src/core/ext/client_config/subchannel_call_holder.h",
996 "src/core/ext/client_config/subchannel_index.h",
997 "src/core/ext/client_config/uri_parser.h",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -0700998 "src/core/ext/load_reporting/load_reporting.h",
999 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001000 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001001 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001002 "src/core/ext/census/aggregation.h",
1003 "src/core/ext/census/census_interface.h",
1004 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001005 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001006 "src/core/ext/census/grpc_filter.h",
1007 "src/core/ext/census/mlog.h",
1008 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001009 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001010 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001011 "src/core/lib/channel/channel_args.c",
1012 "src/core/lib/channel/channel_stack.c",
1013 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001014 "src/core/lib/channel/compress_filter.c",
1015 "src/core/lib/channel/connected_channel.c",
1016 "src/core/lib/channel/http_client_filter.c",
1017 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001018 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001019 "src/core/lib/compression/message_compress.c",
1020 "src/core/lib/debug/trace.c",
1021 "src/core/lib/http/format_request.c",
1022 "src/core/lib/http/httpcli.c",
1023 "src/core/lib/http/parser.c",
1024 "src/core/lib/iomgr/closure.c",
1025 "src/core/lib/iomgr/endpoint.c",
1026 "src/core/lib/iomgr/endpoint_pair_posix.c",
1027 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001028 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001029 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001030 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001031 "src/core/lib/iomgr/exec_ctx.c",
1032 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001033 "src/core/lib/iomgr/iocp_windows.c",
1034 "src/core/lib/iomgr/iomgr.c",
1035 "src/core/lib/iomgr/iomgr_posix.c",
1036 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001037 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001038 "src/core/lib/iomgr/pollset_set_windows.c",
1039 "src/core/lib/iomgr/pollset_windows.c",
1040 "src/core/lib/iomgr/resolve_address_posix.c",
1041 "src/core/lib/iomgr/resolve_address_windows.c",
1042 "src/core/lib/iomgr/sockaddr_utils.c",
1043 "src/core/lib/iomgr/socket_utils_common_posix.c",
1044 "src/core/lib/iomgr/socket_utils_linux.c",
1045 "src/core/lib/iomgr/socket_utils_posix.c",
1046 "src/core/lib/iomgr/socket_windows.c",
1047 "src/core/lib/iomgr/tcp_client_posix.c",
1048 "src/core/lib/iomgr/tcp_client_windows.c",
1049 "src/core/lib/iomgr/tcp_posix.c",
1050 "src/core/lib/iomgr/tcp_server_posix.c",
1051 "src/core/lib/iomgr/tcp_server_windows.c",
1052 "src/core/lib/iomgr/tcp_windows.c",
1053 "src/core/lib/iomgr/time_averaged_stats.c",
1054 "src/core/lib/iomgr/timer.c",
1055 "src/core/lib/iomgr/timer_heap.c",
1056 "src/core/lib/iomgr/udp_server.c",
1057 "src/core/lib/iomgr/unix_sockets_posix.c",
1058 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1059 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1060 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1061 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1062 "src/core/lib/iomgr/wakeup_fd_posix.c",
1063 "src/core/lib/iomgr/workqueue_posix.c",
1064 "src/core/lib/iomgr/workqueue_windows.c",
1065 "src/core/lib/json/json.c",
1066 "src/core/lib/json/json_reader.c",
1067 "src/core/lib/json/json_string.c",
1068 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001069 "src/core/lib/surface/alarm.c",
1070 "src/core/lib/surface/api_trace.c",
1071 "src/core/lib/surface/byte_buffer.c",
1072 "src/core/lib/surface/byte_buffer_reader.c",
1073 "src/core/lib/surface/call.c",
1074 "src/core/lib/surface/call_details.c",
1075 "src/core/lib/surface/call_log_batch.c",
1076 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001077 "src/core/lib/surface/channel_init.c",
1078 "src/core/lib/surface/channel_ping.c",
1079 "src/core/lib/surface/channel_stack_type.c",
1080 "src/core/lib/surface/completion_queue.c",
1081 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001082 "src/core/lib/surface/lame_client.c",
1083 "src/core/lib/surface/metadata_array.c",
1084 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001085 "src/core/lib/surface/validate_metadata.c",
1086 "src/core/lib/surface/version.c",
1087 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001088 "src/core/lib/transport/connectivity_state.c",
1089 "src/core/lib/transport/metadata.c",
1090 "src/core/lib/transport/metadata_batch.c",
1091 "src/core/lib/transport/static_metadata.c",
1092 "src/core/lib/transport/transport.c",
1093 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001094 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001095 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001096 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001097 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1098 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1099 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1100 "src/core/ext/transport/chttp2/transport/frame_data.c",
1101 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1102 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1103 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1104 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1105 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1106 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1107 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1108 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1109 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1110 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1111 "src/core/ext/transport/chttp2/transport/parsing.c",
1112 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1113 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1114 "src/core/ext/transport/chttp2/transport/stream_map.c",
1115 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1116 "src/core/ext/transport/chttp2/transport/varint.c",
1117 "src/core/ext/transport/chttp2/transport/writing.c",
1118 "src/core/ext/transport/chttp2/alpn/alpn.c",
1119 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001120 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001121 "src/core/ext/client_config/channel_connectivity.c",
1122 "src/core/ext/client_config/client_channel.c",
1123 "src/core/ext/client_config/client_channel_factory.c",
1124 "src/core/ext/client_config/client_config.c",
1125 "src/core/ext/client_config/client_config_plugin.c",
1126 "src/core/ext/client_config/connector.c",
1127 "src/core/ext/client_config/default_initial_connect_string.c",
1128 "src/core/ext/client_config/initial_connect_string.c",
1129 "src/core/ext/client_config/lb_policy.c",
1130 "src/core/ext/client_config/lb_policy_factory.c",
1131 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001132 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001133 "src/core/ext/client_config/resolver.c",
1134 "src/core/ext/client_config/resolver_factory.c",
1135 "src/core/ext/client_config/resolver_registry.c",
1136 "src/core/ext/client_config/subchannel.c",
1137 "src/core/ext/client_config/subchannel_call_holder.c",
1138 "src/core/ext/client_config/subchannel_index.c",
1139 "src/core/ext/client_config/uri_parser.c",
1140 "src/core/ext/resolver/dns/native/dns_resolver.c",
1141 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001142 "src/core/ext/load_reporting/load_reporting.c",
1143 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001144 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001145 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001146 "src/core/ext/lb_policy/pick_first/pick_first.c",
1147 "src/core/ext/lb_policy/round_robin/round_robin.c",
1148 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001149 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001150 "src/core/ext/census/grpc_context.c",
1151 "src/core/ext/census/grpc_filter.c",
1152 "src/core/ext/census/grpc_plugin.c",
1153 "src/core/ext/census/initialize.c",
1154 "src/core/ext/census/mlog.c",
1155 "src/core/ext/census/operation.c",
1156 "src/core/ext/census/placeholders.c",
1157 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001158 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001159 ],
1160 hdrs = [
1161 "include/grpc/byte_buffer.h",
1162 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -07001163 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001164 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001165 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001166 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -08001167 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001168 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -08001169 "include/grpc/impl/codegen/compression_types.h",
1170 "include/grpc/impl/codegen/connectivity_state.h",
1171 "include/grpc/impl/codegen/grpc_types.h",
1172 "include/grpc/impl/codegen/propagation_bits.h",
1173 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001174 "include/grpc/impl/codegen/alloc.h",
1175 "include/grpc/impl/codegen/atm.h",
1176 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1177 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001178 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001179 "include/grpc/impl/codegen/log.h",
1180 "include/grpc/impl/codegen/port_platform.h",
1181 "include/grpc/impl/codegen/slice.h",
1182 "include/grpc/impl/codegen/slice_buffer.h",
1183 "include/grpc/impl/codegen/sync.h",
1184 "include/grpc/impl/codegen/sync_generic.h",
1185 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001186 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001187 "include/grpc/impl/codegen/time.h",
1188 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001189 ],
1190 includes = [
1191 "include",
1192 ".",
1193 ],
1194 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001195 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001196 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001197 ],
Rob Earhartaf379b22016-01-21 13:43:09 -08001198 copts = [
1199 "-std=gnu99",
1200 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001201)
1202
1203
Rob Earhartb7b8d052016-03-29 11:35:29 -07001204
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001205cc_library(
Hongwei Wangda8858f2015-07-16 16:18:19 -07001206 name = "grpc_zookeeper",
1207 srcs = [
Craig Tillerb11b34a2016-04-01 12:30:06 -07001208 "src/core/ext/resolver/zookeeper/zookeeper_resolver.c",
Hongwei Wangda8858f2015-07-16 16:18:19 -07001209 ],
1210 hdrs = [
Hongwei Wanga3780a82015-07-17 15:27:18 -07001211 "include/grpc/grpc_zookeeper.h",
Hongwei Wangda8858f2015-07-16 16:18:19 -07001212 ],
1213 includes = [
1214 "include",
1215 ".",
1216 ],
1217 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001218 ":gpr",
Hongwei Wangda8858f2015-07-16 16:18:19 -07001219 ":grpc",
1220 ],
1221)
1222
1223
Rob Earhartb7b8d052016-03-29 11:35:29 -07001224
Hongwei Wangda8858f2015-07-16 16:18:19 -07001225cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001226 name = "grpc++",
1227 srcs = [
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001228 "include/grpc++/impl/codegen/core_codegen.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001229 "src/cpp/client/secure_credentials.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001230 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001231 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001232 "src/cpp/client/create_channel_internal.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001233 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001234 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001235 "src/cpp/client/secure_credentials.cc",
1236 "src/cpp/common/auth_property_iterator.cc",
1237 "src/cpp/common/secure_auth_context.cc",
1238 "src/cpp/common/secure_channel_arguments.cc",
1239 "src/cpp/common/secure_create_auth_context.cc",
1240 "src/cpp/server/secure_server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001241 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001242 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001243 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001244 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001245 "src/cpp/client/create_channel_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001246 "src/cpp/client/credentials.cc",
1247 "src/cpp/client/generic_stub.cc",
1248 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001249 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001250 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001251 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001252 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001253 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001254 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001255 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001256 "src/cpp/server/insecure_server_credentials.cc",
1257 "src/cpp/server/server.cc",
1258 "src/cpp/server/server_builder.cc",
1259 "src/cpp/server/server_context.cc",
1260 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001261 "src/cpp/server/server_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001262 "src/cpp/util/byte_buffer.cc",
1263 "src/cpp/util/slice.cc",
1264 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001265 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001266 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001267 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001268 ],
1269 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001270 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001271 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001272 "include/grpc++/client_context.h",
1273 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001274 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001275 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001276 "include/grpc++/generic/async_generic_service.h",
1277 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001278 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001279 "include/grpc++/impl/call.h",
1280 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001281 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001282 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001283 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001284 "include/grpc++/impl/rpc_method.h",
1285 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001286 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001287 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001288 "include/grpc++/impl/server_builder_plugin.h",
1289 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001290 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001291 "include/grpc++/impl/sync.h",
1292 "include/grpc++/impl/sync_cxx11.h",
1293 "include/grpc++/impl/sync_no_cxx11.h",
1294 "include/grpc++/impl/thd.h",
1295 "include/grpc++/impl/thd_cxx11.h",
1296 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001297 "include/grpc++/security/auth_context.h",
1298 "include/grpc++/security/auth_metadata_processor.h",
1299 "include/grpc++/security/credentials.h",
1300 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001301 "include/grpc++/server.h",
1302 "include/grpc++/server_builder.h",
1303 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001304 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001305 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001306 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001307 "include/grpc++/support/byte_buffer.h",
1308 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001309 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001310 "include/grpc++/support/slice.h",
1311 "include/grpc++/support/status.h",
1312 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001313 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001314 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001315 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001316 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001317 "include/grpc++/impl/codegen/async_stream.h",
1318 "include/grpc++/impl/codegen/async_unary_call.h",
1319 "include/grpc++/impl/codegen/call.h",
1320 "include/grpc++/impl/codegen/call_hook.h",
1321 "include/grpc++/impl/codegen/channel_interface.h",
1322 "include/grpc++/impl/codegen/client_context.h",
1323 "include/grpc++/impl/codegen/client_unary_call.h",
1324 "include/grpc++/impl/codegen/completion_queue.h",
1325 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001326 "include/grpc++/impl/codegen/config.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001327 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001328 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001329 "include/grpc++/impl/codegen/grpc_library.h",
1330 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001331 "include/grpc++/impl/codegen/rpc_method.h",
1332 "include/grpc++/impl/codegen/rpc_service_method.h",
1333 "include/grpc++/impl/codegen/security/auth_context.h",
1334 "include/grpc++/impl/codegen/serialization_traits.h",
1335 "include/grpc++/impl/codegen/server_context.h",
1336 "include/grpc++/impl/codegen/server_interface.h",
1337 "include/grpc++/impl/codegen/service_type.h",
1338 "include/grpc++/impl/codegen/status.h",
1339 "include/grpc++/impl/codegen/status_code_enum.h",
1340 "include/grpc++/impl/codegen/string_ref.h",
1341 "include/grpc++/impl/codegen/stub_options.h",
1342 "include/grpc++/impl/codegen/sync.h",
1343 "include/grpc++/impl/codegen/sync_cxx11.h",
1344 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1345 "include/grpc++/impl/codegen/sync_stream.h",
1346 "include/grpc++/impl/codegen/time.h",
1347 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001348 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001349 "include/grpc/impl/codegen/compression_types.h",
1350 "include/grpc/impl/codegen/connectivity_state.h",
1351 "include/grpc/impl/codegen/grpc_types.h",
1352 "include/grpc/impl/codegen/propagation_bits.h",
1353 "include/grpc/impl/codegen/status.h",
1354 "include/grpc/impl/codegen/alloc.h",
1355 "include/grpc/impl/codegen/atm.h",
1356 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1357 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001358 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001359 "include/grpc/impl/codegen/log.h",
1360 "include/grpc/impl/codegen/port_platform.h",
1361 "include/grpc/impl/codegen/slice.h",
1362 "include/grpc/impl/codegen/slice_buffer.h",
1363 "include/grpc/impl/codegen/sync.h",
1364 "include/grpc/impl/codegen/sync_generic.h",
1365 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001366 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001367 "include/grpc/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001368 ],
1369 includes = [
1370 "include",
1371 ".",
1372 ],
1373 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001374 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001375 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001376 ":grpc",
1377 ],
1378)
1379
1380
Rob Earhartb7b8d052016-03-29 11:35:29 -07001381
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001382cc_library(
Yuchen Zengc84ed682016-05-04 16:30:11 -07001383 name = "grpc++_reflection",
1384 srcs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001385 "src/cpp/ext/proto_server_reflection.h",
1386 "src/cpp/ext/proto_server_reflection.cc",
1387 "src/cpp/ext/proto_server_reflection_plugin.cc",
1388 "src/cpp/ext/reflection.grpc.pb.cc",
1389 "src/cpp/ext/reflection.pb.cc",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001390 ],
1391 hdrs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001392 "include/grpc++/ext/proto_server_reflection_plugin.h",
1393 "include/grpc++/ext/reflection.grpc.pb.h",
1394 "include/grpc++/ext/reflection.pb.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001395 "include/grpc++/impl/codegen/proto_utils.h",
1396 "include/grpc++/impl/codegen/async_stream.h",
1397 "include/grpc++/impl/codegen/async_unary_call.h",
1398 "include/grpc++/impl/codegen/call.h",
1399 "include/grpc++/impl/codegen/call_hook.h",
1400 "include/grpc++/impl/codegen/channel_interface.h",
1401 "include/grpc++/impl/codegen/client_context.h",
1402 "include/grpc++/impl/codegen/client_unary_call.h",
1403 "include/grpc++/impl/codegen/completion_queue.h",
1404 "include/grpc++/impl/codegen/completion_queue_tag.h",
1405 "include/grpc++/impl/codegen/config.h",
1406 "include/grpc++/impl/codegen/core_codegen_interface.h",
1407 "include/grpc++/impl/codegen/create_auth_context.h",
1408 "include/grpc++/impl/codegen/grpc_library.h",
1409 "include/grpc++/impl/codegen/method_handler_impl.h",
1410 "include/grpc++/impl/codegen/rpc_method.h",
1411 "include/grpc++/impl/codegen/rpc_service_method.h",
1412 "include/grpc++/impl/codegen/security/auth_context.h",
1413 "include/grpc++/impl/codegen/serialization_traits.h",
1414 "include/grpc++/impl/codegen/server_context.h",
1415 "include/grpc++/impl/codegen/server_interface.h",
1416 "include/grpc++/impl/codegen/service_type.h",
1417 "include/grpc++/impl/codegen/status.h",
1418 "include/grpc++/impl/codegen/status_code_enum.h",
1419 "include/grpc++/impl/codegen/string_ref.h",
1420 "include/grpc++/impl/codegen/stub_options.h",
1421 "include/grpc++/impl/codegen/sync.h",
1422 "include/grpc++/impl/codegen/sync_cxx11.h",
1423 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1424 "include/grpc++/impl/codegen/sync_stream.h",
1425 "include/grpc++/impl/codegen/time.h",
1426 "include/grpc/impl/codegen/byte_buffer.h",
1427 "include/grpc/impl/codegen/byte_buffer_reader.h",
1428 "include/grpc/impl/codegen/compression_types.h",
1429 "include/grpc/impl/codegen/connectivity_state.h",
1430 "include/grpc/impl/codegen/grpc_types.h",
1431 "include/grpc/impl/codegen/propagation_bits.h",
1432 "include/grpc/impl/codegen/status.h",
1433 "include/grpc/impl/codegen/alloc.h",
1434 "include/grpc/impl/codegen/atm.h",
1435 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1436 "include/grpc/impl/codegen/atm_gcc_sync.h",
1437 "include/grpc/impl/codegen/atm_windows.h",
1438 "include/grpc/impl/codegen/log.h",
1439 "include/grpc/impl/codegen/port_platform.h",
1440 "include/grpc/impl/codegen/slice.h",
1441 "include/grpc/impl/codegen/slice_buffer.h",
1442 "include/grpc/impl/codegen/sync.h",
1443 "include/grpc/impl/codegen/sync_generic.h",
1444 "include/grpc/impl/codegen/sync_posix.h",
1445 "include/grpc/impl/codegen/sync_windows.h",
1446 "include/grpc/impl/codegen/time.h",
1447 "include/grpc++/impl/codegen/config_protobuf.h",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001448 ],
1449 includes = [
1450 "include",
1451 ".",
1452 ],
1453 deps = [
Yuchen Zengc6bf5f72016-06-07 14:41:01 -07001454 ":grpc++",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001455 ],
1456)
1457
1458
1459
1460cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001461 name = "grpc++_unsecure",
1462 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001463 "src/cpp/client/create_channel_internal.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001464 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001465 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001466 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001467 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001468 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001469 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001470 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001471 "src/cpp/client/create_channel_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001472 "src/cpp/client/credentials.cc",
1473 "src/cpp/client/generic_stub.cc",
1474 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001475 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001476 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001477 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001478 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001479 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001480 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001481 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001482 "src/cpp/server/insecure_server_credentials.cc",
1483 "src/cpp/server/server.cc",
1484 "src/cpp/server/server_builder.cc",
1485 "src/cpp/server/server_context.cc",
1486 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001487 "src/cpp/server/server_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001488 "src/cpp/util/byte_buffer.cc",
1489 "src/cpp/util/slice.cc",
1490 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001491 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001492 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001493 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001494 ],
1495 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001496 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001497 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001498 "include/grpc++/client_context.h",
1499 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001500 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001501 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001502 "include/grpc++/generic/async_generic_service.h",
1503 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001504 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001505 "include/grpc++/impl/call.h",
1506 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001507 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001508 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001509 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001510 "include/grpc++/impl/rpc_method.h",
1511 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001512 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001513 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001514 "include/grpc++/impl/server_builder_plugin.h",
1515 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001516 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001517 "include/grpc++/impl/sync.h",
1518 "include/grpc++/impl/sync_cxx11.h",
1519 "include/grpc++/impl/sync_no_cxx11.h",
1520 "include/grpc++/impl/thd.h",
1521 "include/grpc++/impl/thd_cxx11.h",
1522 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001523 "include/grpc++/security/auth_context.h",
1524 "include/grpc++/security/auth_metadata_processor.h",
1525 "include/grpc++/security/credentials.h",
1526 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001527 "include/grpc++/server.h",
1528 "include/grpc++/server_builder.h",
1529 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001530 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001531 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001532 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001533 "include/grpc++/support/byte_buffer.h",
1534 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001535 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001536 "include/grpc++/support/slice.h",
1537 "include/grpc++/support/status.h",
1538 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001539 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001540 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001541 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001542 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001543 "include/grpc++/impl/codegen/async_stream.h",
1544 "include/grpc++/impl/codegen/async_unary_call.h",
1545 "include/grpc++/impl/codegen/call.h",
1546 "include/grpc++/impl/codegen/call_hook.h",
1547 "include/grpc++/impl/codegen/channel_interface.h",
1548 "include/grpc++/impl/codegen/client_context.h",
1549 "include/grpc++/impl/codegen/client_unary_call.h",
1550 "include/grpc++/impl/codegen/completion_queue.h",
1551 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001552 "include/grpc++/impl/codegen/config.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001553 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001554 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001555 "include/grpc++/impl/codegen/grpc_library.h",
1556 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001557 "include/grpc++/impl/codegen/rpc_method.h",
1558 "include/grpc++/impl/codegen/rpc_service_method.h",
1559 "include/grpc++/impl/codegen/security/auth_context.h",
1560 "include/grpc++/impl/codegen/serialization_traits.h",
1561 "include/grpc++/impl/codegen/server_context.h",
1562 "include/grpc++/impl/codegen/server_interface.h",
1563 "include/grpc++/impl/codegen/service_type.h",
1564 "include/grpc++/impl/codegen/status.h",
1565 "include/grpc++/impl/codegen/status_code_enum.h",
1566 "include/grpc++/impl/codegen/string_ref.h",
1567 "include/grpc++/impl/codegen/stub_options.h",
1568 "include/grpc++/impl/codegen/sync.h",
1569 "include/grpc++/impl/codegen/sync_cxx11.h",
1570 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1571 "include/grpc++/impl/codegen/sync_stream.h",
1572 "include/grpc++/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001573 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001574 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001575 "include/grpc/impl/codegen/compression_types.h",
1576 "include/grpc/impl/codegen/connectivity_state.h",
1577 "include/grpc/impl/codegen/grpc_types.h",
1578 "include/grpc/impl/codegen/propagation_bits.h",
1579 "include/grpc/impl/codegen/status.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001580 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001581 "include/grpc/impl/codegen/atm.h",
1582 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1583 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001584 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001585 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001586 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001587 "include/grpc/impl/codegen/slice.h",
1588 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001589 "include/grpc/impl/codegen/sync.h",
1590 "include/grpc/impl/codegen/sync_generic.h",
1591 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001592 "include/grpc/impl/codegen/sync_windows.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001593 "include/grpc/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001594 ],
1595 includes = [
1596 "include",
1597 ".",
1598 ],
1599 deps = [
1600 "//external:protobuf_clib",
1601 ":gpr",
1602 ":grpc_unsecure",
1603 ":grpc",
1604 ],
1605)
1606
1607
1608
1609cc_library(
1610 name = "grpc_plugin_support",
1611 srcs = [
1612 "src/compiler/config.h",
1613 "src/compiler/cpp_generator.h",
1614 "src/compiler/cpp_generator_helpers.h",
1615 "src/compiler/csharp_generator.h",
1616 "src/compiler/csharp_generator_helpers.h",
1617 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001618 "src/compiler/node_generator.h",
1619 "src/compiler/node_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001620 "src/compiler/objective_c_generator.h",
1621 "src/compiler/objective_c_generator_helpers.h",
1622 "src/compiler/python_generator.h",
1623 "src/compiler/ruby_generator.h",
1624 "src/compiler/ruby_generator_helpers-inl.h",
1625 "src/compiler/ruby_generator_map-inl.h",
1626 "src/compiler/ruby_generator_string-inl.h",
1627 "src/compiler/cpp_generator.cc",
1628 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001629 "src/compiler/node_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001630 "src/compiler/objective_c_generator.cc",
1631 "src/compiler/python_generator.cc",
1632 "src/compiler/ruby_generator.cc",
1633 ],
1634 hdrs = [
Craig Tiller03915e52016-04-07 09:15:10 -07001635 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001636 ],
1637 includes = [
1638 "include",
1639 ".",
1640 ],
1641 deps = [
1642 "//external:protobuf_compiler",
1643 ],
1644)
1645
1646
Rob Earhartb7b8d052016-03-29 11:35:29 -07001647
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001648cc_library(
1649 name = "grpc_csharp_ext",
1650 srcs = [
1651 "src/csharp/ext/grpc_csharp_ext.c",
1652 ],
1653 hdrs = [
1654 ],
1655 includes = [
1656 "include",
1657 ".",
1658 ],
1659 deps = [
Craig Tillerd1697d92016-04-05 16:05:46 -07001660 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001661 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001662 ],
1663)
1664
1665
1666
Rob Earhartb7b8d052016-03-29 11:35:29 -07001667
Jorge Canizales140bca82015-06-20 09:47:00 -07001668objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001669 name = "gpr_objc",
1670 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001671 "src/core/lib/profiling/basic_timers.c",
1672 "src/core/lib/profiling/stap_timers.c",
1673 "src/core/lib/support/alloc.c",
1674 "src/core/lib/support/avl.c",
1675 "src/core/lib/support/backoff.c",
1676 "src/core/lib/support/cmdline.c",
1677 "src/core/lib/support/cpu_iphone.c",
1678 "src/core/lib/support/cpu_linux.c",
1679 "src/core/lib/support/cpu_posix.c",
1680 "src/core/lib/support/cpu_windows.c",
1681 "src/core/lib/support/env_linux.c",
1682 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001683 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001684 "src/core/lib/support/histogram.c",
1685 "src/core/lib/support/host_port.c",
1686 "src/core/lib/support/load_file.c",
1687 "src/core/lib/support/log.c",
1688 "src/core/lib/support/log_android.c",
1689 "src/core/lib/support/log_linux.c",
1690 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001691 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001692 "src/core/lib/support/murmur_hash.c",
1693 "src/core/lib/support/slice.c",
1694 "src/core/lib/support/slice_buffer.c",
1695 "src/core/lib/support/stack_lockfree.c",
1696 "src/core/lib/support/string.c",
1697 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001698 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001699 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001700 "src/core/lib/support/subprocess_posix.c",
1701 "src/core/lib/support/subprocess_windows.c",
1702 "src/core/lib/support/sync.c",
1703 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001704 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001705 "src/core/lib/support/thd.c",
1706 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001707 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001708 "src/core/lib/support/time.c",
1709 "src/core/lib/support/time_posix.c",
1710 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001711 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001712 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001713 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001714 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001715 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001716 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001717 ],
1718 hdrs = [
1719 "include/grpc/support/alloc.h",
1720 "include/grpc/support/atm.h",
1721 "include/grpc/support/atm_gcc_atomic.h",
1722 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001723 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001724 "include/grpc/support/avl.h",
1725 "include/grpc/support/cmdline.h",
1726 "include/grpc/support/cpu.h",
1727 "include/grpc/support/histogram.h",
1728 "include/grpc/support/host_port.h",
1729 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001730 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001731 "include/grpc/support/port_platform.h",
1732 "include/grpc/support/slice.h",
1733 "include/grpc/support/slice_buffer.h",
1734 "include/grpc/support/string_util.h",
1735 "include/grpc/support/subprocess.h",
1736 "include/grpc/support/sync.h",
1737 "include/grpc/support/sync_generic.h",
1738 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001739 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001740 "include/grpc/support/thd.h",
1741 "include/grpc/support/time.h",
1742 "include/grpc/support/tls.h",
1743 "include/grpc/support/tls_gcc.h",
1744 "include/grpc/support/tls_msvc.h",
1745 "include/grpc/support/tls_pthread.h",
1746 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001747 "include/grpc/impl/codegen/alloc.h",
1748 "include/grpc/impl/codegen/atm.h",
1749 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1750 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001751 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001752 "include/grpc/impl/codegen/log.h",
1753 "include/grpc/impl/codegen/port_platform.h",
1754 "include/grpc/impl/codegen/slice.h",
1755 "include/grpc/impl/codegen/slice_buffer.h",
1756 "include/grpc/impl/codegen/sync.h",
1757 "include/grpc/impl/codegen/sync_generic.h",
1758 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001759 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001760 "include/grpc/impl/codegen/time.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001761 "src/core/lib/profiling/timers.h",
1762 "src/core/lib/support/backoff.h",
1763 "src/core/lib/support/block_annotate.h",
1764 "src/core/lib/support/env.h",
1765 "src/core/lib/support/load_file.h",
1766 "src/core/lib/support/murmur_hash.h",
1767 "src/core/lib/support/stack_lockfree.h",
1768 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001769 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001770 "src/core/lib/support/thd_internal.h",
1771 "src/core/lib/support/time_precise.h",
1772 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001773 ],
1774 includes = [
1775 "include",
1776 ".",
1777 ],
1778 deps = [
1779 ],
1780)
1781
1782
Rob Earhartb7b8d052016-03-29 11:35:29 -07001783
Craig Tillerda179ce2016-02-09 12:01:53 -08001784objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001785 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001786 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001787 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001788 "src/core/lib/channel/channel_args.c",
1789 "src/core/lib/channel/channel_stack.c",
1790 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001791 "src/core/lib/channel/compress_filter.c",
1792 "src/core/lib/channel/connected_channel.c",
1793 "src/core/lib/channel/http_client_filter.c",
1794 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001795 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001796 "src/core/lib/compression/message_compress.c",
1797 "src/core/lib/debug/trace.c",
1798 "src/core/lib/http/format_request.c",
1799 "src/core/lib/http/httpcli.c",
1800 "src/core/lib/http/parser.c",
1801 "src/core/lib/iomgr/closure.c",
1802 "src/core/lib/iomgr/endpoint.c",
1803 "src/core/lib/iomgr/endpoint_pair_posix.c",
1804 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001805 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001806 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001807 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001808 "src/core/lib/iomgr/exec_ctx.c",
1809 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001810 "src/core/lib/iomgr/iocp_windows.c",
1811 "src/core/lib/iomgr/iomgr.c",
1812 "src/core/lib/iomgr/iomgr_posix.c",
1813 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001814 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001815 "src/core/lib/iomgr/pollset_set_windows.c",
1816 "src/core/lib/iomgr/pollset_windows.c",
1817 "src/core/lib/iomgr/resolve_address_posix.c",
1818 "src/core/lib/iomgr/resolve_address_windows.c",
1819 "src/core/lib/iomgr/sockaddr_utils.c",
1820 "src/core/lib/iomgr/socket_utils_common_posix.c",
1821 "src/core/lib/iomgr/socket_utils_linux.c",
1822 "src/core/lib/iomgr/socket_utils_posix.c",
1823 "src/core/lib/iomgr/socket_windows.c",
1824 "src/core/lib/iomgr/tcp_client_posix.c",
1825 "src/core/lib/iomgr/tcp_client_windows.c",
1826 "src/core/lib/iomgr/tcp_posix.c",
1827 "src/core/lib/iomgr/tcp_server_posix.c",
1828 "src/core/lib/iomgr/tcp_server_windows.c",
1829 "src/core/lib/iomgr/tcp_windows.c",
1830 "src/core/lib/iomgr/time_averaged_stats.c",
1831 "src/core/lib/iomgr/timer.c",
1832 "src/core/lib/iomgr/timer_heap.c",
1833 "src/core/lib/iomgr/udp_server.c",
1834 "src/core/lib/iomgr/unix_sockets_posix.c",
1835 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1836 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1837 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1838 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1839 "src/core/lib/iomgr/wakeup_fd_posix.c",
1840 "src/core/lib/iomgr/workqueue_posix.c",
1841 "src/core/lib/iomgr/workqueue_windows.c",
1842 "src/core/lib/json/json.c",
1843 "src/core/lib/json/json_reader.c",
1844 "src/core/lib/json/json_string.c",
1845 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001846 "src/core/lib/surface/alarm.c",
1847 "src/core/lib/surface/api_trace.c",
1848 "src/core/lib/surface/byte_buffer.c",
1849 "src/core/lib/surface/byte_buffer_reader.c",
1850 "src/core/lib/surface/call.c",
1851 "src/core/lib/surface/call_details.c",
1852 "src/core/lib/surface/call_log_batch.c",
1853 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001854 "src/core/lib/surface/channel_init.c",
1855 "src/core/lib/surface/channel_ping.c",
1856 "src/core/lib/surface/channel_stack_type.c",
1857 "src/core/lib/surface/completion_queue.c",
1858 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001859 "src/core/lib/surface/lame_client.c",
1860 "src/core/lib/surface/metadata_array.c",
1861 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001862 "src/core/lib/surface/validate_metadata.c",
1863 "src/core/lib/surface/version.c",
1864 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001865 "src/core/lib/transport/connectivity_state.c",
1866 "src/core/lib/transport/metadata.c",
1867 "src/core/lib/transport/metadata_batch.c",
1868 "src/core/lib/transport/static_metadata.c",
1869 "src/core/lib/transport/transport.c",
1870 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001871 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001872 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001873 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1874 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1875 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1876 "src/core/ext/transport/chttp2/transport/frame_data.c",
1877 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1878 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1879 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1880 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1881 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1882 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1883 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1884 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1885 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1886 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1887 "src/core/ext/transport/chttp2/transport/parsing.c",
1888 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1889 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1890 "src/core/ext/transport/chttp2/transport/stream_map.c",
1891 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1892 "src/core/ext/transport/chttp2/transport/varint.c",
1893 "src/core/ext/transport/chttp2/transport/writing.c",
1894 "src/core/ext/transport/chttp2/alpn/alpn.c",
1895 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001896 "src/core/lib/security/context/security_context.c",
1897 "src/core/lib/security/credentials/composite/composite_credentials.c",
1898 "src/core/lib/security/credentials/credentials.c",
1899 "src/core/lib/security/credentials/credentials_metadata.c",
1900 "src/core/lib/security/credentials/fake/fake_credentials.c",
1901 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001902 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001903 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
1904 "src/core/lib/security/credentials/iam/iam_credentials.c",
1905 "src/core/lib/security/credentials/jwt/json_token.c",
1906 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
1907 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
1908 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
1909 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
1910 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
1911 "src/core/lib/security/transport/client_auth_filter.c",
1912 "src/core/lib/security/transport/handshake.c",
1913 "src/core/lib/security/transport/secure_endpoint.c",
1914 "src/core/lib/security/transport/security_connector.c",
1915 "src/core/lib/security/transport/server_auth_filter.c",
1916 "src/core/lib/security/util/b64.c",
1917 "src/core/lib/security/util/json_util.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001918 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001919 "src/core/lib/tsi/fake_transport_security.c",
1920 "src/core/lib/tsi/ssl_transport_security.c",
1921 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001922 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
1923 "src/core/ext/client_config/channel_connectivity.c",
1924 "src/core/ext/client_config/client_channel.c",
1925 "src/core/ext/client_config/client_channel_factory.c",
1926 "src/core/ext/client_config/client_config.c",
1927 "src/core/ext/client_config/client_config_plugin.c",
1928 "src/core/ext/client_config/connector.c",
1929 "src/core/ext/client_config/default_initial_connect_string.c",
1930 "src/core/ext/client_config/initial_connect_string.c",
1931 "src/core/ext/client_config/lb_policy.c",
1932 "src/core/ext/client_config/lb_policy_factory.c",
1933 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001934 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001935 "src/core/ext/client_config/resolver.c",
1936 "src/core/ext/client_config/resolver_factory.c",
1937 "src/core/ext/client_config/resolver_registry.c",
1938 "src/core/ext/client_config/subchannel.c",
1939 "src/core/ext/client_config/subchannel_call_holder.c",
1940 "src/core/ext/client_config/subchannel_index.c",
1941 "src/core/ext/client_config/uri_parser.c",
1942 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001943 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001944 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001945 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001946 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001947 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001948 "src/core/ext/lb_policy/pick_first/pick_first.c",
1949 "src/core/ext/lb_policy/round_robin/round_robin.c",
1950 "src/core/ext/resolver/dns/native/dns_resolver.c",
1951 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07001952 "src/core/ext/load_reporting/load_reporting.c",
1953 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001954 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001955 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001956 "src/core/ext/census/grpc_context.c",
1957 "src/core/ext/census/grpc_filter.c",
1958 "src/core/ext/census/grpc_plugin.c",
1959 "src/core/ext/census/initialize.c",
1960 "src/core/ext/census/mlog.c",
1961 "src/core/ext/census/operation.c",
1962 "src/core/ext/census/placeholders.c",
1963 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001964 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001965 ],
1966 hdrs = [
1967 "include/grpc/byte_buffer.h",
1968 "include/grpc/byte_buffer_reader.h",
1969 "include/grpc/compression.h",
1970 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001971 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001972 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001973 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001974 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001975 "include/grpc/impl/codegen/compression_types.h",
1976 "include/grpc/impl/codegen/connectivity_state.h",
1977 "include/grpc/impl/codegen/grpc_types.h",
1978 "include/grpc/impl/codegen/propagation_bits.h",
1979 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001980 "include/grpc/impl/codegen/alloc.h",
1981 "include/grpc/impl/codegen/atm.h",
1982 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1983 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001984 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001985 "include/grpc/impl/codegen/log.h",
1986 "include/grpc/impl/codegen/port_platform.h",
1987 "include/grpc/impl/codegen/slice.h",
1988 "include/grpc/impl/codegen/slice_buffer.h",
1989 "include/grpc/impl/codegen/sync.h",
1990 "include/grpc/impl/codegen/sync_generic.h",
1991 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001992 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001993 "include/grpc/impl/codegen/time.h",
1994 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -07001995 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001996 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001997 "src/core/lib/channel/channel_args.h",
1998 "src/core/lib/channel/channel_stack.h",
1999 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002000 "src/core/lib/channel/compress_filter.h",
2001 "src/core/lib/channel/connected_channel.h",
2002 "src/core/lib/channel/context.h",
2003 "src/core/lib/channel/http_client_filter.h",
2004 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002005 "src/core/lib/compression/algorithm_metadata.h",
2006 "src/core/lib/compression/message_compress.h",
2007 "src/core/lib/debug/trace.h",
2008 "src/core/lib/http/format_request.h",
2009 "src/core/lib/http/httpcli.h",
2010 "src/core/lib/http/parser.h",
2011 "src/core/lib/iomgr/closure.h",
2012 "src/core/lib/iomgr/endpoint.h",
2013 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002014 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07002015 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002016 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002017 "src/core/lib/iomgr/exec_ctx.h",
2018 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002019 "src/core/lib/iomgr/iocp_windows.h",
2020 "src/core/lib/iomgr/iomgr.h",
2021 "src/core/lib/iomgr/iomgr_internal.h",
2022 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07002023 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002024 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002025 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002026 "src/core/lib/iomgr/pollset_set_windows.h",
2027 "src/core/lib/iomgr/pollset_windows.h",
2028 "src/core/lib/iomgr/resolve_address.h",
2029 "src/core/lib/iomgr/sockaddr.h",
2030 "src/core/lib/iomgr/sockaddr_posix.h",
2031 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002032 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002033 "src/core/lib/iomgr/socket_utils_posix.h",
2034 "src/core/lib/iomgr/socket_windows.h",
2035 "src/core/lib/iomgr/tcp_client.h",
2036 "src/core/lib/iomgr/tcp_posix.h",
2037 "src/core/lib/iomgr/tcp_server.h",
2038 "src/core/lib/iomgr/tcp_windows.h",
2039 "src/core/lib/iomgr/time_averaged_stats.h",
2040 "src/core/lib/iomgr/timer.h",
2041 "src/core/lib/iomgr/timer_heap.h",
2042 "src/core/lib/iomgr/udp_server.h",
2043 "src/core/lib/iomgr/unix_sockets_posix.h",
2044 "src/core/lib/iomgr/wakeup_fd_pipe.h",
2045 "src/core/lib/iomgr/wakeup_fd_posix.h",
2046 "src/core/lib/iomgr/workqueue.h",
2047 "src/core/lib/iomgr/workqueue_posix.h",
2048 "src/core/lib/iomgr/workqueue_windows.h",
2049 "src/core/lib/json/json.h",
2050 "src/core/lib/json/json_common.h",
2051 "src/core/lib/json/json_reader.h",
2052 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002053 "src/core/lib/surface/api_trace.h",
2054 "src/core/lib/surface/call.h",
2055 "src/core/lib/surface/call_test_only.h",
2056 "src/core/lib/surface/channel.h",
2057 "src/core/lib/surface/channel_init.h",
2058 "src/core/lib/surface/channel_stack_type.h",
2059 "src/core/lib/surface/completion_queue.h",
2060 "src/core/lib/surface/event_string.h",
2061 "src/core/lib/surface/init.h",
2062 "src/core/lib/surface/lame_client.h",
2063 "src/core/lib/surface/server.h",
2064 "src/core/lib/surface/surface_trace.h",
2065 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002066 "src/core/lib/transport/connectivity_state.h",
2067 "src/core/lib/transport/metadata.h",
2068 "src/core/lib/transport/metadata_batch.h",
2069 "src/core/lib/transport/static_metadata.h",
2070 "src/core/lib/transport/transport.h",
2071 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -07002072 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002073 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
2074 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
2075 "src/core/ext/transport/chttp2/transport/frame.h",
2076 "src/core/ext/transport/chttp2/transport/frame_data.h",
2077 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
2078 "src/core/ext/transport/chttp2/transport/frame_ping.h",
2079 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
2080 "src/core/ext/transport/chttp2/transport/frame_settings.h",
2081 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
2082 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
2083 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
2084 "src/core/ext/transport/chttp2/transport/hpack_table.h",
2085 "src/core/ext/transport/chttp2/transport/http2_errors.h",
2086 "src/core/ext/transport/chttp2/transport/huffsyms.h",
2087 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
2088 "src/core/ext/transport/chttp2/transport/internal.h",
2089 "src/core/ext/transport/chttp2/transport/status_conversion.h",
2090 "src/core/ext/transport/chttp2/transport/stream_map.h",
2091 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
2092 "src/core/ext/transport/chttp2/transport/varint.h",
2093 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002094 "src/core/lib/security/context/security_context.h",
2095 "src/core/lib/security/credentials/composite/composite_credentials.h",
2096 "src/core/lib/security/credentials/credentials.h",
2097 "src/core/lib/security/credentials/fake/fake_credentials.h",
2098 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
2099 "src/core/lib/security/credentials/iam/iam_credentials.h",
2100 "src/core/lib/security/credentials/jwt/json_token.h",
2101 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
2102 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
2103 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
2104 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
2105 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
2106 "src/core/lib/security/transport/auth_filters.h",
2107 "src/core/lib/security/transport/handshake.h",
2108 "src/core/lib/security/transport/secure_endpoint.h",
2109 "src/core/lib/security/transport/security_connector.h",
2110 "src/core/lib/security/util/b64.h",
2111 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002112 "src/core/lib/tsi/fake_transport_security.h",
2113 "src/core/lib/tsi/ssl_transport_security.h",
2114 "src/core/lib/tsi/ssl_types.h",
2115 "src/core/lib/tsi/transport_security.h",
2116 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002117 "src/core/ext/client_config/client_channel.h",
2118 "src/core/ext/client_config/client_channel_factory.h",
2119 "src/core/ext/client_config/client_config.h",
2120 "src/core/ext/client_config/connector.h",
2121 "src/core/ext/client_config/initial_connect_string.h",
2122 "src/core/ext/client_config/lb_policy.h",
2123 "src/core/ext/client_config/lb_policy_factory.h",
2124 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07002125 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002126 "src/core/ext/client_config/resolver.h",
2127 "src/core/ext/client_config/resolver_factory.h",
2128 "src/core/ext/client_config/resolver_registry.h",
2129 "src/core/ext/client_config/subchannel.h",
2130 "src/core/ext/client_config/subchannel_call_holder.h",
2131 "src/core/ext/client_config/subchannel_index.h",
2132 "src/core/ext/client_config/uri_parser.h",
2133 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002134 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07002135 "src/core/ext/load_reporting/load_reporting.h",
2136 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002137 "src/core/ext/census/aggregation.h",
2138 "src/core/ext/census/census_interface.h",
2139 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07002140 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002141 "src/core/ext/census/grpc_filter.h",
2142 "src/core/ext/census/mlog.h",
2143 "src/core/ext/census/rpc_metric_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002144 ],
2145 includes = [
2146 "include",
2147 ".",
2148 ],
2149 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08002150 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07002151 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07002152 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07002153 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07002154 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07002155)
2156
2157
2158
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002159cc_binary(
2160 name = "grpc_cpp_plugin",
2161 srcs = [
2162 "src/compiler/cpp_plugin.cc",
2163 ],
2164 deps = [
2165 "//external:protobuf_compiler",
2166 ":grpc_plugin_support",
2167 ],
2168)
2169
2170
2171cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07002172 name = "grpc_csharp_plugin",
2173 srcs = [
2174 "src/compiler/csharp_plugin.cc",
2175 ],
2176 deps = [
2177 "//external:protobuf_compiler",
2178 ":grpc_plugin_support",
2179 ],
2180)
2181
2182
2183cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08002184 name = "grpc_node_plugin",
2185 srcs = [
2186 "src/compiler/node_plugin.cc",
2187 ],
2188 deps = [
2189 "//external:protobuf_compiler",
2190 ":grpc_plugin_support",
2191 ],
2192)
2193
2194
2195cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002196 name = "grpc_objective_c_plugin",
2197 srcs = [
2198 "src/compiler/objective_c_plugin.cc",
2199 ],
2200 deps = [
2201 "//external:protobuf_compiler",
2202 ":grpc_plugin_support",
2203 ],
2204)
2205
2206
2207cc_binary(
2208 name = "grpc_python_plugin",
2209 srcs = [
2210 "src/compiler/python_plugin.cc",
2211 ],
2212 deps = [
2213 "//external:protobuf_compiler",
2214 ":grpc_plugin_support",
2215 ],
2216)
2217
2218
2219cc_binary(
2220 name = "grpc_ruby_plugin",
2221 srcs = [
2222 "src/compiler/ruby_plugin.cc",
2223 ],
2224 deps = [
2225 "//external:protobuf_compiler",
2226 ":grpc_plugin_support",
2227 ],
2228)
2229
2230
2231
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02002232
2233
Jorge Canizales140bca82015-06-20 09:47:00 -07002234
Jorge Canizales91e67a22015-06-24 13:50:04 -07002235
2236
Jorge Canizales44dc4232015-06-19 16:30:31 -07002237objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07002238
Jorge Canizales44dc4232015-06-19 16:30:31 -07002239rx_library_path = objc_path + "/RxLibrary"
2240
2241objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002242 name = "rx_library",
2243 hdrs = glob([
2244 rx_library_path + "/*.h",
2245 rx_library_path + "/transformations/*.h",
2246 ]),
2247 srcs = glob([
2248 rx_library_path + "/*.m",
2249 rx_library_path + "/transformations/*.m",
2250 ]),
2251 includes = [objc_path],
2252 deps = [
2253 ":rx_library_private",
2254 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002255)
2256
2257objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002258 name = "rx_library_private",
2259 hdrs = glob([rx_library_path + "/private/*.h"]),
2260 srcs = glob([rx_library_path + "/private/*.m"]),
2261 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002262)
Jorge Canizales866255e2015-06-20 18:58:38 -07002263
2264objc_client_path = objc_path + "/GRPCClient"
2265
2266objc_library(
2267 name = "grpc_client",
2268 hdrs = glob([
2269 objc_client_path + "/*.h",
2270 objc_client_path + "/private/*.h",
2271 ]),
2272 srcs = glob([
2273 objc_client_path + "/*.m",
2274 objc_client_path + "/private/*.m",
2275 ]),
2276 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002277 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07002278 deps = [
2279 ":grpc_objc",
2280 ":rx_library",
2281 ],
2282)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002283
2284objc_bundle_library(
2285 # The choice of name is signicant here, since it determines the bundle name.
2286 name = "gRPCCertificates",
2287 resources = ["etc/roots.pem"],
2288)
Jorge Canizales50f19822015-06-28 23:48:30 -07002289
2290proto_objc_rpc_path = objc_path + "/ProtoRPC"
2291
2292objc_library(
2293 name = "proto_objc_rpc",
2294 hdrs = glob([
2295 proto_objc_rpc_path + "/*.h",
2296 ]),
2297 srcs = glob([
2298 proto_objc_rpc_path + "/*.m",
2299 ]),
2300 includes = [objc_path],
2301 deps = [
2302 ":grpc_client",
2303 ":rx_library",
2304 "//external:protobuf_objc",
2305 ],
2306)