blob: edc3456a8e24f194fa8e24a9d03cecd554d6a113 [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 Tiller27f59af2016-04-28 14:19:48 -0700181 "src/core/lib/iomgr/error.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700182 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
183 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700184 "src/core/lib/iomgr/exec_ctx.h",
185 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700186 "src/core/lib/iomgr/iocp_windows.h",
187 "src/core/lib/iomgr/iomgr.h",
188 "src/core/lib/iomgr/iomgr_internal.h",
189 "src/core/lib/iomgr/iomgr_posix.h",
190 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700191 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700192 "src/core/lib/iomgr/pollset_set_windows.h",
193 "src/core/lib/iomgr/pollset_windows.h",
194 "src/core/lib/iomgr/resolve_address.h",
195 "src/core/lib/iomgr/sockaddr.h",
196 "src/core/lib/iomgr/sockaddr_posix.h",
197 "src/core/lib/iomgr/sockaddr_utils.h",
198 "src/core/lib/iomgr/sockaddr_win32.h",
199 "src/core/lib/iomgr/socket_utils_posix.h",
200 "src/core/lib/iomgr/socket_windows.h",
201 "src/core/lib/iomgr/tcp_client.h",
202 "src/core/lib/iomgr/tcp_posix.h",
203 "src/core/lib/iomgr/tcp_server.h",
204 "src/core/lib/iomgr/tcp_windows.h",
205 "src/core/lib/iomgr/time_averaged_stats.h",
206 "src/core/lib/iomgr/timer.h",
207 "src/core/lib/iomgr/timer_heap.h",
208 "src/core/lib/iomgr/udp_server.h",
209 "src/core/lib/iomgr/unix_sockets_posix.h",
210 "src/core/lib/iomgr/wakeup_fd_pipe.h",
211 "src/core/lib/iomgr/wakeup_fd_posix.h",
212 "src/core/lib/iomgr/workqueue.h",
213 "src/core/lib/iomgr/workqueue_posix.h",
214 "src/core/lib/iomgr/workqueue_windows.h",
215 "src/core/lib/json/json.h",
216 "src/core/lib/json/json_common.h",
217 "src/core/lib/json/json_reader.h",
218 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700219 "src/core/lib/surface/api_trace.h",
220 "src/core/lib/surface/call.h",
221 "src/core/lib/surface/call_test_only.h",
222 "src/core/lib/surface/channel.h",
223 "src/core/lib/surface/channel_init.h",
224 "src/core/lib/surface/channel_stack_type.h",
225 "src/core/lib/surface/completion_queue.h",
226 "src/core/lib/surface/event_string.h",
227 "src/core/lib/surface/init.h",
228 "src/core/lib/surface/lame_client.h",
229 "src/core/lib/surface/server.h",
230 "src/core/lib/surface/surface_trace.h",
231 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700232 "src/core/lib/transport/connectivity_state.h",
233 "src/core/lib/transport/metadata.h",
234 "src/core/lib/transport/metadata_batch.h",
235 "src/core/lib/transport/static_metadata.h",
236 "src/core/lib/transport/transport.h",
237 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700238 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
239 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
240 "src/core/ext/transport/chttp2/transport/frame.h",
241 "src/core/ext/transport/chttp2/transport/frame_data.h",
242 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
243 "src/core/ext/transport/chttp2/transport/frame_ping.h",
244 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
245 "src/core/ext/transport/chttp2/transport/frame_settings.h",
246 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
247 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
248 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
249 "src/core/ext/transport/chttp2/transport/hpack_table.h",
250 "src/core/ext/transport/chttp2/transport/http2_errors.h",
251 "src/core/ext/transport/chttp2/transport/huffsyms.h",
252 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
253 "src/core/ext/transport/chttp2/transport/internal.h",
254 "src/core/ext/transport/chttp2/transport/status_conversion.h",
255 "src/core/ext/transport/chttp2/transport/stream_map.h",
256 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
257 "src/core/ext/transport/chttp2/transport/varint.h",
258 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700259 "src/core/lib/security/context/security_context.h",
260 "src/core/lib/security/credentials/composite/composite_credentials.h",
261 "src/core/lib/security/credentials/credentials.h",
262 "src/core/lib/security/credentials/fake/fake_credentials.h",
263 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
264 "src/core/lib/security/credentials/iam/iam_credentials.h",
265 "src/core/lib/security/credentials/jwt/json_token.h",
266 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
267 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
268 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
269 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
270 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
271 "src/core/lib/security/transport/auth_filters.h",
272 "src/core/lib/security/transport/handshake.h",
273 "src/core/lib/security/transport/secure_endpoint.h",
274 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -0700275 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700276 "src/core/lib/security/util/b64.h",
277 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700278 "src/core/lib/tsi/fake_transport_security.h",
279 "src/core/lib/tsi/ssl_transport_security.h",
280 "src/core/lib/tsi/ssl_types.h",
281 "src/core/lib/tsi/transport_security.h",
282 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700283 "src/core/ext/client_config/client_channel.h",
284 "src/core/ext/client_config/client_channel_factory.h",
285 "src/core/ext/client_config/client_config.h",
286 "src/core/ext/client_config/connector.h",
287 "src/core/ext/client_config/initial_connect_string.h",
288 "src/core/ext/client_config/lb_policy.h",
289 "src/core/ext/client_config/lb_policy_factory.h",
290 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700291 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700292 "src/core/ext/client_config/resolver.h",
293 "src/core/ext/client_config/resolver_factory.h",
294 "src/core/ext/client_config/resolver_registry.h",
295 "src/core/ext/client_config/subchannel.h",
296 "src/core/ext/client_config/subchannel_call_holder.h",
297 "src/core/ext/client_config/subchannel_index.h",
298 "src/core/ext/client_config/uri_parser.h",
makdharmac2ec95b2016-05-11 16:26:15 -0700299 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700300 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700301 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700302 "src/core/ext/census/aggregation.h",
303 "src/core/ext/census/census_interface.h",
304 "src/core/ext/census/census_rpc_stats.h",
305 "src/core/ext/census/grpc_filter.h",
306 "src/core/ext/census/mlog.h",
307 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700308 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700309 "src/core/lib/channel/channel_args.c",
310 "src/core/lib/channel/channel_stack.c",
311 "src/core/lib/channel/channel_stack_builder.c",
312 "src/core/lib/channel/compress_filter.c",
313 "src/core/lib/channel/connected_channel.c",
314 "src/core/lib/channel/http_client_filter.c",
315 "src/core/lib/channel/http_server_filter.c",
316 "src/core/lib/compression/compression_algorithm.c",
317 "src/core/lib/compression/message_compress.c",
318 "src/core/lib/debug/trace.c",
319 "src/core/lib/http/format_request.c",
320 "src/core/lib/http/httpcli.c",
321 "src/core/lib/http/parser.c",
322 "src/core/lib/iomgr/closure.c",
323 "src/core/lib/iomgr/endpoint.c",
324 "src/core/lib/iomgr/endpoint_pair_posix.c",
325 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -0700326 "src/core/lib/iomgr/error.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700327 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
328 "src/core/lib/iomgr/ev_posix.c",
329 "src/core/lib/iomgr/exec_ctx.c",
330 "src/core/lib/iomgr/executor.c",
331 "src/core/lib/iomgr/iocp_windows.c",
332 "src/core/lib/iomgr/iomgr.c",
333 "src/core/lib/iomgr/iomgr_posix.c",
334 "src/core/lib/iomgr/iomgr_windows.c",
335 "src/core/lib/iomgr/pollset_set_windows.c",
336 "src/core/lib/iomgr/pollset_windows.c",
337 "src/core/lib/iomgr/resolve_address_posix.c",
338 "src/core/lib/iomgr/resolve_address_windows.c",
339 "src/core/lib/iomgr/sockaddr_utils.c",
340 "src/core/lib/iomgr/socket_utils_common_posix.c",
341 "src/core/lib/iomgr/socket_utils_linux.c",
342 "src/core/lib/iomgr/socket_utils_posix.c",
343 "src/core/lib/iomgr/socket_windows.c",
344 "src/core/lib/iomgr/tcp_client_posix.c",
345 "src/core/lib/iomgr/tcp_client_windows.c",
346 "src/core/lib/iomgr/tcp_posix.c",
347 "src/core/lib/iomgr/tcp_server_posix.c",
348 "src/core/lib/iomgr/tcp_server_windows.c",
349 "src/core/lib/iomgr/tcp_windows.c",
350 "src/core/lib/iomgr/time_averaged_stats.c",
351 "src/core/lib/iomgr/timer.c",
352 "src/core/lib/iomgr/timer_heap.c",
353 "src/core/lib/iomgr/udp_server.c",
354 "src/core/lib/iomgr/unix_sockets_posix.c",
355 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
356 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
357 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
358 "src/core/lib/iomgr/wakeup_fd_pipe.c",
359 "src/core/lib/iomgr/wakeup_fd_posix.c",
360 "src/core/lib/iomgr/workqueue_posix.c",
361 "src/core/lib/iomgr/workqueue_windows.c",
362 "src/core/lib/json/json.c",
363 "src/core/lib/json/json_reader.c",
364 "src/core/lib/json/json_string.c",
365 "src/core/lib/json/json_writer.c",
366 "src/core/lib/surface/alarm.c",
367 "src/core/lib/surface/api_trace.c",
368 "src/core/lib/surface/byte_buffer.c",
369 "src/core/lib/surface/byte_buffer_reader.c",
370 "src/core/lib/surface/call.c",
371 "src/core/lib/surface/call_details.c",
372 "src/core/lib/surface/call_log_batch.c",
373 "src/core/lib/surface/channel.c",
374 "src/core/lib/surface/channel_init.c",
375 "src/core/lib/surface/channel_ping.c",
376 "src/core/lib/surface/channel_stack_type.c",
377 "src/core/lib/surface/completion_queue.c",
378 "src/core/lib/surface/event_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700379 "src/core/lib/surface/lame_client.c",
380 "src/core/lib/surface/metadata_array.c",
381 "src/core/lib/surface/server.c",
382 "src/core/lib/surface/validate_metadata.c",
383 "src/core/lib/surface/version.c",
384 "src/core/lib/transport/byte_stream.c",
385 "src/core/lib/transport/connectivity_state.c",
386 "src/core/lib/transport/metadata.c",
387 "src/core/lib/transport/metadata_batch.c",
388 "src/core/lib/transport/static_metadata.c",
389 "src/core/lib/transport/transport.c",
390 "src/core/lib/transport/transport_op_string.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700391 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700392 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
393 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700394 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
395 "src/core/ext/transport/chttp2/transport/frame_data.c",
396 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
397 "src/core/ext/transport/chttp2/transport/frame_ping.c",
398 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
399 "src/core/ext/transport/chttp2/transport/frame_settings.c",
400 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
401 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
402 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
403 "src/core/ext/transport/chttp2/transport/hpack_table.c",
404 "src/core/ext/transport/chttp2/transport/huffsyms.c",
405 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
406 "src/core/ext/transport/chttp2/transport/parsing.c",
407 "src/core/ext/transport/chttp2/transport/status_conversion.c",
408 "src/core/ext/transport/chttp2/transport/stream_lists.c",
409 "src/core/ext/transport/chttp2/transport/stream_map.c",
410 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
411 "src/core/ext/transport/chttp2/transport/varint.c",
412 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700413 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700414 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700415 "src/core/lib/security/context/security_context.c",
416 "src/core/lib/security/credentials/composite/composite_credentials.c",
417 "src/core/lib/security/credentials/credentials.c",
418 "src/core/lib/security/credentials/credentials_metadata.c",
419 "src/core/lib/security/credentials/fake/fake_credentials.c",
420 "src/core/lib/security/credentials/google_default/credentials_posix.c",
421 "src/core/lib/security/credentials/google_default/credentials_win32.c",
422 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
423 "src/core/lib/security/credentials/iam/iam_credentials.c",
424 "src/core/lib/security/credentials/jwt/json_token.c",
425 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
426 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
427 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
428 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
429 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
430 "src/core/lib/security/transport/client_auth_filter.c",
431 "src/core/lib/security/transport/handshake.c",
432 "src/core/lib/security/transport/secure_endpoint.c",
433 "src/core/lib/security/transport/security_connector.c",
434 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -0700435 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700436 "src/core/lib/security/util/b64.c",
437 "src/core/lib/security/util/json_util.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700438 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700439 "src/core/lib/tsi/fake_transport_security.c",
440 "src/core/lib/tsi/ssl_transport_security.c",
441 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700442 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
443 "src/core/ext/client_config/channel_connectivity.c",
444 "src/core/ext/client_config/client_channel.c",
445 "src/core/ext/client_config/client_channel_factory.c",
446 "src/core/ext/client_config/client_config.c",
447 "src/core/ext/client_config/client_config_plugin.c",
448 "src/core/ext/client_config/connector.c",
449 "src/core/ext/client_config/default_initial_connect_string.c",
450 "src/core/ext/client_config/initial_connect_string.c",
451 "src/core/ext/client_config/lb_policy.c",
452 "src/core/ext/client_config/lb_policy_factory.c",
453 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700454 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700455 "src/core/ext/client_config/resolver.c",
456 "src/core/ext/client_config/resolver_factory.c",
457 "src/core/ext/client_config/resolver_registry.c",
458 "src/core/ext/client_config/subchannel.c",
459 "src/core/ext/client_config/subchannel_call_holder.c",
460 "src/core/ext/client_config/subchannel_index.c",
461 "src/core/ext/client_config/uri_parser.c",
462 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
463 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
makdharmac2ec95b2016-05-11 16:26:15 -0700464 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
465 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
466 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700467 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700468 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700469 "src/core/ext/lb_policy/pick_first/pick_first.c",
470 "src/core/ext/lb_policy/round_robin/round_robin.c",
471 "src/core/ext/resolver/dns/native/dns_resolver.c",
472 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
473 "src/core/ext/census/context.c",
474 "src/core/ext/census/grpc_context.c",
475 "src/core/ext/census/grpc_filter.c",
476 "src/core/ext/census/grpc_plugin.c",
477 "src/core/ext/census/initialize.c",
478 "src/core/ext/census/mlog.c",
479 "src/core/ext/census/operation.c",
480 "src/core/ext/census/placeholders.c",
481 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700482 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700483 ],
484 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700485 "include/grpc/byte_buffer.h",
486 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700487 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700488 "include/grpc/grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700489 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700490 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700491 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700492 "include/grpc/impl/codegen/compression_types.h",
493 "include/grpc/impl/codegen/connectivity_state.h",
494 "include/grpc/impl/codegen/grpc_types.h",
495 "include/grpc/impl/codegen/propagation_bits.h",
496 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700497 "include/grpc/impl/codegen/alloc.h",
498 "include/grpc/impl/codegen/atm.h",
499 "include/grpc/impl/codegen/atm_gcc_atomic.h",
500 "include/grpc/impl/codegen/atm_gcc_sync.h",
501 "include/grpc/impl/codegen/atm_win32.h",
502 "include/grpc/impl/codegen/log.h",
503 "include/grpc/impl/codegen/port_platform.h",
504 "include/grpc/impl/codegen/slice.h",
505 "include/grpc/impl/codegen/slice_buffer.h",
506 "include/grpc/impl/codegen/sync.h",
507 "include/grpc/impl/codegen/sync_generic.h",
508 "include/grpc/impl/codegen/sync_posix.h",
509 "include/grpc/impl/codegen/sync_win32.h",
510 "include/grpc/impl/codegen/time.h",
makdharmac2ec95b2016-05-11 16:26:15 -0700511 "include/grpc/grpc_cronet.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700512 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700513 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700514 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700515 ],
516 includes = [
517 "include",
518 ".",
519 ],
520 deps = [
521 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700522 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800523 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700524 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700525 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800526 copts = [
527 "-std=gnu99",
528 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200529)
530
531
Rob Earhartb7b8d052016-03-29 11:35:29 -0700532
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700533cc_library(
534 name = "grpc_unsecure",
535 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700536 "src/core/lib/channel/channel_args.h",
537 "src/core/lib/channel/channel_stack.h",
538 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700539 "src/core/lib/channel/compress_filter.h",
540 "src/core/lib/channel/connected_channel.h",
541 "src/core/lib/channel/context.h",
542 "src/core/lib/channel/http_client_filter.h",
543 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700544 "src/core/lib/compression/algorithm_metadata.h",
545 "src/core/lib/compression/message_compress.h",
546 "src/core/lib/debug/trace.h",
547 "src/core/lib/http/format_request.h",
548 "src/core/lib/http/httpcli.h",
549 "src/core/lib/http/parser.h",
550 "src/core/lib/iomgr/closure.h",
551 "src/core/lib/iomgr/endpoint.h",
552 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700553 "src/core/lib/iomgr/error.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700554 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
555 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700556 "src/core/lib/iomgr/exec_ctx.h",
557 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700558 "src/core/lib/iomgr/iocp_windows.h",
559 "src/core/lib/iomgr/iomgr.h",
560 "src/core/lib/iomgr/iomgr_internal.h",
561 "src/core/lib/iomgr/iomgr_posix.h",
562 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700563 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700564 "src/core/lib/iomgr/pollset_set_windows.h",
565 "src/core/lib/iomgr/pollset_windows.h",
566 "src/core/lib/iomgr/resolve_address.h",
567 "src/core/lib/iomgr/sockaddr.h",
568 "src/core/lib/iomgr/sockaddr_posix.h",
569 "src/core/lib/iomgr/sockaddr_utils.h",
570 "src/core/lib/iomgr/sockaddr_win32.h",
571 "src/core/lib/iomgr/socket_utils_posix.h",
572 "src/core/lib/iomgr/socket_windows.h",
573 "src/core/lib/iomgr/tcp_client.h",
574 "src/core/lib/iomgr/tcp_posix.h",
575 "src/core/lib/iomgr/tcp_server.h",
576 "src/core/lib/iomgr/tcp_windows.h",
577 "src/core/lib/iomgr/time_averaged_stats.h",
578 "src/core/lib/iomgr/timer.h",
579 "src/core/lib/iomgr/timer_heap.h",
580 "src/core/lib/iomgr/udp_server.h",
581 "src/core/lib/iomgr/unix_sockets_posix.h",
582 "src/core/lib/iomgr/wakeup_fd_pipe.h",
583 "src/core/lib/iomgr/wakeup_fd_posix.h",
584 "src/core/lib/iomgr/workqueue.h",
585 "src/core/lib/iomgr/workqueue_posix.h",
586 "src/core/lib/iomgr/workqueue_windows.h",
587 "src/core/lib/json/json.h",
588 "src/core/lib/json/json_common.h",
589 "src/core/lib/json/json_reader.h",
590 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700591 "src/core/lib/surface/api_trace.h",
592 "src/core/lib/surface/call.h",
593 "src/core/lib/surface/call_test_only.h",
594 "src/core/lib/surface/channel.h",
595 "src/core/lib/surface/channel_init.h",
596 "src/core/lib/surface/channel_stack_type.h",
597 "src/core/lib/surface/completion_queue.h",
598 "src/core/lib/surface/event_string.h",
599 "src/core/lib/surface/init.h",
600 "src/core/lib/surface/lame_client.h",
601 "src/core/lib/surface/server.h",
602 "src/core/lib/surface/surface_trace.h",
603 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700604 "src/core/lib/transport/connectivity_state.h",
605 "src/core/lib/transport/metadata.h",
606 "src/core/lib/transport/metadata_batch.h",
607 "src/core/lib/transport/static_metadata.h",
608 "src/core/lib/transport/transport.h",
609 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700610 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
611 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
612 "src/core/ext/transport/chttp2/transport/frame.h",
613 "src/core/ext/transport/chttp2/transport/frame_data.h",
614 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
615 "src/core/ext/transport/chttp2/transport/frame_ping.h",
616 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
617 "src/core/ext/transport/chttp2/transport/frame_settings.h",
618 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
619 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
620 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
621 "src/core/ext/transport/chttp2/transport/hpack_table.h",
622 "src/core/ext/transport/chttp2/transport/http2_errors.h",
623 "src/core/ext/transport/chttp2/transport/huffsyms.h",
624 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
625 "src/core/ext/transport/chttp2/transport/internal.h",
626 "src/core/ext/transport/chttp2/transport/status_conversion.h",
627 "src/core/ext/transport/chttp2/transport/stream_map.h",
628 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
629 "src/core/ext/transport/chttp2/transport/varint.h",
630 "src/core/ext/transport/chttp2/alpn/alpn.h",
631 "src/core/ext/client_config/client_channel.h",
632 "src/core/ext/client_config/client_channel_factory.h",
633 "src/core/ext/client_config/client_config.h",
634 "src/core/ext/client_config/connector.h",
635 "src/core/ext/client_config/initial_connect_string.h",
636 "src/core/ext/client_config/lb_policy.h",
637 "src/core/ext/client_config/lb_policy_factory.h",
638 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700639 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700640 "src/core/ext/client_config/resolver.h",
641 "src/core/ext/client_config/resolver_factory.h",
642 "src/core/ext/client_config/resolver_registry.h",
643 "src/core/ext/client_config/subchannel.h",
644 "src/core/ext/client_config/subchannel_call_holder.h",
645 "src/core/ext/client_config/subchannel_index.h",
646 "src/core/ext/client_config/uri_parser.h",
647 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700648 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700649 "src/core/ext/census/aggregation.h",
650 "src/core/ext/census/census_interface.h",
651 "src/core/ext/census/census_rpc_stats.h",
652 "src/core/ext/census/grpc_filter.h",
653 "src/core/ext/census/mlog.h",
654 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700655 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700656 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700657 "src/core/lib/channel/channel_args.c",
658 "src/core/lib/channel/channel_stack.c",
659 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700660 "src/core/lib/channel/compress_filter.c",
661 "src/core/lib/channel/connected_channel.c",
662 "src/core/lib/channel/http_client_filter.c",
663 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700664 "src/core/lib/compression/compression_algorithm.c",
665 "src/core/lib/compression/message_compress.c",
666 "src/core/lib/debug/trace.c",
667 "src/core/lib/http/format_request.c",
668 "src/core/lib/http/httpcli.c",
669 "src/core/lib/http/parser.c",
670 "src/core/lib/iomgr/closure.c",
671 "src/core/lib/iomgr/endpoint.c",
672 "src/core/lib/iomgr/endpoint_pair_posix.c",
673 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -0700674 "src/core/lib/iomgr/error.c",
Craig Tiller8a034482016-03-28 16:09:04 -0700675 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
676 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700677 "src/core/lib/iomgr/exec_ctx.c",
678 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700679 "src/core/lib/iomgr/iocp_windows.c",
680 "src/core/lib/iomgr/iomgr.c",
681 "src/core/lib/iomgr/iomgr_posix.c",
682 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700683 "src/core/lib/iomgr/pollset_set_windows.c",
684 "src/core/lib/iomgr/pollset_windows.c",
685 "src/core/lib/iomgr/resolve_address_posix.c",
686 "src/core/lib/iomgr/resolve_address_windows.c",
687 "src/core/lib/iomgr/sockaddr_utils.c",
688 "src/core/lib/iomgr/socket_utils_common_posix.c",
689 "src/core/lib/iomgr/socket_utils_linux.c",
690 "src/core/lib/iomgr/socket_utils_posix.c",
691 "src/core/lib/iomgr/socket_windows.c",
692 "src/core/lib/iomgr/tcp_client_posix.c",
693 "src/core/lib/iomgr/tcp_client_windows.c",
694 "src/core/lib/iomgr/tcp_posix.c",
695 "src/core/lib/iomgr/tcp_server_posix.c",
696 "src/core/lib/iomgr/tcp_server_windows.c",
697 "src/core/lib/iomgr/tcp_windows.c",
698 "src/core/lib/iomgr/time_averaged_stats.c",
699 "src/core/lib/iomgr/timer.c",
700 "src/core/lib/iomgr/timer_heap.c",
701 "src/core/lib/iomgr/udp_server.c",
702 "src/core/lib/iomgr/unix_sockets_posix.c",
703 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
704 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
705 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
706 "src/core/lib/iomgr/wakeup_fd_pipe.c",
707 "src/core/lib/iomgr/wakeup_fd_posix.c",
708 "src/core/lib/iomgr/workqueue_posix.c",
709 "src/core/lib/iomgr/workqueue_windows.c",
710 "src/core/lib/json/json.c",
711 "src/core/lib/json/json_reader.c",
712 "src/core/lib/json/json_string.c",
713 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700714 "src/core/lib/surface/alarm.c",
715 "src/core/lib/surface/api_trace.c",
716 "src/core/lib/surface/byte_buffer.c",
717 "src/core/lib/surface/byte_buffer_reader.c",
718 "src/core/lib/surface/call.c",
719 "src/core/lib/surface/call_details.c",
720 "src/core/lib/surface/call_log_batch.c",
721 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700722 "src/core/lib/surface/channel_init.c",
723 "src/core/lib/surface/channel_ping.c",
724 "src/core/lib/surface/channel_stack_type.c",
725 "src/core/lib/surface/completion_queue.c",
726 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700727 "src/core/lib/surface/lame_client.c",
728 "src/core/lib/surface/metadata_array.c",
729 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700730 "src/core/lib/surface/validate_metadata.c",
731 "src/core/lib/surface/version.c",
732 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700733 "src/core/lib/transport/connectivity_state.c",
734 "src/core/lib/transport/metadata.c",
735 "src/core/lib/transport/metadata_batch.c",
736 "src/core/lib/transport/static_metadata.c",
737 "src/core/lib/transport/transport.c",
738 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700739 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
740 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
741 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
742 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
743 "src/core/ext/transport/chttp2/transport/frame_data.c",
744 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
745 "src/core/ext/transport/chttp2/transport/frame_ping.c",
746 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
747 "src/core/ext/transport/chttp2/transport/frame_settings.c",
748 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
749 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
750 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
751 "src/core/ext/transport/chttp2/transport/hpack_table.c",
752 "src/core/ext/transport/chttp2/transport/huffsyms.c",
753 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
754 "src/core/ext/transport/chttp2/transport/parsing.c",
755 "src/core/ext/transport/chttp2/transport/status_conversion.c",
756 "src/core/ext/transport/chttp2/transport/stream_lists.c",
757 "src/core/ext/transport/chttp2/transport/stream_map.c",
758 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
759 "src/core/ext/transport/chttp2/transport/varint.c",
760 "src/core/ext/transport/chttp2/transport/writing.c",
761 "src/core/ext/transport/chttp2/alpn/alpn.c",
762 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
763 "src/core/ext/client_config/channel_connectivity.c",
764 "src/core/ext/client_config/client_channel.c",
765 "src/core/ext/client_config/client_channel_factory.c",
766 "src/core/ext/client_config/client_config.c",
767 "src/core/ext/client_config/client_config_plugin.c",
768 "src/core/ext/client_config/connector.c",
769 "src/core/ext/client_config/default_initial_connect_string.c",
770 "src/core/ext/client_config/initial_connect_string.c",
771 "src/core/ext/client_config/lb_policy.c",
772 "src/core/ext/client_config/lb_policy_factory.c",
773 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700774 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700775 "src/core/ext/client_config/resolver.c",
776 "src/core/ext/client_config/resolver_factory.c",
777 "src/core/ext/client_config/resolver_registry.c",
778 "src/core/ext/client_config/subchannel.c",
779 "src/core/ext/client_config/subchannel_call_holder.c",
780 "src/core/ext/client_config/subchannel_index.c",
781 "src/core/ext/client_config/uri_parser.c",
782 "src/core/ext/resolver/dns/native/dns_resolver.c",
783 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
784 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700785 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700786 "src/core/ext/lb_policy/pick_first/pick_first.c",
787 "src/core/ext/lb_policy/round_robin/round_robin.c",
788 "src/core/ext/census/context.c",
789 "src/core/ext/census/grpc_context.c",
790 "src/core/ext/census/grpc_filter.c",
791 "src/core/ext/census/grpc_plugin.c",
792 "src/core/ext/census/initialize.c",
793 "src/core/ext/census/mlog.c",
794 "src/core/ext/census/operation.c",
795 "src/core/ext/census/placeholders.c",
796 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700797 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700798 ],
799 hdrs = [
800 "include/grpc/byte_buffer.h",
801 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700802 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700803 "include/grpc/grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700804 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -0800805 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700806 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -0800807 "include/grpc/impl/codegen/compression_types.h",
808 "include/grpc/impl/codegen/connectivity_state.h",
809 "include/grpc/impl/codegen/grpc_types.h",
810 "include/grpc/impl/codegen/propagation_bits.h",
811 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700812 "include/grpc/impl/codegen/alloc.h",
813 "include/grpc/impl/codegen/atm.h",
814 "include/grpc/impl/codegen/atm_gcc_atomic.h",
815 "include/grpc/impl/codegen/atm_gcc_sync.h",
816 "include/grpc/impl/codegen/atm_win32.h",
817 "include/grpc/impl/codegen/log.h",
818 "include/grpc/impl/codegen/port_platform.h",
819 "include/grpc/impl/codegen/slice.h",
820 "include/grpc/impl/codegen/slice_buffer.h",
821 "include/grpc/impl/codegen/sync.h",
822 "include/grpc/impl/codegen/sync_generic.h",
823 "include/grpc/impl/codegen/sync_posix.h",
824 "include/grpc/impl/codegen/sync_win32.h",
825 "include/grpc/impl/codegen/time.h",
826 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700827 ],
828 includes = [
829 "include",
830 ".",
831 ],
832 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -0800833 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700834 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700835 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800836 copts = [
837 "-std=gnu99",
838 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700839)
840
841
Rob Earhartb7b8d052016-03-29 11:35:29 -0700842
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700843cc_library(
Hongwei Wangda8858f2015-07-16 16:18:19 -0700844 name = "grpc_zookeeper",
845 srcs = [
Craig Tillerb11b34a2016-04-01 12:30:06 -0700846 "src/core/ext/resolver/zookeeper/zookeeper_resolver.c",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700847 ],
848 hdrs = [
Hongwei Wanga3780a82015-07-17 15:27:18 -0700849 "include/grpc/grpc_zookeeper.h",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700850 ],
851 includes = [
852 "include",
853 ".",
854 ],
855 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -0800856 ":gpr",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700857 ":grpc",
858 ],
859)
860
861
Rob Earhartb7b8d052016-03-29 11:35:29 -0700862
Hongwei Wangda8858f2015-07-16 16:18:19 -0700863cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700864 name = "grpc++",
865 srcs = [
866 "src/cpp/client/secure_credentials.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -0800867 "src/cpp/common/core_codegen.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700868 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700869 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700870 "src/cpp/client/create_channel_internal.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700871 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -0700872 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700873 "src/cpp/client/secure_credentials.cc",
874 "src/cpp/common/auth_property_iterator.cc",
875 "src/cpp/common/secure_auth_context.cc",
876 "src/cpp/common/secure_channel_arguments.cc",
877 "src/cpp/common/secure_create_auth_context.cc",
878 "src/cpp/server/secure_server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700879 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700880 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700881 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -0700882 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700883 "src/cpp/client/credentials.cc",
884 "src/cpp/client/generic_stub.cc",
885 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -0800886 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700887 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +0100888 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700889 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700890 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -0700891 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -0700892 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700893 "src/cpp/server/insecure_server_credentials.cc",
894 "src/cpp/server/server.cc",
895 "src/cpp/server/server_builder.cc",
896 "src/cpp/server/server_context.cc",
897 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700898 "src/cpp/util/byte_buffer.cc",
899 "src/cpp/util/slice.cc",
900 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -0700901 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700902 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -0700903 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700904 ],
905 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -0800906 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -0700907 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700908 "include/grpc++/client_context.h",
909 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700910 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700911 "include/grpc++/generic/async_generic_service.h",
912 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -0700913 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700914 "include/grpc++/impl/call.h",
915 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -0700916 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -0800917 "include/grpc++/impl/method_handler_impl.h",
yang-gadfed032015-06-23 13:01:22 -0700918 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700919 "include/grpc++/impl/rpc_method.h",
920 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -0700921 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -0800922 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -0700923 "include/grpc++/impl/server_builder_plugin.h",
924 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700925 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200926 "include/grpc++/impl/sync.h",
927 "include/grpc++/impl/sync_cxx11.h",
928 "include/grpc++/impl/sync_no_cxx11.h",
929 "include/grpc++/impl/thd.h",
930 "include/grpc++/impl/thd_cxx11.h",
931 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -0700932 "include/grpc++/security/auth_context.h",
933 "include/grpc++/security/auth_metadata_processor.h",
934 "include/grpc++/security/credentials.h",
935 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700936 "include/grpc++/server.h",
937 "include/grpc++/server_builder.h",
938 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -0700939 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700940 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700941 "include/grpc++/support/byte_buffer.h",
942 "include/grpc++/support/channel_arguments.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700943 "include/grpc++/support/slice.h",
944 "include/grpc++/support/status.h",
945 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -0700946 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700947 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -0700948 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700949 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700950 "include/grpc++/impl/codegen/async_stream.h",
951 "include/grpc++/impl/codegen/async_unary_call.h",
952 "include/grpc++/impl/codegen/call.h",
953 "include/grpc++/impl/codegen/call_hook.h",
954 "include/grpc++/impl/codegen/channel_interface.h",
955 "include/grpc++/impl/codegen/client_context.h",
956 "include/grpc++/impl/codegen/client_unary_call.h",
957 "include/grpc++/impl/codegen/completion_queue.h",
958 "include/grpc++/impl/codegen/completion_queue_tag.h",
959 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700960 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700961 "include/grpc++/impl/codegen/grpc_library.h",
962 "include/grpc++/impl/codegen/method_handler_impl.h",
963 "include/grpc++/impl/codegen/proto_utils.h",
964 "include/grpc++/impl/codegen/rpc_method.h",
965 "include/grpc++/impl/codegen/rpc_service_method.h",
966 "include/grpc++/impl/codegen/security/auth_context.h",
967 "include/grpc++/impl/codegen/serialization_traits.h",
968 "include/grpc++/impl/codegen/server_context.h",
969 "include/grpc++/impl/codegen/server_interface.h",
970 "include/grpc++/impl/codegen/service_type.h",
971 "include/grpc++/impl/codegen/status.h",
972 "include/grpc++/impl/codegen/status_code_enum.h",
973 "include/grpc++/impl/codegen/string_ref.h",
974 "include/grpc++/impl/codegen/stub_options.h",
975 "include/grpc++/impl/codegen/sync.h",
976 "include/grpc++/impl/codegen/sync_cxx11.h",
977 "include/grpc++/impl/codegen/sync_no_cxx11.h",
978 "include/grpc++/impl/codegen/sync_stream.h",
979 "include/grpc++/impl/codegen/time.h",
980 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700981 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700982 "include/grpc/impl/codegen/compression_types.h",
983 "include/grpc/impl/codegen/connectivity_state.h",
984 "include/grpc/impl/codegen/grpc_types.h",
985 "include/grpc/impl/codegen/propagation_bits.h",
986 "include/grpc/impl/codegen/status.h",
987 "include/grpc/impl/codegen/alloc.h",
988 "include/grpc/impl/codegen/atm.h",
989 "include/grpc/impl/codegen/atm_gcc_atomic.h",
990 "include/grpc/impl/codegen/atm_gcc_sync.h",
991 "include/grpc/impl/codegen/atm_win32.h",
992 "include/grpc/impl/codegen/log.h",
993 "include/grpc/impl/codegen/port_platform.h",
994 "include/grpc/impl/codegen/slice.h",
995 "include/grpc/impl/codegen/slice_buffer.h",
996 "include/grpc/impl/codegen/sync.h",
997 "include/grpc/impl/codegen/sync_generic.h",
998 "include/grpc/impl/codegen/sync_posix.h",
999 "include/grpc/impl/codegen/sync_win32.h",
1000 "include/grpc/impl/codegen/time.h",
1001 "include/grpc++/impl/codegen/config.h",
1002 "include/grpc++/impl/codegen/config_protobuf.h",
1003 "include/grpc++/support/config.h",
1004 "include/grpc++/support/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001005 ],
1006 includes = [
1007 "include",
1008 ".",
1009 ],
1010 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001011 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001012 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001013 ":grpc",
1014 ],
1015)
1016
1017
Rob Earhartb7b8d052016-03-29 11:35:29 -07001018
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001019cc_library(
1020 name = "grpc++_unsecure",
1021 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001022 "src/cpp/client/create_channel_internal.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -08001023 "src/cpp/common/core_codegen.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001024 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001025 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001026 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001027 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001028 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001029 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001030 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001031 "src/cpp/client/credentials.cc",
1032 "src/cpp/client/generic_stub.cc",
1033 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001034 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001035 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001036 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001037 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001038 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001039 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001040 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001041 "src/cpp/server/insecure_server_credentials.cc",
1042 "src/cpp/server/server.cc",
1043 "src/cpp/server/server_builder.cc",
1044 "src/cpp/server/server_context.cc",
1045 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001046 "src/cpp/util/byte_buffer.cc",
1047 "src/cpp/util/slice.cc",
1048 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001049 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001050 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001051 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001052 ],
1053 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001054 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001055 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001056 "include/grpc++/client_context.h",
1057 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001058 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001059 "include/grpc++/generic/async_generic_service.h",
1060 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001061 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001062 "include/grpc++/impl/call.h",
1063 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -07001064 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001065 "include/grpc++/impl/method_handler_impl.h",
yang-gadfed032015-06-23 13:01:22 -07001066 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001067 "include/grpc++/impl/rpc_method.h",
1068 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001069 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001070 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001071 "include/grpc++/impl/server_builder_plugin.h",
1072 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001073 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001074 "include/grpc++/impl/sync.h",
1075 "include/grpc++/impl/sync_cxx11.h",
1076 "include/grpc++/impl/sync_no_cxx11.h",
1077 "include/grpc++/impl/thd.h",
1078 "include/grpc++/impl/thd_cxx11.h",
1079 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001080 "include/grpc++/security/auth_context.h",
1081 "include/grpc++/security/auth_metadata_processor.h",
1082 "include/grpc++/security/credentials.h",
1083 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001084 "include/grpc++/server.h",
1085 "include/grpc++/server_builder.h",
1086 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -07001087 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001088 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001089 "include/grpc++/support/byte_buffer.h",
1090 "include/grpc++/support/channel_arguments.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001091 "include/grpc++/support/slice.h",
1092 "include/grpc++/support/status.h",
1093 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001094 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001095 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001096 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001097 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001098 "include/grpc++/impl/codegen/async_stream.h",
1099 "include/grpc++/impl/codegen/async_unary_call.h",
1100 "include/grpc++/impl/codegen/call.h",
1101 "include/grpc++/impl/codegen/call_hook.h",
1102 "include/grpc++/impl/codegen/channel_interface.h",
1103 "include/grpc++/impl/codegen/client_context.h",
1104 "include/grpc++/impl/codegen/client_unary_call.h",
1105 "include/grpc++/impl/codegen/completion_queue.h",
1106 "include/grpc++/impl/codegen/completion_queue_tag.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001107 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001108 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001109 "include/grpc++/impl/codegen/grpc_library.h",
1110 "include/grpc++/impl/codegen/method_handler_impl.h",
1111 "include/grpc++/impl/codegen/proto_utils.h",
1112 "include/grpc++/impl/codegen/rpc_method.h",
1113 "include/grpc++/impl/codegen/rpc_service_method.h",
1114 "include/grpc++/impl/codegen/security/auth_context.h",
1115 "include/grpc++/impl/codegen/serialization_traits.h",
1116 "include/grpc++/impl/codegen/server_context.h",
1117 "include/grpc++/impl/codegen/server_interface.h",
1118 "include/grpc++/impl/codegen/service_type.h",
1119 "include/grpc++/impl/codegen/status.h",
1120 "include/grpc++/impl/codegen/status_code_enum.h",
1121 "include/grpc++/impl/codegen/string_ref.h",
1122 "include/grpc++/impl/codegen/stub_options.h",
1123 "include/grpc++/impl/codegen/sync.h",
1124 "include/grpc++/impl/codegen/sync_cxx11.h",
1125 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1126 "include/grpc++/impl/codegen/sync_stream.h",
1127 "include/grpc++/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001128 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001129 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001130 "include/grpc/impl/codegen/compression_types.h",
1131 "include/grpc/impl/codegen/connectivity_state.h",
1132 "include/grpc/impl/codegen/grpc_types.h",
1133 "include/grpc/impl/codegen/propagation_bits.h",
1134 "include/grpc/impl/codegen/status.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001135 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001136 "include/grpc/impl/codegen/atm.h",
1137 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1138 "include/grpc/impl/codegen/atm_gcc_sync.h",
1139 "include/grpc/impl/codegen/atm_win32.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001140 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001141 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001142 "include/grpc/impl/codegen/slice.h",
1143 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001144 "include/grpc/impl/codegen/sync.h",
1145 "include/grpc/impl/codegen/sync_generic.h",
1146 "include/grpc/impl/codegen/sync_posix.h",
1147 "include/grpc/impl/codegen/sync_win32.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001148 "include/grpc/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001149 "include/grpc++/impl/codegen/config.h",
1150 "include/grpc++/impl/codegen/config_protobuf.h",
1151 "include/grpc++/support/config.h",
1152 "include/grpc++/support/config_protobuf.h",
1153 ],
1154 includes = [
1155 "include",
1156 ".",
1157 ],
1158 deps = [
1159 "//external:protobuf_clib",
1160 ":gpr",
1161 ":grpc_unsecure",
1162 ":grpc",
1163 ],
1164)
1165
1166
1167
1168cc_library(
1169 name = "grpc_plugin_support",
1170 srcs = [
1171 "src/compiler/config.h",
1172 "src/compiler/cpp_generator.h",
1173 "src/compiler/cpp_generator_helpers.h",
1174 "src/compiler/csharp_generator.h",
1175 "src/compiler/csharp_generator_helpers.h",
1176 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001177 "src/compiler/node_generator.h",
1178 "src/compiler/node_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001179 "src/compiler/objective_c_generator.h",
1180 "src/compiler/objective_c_generator_helpers.h",
1181 "src/compiler/python_generator.h",
1182 "src/compiler/ruby_generator.h",
1183 "src/compiler/ruby_generator_helpers-inl.h",
1184 "src/compiler/ruby_generator_map-inl.h",
1185 "src/compiler/ruby_generator_string-inl.h",
1186 "src/compiler/cpp_generator.cc",
1187 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001188 "src/compiler/node_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001189 "src/compiler/objective_c_generator.cc",
1190 "src/compiler/python_generator.cc",
1191 "src/compiler/ruby_generator.cc",
1192 ],
1193 hdrs = [
1194 "include/grpc++/support/config.h",
1195 "include/grpc++/support/config_protobuf.h",
1196 "include/grpc++/impl/codegen/config.h",
1197 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001198 ],
1199 includes = [
1200 "include",
1201 ".",
1202 ],
1203 deps = [
1204 "//external:protobuf_compiler",
1205 ],
1206)
1207
1208
Rob Earhartb7b8d052016-03-29 11:35:29 -07001209
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001210cc_library(
1211 name = "grpc_csharp_ext",
1212 srcs = [
1213 "src/csharp/ext/grpc_csharp_ext.c",
1214 ],
1215 hdrs = [
1216 ],
1217 includes = [
1218 "include",
1219 ".",
1220 ],
1221 deps = [
Craig Tillerd1697d92016-04-05 16:05:46 -07001222 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001223 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001224 ],
1225)
1226
1227
1228
Rob Earhartb7b8d052016-03-29 11:35:29 -07001229
Jorge Canizales140bca82015-06-20 09:47:00 -07001230objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001231 name = "gpr_objc",
1232 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001233 "src/core/lib/profiling/basic_timers.c",
1234 "src/core/lib/profiling/stap_timers.c",
1235 "src/core/lib/support/alloc.c",
1236 "src/core/lib/support/avl.c",
1237 "src/core/lib/support/backoff.c",
1238 "src/core/lib/support/cmdline.c",
1239 "src/core/lib/support/cpu_iphone.c",
1240 "src/core/lib/support/cpu_linux.c",
1241 "src/core/lib/support/cpu_posix.c",
1242 "src/core/lib/support/cpu_windows.c",
1243 "src/core/lib/support/env_linux.c",
1244 "src/core/lib/support/env_posix.c",
1245 "src/core/lib/support/env_win32.c",
1246 "src/core/lib/support/histogram.c",
1247 "src/core/lib/support/host_port.c",
1248 "src/core/lib/support/load_file.c",
1249 "src/core/lib/support/log.c",
1250 "src/core/lib/support/log_android.c",
1251 "src/core/lib/support/log_linux.c",
1252 "src/core/lib/support/log_posix.c",
1253 "src/core/lib/support/log_win32.c",
1254 "src/core/lib/support/murmur_hash.c",
1255 "src/core/lib/support/slice.c",
1256 "src/core/lib/support/slice_buffer.c",
1257 "src/core/lib/support/stack_lockfree.c",
1258 "src/core/lib/support/string.c",
1259 "src/core/lib/support/string_posix.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001260 "src/core/lib/support/string_util_win32.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001261 "src/core/lib/support/string_win32.c",
1262 "src/core/lib/support/subprocess_posix.c",
1263 "src/core/lib/support/subprocess_windows.c",
1264 "src/core/lib/support/sync.c",
1265 "src/core/lib/support/sync_posix.c",
1266 "src/core/lib/support/sync_win32.c",
1267 "src/core/lib/support/thd.c",
1268 "src/core/lib/support/thd_posix.c",
1269 "src/core/lib/support/thd_win32.c",
1270 "src/core/lib/support/time.c",
1271 "src/core/lib/support/time_posix.c",
1272 "src/core/lib/support/time_precise.c",
1273 "src/core/lib/support/time_win32.c",
1274 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001275 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001276 "src/core/lib/support/tmpfile_posix.c",
1277 "src/core/lib/support/tmpfile_win32.c",
1278 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001279 ],
1280 hdrs = [
1281 "include/grpc/support/alloc.h",
1282 "include/grpc/support/atm.h",
1283 "include/grpc/support/atm_gcc_atomic.h",
1284 "include/grpc/support/atm_gcc_sync.h",
1285 "include/grpc/support/atm_win32.h",
1286 "include/grpc/support/avl.h",
1287 "include/grpc/support/cmdline.h",
1288 "include/grpc/support/cpu.h",
1289 "include/grpc/support/histogram.h",
1290 "include/grpc/support/host_port.h",
1291 "include/grpc/support/log.h",
1292 "include/grpc/support/log_win32.h",
1293 "include/grpc/support/port_platform.h",
1294 "include/grpc/support/slice.h",
1295 "include/grpc/support/slice_buffer.h",
1296 "include/grpc/support/string_util.h",
1297 "include/grpc/support/subprocess.h",
1298 "include/grpc/support/sync.h",
1299 "include/grpc/support/sync_generic.h",
1300 "include/grpc/support/sync_posix.h",
1301 "include/grpc/support/sync_win32.h",
1302 "include/grpc/support/thd.h",
1303 "include/grpc/support/time.h",
1304 "include/grpc/support/tls.h",
1305 "include/grpc/support/tls_gcc.h",
1306 "include/grpc/support/tls_msvc.h",
1307 "include/grpc/support/tls_pthread.h",
1308 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001309 "include/grpc/impl/codegen/alloc.h",
1310 "include/grpc/impl/codegen/atm.h",
1311 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1312 "include/grpc/impl/codegen/atm_gcc_sync.h",
1313 "include/grpc/impl/codegen/atm_win32.h",
1314 "include/grpc/impl/codegen/log.h",
1315 "include/grpc/impl/codegen/port_platform.h",
1316 "include/grpc/impl/codegen/slice.h",
1317 "include/grpc/impl/codegen/slice_buffer.h",
1318 "include/grpc/impl/codegen/sync.h",
1319 "include/grpc/impl/codegen/sync_generic.h",
1320 "include/grpc/impl/codegen/sync_posix.h",
1321 "include/grpc/impl/codegen/sync_win32.h",
1322 "include/grpc/impl/codegen/time.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001323 "src/core/lib/profiling/timers.h",
1324 "src/core/lib/support/backoff.h",
1325 "src/core/lib/support/block_annotate.h",
1326 "src/core/lib/support/env.h",
1327 "src/core/lib/support/load_file.h",
1328 "src/core/lib/support/murmur_hash.h",
1329 "src/core/lib/support/stack_lockfree.h",
1330 "src/core/lib/support/string.h",
1331 "src/core/lib/support/string_win32.h",
1332 "src/core/lib/support/thd_internal.h",
1333 "src/core/lib/support/time_precise.h",
1334 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001335 ],
1336 includes = [
1337 "include",
1338 ".",
1339 ],
1340 deps = [
1341 ],
1342)
1343
1344
Rob Earhartb7b8d052016-03-29 11:35:29 -07001345
Craig Tillerda179ce2016-02-09 12:01:53 -08001346objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001347 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001348 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001349 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001350 "src/core/lib/channel/channel_args.c",
1351 "src/core/lib/channel/channel_stack.c",
1352 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001353 "src/core/lib/channel/compress_filter.c",
1354 "src/core/lib/channel/connected_channel.c",
1355 "src/core/lib/channel/http_client_filter.c",
1356 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001357 "src/core/lib/compression/compression_algorithm.c",
1358 "src/core/lib/compression/message_compress.c",
1359 "src/core/lib/debug/trace.c",
1360 "src/core/lib/http/format_request.c",
1361 "src/core/lib/http/httpcli.c",
1362 "src/core/lib/http/parser.c",
1363 "src/core/lib/iomgr/closure.c",
1364 "src/core/lib/iomgr/endpoint.c",
1365 "src/core/lib/iomgr/endpoint_pair_posix.c",
1366 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07001367 "src/core/lib/iomgr/error.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001368 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
1369 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001370 "src/core/lib/iomgr/exec_ctx.c",
1371 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001372 "src/core/lib/iomgr/iocp_windows.c",
1373 "src/core/lib/iomgr/iomgr.c",
1374 "src/core/lib/iomgr/iomgr_posix.c",
1375 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001376 "src/core/lib/iomgr/pollset_set_windows.c",
1377 "src/core/lib/iomgr/pollset_windows.c",
1378 "src/core/lib/iomgr/resolve_address_posix.c",
1379 "src/core/lib/iomgr/resolve_address_windows.c",
1380 "src/core/lib/iomgr/sockaddr_utils.c",
1381 "src/core/lib/iomgr/socket_utils_common_posix.c",
1382 "src/core/lib/iomgr/socket_utils_linux.c",
1383 "src/core/lib/iomgr/socket_utils_posix.c",
1384 "src/core/lib/iomgr/socket_windows.c",
1385 "src/core/lib/iomgr/tcp_client_posix.c",
1386 "src/core/lib/iomgr/tcp_client_windows.c",
1387 "src/core/lib/iomgr/tcp_posix.c",
1388 "src/core/lib/iomgr/tcp_server_posix.c",
1389 "src/core/lib/iomgr/tcp_server_windows.c",
1390 "src/core/lib/iomgr/tcp_windows.c",
1391 "src/core/lib/iomgr/time_averaged_stats.c",
1392 "src/core/lib/iomgr/timer.c",
1393 "src/core/lib/iomgr/timer_heap.c",
1394 "src/core/lib/iomgr/udp_server.c",
1395 "src/core/lib/iomgr/unix_sockets_posix.c",
1396 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1397 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1398 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1399 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1400 "src/core/lib/iomgr/wakeup_fd_posix.c",
1401 "src/core/lib/iomgr/workqueue_posix.c",
1402 "src/core/lib/iomgr/workqueue_windows.c",
1403 "src/core/lib/json/json.c",
1404 "src/core/lib/json/json_reader.c",
1405 "src/core/lib/json/json_string.c",
1406 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001407 "src/core/lib/surface/alarm.c",
1408 "src/core/lib/surface/api_trace.c",
1409 "src/core/lib/surface/byte_buffer.c",
1410 "src/core/lib/surface/byte_buffer_reader.c",
1411 "src/core/lib/surface/call.c",
1412 "src/core/lib/surface/call_details.c",
1413 "src/core/lib/surface/call_log_batch.c",
1414 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001415 "src/core/lib/surface/channel_init.c",
1416 "src/core/lib/surface/channel_ping.c",
1417 "src/core/lib/surface/channel_stack_type.c",
1418 "src/core/lib/surface/completion_queue.c",
1419 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001420 "src/core/lib/surface/lame_client.c",
1421 "src/core/lib/surface/metadata_array.c",
1422 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001423 "src/core/lib/surface/validate_metadata.c",
1424 "src/core/lib/surface/version.c",
1425 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001426 "src/core/lib/transport/connectivity_state.c",
1427 "src/core/lib/transport/metadata.c",
1428 "src/core/lib/transport/metadata_batch.c",
1429 "src/core/lib/transport/static_metadata.c",
1430 "src/core/lib/transport/transport.c",
1431 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001432 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
1433 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1434 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1435 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1436 "src/core/ext/transport/chttp2/transport/frame_data.c",
1437 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1438 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1439 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1440 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1441 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1442 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1443 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1444 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1445 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1446 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1447 "src/core/ext/transport/chttp2/transport/parsing.c",
1448 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1449 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1450 "src/core/ext/transport/chttp2/transport/stream_map.c",
1451 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1452 "src/core/ext/transport/chttp2/transport/varint.c",
1453 "src/core/ext/transport/chttp2/transport/writing.c",
1454 "src/core/ext/transport/chttp2/alpn/alpn.c",
1455 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001456 "src/core/lib/security/context/security_context.c",
1457 "src/core/lib/security/credentials/composite/composite_credentials.c",
1458 "src/core/lib/security/credentials/credentials.c",
1459 "src/core/lib/security/credentials/credentials_metadata.c",
1460 "src/core/lib/security/credentials/fake/fake_credentials.c",
1461 "src/core/lib/security/credentials/google_default/credentials_posix.c",
1462 "src/core/lib/security/credentials/google_default/credentials_win32.c",
1463 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
1464 "src/core/lib/security/credentials/iam/iam_credentials.c",
1465 "src/core/lib/security/credentials/jwt/json_token.c",
1466 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
1467 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
1468 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
1469 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
1470 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
1471 "src/core/lib/security/transport/client_auth_filter.c",
1472 "src/core/lib/security/transport/handshake.c",
1473 "src/core/lib/security/transport/secure_endpoint.c",
1474 "src/core/lib/security/transport/security_connector.c",
1475 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -07001476 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001477 "src/core/lib/security/util/b64.c",
1478 "src/core/lib/security/util/json_util.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001479 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001480 "src/core/lib/tsi/fake_transport_security.c",
1481 "src/core/lib/tsi/ssl_transport_security.c",
1482 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001483 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
1484 "src/core/ext/client_config/channel_connectivity.c",
1485 "src/core/ext/client_config/client_channel.c",
1486 "src/core/ext/client_config/client_channel_factory.c",
1487 "src/core/ext/client_config/client_config.c",
1488 "src/core/ext/client_config/client_config_plugin.c",
1489 "src/core/ext/client_config/connector.c",
1490 "src/core/ext/client_config/default_initial_connect_string.c",
1491 "src/core/ext/client_config/initial_connect_string.c",
1492 "src/core/ext/client_config/lb_policy.c",
1493 "src/core/ext/client_config/lb_policy_factory.c",
1494 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001495 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001496 "src/core/ext/client_config/resolver.c",
1497 "src/core/ext/client_config/resolver_factory.c",
1498 "src/core/ext/client_config/resolver_registry.c",
1499 "src/core/ext/client_config/subchannel.c",
1500 "src/core/ext/client_config/subchannel_call_holder.c",
1501 "src/core/ext/client_config/subchannel_index.c",
1502 "src/core/ext/client_config/uri_parser.c",
1503 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1504 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
makdharmac2ec95b2016-05-11 16:26:15 -07001505 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
1506 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
1507 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001508 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001509 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001510 "src/core/ext/lb_policy/pick_first/pick_first.c",
1511 "src/core/ext/lb_policy/round_robin/round_robin.c",
1512 "src/core/ext/resolver/dns/native/dns_resolver.c",
1513 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
1514 "src/core/ext/census/context.c",
1515 "src/core/ext/census/grpc_context.c",
1516 "src/core/ext/census/grpc_filter.c",
1517 "src/core/ext/census/grpc_plugin.c",
1518 "src/core/ext/census/initialize.c",
1519 "src/core/ext/census/mlog.c",
1520 "src/core/ext/census/operation.c",
1521 "src/core/ext/census/placeholders.c",
1522 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001523 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001524 ],
1525 hdrs = [
1526 "include/grpc/byte_buffer.h",
1527 "include/grpc/byte_buffer_reader.h",
1528 "include/grpc/compression.h",
1529 "include/grpc/grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001530 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001531 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001532 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001533 "include/grpc/impl/codegen/compression_types.h",
1534 "include/grpc/impl/codegen/connectivity_state.h",
1535 "include/grpc/impl/codegen/grpc_types.h",
1536 "include/grpc/impl/codegen/propagation_bits.h",
1537 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001538 "include/grpc/impl/codegen/alloc.h",
1539 "include/grpc/impl/codegen/atm.h",
1540 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1541 "include/grpc/impl/codegen/atm_gcc_sync.h",
1542 "include/grpc/impl/codegen/atm_win32.h",
1543 "include/grpc/impl/codegen/log.h",
1544 "include/grpc/impl/codegen/port_platform.h",
1545 "include/grpc/impl/codegen/slice.h",
1546 "include/grpc/impl/codegen/slice_buffer.h",
1547 "include/grpc/impl/codegen/sync.h",
1548 "include/grpc/impl/codegen/sync_generic.h",
1549 "include/grpc/impl/codegen/sync_posix.h",
1550 "include/grpc/impl/codegen/sync_win32.h",
1551 "include/grpc/impl/codegen/time.h",
makdharmac2ec95b2016-05-11 16:26:15 -07001552 "include/grpc/grpc_cronet.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001553 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -07001554 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001555 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001556 "src/core/lib/channel/channel_args.h",
1557 "src/core/lib/channel/channel_stack.h",
1558 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001559 "src/core/lib/channel/compress_filter.h",
1560 "src/core/lib/channel/connected_channel.h",
1561 "src/core/lib/channel/context.h",
1562 "src/core/lib/channel/http_client_filter.h",
1563 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001564 "src/core/lib/compression/algorithm_metadata.h",
1565 "src/core/lib/compression/message_compress.h",
1566 "src/core/lib/debug/trace.h",
1567 "src/core/lib/http/format_request.h",
1568 "src/core/lib/http/httpcli.h",
1569 "src/core/lib/http/parser.h",
1570 "src/core/lib/iomgr/closure.h",
1571 "src/core/lib/iomgr/endpoint.h",
1572 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -07001573 "src/core/lib/iomgr/error.h",
Craig Tiller8a034482016-03-28 16:09:04 -07001574 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
1575 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001576 "src/core/lib/iomgr/exec_ctx.h",
1577 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001578 "src/core/lib/iomgr/iocp_windows.h",
1579 "src/core/lib/iomgr/iomgr.h",
1580 "src/core/lib/iomgr/iomgr_internal.h",
1581 "src/core/lib/iomgr/iomgr_posix.h",
1582 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001583 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001584 "src/core/lib/iomgr/pollset_set_windows.h",
1585 "src/core/lib/iomgr/pollset_windows.h",
1586 "src/core/lib/iomgr/resolve_address.h",
1587 "src/core/lib/iomgr/sockaddr.h",
1588 "src/core/lib/iomgr/sockaddr_posix.h",
1589 "src/core/lib/iomgr/sockaddr_utils.h",
1590 "src/core/lib/iomgr/sockaddr_win32.h",
1591 "src/core/lib/iomgr/socket_utils_posix.h",
1592 "src/core/lib/iomgr/socket_windows.h",
1593 "src/core/lib/iomgr/tcp_client.h",
1594 "src/core/lib/iomgr/tcp_posix.h",
1595 "src/core/lib/iomgr/tcp_server.h",
1596 "src/core/lib/iomgr/tcp_windows.h",
1597 "src/core/lib/iomgr/time_averaged_stats.h",
1598 "src/core/lib/iomgr/timer.h",
1599 "src/core/lib/iomgr/timer_heap.h",
1600 "src/core/lib/iomgr/udp_server.h",
1601 "src/core/lib/iomgr/unix_sockets_posix.h",
1602 "src/core/lib/iomgr/wakeup_fd_pipe.h",
1603 "src/core/lib/iomgr/wakeup_fd_posix.h",
1604 "src/core/lib/iomgr/workqueue.h",
1605 "src/core/lib/iomgr/workqueue_posix.h",
1606 "src/core/lib/iomgr/workqueue_windows.h",
1607 "src/core/lib/json/json.h",
1608 "src/core/lib/json/json_common.h",
1609 "src/core/lib/json/json_reader.h",
1610 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001611 "src/core/lib/surface/api_trace.h",
1612 "src/core/lib/surface/call.h",
1613 "src/core/lib/surface/call_test_only.h",
1614 "src/core/lib/surface/channel.h",
1615 "src/core/lib/surface/channel_init.h",
1616 "src/core/lib/surface/channel_stack_type.h",
1617 "src/core/lib/surface/completion_queue.h",
1618 "src/core/lib/surface/event_string.h",
1619 "src/core/lib/surface/init.h",
1620 "src/core/lib/surface/lame_client.h",
1621 "src/core/lib/surface/server.h",
1622 "src/core/lib/surface/surface_trace.h",
1623 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001624 "src/core/lib/transport/connectivity_state.h",
1625 "src/core/lib/transport/metadata.h",
1626 "src/core/lib/transport/metadata_batch.h",
1627 "src/core/lib/transport/static_metadata.h",
1628 "src/core/lib/transport/transport.h",
1629 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001630 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
1631 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
1632 "src/core/ext/transport/chttp2/transport/frame.h",
1633 "src/core/ext/transport/chttp2/transport/frame_data.h",
1634 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
1635 "src/core/ext/transport/chttp2/transport/frame_ping.h",
1636 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
1637 "src/core/ext/transport/chttp2/transport/frame_settings.h",
1638 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
1639 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
1640 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
1641 "src/core/ext/transport/chttp2/transport/hpack_table.h",
1642 "src/core/ext/transport/chttp2/transport/http2_errors.h",
1643 "src/core/ext/transport/chttp2/transport/huffsyms.h",
1644 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
1645 "src/core/ext/transport/chttp2/transport/internal.h",
1646 "src/core/ext/transport/chttp2/transport/status_conversion.h",
1647 "src/core/ext/transport/chttp2/transport/stream_map.h",
1648 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
1649 "src/core/ext/transport/chttp2/transport/varint.h",
1650 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001651 "src/core/lib/security/context/security_context.h",
1652 "src/core/lib/security/credentials/composite/composite_credentials.h",
1653 "src/core/lib/security/credentials/credentials.h",
1654 "src/core/lib/security/credentials/fake/fake_credentials.h",
1655 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
1656 "src/core/lib/security/credentials/iam/iam_credentials.h",
1657 "src/core/lib/security/credentials/jwt/json_token.h",
1658 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
1659 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
1660 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
1661 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
1662 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
1663 "src/core/lib/security/transport/auth_filters.h",
1664 "src/core/lib/security/transport/handshake.h",
1665 "src/core/lib/security/transport/secure_endpoint.h",
1666 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -07001667 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001668 "src/core/lib/security/util/b64.h",
1669 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001670 "src/core/lib/tsi/fake_transport_security.h",
1671 "src/core/lib/tsi/ssl_transport_security.h",
1672 "src/core/lib/tsi/ssl_types.h",
1673 "src/core/lib/tsi/transport_security.h",
1674 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001675 "src/core/ext/client_config/client_channel.h",
1676 "src/core/ext/client_config/client_channel_factory.h",
1677 "src/core/ext/client_config/client_config.h",
1678 "src/core/ext/client_config/connector.h",
1679 "src/core/ext/client_config/initial_connect_string.h",
1680 "src/core/ext/client_config/lb_policy.h",
1681 "src/core/ext/client_config/lb_policy_factory.h",
1682 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001683 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001684 "src/core/ext/client_config/resolver.h",
1685 "src/core/ext/client_config/resolver_factory.h",
1686 "src/core/ext/client_config/resolver_registry.h",
1687 "src/core/ext/client_config/subchannel.h",
1688 "src/core/ext/client_config/subchannel_call_holder.h",
1689 "src/core/ext/client_config/subchannel_index.h",
1690 "src/core/ext/client_config/uri_parser.h",
makdharmac2ec95b2016-05-11 16:26:15 -07001691 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001692 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001693 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001694 "src/core/ext/census/aggregation.h",
1695 "src/core/ext/census/census_interface.h",
1696 "src/core/ext/census/census_rpc_stats.h",
1697 "src/core/ext/census/grpc_filter.h",
1698 "src/core/ext/census/mlog.h",
1699 "src/core/ext/census/rpc_metric_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001700 ],
1701 includes = [
1702 "include",
1703 ".",
1704 ],
1705 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001706 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07001707 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001708 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07001709 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07001710 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07001711)
1712
1713
1714
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001715cc_binary(
1716 name = "grpc_cpp_plugin",
1717 srcs = [
1718 "src/compiler/cpp_plugin.cc",
1719 ],
1720 deps = [
1721 "//external:protobuf_compiler",
1722 ":grpc_plugin_support",
1723 ],
1724)
1725
1726
1727cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07001728 name = "grpc_csharp_plugin",
1729 srcs = [
1730 "src/compiler/csharp_plugin.cc",
1731 ],
1732 deps = [
1733 "//external:protobuf_compiler",
1734 ":grpc_plugin_support",
1735 ],
1736)
1737
1738
1739cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08001740 name = "grpc_node_plugin",
1741 srcs = [
1742 "src/compiler/node_plugin.cc",
1743 ],
1744 deps = [
1745 "//external:protobuf_compiler",
1746 ":grpc_plugin_support",
1747 ],
1748)
1749
1750
1751cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001752 name = "grpc_objective_c_plugin",
1753 srcs = [
1754 "src/compiler/objective_c_plugin.cc",
1755 ],
1756 deps = [
1757 "//external:protobuf_compiler",
1758 ":grpc_plugin_support",
1759 ],
1760)
1761
1762
1763cc_binary(
1764 name = "grpc_python_plugin",
1765 srcs = [
1766 "src/compiler/python_plugin.cc",
1767 ],
1768 deps = [
1769 "//external:protobuf_compiler",
1770 ":grpc_plugin_support",
1771 ],
1772)
1773
1774
1775cc_binary(
1776 name = "grpc_ruby_plugin",
1777 srcs = [
1778 "src/compiler/ruby_plugin.cc",
1779 ],
1780 deps = [
1781 "//external:protobuf_compiler",
1782 ":grpc_plugin_support",
1783 ],
1784)
1785
1786
1787
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001788
1789
Jorge Canizales140bca82015-06-20 09:47:00 -07001790
Jorge Canizales91e67a22015-06-24 13:50:04 -07001791
1792
Jorge Canizales44dc4232015-06-19 16:30:31 -07001793objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07001794
Jorge Canizales44dc4232015-06-19 16:30:31 -07001795rx_library_path = objc_path + "/RxLibrary"
1796
1797objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001798 name = "rx_library",
1799 hdrs = glob([
1800 rx_library_path + "/*.h",
1801 rx_library_path + "/transformations/*.h",
1802 ]),
1803 srcs = glob([
1804 rx_library_path + "/*.m",
1805 rx_library_path + "/transformations/*.m",
1806 ]),
1807 includes = [objc_path],
1808 deps = [
1809 ":rx_library_private",
1810 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001811)
1812
1813objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001814 name = "rx_library_private",
1815 hdrs = glob([rx_library_path + "/private/*.h"]),
1816 srcs = glob([rx_library_path + "/private/*.m"]),
1817 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001818)
Jorge Canizales866255e2015-06-20 18:58:38 -07001819
1820objc_client_path = objc_path + "/GRPCClient"
1821
1822objc_library(
1823 name = "grpc_client",
1824 hdrs = glob([
1825 objc_client_path + "/*.h",
1826 objc_client_path + "/private/*.h",
1827 ]),
1828 srcs = glob([
1829 objc_client_path + "/*.m",
1830 objc_client_path + "/private/*.m",
1831 ]),
1832 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001833 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07001834 deps = [
1835 ":grpc_objc",
1836 ":rx_library",
1837 ],
1838)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001839
1840objc_bundle_library(
1841 # The choice of name is signicant here, since it determines the bundle name.
1842 name = "gRPCCertificates",
1843 resources = ["etc/roots.pem"],
1844)
Jorge Canizales50f19822015-06-28 23:48:30 -07001845
1846proto_objc_rpc_path = objc_path + "/ProtoRPC"
1847
1848objc_library(
1849 name = "proto_objc_rpc",
1850 hdrs = glob([
1851 proto_objc_rpc_path + "/*.h",
1852 ]),
1853 srcs = glob([
1854 proto_objc_rpc_path + "/*.m",
1855 ]),
1856 includes = [objc_path],
1857 deps = [
1858 ":grpc_client",
1859 ":rx_library",
1860 "//external:protobuf_objc",
1861 ],
1862)