blob: fae3596eec68649268cd77dd59741ed77520b3ba [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",
56 "src/core/lib/support/string_win32.h",
57 "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",
72 "src/core/lib/support/env_win32.c",
73 "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",
80 "src/core/lib/support/log_win32.c",
81 "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",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +020087 "src/core/lib/support/string_util_win32.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070088 "src/core/lib/support/string_win32.c",
89 "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",
93 "src/core/lib/support/sync_win32.c",
94 "src/core/lib/support/thd.c",
95 "src/core/lib/support/thd_posix.c",
96 "src/core/lib/support/thd_win32.c",
97 "src/core/lib/support/time.c",
98 "src/core/lib/support/time_posix.c",
99 "src/core/lib/support/time_precise.c",
100 "src/core/lib/support/time_win32.c",
101 "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",
104 "src/core/lib/support/tmpfile_win32.c",
105 "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",
112 "include/grpc/support/atm_win32.h",
113 "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",
119 "include/grpc/support/log_win32.h",
120 "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",
128 "include/grpc/support/sync_win32.h",
129 "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",
140 "include/grpc/impl/codegen/atm_win32.h",
141 "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",
148 "include/grpc/impl/codegen/sync_win32.h",
149 "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",
182 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700183 "src/core/lib/iomgr/exec_ctx.h",
184 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700185 "src/core/lib/iomgr/iocp_windows.h",
186 "src/core/lib/iomgr/iomgr.h",
187 "src/core/lib/iomgr/iomgr_internal.h",
188 "src/core/lib/iomgr/iomgr_posix.h",
189 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700190 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700191 "src/core/lib/iomgr/pollset_set_windows.h",
192 "src/core/lib/iomgr/pollset_windows.h",
193 "src/core/lib/iomgr/resolve_address.h",
194 "src/core/lib/iomgr/sockaddr.h",
195 "src/core/lib/iomgr/sockaddr_posix.h",
196 "src/core/lib/iomgr/sockaddr_utils.h",
197 "src/core/lib/iomgr/sockaddr_win32.h",
198 "src/core/lib/iomgr/socket_utils_posix.h",
199 "src/core/lib/iomgr/socket_windows.h",
200 "src/core/lib/iomgr/tcp_client.h",
201 "src/core/lib/iomgr/tcp_posix.h",
202 "src/core/lib/iomgr/tcp_server.h",
203 "src/core/lib/iomgr/tcp_windows.h",
204 "src/core/lib/iomgr/time_averaged_stats.h",
205 "src/core/lib/iomgr/timer.h",
206 "src/core/lib/iomgr/timer_heap.h",
207 "src/core/lib/iomgr/udp_server.h",
208 "src/core/lib/iomgr/unix_sockets_posix.h",
209 "src/core/lib/iomgr/wakeup_fd_pipe.h",
210 "src/core/lib/iomgr/wakeup_fd_posix.h",
211 "src/core/lib/iomgr/workqueue.h",
212 "src/core/lib/iomgr/workqueue_posix.h",
213 "src/core/lib/iomgr/workqueue_windows.h",
214 "src/core/lib/json/json.h",
215 "src/core/lib/json/json_common.h",
216 "src/core/lib/json/json_reader.h",
217 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700218 "src/core/lib/surface/api_trace.h",
219 "src/core/lib/surface/call.h",
220 "src/core/lib/surface/call_test_only.h",
221 "src/core/lib/surface/channel.h",
222 "src/core/lib/surface/channel_init.h",
223 "src/core/lib/surface/channel_stack_type.h",
224 "src/core/lib/surface/completion_queue.h",
225 "src/core/lib/surface/event_string.h",
226 "src/core/lib/surface/init.h",
227 "src/core/lib/surface/lame_client.h",
228 "src/core/lib/surface/server.h",
229 "src/core/lib/surface/surface_trace.h",
230 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700231 "src/core/lib/transport/connectivity_state.h",
232 "src/core/lib/transport/metadata.h",
233 "src/core/lib/transport/metadata_batch.h",
234 "src/core/lib/transport/static_metadata.h",
235 "src/core/lib/transport/transport.h",
236 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700237 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
238 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
239 "src/core/ext/transport/chttp2/transport/frame.h",
240 "src/core/ext/transport/chttp2/transport/frame_data.h",
241 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
242 "src/core/ext/transport/chttp2/transport/frame_ping.h",
243 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
244 "src/core/ext/transport/chttp2/transport/frame_settings.h",
245 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
246 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
247 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
248 "src/core/ext/transport/chttp2/transport/hpack_table.h",
249 "src/core/ext/transport/chttp2/transport/http2_errors.h",
250 "src/core/ext/transport/chttp2/transport/huffsyms.h",
251 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
252 "src/core/ext/transport/chttp2/transport/internal.h",
253 "src/core/ext/transport/chttp2/transport/status_conversion.h",
254 "src/core/ext/transport/chttp2/transport/stream_map.h",
255 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
256 "src/core/ext/transport/chttp2/transport/varint.h",
257 "src/core/ext/transport/chttp2/alpn/alpn.h",
258 "src/core/lib/security/auth_filters.h",
259 "src/core/lib/security/b64.h",
260 "src/core/lib/security/credentials.h",
261 "src/core/lib/security/handshake.h",
262 "src/core/lib/security/json_token.h",
263 "src/core/lib/security/jwt_verifier.h",
264 "src/core/lib/security/secure_endpoint.h",
265 "src/core/lib/security/security_connector.h",
266 "src/core/lib/security/security_context.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700267 "src/core/lib/tsi/fake_transport_security.h",
268 "src/core/lib/tsi/ssl_transport_security.h",
269 "src/core/lib/tsi/ssl_types.h",
270 "src/core/lib/tsi/transport_security.h",
271 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700272 "src/core/ext/client_config/client_channel.h",
273 "src/core/ext/client_config/client_channel_factory.h",
274 "src/core/ext/client_config/client_config.h",
275 "src/core/ext/client_config/connector.h",
276 "src/core/ext/client_config/initial_connect_string.h",
277 "src/core/ext/client_config/lb_policy.h",
278 "src/core/ext/client_config/lb_policy_factory.h",
279 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700280 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700281 "src/core/ext/client_config/resolver.h",
282 "src/core/ext/client_config/resolver_factory.h",
283 "src/core/ext/client_config/resolver_registry.h",
284 "src/core/ext/client_config/subchannel.h",
285 "src/core/ext/client_config/subchannel_call_holder.h",
286 "src/core/ext/client_config/subchannel_index.h",
287 "src/core/ext/client_config/uri_parser.h",
Makarand Dharmapurikard5d8f8f2016-05-04 13:22:26 -0700288 "include/grpc/byte_buffer.h",
289 "include/grpc/grpc.h",
290 "include/grpc/impl/codegen/alloc.h",
291 "include/grpc/impl/codegen/atm.h",
292 "include/grpc/impl/codegen/atm_gcc_atomic.h",
293 "include/grpc/impl/codegen/atm_gcc_sync.h",
294 "include/grpc/impl/codegen/atm_win32.h",
295 "include/grpc/impl/codegen/byte_buffer.h",
296 "include/grpc/impl/codegen/compression_types.h",
297 "include/grpc/impl/codegen/connectivity_state.h",
298 "include/grpc/impl/codegen/grpc_types.h",
299 "include/grpc/impl/codegen/log.h",
300 "include/grpc/impl/codegen/port_platform.h",
301 "include/grpc/impl/codegen/propagation_bits.h",
302 "include/grpc/impl/codegen/slice.h",
303 "include/grpc/impl/codegen/slice_buffer.h",
304 "include/grpc/impl/codegen/status.h",
305 "include/grpc/impl/codegen/sync.h",
306 "include/grpc/impl/codegen/sync_generic.h",
307 "include/grpc/impl/codegen/sync_posix.h",
308 "include/grpc/impl/codegen/sync_win32.h",
309 "include/grpc/impl/codegen/time.h",
310 "include/grpc/status.h",
311 "include/grpc/support/alloc.h",
312 "include/grpc/support/atm.h",
313 "include/grpc/support/host_port.h",
314 "include/grpc/support/log.h",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -0700315 "include/grpc/support/port_platform.h",
Makarand Dharmapurikard5d8f8f2016-05-04 13:22:26 -0700316 "include/grpc/support/slice.h",
317 "include/grpc/support/slice_buffer.h",
318 "include/grpc/support/string_util.h",
319 "include/grpc/support/sync.h",
320 "include/grpc/support/time.h",
321 "include/grpc/support/useful.h",
322 "src/core/lib/support/string.h",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -0700323 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700324 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
325 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h",
326 "src/core/ext/census/aggregation.h",
327 "src/core/ext/census/census_interface.h",
328 "src/core/ext/census/census_rpc_stats.h",
329 "src/core/ext/census/grpc_filter.h",
330 "src/core/ext/census/mlog.h",
331 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700332 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700333 "src/core/lib/channel/channel_args.c",
334 "src/core/lib/channel/channel_stack.c",
335 "src/core/lib/channel/channel_stack_builder.c",
336 "src/core/lib/channel/compress_filter.c",
337 "src/core/lib/channel/connected_channel.c",
338 "src/core/lib/channel/http_client_filter.c",
339 "src/core/lib/channel/http_server_filter.c",
340 "src/core/lib/compression/compression_algorithm.c",
341 "src/core/lib/compression/message_compress.c",
342 "src/core/lib/debug/trace.c",
343 "src/core/lib/http/format_request.c",
344 "src/core/lib/http/httpcli.c",
345 "src/core/lib/http/parser.c",
346 "src/core/lib/iomgr/closure.c",
347 "src/core/lib/iomgr/endpoint.c",
348 "src/core/lib/iomgr/endpoint_pair_posix.c",
349 "src/core/lib/iomgr/endpoint_pair_windows.c",
350 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
351 "src/core/lib/iomgr/ev_posix.c",
352 "src/core/lib/iomgr/exec_ctx.c",
353 "src/core/lib/iomgr/executor.c",
354 "src/core/lib/iomgr/iocp_windows.c",
355 "src/core/lib/iomgr/iomgr.c",
356 "src/core/lib/iomgr/iomgr_posix.c",
357 "src/core/lib/iomgr/iomgr_windows.c",
358 "src/core/lib/iomgr/pollset_set_windows.c",
359 "src/core/lib/iomgr/pollset_windows.c",
360 "src/core/lib/iomgr/resolve_address_posix.c",
361 "src/core/lib/iomgr/resolve_address_windows.c",
362 "src/core/lib/iomgr/sockaddr_utils.c",
363 "src/core/lib/iomgr/socket_utils_common_posix.c",
364 "src/core/lib/iomgr/socket_utils_linux.c",
365 "src/core/lib/iomgr/socket_utils_posix.c",
366 "src/core/lib/iomgr/socket_windows.c",
367 "src/core/lib/iomgr/tcp_client_posix.c",
368 "src/core/lib/iomgr/tcp_client_windows.c",
369 "src/core/lib/iomgr/tcp_posix.c",
370 "src/core/lib/iomgr/tcp_server_posix.c",
371 "src/core/lib/iomgr/tcp_server_windows.c",
372 "src/core/lib/iomgr/tcp_windows.c",
373 "src/core/lib/iomgr/time_averaged_stats.c",
374 "src/core/lib/iomgr/timer.c",
375 "src/core/lib/iomgr/timer_heap.c",
376 "src/core/lib/iomgr/udp_server.c",
377 "src/core/lib/iomgr/unix_sockets_posix.c",
378 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
379 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
380 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
381 "src/core/lib/iomgr/wakeup_fd_pipe.c",
382 "src/core/lib/iomgr/wakeup_fd_posix.c",
383 "src/core/lib/iomgr/workqueue_posix.c",
384 "src/core/lib/iomgr/workqueue_windows.c",
385 "src/core/lib/json/json.c",
386 "src/core/lib/json/json_reader.c",
387 "src/core/lib/json/json_string.c",
388 "src/core/lib/json/json_writer.c",
389 "src/core/lib/surface/alarm.c",
390 "src/core/lib/surface/api_trace.c",
391 "src/core/lib/surface/byte_buffer.c",
392 "src/core/lib/surface/byte_buffer_reader.c",
393 "src/core/lib/surface/call.c",
394 "src/core/lib/surface/call_details.c",
395 "src/core/lib/surface/call_log_batch.c",
396 "src/core/lib/surface/channel.c",
397 "src/core/lib/surface/channel_init.c",
398 "src/core/lib/surface/channel_ping.c",
399 "src/core/lib/surface/channel_stack_type.c",
400 "src/core/lib/surface/completion_queue.c",
401 "src/core/lib/surface/event_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700402 "src/core/lib/surface/lame_client.c",
403 "src/core/lib/surface/metadata_array.c",
404 "src/core/lib/surface/server.c",
405 "src/core/lib/surface/validate_metadata.c",
406 "src/core/lib/surface/version.c",
407 "src/core/lib/transport/byte_stream.c",
408 "src/core/lib/transport/connectivity_state.c",
409 "src/core/lib/transport/metadata.c",
410 "src/core/lib/transport/metadata_batch.c",
411 "src/core/lib/transport/static_metadata.c",
412 "src/core/lib/transport/transport.c",
413 "src/core/lib/transport/transport_op_string.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700414 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700415 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
416 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700417 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
418 "src/core/ext/transport/chttp2/transport/frame_data.c",
419 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
420 "src/core/ext/transport/chttp2/transport/frame_ping.c",
421 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
422 "src/core/ext/transport/chttp2/transport/frame_settings.c",
423 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
424 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
425 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
426 "src/core/ext/transport/chttp2/transport/hpack_table.c",
427 "src/core/ext/transport/chttp2/transport/huffsyms.c",
428 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
429 "src/core/ext/transport/chttp2/transport/parsing.c",
430 "src/core/ext/transport/chttp2/transport/status_conversion.c",
431 "src/core/ext/transport/chttp2/transport/stream_lists.c",
432 "src/core/ext/transport/chttp2/transport/stream_map.c",
433 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
434 "src/core/ext/transport/chttp2/transport/varint.c",
435 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700436 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700437 "src/core/lib/http/httpcli_security_connector.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700438 "src/core/lib/security/b64.c",
439 "src/core/lib/security/client_auth_filter.c",
440 "src/core/lib/security/credentials.c",
441 "src/core/lib/security/credentials_metadata.c",
442 "src/core/lib/security/credentials_posix.c",
443 "src/core/lib/security/credentials_win32.c",
444 "src/core/lib/security/google_default_credentials.c",
445 "src/core/lib/security/handshake.c",
446 "src/core/lib/security/json_token.c",
447 "src/core/lib/security/jwt_verifier.c",
448 "src/core/lib/security/secure_endpoint.c",
449 "src/core/lib/security/security_connector.c",
450 "src/core/lib/security/security_context.c",
451 "src/core/lib/security/server_auth_filter.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700452 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700453 "src/core/lib/tsi/fake_transport_security.c",
454 "src/core/lib/tsi/ssl_transport_security.c",
455 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700456 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
457 "src/core/ext/client_config/channel_connectivity.c",
458 "src/core/ext/client_config/client_channel.c",
459 "src/core/ext/client_config/client_channel_factory.c",
460 "src/core/ext/client_config/client_config.c",
461 "src/core/ext/client_config/client_config_plugin.c",
462 "src/core/ext/client_config/connector.c",
463 "src/core/ext/client_config/default_initial_connect_string.c",
464 "src/core/ext/client_config/initial_connect_string.c",
465 "src/core/ext/client_config/lb_policy.c",
466 "src/core/ext/client_config/lb_policy_factory.c",
467 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700468 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700469 "src/core/ext/client_config/resolver.c",
470 "src/core/ext/client_config/resolver_factory.c",
471 "src/core/ext/client_config/resolver_registry.c",
472 "src/core/ext/client_config/subchannel.c",
473 "src/core/ext/client_config/subchannel_call_holder.c",
474 "src/core/ext/client_config/subchannel_index.c",
475 "src/core/ext/client_config/uri_parser.c",
476 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
477 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -0700478 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
479 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
480 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700481 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
482 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c",
483 "src/core/ext/lb_policy/pick_first/pick_first.c",
484 "src/core/ext/lb_policy/round_robin/round_robin.c",
485 "src/core/ext/resolver/dns/native/dns_resolver.c",
486 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
487 "src/core/ext/census/context.c",
488 "src/core/ext/census/grpc_context.c",
489 "src/core/ext/census/grpc_filter.c",
490 "src/core/ext/census/grpc_plugin.c",
491 "src/core/ext/census/initialize.c",
492 "src/core/ext/census/mlog.c",
493 "src/core/ext/census/operation.c",
494 "src/core/ext/census/placeholders.c",
495 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700496 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700497 ],
498 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700499 "include/grpc/byte_buffer.h",
500 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700501 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700502 "include/grpc/grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700503 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700504 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700505 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700506 "include/grpc/impl/codegen/compression_types.h",
507 "include/grpc/impl/codegen/connectivity_state.h",
508 "include/grpc/impl/codegen/grpc_types.h",
509 "include/grpc/impl/codegen/propagation_bits.h",
510 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700511 "include/grpc/impl/codegen/alloc.h",
512 "include/grpc/impl/codegen/atm.h",
513 "include/grpc/impl/codegen/atm_gcc_atomic.h",
514 "include/grpc/impl/codegen/atm_gcc_sync.h",
515 "include/grpc/impl/codegen/atm_win32.h",
516 "include/grpc/impl/codegen/log.h",
517 "include/grpc/impl/codegen/port_platform.h",
518 "include/grpc/impl/codegen/slice.h",
519 "include/grpc/impl/codegen/slice_buffer.h",
520 "include/grpc/impl/codegen/sync.h",
521 "include/grpc/impl/codegen/sync_generic.h",
522 "include/grpc/impl/codegen/sync_posix.h",
523 "include/grpc/impl/codegen/sync_win32.h",
524 "include/grpc/impl/codegen/time.h",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -0700525 "include/grpc/grpc_cronet.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700526 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700527 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700528 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700529 ],
530 includes = [
531 "include",
532 ".",
533 ],
534 deps = [
535 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700536 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800537 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700538 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700539 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800540 copts = [
541 "-std=gnu99",
542 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200543)
544
545
Rob Earhartb7b8d052016-03-29 11:35:29 -0700546
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700547cc_library(
548 name = "grpc_unsecure",
549 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700550 "src/core/lib/channel/channel_args.h",
551 "src/core/lib/channel/channel_stack.h",
552 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700553 "src/core/lib/channel/compress_filter.h",
554 "src/core/lib/channel/connected_channel.h",
555 "src/core/lib/channel/context.h",
556 "src/core/lib/channel/http_client_filter.h",
557 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700558 "src/core/lib/compression/algorithm_metadata.h",
559 "src/core/lib/compression/message_compress.h",
560 "src/core/lib/debug/trace.h",
561 "src/core/lib/http/format_request.h",
562 "src/core/lib/http/httpcli.h",
563 "src/core/lib/http/parser.h",
564 "src/core/lib/iomgr/closure.h",
565 "src/core/lib/iomgr/endpoint.h",
566 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700567 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
568 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700569 "src/core/lib/iomgr/exec_ctx.h",
570 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700571 "src/core/lib/iomgr/iocp_windows.h",
572 "src/core/lib/iomgr/iomgr.h",
573 "src/core/lib/iomgr/iomgr_internal.h",
574 "src/core/lib/iomgr/iomgr_posix.h",
575 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700576 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700577 "src/core/lib/iomgr/pollset_set_windows.h",
578 "src/core/lib/iomgr/pollset_windows.h",
579 "src/core/lib/iomgr/resolve_address.h",
580 "src/core/lib/iomgr/sockaddr.h",
581 "src/core/lib/iomgr/sockaddr_posix.h",
582 "src/core/lib/iomgr/sockaddr_utils.h",
583 "src/core/lib/iomgr/sockaddr_win32.h",
584 "src/core/lib/iomgr/socket_utils_posix.h",
585 "src/core/lib/iomgr/socket_windows.h",
586 "src/core/lib/iomgr/tcp_client.h",
587 "src/core/lib/iomgr/tcp_posix.h",
588 "src/core/lib/iomgr/tcp_server.h",
589 "src/core/lib/iomgr/tcp_windows.h",
590 "src/core/lib/iomgr/time_averaged_stats.h",
591 "src/core/lib/iomgr/timer.h",
592 "src/core/lib/iomgr/timer_heap.h",
593 "src/core/lib/iomgr/udp_server.h",
594 "src/core/lib/iomgr/unix_sockets_posix.h",
595 "src/core/lib/iomgr/wakeup_fd_pipe.h",
596 "src/core/lib/iomgr/wakeup_fd_posix.h",
597 "src/core/lib/iomgr/workqueue.h",
598 "src/core/lib/iomgr/workqueue_posix.h",
599 "src/core/lib/iomgr/workqueue_windows.h",
600 "src/core/lib/json/json.h",
601 "src/core/lib/json/json_common.h",
602 "src/core/lib/json/json_reader.h",
603 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700604 "src/core/lib/surface/api_trace.h",
605 "src/core/lib/surface/call.h",
606 "src/core/lib/surface/call_test_only.h",
607 "src/core/lib/surface/channel.h",
608 "src/core/lib/surface/channel_init.h",
609 "src/core/lib/surface/channel_stack_type.h",
610 "src/core/lib/surface/completion_queue.h",
611 "src/core/lib/surface/event_string.h",
612 "src/core/lib/surface/init.h",
613 "src/core/lib/surface/lame_client.h",
614 "src/core/lib/surface/server.h",
615 "src/core/lib/surface/surface_trace.h",
616 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700617 "src/core/lib/transport/connectivity_state.h",
618 "src/core/lib/transport/metadata.h",
619 "src/core/lib/transport/metadata_batch.h",
620 "src/core/lib/transport/static_metadata.h",
621 "src/core/lib/transport/transport.h",
622 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700623 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
624 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
625 "src/core/ext/transport/chttp2/transport/frame.h",
626 "src/core/ext/transport/chttp2/transport/frame_data.h",
627 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
628 "src/core/ext/transport/chttp2/transport/frame_ping.h",
629 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
630 "src/core/ext/transport/chttp2/transport/frame_settings.h",
631 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
632 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
633 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
634 "src/core/ext/transport/chttp2/transport/hpack_table.h",
635 "src/core/ext/transport/chttp2/transport/http2_errors.h",
636 "src/core/ext/transport/chttp2/transport/huffsyms.h",
637 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
638 "src/core/ext/transport/chttp2/transport/internal.h",
639 "src/core/ext/transport/chttp2/transport/status_conversion.h",
640 "src/core/ext/transport/chttp2/transport/stream_map.h",
641 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
642 "src/core/ext/transport/chttp2/transport/varint.h",
643 "src/core/ext/transport/chttp2/alpn/alpn.h",
644 "src/core/ext/client_config/client_channel.h",
645 "src/core/ext/client_config/client_channel_factory.h",
646 "src/core/ext/client_config/client_config.h",
647 "src/core/ext/client_config/connector.h",
648 "src/core/ext/client_config/initial_connect_string.h",
649 "src/core/ext/client_config/lb_policy.h",
650 "src/core/ext/client_config/lb_policy_factory.h",
651 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700652 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700653 "src/core/ext/client_config/resolver.h",
654 "src/core/ext/client_config/resolver_factory.h",
655 "src/core/ext/client_config/resolver_registry.h",
656 "src/core/ext/client_config/subchannel.h",
657 "src/core/ext/client_config/subchannel_call_holder.h",
658 "src/core/ext/client_config/subchannel_index.h",
659 "src/core/ext/client_config/uri_parser.h",
660 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
661 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h",
662 "src/core/ext/census/aggregation.h",
663 "src/core/ext/census/census_interface.h",
664 "src/core/ext/census/census_rpc_stats.h",
665 "src/core/ext/census/grpc_filter.h",
666 "src/core/ext/census/mlog.h",
667 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700668 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700669 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700670 "src/core/lib/channel/channel_args.c",
671 "src/core/lib/channel/channel_stack.c",
672 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700673 "src/core/lib/channel/compress_filter.c",
674 "src/core/lib/channel/connected_channel.c",
675 "src/core/lib/channel/http_client_filter.c",
676 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700677 "src/core/lib/compression/compression_algorithm.c",
678 "src/core/lib/compression/message_compress.c",
679 "src/core/lib/debug/trace.c",
680 "src/core/lib/http/format_request.c",
681 "src/core/lib/http/httpcli.c",
682 "src/core/lib/http/parser.c",
683 "src/core/lib/iomgr/closure.c",
684 "src/core/lib/iomgr/endpoint.c",
685 "src/core/lib/iomgr/endpoint_pair_posix.c",
686 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -0700687 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
688 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700689 "src/core/lib/iomgr/exec_ctx.c",
690 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700691 "src/core/lib/iomgr/iocp_windows.c",
692 "src/core/lib/iomgr/iomgr.c",
693 "src/core/lib/iomgr/iomgr_posix.c",
694 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700695 "src/core/lib/iomgr/pollset_set_windows.c",
696 "src/core/lib/iomgr/pollset_windows.c",
697 "src/core/lib/iomgr/resolve_address_posix.c",
698 "src/core/lib/iomgr/resolve_address_windows.c",
699 "src/core/lib/iomgr/sockaddr_utils.c",
700 "src/core/lib/iomgr/socket_utils_common_posix.c",
701 "src/core/lib/iomgr/socket_utils_linux.c",
702 "src/core/lib/iomgr/socket_utils_posix.c",
703 "src/core/lib/iomgr/socket_windows.c",
704 "src/core/lib/iomgr/tcp_client_posix.c",
705 "src/core/lib/iomgr/tcp_client_windows.c",
706 "src/core/lib/iomgr/tcp_posix.c",
707 "src/core/lib/iomgr/tcp_server_posix.c",
708 "src/core/lib/iomgr/tcp_server_windows.c",
709 "src/core/lib/iomgr/tcp_windows.c",
710 "src/core/lib/iomgr/time_averaged_stats.c",
711 "src/core/lib/iomgr/timer.c",
712 "src/core/lib/iomgr/timer_heap.c",
713 "src/core/lib/iomgr/udp_server.c",
714 "src/core/lib/iomgr/unix_sockets_posix.c",
715 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
716 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
717 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
718 "src/core/lib/iomgr/wakeup_fd_pipe.c",
719 "src/core/lib/iomgr/wakeup_fd_posix.c",
720 "src/core/lib/iomgr/workqueue_posix.c",
721 "src/core/lib/iomgr/workqueue_windows.c",
722 "src/core/lib/json/json.c",
723 "src/core/lib/json/json_reader.c",
724 "src/core/lib/json/json_string.c",
725 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700726 "src/core/lib/surface/alarm.c",
727 "src/core/lib/surface/api_trace.c",
728 "src/core/lib/surface/byte_buffer.c",
729 "src/core/lib/surface/byte_buffer_reader.c",
730 "src/core/lib/surface/call.c",
731 "src/core/lib/surface/call_details.c",
732 "src/core/lib/surface/call_log_batch.c",
733 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700734 "src/core/lib/surface/channel_init.c",
735 "src/core/lib/surface/channel_ping.c",
736 "src/core/lib/surface/channel_stack_type.c",
737 "src/core/lib/surface/completion_queue.c",
738 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700739 "src/core/lib/surface/lame_client.c",
740 "src/core/lib/surface/metadata_array.c",
741 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700742 "src/core/lib/surface/validate_metadata.c",
743 "src/core/lib/surface/version.c",
744 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700745 "src/core/lib/transport/connectivity_state.c",
746 "src/core/lib/transport/metadata.c",
747 "src/core/lib/transport/metadata_batch.c",
748 "src/core/lib/transport/static_metadata.c",
749 "src/core/lib/transport/transport.c",
750 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700751 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
752 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
753 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
754 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
755 "src/core/ext/transport/chttp2/transport/frame_data.c",
756 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
757 "src/core/ext/transport/chttp2/transport/frame_ping.c",
758 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
759 "src/core/ext/transport/chttp2/transport/frame_settings.c",
760 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
761 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
762 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
763 "src/core/ext/transport/chttp2/transport/hpack_table.c",
764 "src/core/ext/transport/chttp2/transport/huffsyms.c",
765 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
766 "src/core/ext/transport/chttp2/transport/parsing.c",
767 "src/core/ext/transport/chttp2/transport/status_conversion.c",
768 "src/core/ext/transport/chttp2/transport/stream_lists.c",
769 "src/core/ext/transport/chttp2/transport/stream_map.c",
770 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
771 "src/core/ext/transport/chttp2/transport/varint.c",
772 "src/core/ext/transport/chttp2/transport/writing.c",
773 "src/core/ext/transport/chttp2/alpn/alpn.c",
774 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
775 "src/core/ext/client_config/channel_connectivity.c",
776 "src/core/ext/client_config/client_channel.c",
777 "src/core/ext/client_config/client_channel_factory.c",
778 "src/core/ext/client_config/client_config.c",
779 "src/core/ext/client_config/client_config_plugin.c",
780 "src/core/ext/client_config/connector.c",
781 "src/core/ext/client_config/default_initial_connect_string.c",
782 "src/core/ext/client_config/initial_connect_string.c",
783 "src/core/ext/client_config/lb_policy.c",
784 "src/core/ext/client_config/lb_policy_factory.c",
785 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700786 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700787 "src/core/ext/client_config/resolver.c",
788 "src/core/ext/client_config/resolver_factory.c",
789 "src/core/ext/client_config/resolver_registry.c",
790 "src/core/ext/client_config/subchannel.c",
791 "src/core/ext/client_config/subchannel_call_holder.c",
792 "src/core/ext/client_config/subchannel_index.c",
793 "src/core/ext/client_config/uri_parser.c",
794 "src/core/ext/resolver/dns/native/dns_resolver.c",
795 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
796 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
797 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c",
798 "src/core/ext/lb_policy/pick_first/pick_first.c",
799 "src/core/ext/lb_policy/round_robin/round_robin.c",
800 "src/core/ext/census/context.c",
801 "src/core/ext/census/grpc_context.c",
802 "src/core/ext/census/grpc_filter.c",
803 "src/core/ext/census/grpc_plugin.c",
804 "src/core/ext/census/initialize.c",
805 "src/core/ext/census/mlog.c",
806 "src/core/ext/census/operation.c",
807 "src/core/ext/census/placeholders.c",
808 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700809 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700810 ],
811 hdrs = [
812 "include/grpc/byte_buffer.h",
813 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700814 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700815 "include/grpc/grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700816 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -0800817 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700818 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -0800819 "include/grpc/impl/codegen/compression_types.h",
820 "include/grpc/impl/codegen/connectivity_state.h",
821 "include/grpc/impl/codegen/grpc_types.h",
822 "include/grpc/impl/codegen/propagation_bits.h",
823 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700824 "include/grpc/impl/codegen/alloc.h",
825 "include/grpc/impl/codegen/atm.h",
826 "include/grpc/impl/codegen/atm_gcc_atomic.h",
827 "include/grpc/impl/codegen/atm_gcc_sync.h",
828 "include/grpc/impl/codegen/atm_win32.h",
829 "include/grpc/impl/codegen/log.h",
830 "include/grpc/impl/codegen/port_platform.h",
831 "include/grpc/impl/codegen/slice.h",
832 "include/grpc/impl/codegen/slice_buffer.h",
833 "include/grpc/impl/codegen/sync.h",
834 "include/grpc/impl/codegen/sync_generic.h",
835 "include/grpc/impl/codegen/sync_posix.h",
836 "include/grpc/impl/codegen/sync_win32.h",
837 "include/grpc/impl/codegen/time.h",
838 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700839 ],
840 includes = [
841 "include",
842 ".",
843 ],
844 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -0800845 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700846 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700847 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800848 copts = [
849 "-std=gnu99",
850 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700851)
852
853
Rob Earhartb7b8d052016-03-29 11:35:29 -0700854
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700855cc_library(
Hongwei Wangda8858f2015-07-16 16:18:19 -0700856 name = "grpc_zookeeper",
857 srcs = [
Craig Tillerb11b34a2016-04-01 12:30:06 -0700858 "src/core/ext/resolver/zookeeper/zookeeper_resolver.c",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700859 ],
860 hdrs = [
Hongwei Wanga3780a82015-07-17 15:27:18 -0700861 "include/grpc/grpc_zookeeper.h",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700862 ],
863 includes = [
864 "include",
865 ".",
866 ],
867 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -0800868 ":gpr",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700869 ":grpc",
870 ],
871)
872
873
Rob Earhartb7b8d052016-03-29 11:35:29 -0700874
Hongwei Wangda8858f2015-07-16 16:18:19 -0700875cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700876 name = "grpc++",
877 srcs = [
878 "src/cpp/client/secure_credentials.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -0800879 "src/cpp/common/core_codegen.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700880 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700881 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700882 "src/cpp/client/create_channel_internal.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700883 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -0700884 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700885 "src/cpp/client/secure_credentials.cc",
886 "src/cpp/common/auth_property_iterator.cc",
887 "src/cpp/common/secure_auth_context.cc",
888 "src/cpp/common/secure_channel_arguments.cc",
889 "src/cpp/common/secure_create_auth_context.cc",
890 "src/cpp/server/secure_server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700891 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700892 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700893 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -0700894 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700895 "src/cpp/client/credentials.cc",
896 "src/cpp/client/generic_stub.cc",
897 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -0800898 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700899 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +0100900 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700901 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700902 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -0700903 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -0700904 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700905 "src/cpp/server/insecure_server_credentials.cc",
906 "src/cpp/server/server.cc",
907 "src/cpp/server/server_builder.cc",
908 "src/cpp/server/server_context.cc",
909 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700910 "src/cpp/util/byte_buffer.cc",
911 "src/cpp/util/slice.cc",
912 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -0700913 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700914 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -0700915 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700916 ],
917 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -0800918 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -0700919 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700920 "include/grpc++/client_context.h",
921 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700922 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700923 "include/grpc++/generic/async_generic_service.h",
924 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -0700925 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700926 "include/grpc++/impl/call.h",
927 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -0700928 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -0800929 "include/grpc++/impl/method_handler_impl.h",
yang-gadfed032015-06-23 13:01:22 -0700930 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700931 "include/grpc++/impl/rpc_method.h",
932 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -0700933 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -0800934 "include/grpc++/impl/server_builder_option.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700935 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200936 "include/grpc++/impl/sync.h",
937 "include/grpc++/impl/sync_cxx11.h",
938 "include/grpc++/impl/sync_no_cxx11.h",
939 "include/grpc++/impl/thd.h",
940 "include/grpc++/impl/thd_cxx11.h",
941 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -0700942 "include/grpc++/security/auth_context.h",
943 "include/grpc++/security/auth_metadata_processor.h",
944 "include/grpc++/security/credentials.h",
945 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700946 "include/grpc++/server.h",
947 "include/grpc++/server_builder.h",
948 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -0700949 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700950 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700951 "include/grpc++/support/byte_buffer.h",
952 "include/grpc++/support/channel_arguments.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700953 "include/grpc++/support/slice.h",
954 "include/grpc++/support/status.h",
955 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -0700956 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700957 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -0700958 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700959 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700960 "include/grpc++/impl/codegen/async_stream.h",
961 "include/grpc++/impl/codegen/async_unary_call.h",
962 "include/grpc++/impl/codegen/call.h",
963 "include/grpc++/impl/codegen/call_hook.h",
964 "include/grpc++/impl/codegen/channel_interface.h",
965 "include/grpc++/impl/codegen/client_context.h",
966 "include/grpc++/impl/codegen/client_unary_call.h",
967 "include/grpc++/impl/codegen/completion_queue.h",
968 "include/grpc++/impl/codegen/completion_queue_tag.h",
969 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700970 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700971 "include/grpc++/impl/codegen/grpc_library.h",
972 "include/grpc++/impl/codegen/method_handler_impl.h",
973 "include/grpc++/impl/codegen/proto_utils.h",
974 "include/grpc++/impl/codegen/rpc_method.h",
975 "include/grpc++/impl/codegen/rpc_service_method.h",
976 "include/grpc++/impl/codegen/security/auth_context.h",
977 "include/grpc++/impl/codegen/serialization_traits.h",
978 "include/grpc++/impl/codegen/server_context.h",
979 "include/grpc++/impl/codegen/server_interface.h",
980 "include/grpc++/impl/codegen/service_type.h",
981 "include/grpc++/impl/codegen/status.h",
982 "include/grpc++/impl/codegen/status_code_enum.h",
983 "include/grpc++/impl/codegen/string_ref.h",
984 "include/grpc++/impl/codegen/stub_options.h",
985 "include/grpc++/impl/codegen/sync.h",
986 "include/grpc++/impl/codegen/sync_cxx11.h",
987 "include/grpc++/impl/codegen/sync_no_cxx11.h",
988 "include/grpc++/impl/codegen/sync_stream.h",
989 "include/grpc++/impl/codegen/time.h",
990 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700991 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700992 "include/grpc/impl/codegen/compression_types.h",
993 "include/grpc/impl/codegen/connectivity_state.h",
994 "include/grpc/impl/codegen/grpc_types.h",
995 "include/grpc/impl/codegen/propagation_bits.h",
996 "include/grpc/impl/codegen/status.h",
997 "include/grpc/impl/codegen/alloc.h",
998 "include/grpc/impl/codegen/atm.h",
999 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1000 "include/grpc/impl/codegen/atm_gcc_sync.h",
1001 "include/grpc/impl/codegen/atm_win32.h",
1002 "include/grpc/impl/codegen/log.h",
1003 "include/grpc/impl/codegen/port_platform.h",
1004 "include/grpc/impl/codegen/slice.h",
1005 "include/grpc/impl/codegen/slice_buffer.h",
1006 "include/grpc/impl/codegen/sync.h",
1007 "include/grpc/impl/codegen/sync_generic.h",
1008 "include/grpc/impl/codegen/sync_posix.h",
1009 "include/grpc/impl/codegen/sync_win32.h",
1010 "include/grpc/impl/codegen/time.h",
1011 "include/grpc++/impl/codegen/config.h",
1012 "include/grpc++/impl/codegen/config_protobuf.h",
1013 "include/grpc++/support/config.h",
1014 "include/grpc++/support/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001015 ],
1016 includes = [
1017 "include",
1018 ".",
1019 ],
1020 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001021 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001022 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001023 ":grpc",
1024 ],
1025)
1026
1027
Rob Earhartb7b8d052016-03-29 11:35:29 -07001028
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001029cc_library(
1030 name = "grpc++_unsecure",
1031 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001032 "src/cpp/client/create_channel_internal.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -08001033 "src/cpp/common/core_codegen.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001034 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001035 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001036 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001037 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001038 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001039 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001040 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001041 "src/cpp/client/credentials.cc",
1042 "src/cpp/client/generic_stub.cc",
1043 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001044 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001045 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001046 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001047 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001048 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001049 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001050 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001051 "src/cpp/server/insecure_server_credentials.cc",
1052 "src/cpp/server/server.cc",
1053 "src/cpp/server/server_builder.cc",
1054 "src/cpp/server/server_context.cc",
1055 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001056 "src/cpp/util/byte_buffer.cc",
1057 "src/cpp/util/slice.cc",
1058 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001059 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001060 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001061 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001062 ],
1063 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001064 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001065 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001066 "include/grpc++/client_context.h",
1067 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001068 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001069 "include/grpc++/generic/async_generic_service.h",
1070 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001071 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001072 "include/grpc++/impl/call.h",
1073 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -07001074 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001075 "include/grpc++/impl/method_handler_impl.h",
yang-gadfed032015-06-23 13:01:22 -07001076 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001077 "include/grpc++/impl/rpc_method.h",
1078 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001079 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001080 "include/grpc++/impl/server_builder_option.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001081 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001082 "include/grpc++/impl/sync.h",
1083 "include/grpc++/impl/sync_cxx11.h",
1084 "include/grpc++/impl/sync_no_cxx11.h",
1085 "include/grpc++/impl/thd.h",
1086 "include/grpc++/impl/thd_cxx11.h",
1087 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001088 "include/grpc++/security/auth_context.h",
1089 "include/grpc++/security/auth_metadata_processor.h",
1090 "include/grpc++/security/credentials.h",
1091 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001092 "include/grpc++/server.h",
1093 "include/grpc++/server_builder.h",
1094 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -07001095 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001096 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001097 "include/grpc++/support/byte_buffer.h",
1098 "include/grpc++/support/channel_arguments.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001099 "include/grpc++/support/slice.h",
1100 "include/grpc++/support/status.h",
1101 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001102 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001103 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001104 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001105 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001106 "include/grpc++/impl/codegen/async_stream.h",
1107 "include/grpc++/impl/codegen/async_unary_call.h",
1108 "include/grpc++/impl/codegen/call.h",
1109 "include/grpc++/impl/codegen/call_hook.h",
1110 "include/grpc++/impl/codegen/channel_interface.h",
1111 "include/grpc++/impl/codegen/client_context.h",
1112 "include/grpc++/impl/codegen/client_unary_call.h",
1113 "include/grpc++/impl/codegen/completion_queue.h",
1114 "include/grpc++/impl/codegen/completion_queue_tag.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001115 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001116 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001117 "include/grpc++/impl/codegen/grpc_library.h",
1118 "include/grpc++/impl/codegen/method_handler_impl.h",
1119 "include/grpc++/impl/codegen/proto_utils.h",
1120 "include/grpc++/impl/codegen/rpc_method.h",
1121 "include/grpc++/impl/codegen/rpc_service_method.h",
1122 "include/grpc++/impl/codegen/security/auth_context.h",
1123 "include/grpc++/impl/codegen/serialization_traits.h",
1124 "include/grpc++/impl/codegen/server_context.h",
1125 "include/grpc++/impl/codegen/server_interface.h",
1126 "include/grpc++/impl/codegen/service_type.h",
1127 "include/grpc++/impl/codegen/status.h",
1128 "include/grpc++/impl/codegen/status_code_enum.h",
1129 "include/grpc++/impl/codegen/string_ref.h",
1130 "include/grpc++/impl/codegen/stub_options.h",
1131 "include/grpc++/impl/codegen/sync.h",
1132 "include/grpc++/impl/codegen/sync_cxx11.h",
1133 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1134 "include/grpc++/impl/codegen/sync_stream.h",
1135 "include/grpc++/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001136 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001137 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001138 "include/grpc/impl/codegen/compression_types.h",
1139 "include/grpc/impl/codegen/connectivity_state.h",
1140 "include/grpc/impl/codegen/grpc_types.h",
1141 "include/grpc/impl/codegen/propagation_bits.h",
1142 "include/grpc/impl/codegen/status.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001143 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001144 "include/grpc/impl/codegen/atm.h",
1145 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1146 "include/grpc/impl/codegen/atm_gcc_sync.h",
1147 "include/grpc/impl/codegen/atm_win32.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001148 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001149 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001150 "include/grpc/impl/codegen/slice.h",
1151 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001152 "include/grpc/impl/codegen/sync.h",
1153 "include/grpc/impl/codegen/sync_generic.h",
1154 "include/grpc/impl/codegen/sync_posix.h",
1155 "include/grpc/impl/codegen/sync_win32.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001156 "include/grpc/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001157 "include/grpc++/impl/codegen/config.h",
1158 "include/grpc++/impl/codegen/config_protobuf.h",
1159 "include/grpc++/support/config.h",
1160 "include/grpc++/support/config_protobuf.h",
1161 ],
1162 includes = [
1163 "include",
1164 ".",
1165 ],
1166 deps = [
1167 "//external:protobuf_clib",
1168 ":gpr",
1169 ":grpc_unsecure",
1170 ":grpc",
1171 ],
1172)
1173
1174
1175
1176cc_library(
1177 name = "grpc_plugin_support",
1178 srcs = [
1179 "src/compiler/config.h",
1180 "src/compiler/cpp_generator.h",
1181 "src/compiler/cpp_generator_helpers.h",
1182 "src/compiler/csharp_generator.h",
1183 "src/compiler/csharp_generator_helpers.h",
1184 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001185 "src/compiler/node_generator.h",
1186 "src/compiler/node_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001187 "src/compiler/objective_c_generator.h",
1188 "src/compiler/objective_c_generator_helpers.h",
1189 "src/compiler/python_generator.h",
1190 "src/compiler/ruby_generator.h",
1191 "src/compiler/ruby_generator_helpers-inl.h",
1192 "src/compiler/ruby_generator_map-inl.h",
1193 "src/compiler/ruby_generator_string-inl.h",
1194 "src/compiler/cpp_generator.cc",
1195 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001196 "src/compiler/node_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001197 "src/compiler/objective_c_generator.cc",
1198 "src/compiler/python_generator.cc",
1199 "src/compiler/ruby_generator.cc",
1200 ],
1201 hdrs = [
1202 "include/grpc++/support/config.h",
1203 "include/grpc++/support/config_protobuf.h",
1204 "include/grpc++/impl/codegen/config.h",
1205 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001206 ],
1207 includes = [
1208 "include",
1209 ".",
1210 ],
1211 deps = [
1212 "//external:protobuf_compiler",
1213 ],
1214)
1215
1216
Rob Earhartb7b8d052016-03-29 11:35:29 -07001217
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001218cc_library(
1219 name = "grpc_csharp_ext",
1220 srcs = [
1221 "src/csharp/ext/grpc_csharp_ext.c",
1222 ],
1223 hdrs = [
1224 ],
1225 includes = [
1226 "include",
1227 ".",
1228 ],
1229 deps = [
Craig Tillerd1697d92016-04-05 16:05:46 -07001230 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001231 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001232 ],
1233)
1234
1235
1236
Rob Earhartb7b8d052016-03-29 11:35:29 -07001237
Jorge Canizales140bca82015-06-20 09:47:00 -07001238objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001239 name = "gpr_objc",
1240 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001241 "src/core/lib/profiling/basic_timers.c",
1242 "src/core/lib/profiling/stap_timers.c",
1243 "src/core/lib/support/alloc.c",
1244 "src/core/lib/support/avl.c",
1245 "src/core/lib/support/backoff.c",
1246 "src/core/lib/support/cmdline.c",
1247 "src/core/lib/support/cpu_iphone.c",
1248 "src/core/lib/support/cpu_linux.c",
1249 "src/core/lib/support/cpu_posix.c",
1250 "src/core/lib/support/cpu_windows.c",
1251 "src/core/lib/support/env_linux.c",
1252 "src/core/lib/support/env_posix.c",
1253 "src/core/lib/support/env_win32.c",
1254 "src/core/lib/support/histogram.c",
1255 "src/core/lib/support/host_port.c",
1256 "src/core/lib/support/load_file.c",
1257 "src/core/lib/support/log.c",
1258 "src/core/lib/support/log_android.c",
1259 "src/core/lib/support/log_linux.c",
1260 "src/core/lib/support/log_posix.c",
1261 "src/core/lib/support/log_win32.c",
1262 "src/core/lib/support/murmur_hash.c",
1263 "src/core/lib/support/slice.c",
1264 "src/core/lib/support/slice_buffer.c",
1265 "src/core/lib/support/stack_lockfree.c",
1266 "src/core/lib/support/string.c",
1267 "src/core/lib/support/string_posix.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001268 "src/core/lib/support/string_util_win32.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001269 "src/core/lib/support/string_win32.c",
1270 "src/core/lib/support/subprocess_posix.c",
1271 "src/core/lib/support/subprocess_windows.c",
1272 "src/core/lib/support/sync.c",
1273 "src/core/lib/support/sync_posix.c",
1274 "src/core/lib/support/sync_win32.c",
1275 "src/core/lib/support/thd.c",
1276 "src/core/lib/support/thd_posix.c",
1277 "src/core/lib/support/thd_win32.c",
1278 "src/core/lib/support/time.c",
1279 "src/core/lib/support/time_posix.c",
1280 "src/core/lib/support/time_precise.c",
1281 "src/core/lib/support/time_win32.c",
1282 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001283 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001284 "src/core/lib/support/tmpfile_posix.c",
1285 "src/core/lib/support/tmpfile_win32.c",
1286 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001287 ],
1288 hdrs = [
1289 "include/grpc/support/alloc.h",
1290 "include/grpc/support/atm.h",
1291 "include/grpc/support/atm_gcc_atomic.h",
1292 "include/grpc/support/atm_gcc_sync.h",
1293 "include/grpc/support/atm_win32.h",
1294 "include/grpc/support/avl.h",
1295 "include/grpc/support/cmdline.h",
1296 "include/grpc/support/cpu.h",
1297 "include/grpc/support/histogram.h",
1298 "include/grpc/support/host_port.h",
1299 "include/grpc/support/log.h",
1300 "include/grpc/support/log_win32.h",
1301 "include/grpc/support/port_platform.h",
1302 "include/grpc/support/slice.h",
1303 "include/grpc/support/slice_buffer.h",
1304 "include/grpc/support/string_util.h",
1305 "include/grpc/support/subprocess.h",
1306 "include/grpc/support/sync.h",
1307 "include/grpc/support/sync_generic.h",
1308 "include/grpc/support/sync_posix.h",
1309 "include/grpc/support/sync_win32.h",
1310 "include/grpc/support/thd.h",
1311 "include/grpc/support/time.h",
1312 "include/grpc/support/tls.h",
1313 "include/grpc/support/tls_gcc.h",
1314 "include/grpc/support/tls_msvc.h",
1315 "include/grpc/support/tls_pthread.h",
1316 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001317 "include/grpc/impl/codegen/alloc.h",
1318 "include/grpc/impl/codegen/atm.h",
1319 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1320 "include/grpc/impl/codegen/atm_gcc_sync.h",
1321 "include/grpc/impl/codegen/atm_win32.h",
1322 "include/grpc/impl/codegen/log.h",
1323 "include/grpc/impl/codegen/port_platform.h",
1324 "include/grpc/impl/codegen/slice.h",
1325 "include/grpc/impl/codegen/slice_buffer.h",
1326 "include/grpc/impl/codegen/sync.h",
1327 "include/grpc/impl/codegen/sync_generic.h",
1328 "include/grpc/impl/codegen/sync_posix.h",
1329 "include/grpc/impl/codegen/sync_win32.h",
1330 "include/grpc/impl/codegen/time.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001331 "src/core/lib/profiling/timers.h",
1332 "src/core/lib/support/backoff.h",
1333 "src/core/lib/support/block_annotate.h",
1334 "src/core/lib/support/env.h",
1335 "src/core/lib/support/load_file.h",
1336 "src/core/lib/support/murmur_hash.h",
1337 "src/core/lib/support/stack_lockfree.h",
1338 "src/core/lib/support/string.h",
1339 "src/core/lib/support/string_win32.h",
1340 "src/core/lib/support/thd_internal.h",
1341 "src/core/lib/support/time_precise.h",
1342 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001343 ],
1344 includes = [
1345 "include",
1346 ".",
1347 ],
1348 deps = [
1349 ],
1350)
1351
1352
Rob Earhartb7b8d052016-03-29 11:35:29 -07001353
Craig Tillerda179ce2016-02-09 12:01:53 -08001354objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001355 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001356 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001357 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001358 "src/core/lib/channel/channel_args.c",
1359 "src/core/lib/channel/channel_stack.c",
1360 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001361 "src/core/lib/channel/compress_filter.c",
1362 "src/core/lib/channel/connected_channel.c",
1363 "src/core/lib/channel/http_client_filter.c",
1364 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001365 "src/core/lib/compression/compression_algorithm.c",
1366 "src/core/lib/compression/message_compress.c",
1367 "src/core/lib/debug/trace.c",
1368 "src/core/lib/http/format_request.c",
1369 "src/core/lib/http/httpcli.c",
1370 "src/core/lib/http/parser.c",
1371 "src/core/lib/iomgr/closure.c",
1372 "src/core/lib/iomgr/endpoint.c",
1373 "src/core/lib/iomgr/endpoint_pair_posix.c",
1374 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001375 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
1376 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001377 "src/core/lib/iomgr/exec_ctx.c",
1378 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001379 "src/core/lib/iomgr/iocp_windows.c",
1380 "src/core/lib/iomgr/iomgr.c",
1381 "src/core/lib/iomgr/iomgr_posix.c",
1382 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001383 "src/core/lib/iomgr/pollset_set_windows.c",
1384 "src/core/lib/iomgr/pollset_windows.c",
1385 "src/core/lib/iomgr/resolve_address_posix.c",
1386 "src/core/lib/iomgr/resolve_address_windows.c",
1387 "src/core/lib/iomgr/sockaddr_utils.c",
1388 "src/core/lib/iomgr/socket_utils_common_posix.c",
1389 "src/core/lib/iomgr/socket_utils_linux.c",
1390 "src/core/lib/iomgr/socket_utils_posix.c",
1391 "src/core/lib/iomgr/socket_windows.c",
1392 "src/core/lib/iomgr/tcp_client_posix.c",
1393 "src/core/lib/iomgr/tcp_client_windows.c",
1394 "src/core/lib/iomgr/tcp_posix.c",
1395 "src/core/lib/iomgr/tcp_server_posix.c",
1396 "src/core/lib/iomgr/tcp_server_windows.c",
1397 "src/core/lib/iomgr/tcp_windows.c",
1398 "src/core/lib/iomgr/time_averaged_stats.c",
1399 "src/core/lib/iomgr/timer.c",
1400 "src/core/lib/iomgr/timer_heap.c",
1401 "src/core/lib/iomgr/udp_server.c",
1402 "src/core/lib/iomgr/unix_sockets_posix.c",
1403 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1404 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1405 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1406 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1407 "src/core/lib/iomgr/wakeup_fd_posix.c",
1408 "src/core/lib/iomgr/workqueue_posix.c",
1409 "src/core/lib/iomgr/workqueue_windows.c",
1410 "src/core/lib/json/json.c",
1411 "src/core/lib/json/json_reader.c",
1412 "src/core/lib/json/json_string.c",
1413 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001414 "src/core/lib/surface/alarm.c",
1415 "src/core/lib/surface/api_trace.c",
1416 "src/core/lib/surface/byte_buffer.c",
1417 "src/core/lib/surface/byte_buffer_reader.c",
1418 "src/core/lib/surface/call.c",
1419 "src/core/lib/surface/call_details.c",
1420 "src/core/lib/surface/call_log_batch.c",
1421 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001422 "src/core/lib/surface/channel_init.c",
1423 "src/core/lib/surface/channel_ping.c",
1424 "src/core/lib/surface/channel_stack_type.c",
1425 "src/core/lib/surface/completion_queue.c",
1426 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001427 "src/core/lib/surface/lame_client.c",
1428 "src/core/lib/surface/metadata_array.c",
1429 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001430 "src/core/lib/surface/validate_metadata.c",
1431 "src/core/lib/surface/version.c",
1432 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001433 "src/core/lib/transport/connectivity_state.c",
1434 "src/core/lib/transport/metadata.c",
1435 "src/core/lib/transport/metadata_batch.c",
1436 "src/core/lib/transport/static_metadata.c",
1437 "src/core/lib/transport/transport.c",
1438 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001439 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
1440 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1441 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1442 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1443 "src/core/ext/transport/chttp2/transport/frame_data.c",
1444 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1445 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1446 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1447 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1448 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1449 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1450 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1451 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1452 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1453 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1454 "src/core/ext/transport/chttp2/transport/parsing.c",
1455 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1456 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1457 "src/core/ext/transport/chttp2/transport/stream_map.c",
1458 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1459 "src/core/ext/transport/chttp2/transport/varint.c",
1460 "src/core/ext/transport/chttp2/transport/writing.c",
1461 "src/core/ext/transport/chttp2/alpn/alpn.c",
1462 "src/core/lib/http/httpcli_security_connector.c",
1463 "src/core/lib/security/b64.c",
1464 "src/core/lib/security/client_auth_filter.c",
1465 "src/core/lib/security/credentials.c",
1466 "src/core/lib/security/credentials_metadata.c",
1467 "src/core/lib/security/credentials_posix.c",
1468 "src/core/lib/security/credentials_win32.c",
1469 "src/core/lib/security/google_default_credentials.c",
1470 "src/core/lib/security/handshake.c",
1471 "src/core/lib/security/json_token.c",
1472 "src/core/lib/security/jwt_verifier.c",
1473 "src/core/lib/security/secure_endpoint.c",
1474 "src/core/lib/security/security_connector.c",
1475 "src/core/lib/security/security_context.c",
1476 "src/core/lib/security/server_auth_filter.c",
1477 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001478 "src/core/lib/tsi/fake_transport_security.c",
1479 "src/core/lib/tsi/ssl_transport_security.c",
1480 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001481 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
1482 "src/core/ext/client_config/channel_connectivity.c",
1483 "src/core/ext/client_config/client_channel.c",
1484 "src/core/ext/client_config/client_channel_factory.c",
1485 "src/core/ext/client_config/client_config.c",
1486 "src/core/ext/client_config/client_config_plugin.c",
1487 "src/core/ext/client_config/connector.c",
1488 "src/core/ext/client_config/default_initial_connect_string.c",
1489 "src/core/ext/client_config/initial_connect_string.c",
1490 "src/core/ext/client_config/lb_policy.c",
1491 "src/core/ext/client_config/lb_policy_factory.c",
1492 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001493 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001494 "src/core/ext/client_config/resolver.c",
1495 "src/core/ext/client_config/resolver_factory.c",
1496 "src/core/ext/client_config/resolver_registry.c",
1497 "src/core/ext/client_config/subchannel.c",
1498 "src/core/ext/client_config/subchannel_call_holder.c",
1499 "src/core/ext/client_config/subchannel_index.c",
1500 "src/core/ext/client_config/uri_parser.c",
1501 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1502 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -07001503 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
1504 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
1505 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001506 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
1507 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c",
1508 "src/core/ext/lb_policy/pick_first/pick_first.c",
1509 "src/core/ext/lb_policy/round_robin/round_robin.c",
1510 "src/core/ext/resolver/dns/native/dns_resolver.c",
1511 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
1512 "src/core/ext/census/context.c",
1513 "src/core/ext/census/grpc_context.c",
1514 "src/core/ext/census/grpc_filter.c",
1515 "src/core/ext/census/grpc_plugin.c",
1516 "src/core/ext/census/initialize.c",
1517 "src/core/ext/census/mlog.c",
1518 "src/core/ext/census/operation.c",
1519 "src/core/ext/census/placeholders.c",
1520 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001521 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001522 ],
1523 hdrs = [
1524 "include/grpc/byte_buffer.h",
1525 "include/grpc/byte_buffer_reader.h",
1526 "include/grpc/compression.h",
1527 "include/grpc/grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001528 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001529 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001530 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001531 "include/grpc/impl/codegen/compression_types.h",
1532 "include/grpc/impl/codegen/connectivity_state.h",
1533 "include/grpc/impl/codegen/grpc_types.h",
1534 "include/grpc/impl/codegen/propagation_bits.h",
1535 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001536 "include/grpc/impl/codegen/alloc.h",
1537 "include/grpc/impl/codegen/atm.h",
1538 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1539 "include/grpc/impl/codegen/atm_gcc_sync.h",
1540 "include/grpc/impl/codegen/atm_win32.h",
1541 "include/grpc/impl/codegen/log.h",
1542 "include/grpc/impl/codegen/port_platform.h",
1543 "include/grpc/impl/codegen/slice.h",
1544 "include/grpc/impl/codegen/slice_buffer.h",
1545 "include/grpc/impl/codegen/sync.h",
1546 "include/grpc/impl/codegen/sync_generic.h",
1547 "include/grpc/impl/codegen/sync_posix.h",
1548 "include/grpc/impl/codegen/sync_win32.h",
1549 "include/grpc/impl/codegen/time.h",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -07001550 "include/grpc/grpc_cronet.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001551 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -07001552 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001553 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001554 "src/core/lib/channel/channel_args.h",
1555 "src/core/lib/channel/channel_stack.h",
1556 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001557 "src/core/lib/channel/compress_filter.h",
1558 "src/core/lib/channel/connected_channel.h",
1559 "src/core/lib/channel/context.h",
1560 "src/core/lib/channel/http_client_filter.h",
1561 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001562 "src/core/lib/compression/algorithm_metadata.h",
1563 "src/core/lib/compression/message_compress.h",
1564 "src/core/lib/debug/trace.h",
1565 "src/core/lib/http/format_request.h",
1566 "src/core/lib/http/httpcli.h",
1567 "src/core/lib/http/parser.h",
1568 "src/core/lib/iomgr/closure.h",
1569 "src/core/lib/iomgr/endpoint.h",
1570 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -07001571 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
1572 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001573 "src/core/lib/iomgr/exec_ctx.h",
1574 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001575 "src/core/lib/iomgr/iocp_windows.h",
1576 "src/core/lib/iomgr/iomgr.h",
1577 "src/core/lib/iomgr/iomgr_internal.h",
1578 "src/core/lib/iomgr/iomgr_posix.h",
1579 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001580 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001581 "src/core/lib/iomgr/pollset_set_windows.h",
1582 "src/core/lib/iomgr/pollset_windows.h",
1583 "src/core/lib/iomgr/resolve_address.h",
1584 "src/core/lib/iomgr/sockaddr.h",
1585 "src/core/lib/iomgr/sockaddr_posix.h",
1586 "src/core/lib/iomgr/sockaddr_utils.h",
1587 "src/core/lib/iomgr/sockaddr_win32.h",
1588 "src/core/lib/iomgr/socket_utils_posix.h",
1589 "src/core/lib/iomgr/socket_windows.h",
1590 "src/core/lib/iomgr/tcp_client.h",
1591 "src/core/lib/iomgr/tcp_posix.h",
1592 "src/core/lib/iomgr/tcp_server.h",
1593 "src/core/lib/iomgr/tcp_windows.h",
1594 "src/core/lib/iomgr/time_averaged_stats.h",
1595 "src/core/lib/iomgr/timer.h",
1596 "src/core/lib/iomgr/timer_heap.h",
1597 "src/core/lib/iomgr/udp_server.h",
1598 "src/core/lib/iomgr/unix_sockets_posix.h",
1599 "src/core/lib/iomgr/wakeup_fd_pipe.h",
1600 "src/core/lib/iomgr/wakeup_fd_posix.h",
1601 "src/core/lib/iomgr/workqueue.h",
1602 "src/core/lib/iomgr/workqueue_posix.h",
1603 "src/core/lib/iomgr/workqueue_windows.h",
1604 "src/core/lib/json/json.h",
1605 "src/core/lib/json/json_common.h",
1606 "src/core/lib/json/json_reader.h",
1607 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001608 "src/core/lib/surface/api_trace.h",
1609 "src/core/lib/surface/call.h",
1610 "src/core/lib/surface/call_test_only.h",
1611 "src/core/lib/surface/channel.h",
1612 "src/core/lib/surface/channel_init.h",
1613 "src/core/lib/surface/channel_stack_type.h",
1614 "src/core/lib/surface/completion_queue.h",
1615 "src/core/lib/surface/event_string.h",
1616 "src/core/lib/surface/init.h",
1617 "src/core/lib/surface/lame_client.h",
1618 "src/core/lib/surface/server.h",
1619 "src/core/lib/surface/surface_trace.h",
1620 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001621 "src/core/lib/transport/connectivity_state.h",
1622 "src/core/lib/transport/metadata.h",
1623 "src/core/lib/transport/metadata_batch.h",
1624 "src/core/lib/transport/static_metadata.h",
1625 "src/core/lib/transport/transport.h",
1626 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001627 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
1628 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
1629 "src/core/ext/transport/chttp2/transport/frame.h",
1630 "src/core/ext/transport/chttp2/transport/frame_data.h",
1631 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
1632 "src/core/ext/transport/chttp2/transport/frame_ping.h",
1633 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
1634 "src/core/ext/transport/chttp2/transport/frame_settings.h",
1635 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
1636 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
1637 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
1638 "src/core/ext/transport/chttp2/transport/hpack_table.h",
1639 "src/core/ext/transport/chttp2/transport/http2_errors.h",
1640 "src/core/ext/transport/chttp2/transport/huffsyms.h",
1641 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
1642 "src/core/ext/transport/chttp2/transport/internal.h",
1643 "src/core/ext/transport/chttp2/transport/status_conversion.h",
1644 "src/core/ext/transport/chttp2/transport/stream_map.h",
1645 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
1646 "src/core/ext/transport/chttp2/transport/varint.h",
1647 "src/core/ext/transport/chttp2/alpn/alpn.h",
1648 "src/core/lib/security/auth_filters.h",
1649 "src/core/lib/security/b64.h",
1650 "src/core/lib/security/credentials.h",
1651 "src/core/lib/security/handshake.h",
1652 "src/core/lib/security/json_token.h",
1653 "src/core/lib/security/jwt_verifier.h",
1654 "src/core/lib/security/secure_endpoint.h",
1655 "src/core/lib/security/security_connector.h",
1656 "src/core/lib/security/security_context.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001657 "src/core/lib/tsi/fake_transport_security.h",
1658 "src/core/lib/tsi/ssl_transport_security.h",
1659 "src/core/lib/tsi/ssl_types.h",
1660 "src/core/lib/tsi/transport_security.h",
1661 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001662 "src/core/ext/client_config/client_channel.h",
1663 "src/core/ext/client_config/client_channel_factory.h",
1664 "src/core/ext/client_config/client_config.h",
1665 "src/core/ext/client_config/connector.h",
1666 "src/core/ext/client_config/initial_connect_string.h",
1667 "src/core/ext/client_config/lb_policy.h",
1668 "src/core/ext/client_config/lb_policy_factory.h",
1669 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001670 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001671 "src/core/ext/client_config/resolver.h",
1672 "src/core/ext/client_config/resolver_factory.h",
1673 "src/core/ext/client_config/resolver_registry.h",
1674 "src/core/ext/client_config/subchannel.h",
1675 "src/core/ext/client_config/subchannel_call_holder.h",
1676 "src/core/ext/client_config/subchannel_index.h",
1677 "src/core/ext/client_config/uri_parser.h",
Makarand Dharmapurikard5d8f8f2016-05-04 13:22:26 -07001678 "include/grpc/byte_buffer.h",
1679 "include/grpc/grpc.h",
1680 "include/grpc/impl/codegen/alloc.h",
1681 "include/grpc/impl/codegen/atm.h",
1682 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1683 "include/grpc/impl/codegen/atm_gcc_sync.h",
1684 "include/grpc/impl/codegen/atm_win32.h",
1685 "include/grpc/impl/codegen/byte_buffer.h",
1686 "include/grpc/impl/codegen/compression_types.h",
1687 "include/grpc/impl/codegen/connectivity_state.h",
1688 "include/grpc/impl/codegen/grpc_types.h",
1689 "include/grpc/impl/codegen/log.h",
1690 "include/grpc/impl/codegen/port_platform.h",
1691 "include/grpc/impl/codegen/propagation_bits.h",
1692 "include/grpc/impl/codegen/slice.h",
1693 "include/grpc/impl/codegen/slice_buffer.h",
1694 "include/grpc/impl/codegen/status.h",
1695 "include/grpc/impl/codegen/sync.h",
1696 "include/grpc/impl/codegen/sync_generic.h",
1697 "include/grpc/impl/codegen/sync_posix.h",
1698 "include/grpc/impl/codegen/sync_win32.h",
1699 "include/grpc/impl/codegen/time.h",
1700 "include/grpc/status.h",
1701 "include/grpc/support/alloc.h",
1702 "include/grpc/support/atm.h",
1703 "include/grpc/support/host_port.h",
1704 "include/grpc/support/log.h",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -07001705 "include/grpc/support/port_platform.h",
Makarand Dharmapurikard5d8f8f2016-05-04 13:22:26 -07001706 "include/grpc/support/slice.h",
1707 "include/grpc/support/slice_buffer.h",
1708 "include/grpc/support/string_util.h",
1709 "include/grpc/support/sync.h",
1710 "include/grpc/support/time.h",
1711 "include/grpc/support/useful.h",
1712 "src/core/lib/support/string.h",
Makarand Dharmapurikar274bcc82016-05-03 17:34:54 -07001713 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001714 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
1715 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h",
1716 "src/core/ext/census/aggregation.h",
1717 "src/core/ext/census/census_interface.h",
1718 "src/core/ext/census/census_rpc_stats.h",
1719 "src/core/ext/census/grpc_filter.h",
1720 "src/core/ext/census/mlog.h",
1721 "src/core/ext/census/rpc_metric_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001722 ],
1723 includes = [
1724 "include",
1725 ".",
1726 ],
1727 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001728 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07001729 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001730 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07001731 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07001732 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07001733)
1734
1735
1736
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001737cc_binary(
1738 name = "grpc_cpp_plugin",
1739 srcs = [
1740 "src/compiler/cpp_plugin.cc",
1741 ],
1742 deps = [
1743 "//external:protobuf_compiler",
1744 ":grpc_plugin_support",
1745 ],
1746)
1747
1748
1749cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07001750 name = "grpc_csharp_plugin",
1751 srcs = [
1752 "src/compiler/csharp_plugin.cc",
1753 ],
1754 deps = [
1755 "//external:protobuf_compiler",
1756 ":grpc_plugin_support",
1757 ],
1758)
1759
1760
1761cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08001762 name = "grpc_node_plugin",
1763 srcs = [
1764 "src/compiler/node_plugin.cc",
1765 ],
1766 deps = [
1767 "//external:protobuf_compiler",
1768 ":grpc_plugin_support",
1769 ],
1770)
1771
1772
1773cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001774 name = "grpc_objective_c_plugin",
1775 srcs = [
1776 "src/compiler/objective_c_plugin.cc",
1777 ],
1778 deps = [
1779 "//external:protobuf_compiler",
1780 ":grpc_plugin_support",
1781 ],
1782)
1783
1784
1785cc_binary(
1786 name = "grpc_python_plugin",
1787 srcs = [
1788 "src/compiler/python_plugin.cc",
1789 ],
1790 deps = [
1791 "//external:protobuf_compiler",
1792 ":grpc_plugin_support",
1793 ],
1794)
1795
1796
1797cc_binary(
1798 name = "grpc_ruby_plugin",
1799 srcs = [
1800 "src/compiler/ruby_plugin.cc",
1801 ],
1802 deps = [
1803 "//external:protobuf_compiler",
1804 ":grpc_plugin_support",
1805 ],
1806)
1807
1808
1809
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001810
1811
Jorge Canizales140bca82015-06-20 09:47:00 -07001812
Jorge Canizales91e67a22015-06-24 13:50:04 -07001813
1814
Jorge Canizales44dc4232015-06-19 16:30:31 -07001815objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07001816
Jorge Canizales44dc4232015-06-19 16:30:31 -07001817rx_library_path = objc_path + "/RxLibrary"
1818
1819objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001820 name = "rx_library",
1821 hdrs = glob([
1822 rx_library_path + "/*.h",
1823 rx_library_path + "/transformations/*.h",
1824 ]),
1825 srcs = glob([
1826 rx_library_path + "/*.m",
1827 rx_library_path + "/transformations/*.m",
1828 ]),
1829 includes = [objc_path],
1830 deps = [
1831 ":rx_library_private",
1832 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001833)
1834
1835objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001836 name = "rx_library_private",
1837 hdrs = glob([rx_library_path + "/private/*.h"]),
1838 srcs = glob([rx_library_path + "/private/*.m"]),
1839 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001840)
Jorge Canizales866255e2015-06-20 18:58:38 -07001841
1842objc_client_path = objc_path + "/GRPCClient"
1843
1844objc_library(
1845 name = "grpc_client",
1846 hdrs = glob([
1847 objc_client_path + "/*.h",
1848 objc_client_path + "/private/*.h",
1849 ]),
1850 srcs = glob([
1851 objc_client_path + "/*.m",
1852 objc_client_path + "/private/*.m",
1853 ]),
1854 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001855 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07001856 deps = [
1857 ":grpc_objc",
1858 ":rx_library",
1859 ],
1860)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001861
1862objc_bundle_library(
1863 # The choice of name is signicant here, since it determines the bundle name.
1864 name = "gRPCCertificates",
1865 resources = ["etc/roots.pem"],
1866)
Jorge Canizales50f19822015-06-28 23:48:30 -07001867
1868proto_objc_rpc_path = objc_path + "/ProtoRPC"
1869
1870objc_library(
1871 name = "proto_objc_rpc",
1872 hdrs = glob([
1873 proto_objc_rpc_path + "/*.h",
1874 ]),
1875 srcs = glob([
1876 proto_objc_rpc_path + "/*.m",
1877 ]),
1878 includes = [objc_path],
1879 deps = [
1880 ":grpc_client",
1881 ":rx_library",
1882 "//external:protobuf_objc",
1883 ],
1884)