blob: 1e0f112ac1701b694dbb9667ac5922b0ca6b7e7d [file] [log] [blame]
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001# GRPC Bazel BUILD file.
Jorge Canizales3beb2402015-07-02 01:30:33 -07002# This currently builds C, C++ and Objective-C code.
Nicolas "Pixel" Nobled49893d2015-04-21 04:57:45 +02003# This file has been automatically generated from a template file.
4# Please look at the templates directory instead.
murgatroid99f680af02015-06-22 11:20:24 -07005# This file can be regenerated from the template by running
6# tools/buildgen/generate_projects.sh
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02007
8# Copyright 2015, Google Inc.
9# All rights reserved.
10#
11# Redistribution and use in source and binary forms, with or without
12# modification, are permitted provided that the following conditions are
13# met:
14#
15# * Redistributions of source code must retain the above copyright
16# notice, this list of conditions and the following disclaimer.
17# * Redistributions in binary form must reproduce the above
18# copyright notice, this list of conditions and the following disclaimer
19# in the documentation and/or other materials provided with the
20# distribution.
21# * Neither the name of Google Inc. nor the names of its
22# contributors may be used to endorse or promote products derived from
23# this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
37licenses(["notice"]) # 3-clause BSD
38
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070039package(default_visibility = ["//visibility:public"])
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020040
41
42
43
Rob Earhartb7b8d052016-03-29 11:35:29 -070044
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020045cc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -080046 name = "gpr",
47 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -070048 "src/core/lib/profiling/timers.h",
49 "src/core/lib/support/backoff.h",
50 "src/core/lib/support/block_annotate.h",
51 "src/core/lib/support/env.h",
52 "src/core/lib/support/load_file.h",
53 "src/core/lib/support/murmur_hash.h",
54 "src/core/lib/support/stack_lockfree.h",
55 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070056 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -070057 "src/core/lib/support/thd_internal.h",
58 "src/core/lib/support/time_precise.h",
59 "src/core/lib/support/tmpfile.h",
60 "src/core/lib/profiling/basic_timers.c",
61 "src/core/lib/profiling/stap_timers.c",
62 "src/core/lib/support/alloc.c",
63 "src/core/lib/support/avl.c",
64 "src/core/lib/support/backoff.c",
65 "src/core/lib/support/cmdline.c",
66 "src/core/lib/support/cpu_iphone.c",
67 "src/core/lib/support/cpu_linux.c",
68 "src/core/lib/support/cpu_posix.c",
69 "src/core/lib/support/cpu_windows.c",
70 "src/core/lib/support/env_linux.c",
71 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070072 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070073 "src/core/lib/support/histogram.c",
74 "src/core/lib/support/host_port.c",
75 "src/core/lib/support/load_file.c",
76 "src/core/lib/support/log.c",
77 "src/core/lib/support/log_android.c",
78 "src/core/lib/support/log_linux.c",
79 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070080 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070081 "src/core/lib/support/murmur_hash.c",
82 "src/core/lib/support/slice.c",
83 "src/core/lib/support/slice_buffer.c",
84 "src/core/lib/support/stack_lockfree.c",
85 "src/core/lib/support/string.c",
86 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -070087 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070088 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070089 "src/core/lib/support/subprocess_posix.c",
90 "src/core/lib/support/subprocess_windows.c",
91 "src/core/lib/support/sync.c",
92 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070093 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070094 "src/core/lib/support/thd.c",
95 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070096 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070097 "src/core/lib/support/time.c",
98 "src/core/lib/support/time_posix.c",
99 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700100 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700101 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200102 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700103 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700104 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700105 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -0800106 ],
107 hdrs = [
108 "include/grpc/support/alloc.h",
109 "include/grpc/support/atm.h",
110 "include/grpc/support/atm_gcc_atomic.h",
111 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700112 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800113 "include/grpc/support/avl.h",
114 "include/grpc/support/cmdline.h",
115 "include/grpc/support/cpu.h",
116 "include/grpc/support/histogram.h",
117 "include/grpc/support/host_port.h",
118 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700119 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800120 "include/grpc/support/port_platform.h",
121 "include/grpc/support/slice.h",
122 "include/grpc/support/slice_buffer.h",
123 "include/grpc/support/string_util.h",
124 "include/grpc/support/subprocess.h",
125 "include/grpc/support/sync.h",
126 "include/grpc/support/sync_generic.h",
127 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700128 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800129 "include/grpc/support/thd.h",
130 "include/grpc/support/time.h",
131 "include/grpc/support/tls.h",
132 "include/grpc/support/tls_gcc.h",
133 "include/grpc/support/tls_msvc.h",
134 "include/grpc/support/tls_pthread.h",
135 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700136 "include/grpc/impl/codegen/alloc.h",
137 "include/grpc/impl/codegen/atm.h",
138 "include/grpc/impl/codegen/atm_gcc_atomic.h",
139 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700140 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700141 "include/grpc/impl/codegen/log.h",
142 "include/grpc/impl/codegen/port_platform.h",
143 "include/grpc/impl/codegen/slice.h",
144 "include/grpc/impl/codegen/slice_buffer.h",
145 "include/grpc/impl/codegen/sync.h",
146 "include/grpc/impl/codegen/sync_generic.h",
147 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700148 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700149 "include/grpc/impl/codegen/time.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800150 ],
151 includes = [
152 "include",
153 ".",
154 ],
155 deps = [
156 ],
157)
158
159
Rob Earhartb7b8d052016-03-29 11:35:29 -0700160
Craig Tillerda179ce2016-02-09 12:01:53 -0800161cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700162 name = "grpc",
163 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700164 "src/core/lib/channel/channel_args.h",
165 "src/core/lib/channel/channel_stack.h",
166 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700167 "src/core/lib/channel/compress_filter.h",
168 "src/core/lib/channel/connected_channel.h",
169 "src/core/lib/channel/context.h",
170 "src/core/lib/channel/http_client_filter.h",
171 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700172 "src/core/lib/compression/algorithm_metadata.h",
173 "src/core/lib/compression/message_compress.h",
174 "src/core/lib/debug/trace.h",
175 "src/core/lib/http/format_request.h",
176 "src/core/lib/http/httpcli.h",
177 "src/core/lib/http/parser.h",
178 "src/core/lib/iomgr/closure.h",
179 "src/core/lib/iomgr/endpoint.h",
180 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700181 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700182 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700183 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700184 "src/core/lib/iomgr/exec_ctx.h",
185 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700186 "src/core/lib/iomgr/iocp_windows.h",
187 "src/core/lib/iomgr/iomgr.h",
188 "src/core/lib/iomgr/iomgr_internal.h",
189 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700190 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700191 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700192 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700193 "src/core/lib/iomgr/pollset_set_windows.h",
194 "src/core/lib/iomgr/pollset_windows.h",
195 "src/core/lib/iomgr/resolve_address.h",
196 "src/core/lib/iomgr/sockaddr.h",
197 "src/core/lib/iomgr/sockaddr_posix.h",
198 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700199 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700200 "src/core/lib/iomgr/socket_utils_posix.h",
201 "src/core/lib/iomgr/socket_windows.h",
202 "src/core/lib/iomgr/tcp_client.h",
203 "src/core/lib/iomgr/tcp_posix.h",
204 "src/core/lib/iomgr/tcp_server.h",
205 "src/core/lib/iomgr/tcp_windows.h",
206 "src/core/lib/iomgr/time_averaged_stats.h",
207 "src/core/lib/iomgr/timer.h",
208 "src/core/lib/iomgr/timer_heap.h",
209 "src/core/lib/iomgr/udp_server.h",
210 "src/core/lib/iomgr/unix_sockets_posix.h",
211 "src/core/lib/iomgr/wakeup_fd_pipe.h",
212 "src/core/lib/iomgr/wakeup_fd_posix.h",
213 "src/core/lib/iomgr/workqueue.h",
214 "src/core/lib/iomgr/workqueue_posix.h",
215 "src/core/lib/iomgr/workqueue_windows.h",
216 "src/core/lib/json/json.h",
217 "src/core/lib/json/json_common.h",
218 "src/core/lib/json/json_reader.h",
219 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700220 "src/core/lib/surface/api_trace.h",
221 "src/core/lib/surface/call.h",
222 "src/core/lib/surface/call_test_only.h",
223 "src/core/lib/surface/channel.h",
224 "src/core/lib/surface/channel_init.h",
225 "src/core/lib/surface/channel_stack_type.h",
226 "src/core/lib/surface/completion_queue.h",
227 "src/core/lib/surface/event_string.h",
228 "src/core/lib/surface/init.h",
229 "src/core/lib/surface/lame_client.h",
230 "src/core/lib/surface/server.h",
231 "src/core/lib/surface/surface_trace.h",
232 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700233 "src/core/lib/transport/connectivity_state.h",
234 "src/core/lib/transport/metadata.h",
235 "src/core/lib/transport/metadata_batch.h",
236 "src/core/lib/transport/static_metadata.h",
237 "src/core/lib/transport/transport.h",
238 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700239 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
240 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
241 "src/core/ext/transport/chttp2/transport/frame.h",
242 "src/core/ext/transport/chttp2/transport/frame_data.h",
243 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
244 "src/core/ext/transport/chttp2/transport/frame_ping.h",
245 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
246 "src/core/ext/transport/chttp2/transport/frame_settings.h",
247 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
248 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
249 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
250 "src/core/ext/transport/chttp2/transport/hpack_table.h",
251 "src/core/ext/transport/chttp2/transport/http2_errors.h",
252 "src/core/ext/transport/chttp2/transport/huffsyms.h",
253 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
254 "src/core/ext/transport/chttp2/transport/internal.h",
255 "src/core/ext/transport/chttp2/transport/status_conversion.h",
256 "src/core/ext/transport/chttp2/transport/stream_map.h",
257 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
258 "src/core/ext/transport/chttp2/transport/varint.h",
259 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700260 "src/core/lib/security/context/security_context.h",
261 "src/core/lib/security/credentials/composite/composite_credentials.h",
262 "src/core/lib/security/credentials/credentials.h",
263 "src/core/lib/security/credentials/fake/fake_credentials.h",
264 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
265 "src/core/lib/security/credentials/iam/iam_credentials.h",
266 "src/core/lib/security/credentials/jwt/json_token.h",
267 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
268 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
269 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
270 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
271 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
272 "src/core/lib/security/transport/auth_filters.h",
273 "src/core/lib/security/transport/handshake.h",
274 "src/core/lib/security/transport/secure_endpoint.h",
275 "src/core/lib/security/transport/security_connector.h",
276 "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",
299 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700300 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700301 "src/core/ext/load_reporting/load_reporting.h",
302 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700303 "src/core/ext/census/aggregation.h",
304 "src/core/ext/census/census_interface.h",
305 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700306 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700307 "src/core/ext/census/grpc_filter.h",
308 "src/core/ext/census/mlog.h",
309 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700310 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700311 "src/core/lib/channel/channel_args.c",
312 "src/core/lib/channel/channel_stack.c",
313 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700314 "src/core/lib/channel/compress_filter.c",
315 "src/core/lib/channel/connected_channel.c",
316 "src/core/lib/channel/http_client_filter.c",
317 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700318 "src/core/lib/compression/compression_algorithm.c",
319 "src/core/lib/compression/message_compress.c",
320 "src/core/lib/debug/trace.c",
321 "src/core/lib/http/format_request.c",
322 "src/core/lib/http/httpcli.c",
323 "src/core/lib/http/parser.c",
324 "src/core/lib/iomgr/closure.c",
325 "src/core/lib/iomgr/endpoint.c",
326 "src/core/lib/iomgr/endpoint_pair_posix.c",
327 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -0700328 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700329 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -0700330 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700331 "src/core/lib/iomgr/exec_ctx.c",
332 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700333 "src/core/lib/iomgr/iocp_windows.c",
334 "src/core/lib/iomgr/iomgr.c",
335 "src/core/lib/iomgr/iomgr_posix.c",
336 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700337 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700338 "src/core/lib/iomgr/pollset_set_windows.c",
339 "src/core/lib/iomgr/pollset_windows.c",
340 "src/core/lib/iomgr/resolve_address_posix.c",
341 "src/core/lib/iomgr/resolve_address_windows.c",
342 "src/core/lib/iomgr/sockaddr_utils.c",
343 "src/core/lib/iomgr/socket_utils_common_posix.c",
344 "src/core/lib/iomgr/socket_utils_linux.c",
345 "src/core/lib/iomgr/socket_utils_posix.c",
346 "src/core/lib/iomgr/socket_windows.c",
347 "src/core/lib/iomgr/tcp_client_posix.c",
348 "src/core/lib/iomgr/tcp_client_windows.c",
349 "src/core/lib/iomgr/tcp_posix.c",
350 "src/core/lib/iomgr/tcp_server_posix.c",
351 "src/core/lib/iomgr/tcp_server_windows.c",
352 "src/core/lib/iomgr/tcp_windows.c",
353 "src/core/lib/iomgr/time_averaged_stats.c",
354 "src/core/lib/iomgr/timer.c",
355 "src/core/lib/iomgr/timer_heap.c",
356 "src/core/lib/iomgr/udp_server.c",
357 "src/core/lib/iomgr/unix_sockets_posix.c",
358 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
359 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
360 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
361 "src/core/lib/iomgr/wakeup_fd_pipe.c",
362 "src/core/lib/iomgr/wakeup_fd_posix.c",
363 "src/core/lib/iomgr/workqueue_posix.c",
364 "src/core/lib/iomgr/workqueue_windows.c",
365 "src/core/lib/json/json.c",
366 "src/core/lib/json/json_reader.c",
367 "src/core/lib/json/json_string.c",
368 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700369 "src/core/lib/surface/alarm.c",
370 "src/core/lib/surface/api_trace.c",
371 "src/core/lib/surface/byte_buffer.c",
372 "src/core/lib/surface/byte_buffer_reader.c",
373 "src/core/lib/surface/call.c",
374 "src/core/lib/surface/call_details.c",
375 "src/core/lib/surface/call_log_batch.c",
376 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700377 "src/core/lib/surface/channel_init.c",
378 "src/core/lib/surface/channel_ping.c",
379 "src/core/lib/surface/channel_stack_type.c",
380 "src/core/lib/surface/completion_queue.c",
381 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700382 "src/core/lib/surface/lame_client.c",
383 "src/core/lib/surface/metadata_array.c",
384 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700385 "src/core/lib/surface/validate_metadata.c",
386 "src/core/lib/surface/version.c",
387 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700388 "src/core/lib/transport/connectivity_state.c",
389 "src/core/lib/transport/metadata.c",
390 "src/core/lib/transport/metadata_batch.c",
391 "src/core/lib/transport/static_metadata.c",
392 "src/core/lib/transport/transport.c",
393 "src/core/lib/transport/transport_op_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700394 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700395 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
396 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700397 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
398 "src/core/ext/transport/chttp2/transport/frame_data.c",
399 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
400 "src/core/ext/transport/chttp2/transport/frame_ping.c",
401 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
402 "src/core/ext/transport/chttp2/transport/frame_settings.c",
403 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
404 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
405 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
406 "src/core/ext/transport/chttp2/transport/hpack_table.c",
407 "src/core/ext/transport/chttp2/transport/huffsyms.c",
408 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
409 "src/core/ext/transport/chttp2/transport/parsing.c",
410 "src/core/ext/transport/chttp2/transport/status_conversion.c",
411 "src/core/ext/transport/chttp2/transport/stream_lists.c",
412 "src/core/ext/transport/chttp2/transport/stream_map.c",
413 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
414 "src/core/ext/transport/chttp2/transport/varint.c",
415 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700416 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700417 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700418 "src/core/lib/security/context/security_context.c",
419 "src/core/lib/security/credentials/composite/composite_credentials.c",
420 "src/core/lib/security/credentials/credentials.c",
421 "src/core/lib/security/credentials/credentials_metadata.c",
422 "src/core/lib/security/credentials/fake/fake_credentials.c",
423 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -0700424 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700425 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
426 "src/core/lib/security/credentials/iam/iam_credentials.c",
427 "src/core/lib/security/credentials/jwt/json_token.c",
428 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
429 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
430 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
431 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
432 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
433 "src/core/lib/security/transport/client_auth_filter.c",
434 "src/core/lib/security/transport/handshake.c",
435 "src/core/lib/security/transport/secure_endpoint.c",
436 "src/core/lib/security/transport/security_connector.c",
437 "src/core/lib/security/transport/server_auth_filter.c",
438 "src/core/lib/security/util/b64.c",
439 "src/core/lib/security/util/json_util.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700440 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700441 "src/core/lib/tsi/fake_transport_security.c",
442 "src/core/lib/tsi/ssl_transport_security.c",
443 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700444 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
445 "src/core/ext/client_config/channel_connectivity.c",
446 "src/core/ext/client_config/client_channel.c",
447 "src/core/ext/client_config/client_channel_factory.c",
448 "src/core/ext/client_config/client_config.c",
449 "src/core/ext/client_config/client_config_plugin.c",
450 "src/core/ext/client_config/connector.c",
451 "src/core/ext/client_config/default_initial_connect_string.c",
452 "src/core/ext/client_config/initial_connect_string.c",
453 "src/core/ext/client_config/lb_policy.c",
454 "src/core/ext/client_config/lb_policy_factory.c",
455 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700456 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700457 "src/core/ext/client_config/resolver.c",
458 "src/core/ext/client_config/resolver_factory.c",
459 "src/core/ext/client_config/resolver_registry.c",
460 "src/core/ext/client_config/subchannel.c",
461 "src/core/ext/client_config/subchannel_call_holder.c",
462 "src/core/ext/client_config/subchannel_index.c",
463 "src/core/ext/client_config/uri_parser.c",
464 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
465 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700466 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.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",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700473 "src/core/ext/load_reporting/load_reporting.c",
474 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700475 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700476 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700477 "src/core/ext/census/grpc_context.c",
478 "src/core/ext/census/grpc_filter.c",
479 "src/core/ext/census/grpc_plugin.c",
480 "src/core/ext/census/initialize.c",
481 "src/core/ext/census/mlog.c",
482 "src/core/ext/census/operation.c",
483 "src/core/ext/census/placeholders.c",
484 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700485 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700486 ],
487 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700488 "include/grpc/byte_buffer.h",
489 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700490 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700491 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700492 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700493 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700494 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700495 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700496 "include/grpc/impl/codegen/compression_types.h",
497 "include/grpc/impl/codegen/connectivity_state.h",
498 "include/grpc/impl/codegen/grpc_types.h",
499 "include/grpc/impl/codegen/propagation_bits.h",
500 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700501 "include/grpc/impl/codegen/alloc.h",
502 "include/grpc/impl/codegen/atm.h",
503 "include/grpc/impl/codegen/atm_gcc_atomic.h",
504 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700505 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700506 "include/grpc/impl/codegen/log.h",
507 "include/grpc/impl/codegen/port_platform.h",
508 "include/grpc/impl/codegen/slice.h",
509 "include/grpc/impl/codegen/slice_buffer.h",
510 "include/grpc/impl/codegen/sync.h",
511 "include/grpc/impl/codegen/sync_generic.h",
512 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700513 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700514 "include/grpc/impl/codegen/time.h",
515 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700516 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700517 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700518 ],
519 includes = [
520 "include",
521 ".",
522 ],
523 deps = [
524 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700525 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800526 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700527 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700528 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800529 copts = [
530 "-std=gnu99",
531 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200532)
533
534
Rob Earhartb7b8d052016-03-29 11:35:29 -0700535
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700536cc_library(
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700537 name = "grpc_cronet",
538 srcs = [
539 "src/core/lib/channel/channel_args.h",
540 "src/core/lib/channel/channel_stack.h",
541 "src/core/lib/channel/channel_stack_builder.h",
542 "src/core/lib/channel/compress_filter.h",
543 "src/core/lib/channel/connected_channel.h",
544 "src/core/lib/channel/context.h",
545 "src/core/lib/channel/http_client_filter.h",
546 "src/core/lib/channel/http_server_filter.h",
547 "src/core/lib/compression/algorithm_metadata.h",
548 "src/core/lib/compression/message_compress.h",
549 "src/core/lib/debug/trace.h",
550 "src/core/lib/http/format_request.h",
551 "src/core/lib/http/httpcli.h",
552 "src/core/lib/http/parser.h",
553 "src/core/lib/iomgr/closure.h",
554 "src/core/lib/iomgr/endpoint.h",
555 "src/core/lib/iomgr/endpoint_pair.h",
556 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
557 "src/core/lib/iomgr/ev_poll_posix.h",
558 "src/core/lib/iomgr/ev_posix.h",
559 "src/core/lib/iomgr/exec_ctx.h",
560 "src/core/lib/iomgr/executor.h",
561 "src/core/lib/iomgr/iocp_windows.h",
562 "src/core/lib/iomgr/iomgr.h",
563 "src/core/lib/iomgr/iomgr_internal.h",
564 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700565 "src/core/lib/iomgr/polling_entity.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700566 "src/core/lib/iomgr/pollset.h",
567 "src/core/lib/iomgr/pollset_set.h",
568 "src/core/lib/iomgr/pollset_set_windows.h",
569 "src/core/lib/iomgr/pollset_windows.h",
570 "src/core/lib/iomgr/resolve_address.h",
571 "src/core/lib/iomgr/sockaddr.h",
572 "src/core/lib/iomgr/sockaddr_posix.h",
573 "src/core/lib/iomgr/sockaddr_utils.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700574 "src/core/lib/iomgr/sockaddr_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700575 "src/core/lib/iomgr/socket_utils_posix.h",
576 "src/core/lib/iomgr/socket_windows.h",
577 "src/core/lib/iomgr/tcp_client.h",
578 "src/core/lib/iomgr/tcp_posix.h",
579 "src/core/lib/iomgr/tcp_server.h",
580 "src/core/lib/iomgr/tcp_windows.h",
581 "src/core/lib/iomgr/time_averaged_stats.h",
582 "src/core/lib/iomgr/timer.h",
583 "src/core/lib/iomgr/timer_heap.h",
584 "src/core/lib/iomgr/udp_server.h",
585 "src/core/lib/iomgr/unix_sockets_posix.h",
586 "src/core/lib/iomgr/wakeup_fd_pipe.h",
587 "src/core/lib/iomgr/wakeup_fd_posix.h",
588 "src/core/lib/iomgr/workqueue.h",
589 "src/core/lib/iomgr/workqueue_posix.h",
590 "src/core/lib/iomgr/workqueue_windows.h",
591 "src/core/lib/json/json.h",
592 "src/core/lib/json/json_common.h",
593 "src/core/lib/json/json_reader.h",
594 "src/core/lib/json/json_writer.h",
595 "src/core/lib/surface/api_trace.h",
596 "src/core/lib/surface/call.h",
597 "src/core/lib/surface/call_test_only.h",
598 "src/core/lib/surface/channel.h",
599 "src/core/lib/surface/channel_init.h",
600 "src/core/lib/surface/channel_stack_type.h",
601 "src/core/lib/surface/completion_queue.h",
602 "src/core/lib/surface/event_string.h",
603 "src/core/lib/surface/init.h",
604 "src/core/lib/surface/lame_client.h",
605 "src/core/lib/surface/server.h",
606 "src/core/lib/surface/surface_trace.h",
607 "src/core/lib/transport/byte_stream.h",
608 "src/core/lib/transport/connectivity_state.h",
609 "src/core/lib/transport/metadata.h",
610 "src/core/lib/transport/metadata_batch.h",
611 "src/core/lib/transport/static_metadata.h",
612 "src/core/lib/transport/transport.h",
613 "src/core/lib/transport/transport_impl.h",
614 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700615 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
616 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
617 "src/core/ext/transport/chttp2/transport/frame.h",
618 "src/core/ext/transport/chttp2/transport/frame_data.h",
619 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
620 "src/core/ext/transport/chttp2/transport/frame_ping.h",
621 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
622 "src/core/ext/transport/chttp2/transport/frame_settings.h",
623 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
624 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
625 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
626 "src/core/ext/transport/chttp2/transport/hpack_table.h",
627 "src/core/ext/transport/chttp2/transport/http2_errors.h",
628 "src/core/ext/transport/chttp2/transport/huffsyms.h",
629 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
630 "src/core/ext/transport/chttp2/transport/internal.h",
631 "src/core/ext/transport/chttp2/transport/status_conversion.h",
632 "src/core/ext/transport/chttp2/transport/stream_map.h",
633 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
634 "src/core/ext/transport/chttp2/transport/varint.h",
635 "src/core/ext/transport/chttp2/alpn/alpn.h",
636 "src/core/ext/client_config/client_channel.h",
637 "src/core/ext/client_config/client_channel_factory.h",
638 "src/core/ext/client_config/client_config.h",
639 "src/core/ext/client_config/connector.h",
640 "src/core/ext/client_config/initial_connect_string.h",
641 "src/core/ext/client_config/lb_policy.h",
642 "src/core/ext/client_config/lb_policy_factory.h",
643 "src/core/ext/client_config/lb_policy_registry.h",
644 "src/core/ext/client_config/parse_address.h",
645 "src/core/ext/client_config/resolver.h",
646 "src/core/ext/client_config/resolver_factory.h",
647 "src/core/ext/client_config/resolver_registry.h",
648 "src/core/ext/client_config/subchannel.h",
649 "src/core/ext/client_config/subchannel_call_holder.h",
650 "src/core/ext/client_config/subchannel_index.h",
651 "src/core/ext/client_config/uri_parser.h",
652 "src/core/lib/security/context/security_context.h",
653 "src/core/lib/security/credentials/composite/composite_credentials.h",
654 "src/core/lib/security/credentials/credentials.h",
655 "src/core/lib/security/credentials/fake/fake_credentials.h",
656 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
657 "src/core/lib/security/credentials/iam/iam_credentials.h",
658 "src/core/lib/security/credentials/jwt/json_token.h",
659 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
660 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
661 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
662 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
663 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
664 "src/core/lib/security/transport/auth_filters.h",
665 "src/core/lib/security/transport/handshake.h",
666 "src/core/lib/security/transport/secure_endpoint.h",
667 "src/core/lib/security/transport/security_connector.h",
668 "src/core/lib/security/util/b64.h",
669 "src/core/lib/security/util/json_util.h",
670 "src/core/lib/tsi/fake_transport_security.h",
671 "src/core/lib/tsi/ssl_transport_security.h",
672 "src/core/lib/tsi/ssl_types.h",
673 "src/core/lib/tsi/transport_security.h",
674 "src/core/lib/tsi/transport_security_interface.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700675 "src/core/lib/surface/init.c",
676 "src/core/lib/channel/channel_args.c",
677 "src/core/lib/channel/channel_stack.c",
678 "src/core/lib/channel/channel_stack_builder.c",
679 "src/core/lib/channel/compress_filter.c",
680 "src/core/lib/channel/connected_channel.c",
681 "src/core/lib/channel/http_client_filter.c",
682 "src/core/lib/channel/http_server_filter.c",
683 "src/core/lib/compression/compression_algorithm.c",
684 "src/core/lib/compression/message_compress.c",
685 "src/core/lib/debug/trace.c",
686 "src/core/lib/http/format_request.c",
687 "src/core/lib/http/httpcli.c",
688 "src/core/lib/http/parser.c",
689 "src/core/lib/iomgr/closure.c",
690 "src/core/lib/iomgr/endpoint.c",
691 "src/core/lib/iomgr/endpoint_pair_posix.c",
692 "src/core/lib/iomgr/endpoint_pair_windows.c",
693 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
694 "src/core/lib/iomgr/ev_poll_posix.c",
695 "src/core/lib/iomgr/ev_posix.c",
696 "src/core/lib/iomgr/exec_ctx.c",
697 "src/core/lib/iomgr/executor.c",
698 "src/core/lib/iomgr/iocp_windows.c",
699 "src/core/lib/iomgr/iomgr.c",
700 "src/core/lib/iomgr/iomgr_posix.c",
701 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700702 "src/core/lib/iomgr/polling_entity.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700703 "src/core/lib/iomgr/pollset_set_windows.c",
704 "src/core/lib/iomgr/pollset_windows.c",
705 "src/core/lib/iomgr/resolve_address_posix.c",
706 "src/core/lib/iomgr/resolve_address_windows.c",
707 "src/core/lib/iomgr/sockaddr_utils.c",
708 "src/core/lib/iomgr/socket_utils_common_posix.c",
709 "src/core/lib/iomgr/socket_utils_linux.c",
710 "src/core/lib/iomgr/socket_utils_posix.c",
711 "src/core/lib/iomgr/socket_windows.c",
712 "src/core/lib/iomgr/tcp_client_posix.c",
713 "src/core/lib/iomgr/tcp_client_windows.c",
714 "src/core/lib/iomgr/tcp_posix.c",
715 "src/core/lib/iomgr/tcp_server_posix.c",
716 "src/core/lib/iomgr/tcp_server_windows.c",
717 "src/core/lib/iomgr/tcp_windows.c",
718 "src/core/lib/iomgr/time_averaged_stats.c",
719 "src/core/lib/iomgr/timer.c",
720 "src/core/lib/iomgr/timer_heap.c",
721 "src/core/lib/iomgr/udp_server.c",
722 "src/core/lib/iomgr/unix_sockets_posix.c",
723 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
724 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
725 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
726 "src/core/lib/iomgr/wakeup_fd_pipe.c",
727 "src/core/lib/iomgr/wakeup_fd_posix.c",
728 "src/core/lib/iomgr/workqueue_posix.c",
729 "src/core/lib/iomgr/workqueue_windows.c",
730 "src/core/lib/json/json.c",
731 "src/core/lib/json/json_reader.c",
732 "src/core/lib/json/json_string.c",
733 "src/core/lib/json/json_writer.c",
734 "src/core/lib/surface/alarm.c",
735 "src/core/lib/surface/api_trace.c",
736 "src/core/lib/surface/byte_buffer.c",
737 "src/core/lib/surface/byte_buffer_reader.c",
738 "src/core/lib/surface/call.c",
739 "src/core/lib/surface/call_details.c",
740 "src/core/lib/surface/call_log_batch.c",
741 "src/core/lib/surface/channel.c",
742 "src/core/lib/surface/channel_init.c",
743 "src/core/lib/surface/channel_ping.c",
744 "src/core/lib/surface/channel_stack_type.c",
745 "src/core/lib/surface/completion_queue.c",
746 "src/core/lib/surface/event_string.c",
747 "src/core/lib/surface/lame_client.c",
748 "src/core/lib/surface/metadata_array.c",
749 "src/core/lib/surface/server.c",
750 "src/core/lib/surface/validate_metadata.c",
751 "src/core/lib/surface/version.c",
752 "src/core/lib/transport/byte_stream.c",
753 "src/core/lib/transport/connectivity_state.c",
754 "src/core/lib/transport/metadata.c",
755 "src/core/lib/transport/metadata_batch.c",
756 "src/core/lib/transport/static_metadata.c",
757 "src/core/lib/transport/transport.c",
758 "src/core/lib/transport/transport_op_string.c",
759 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
760 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
761 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700762 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
763 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
764 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
765 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
766 "src/core/ext/transport/chttp2/transport/frame_data.c",
767 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
768 "src/core/ext/transport/chttp2/transport/frame_ping.c",
769 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
770 "src/core/ext/transport/chttp2/transport/frame_settings.c",
771 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
772 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
773 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
774 "src/core/ext/transport/chttp2/transport/hpack_table.c",
775 "src/core/ext/transport/chttp2/transport/huffsyms.c",
776 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
777 "src/core/ext/transport/chttp2/transport/parsing.c",
778 "src/core/ext/transport/chttp2/transport/status_conversion.c",
779 "src/core/ext/transport/chttp2/transport/stream_lists.c",
780 "src/core/ext/transport/chttp2/transport/stream_map.c",
781 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
782 "src/core/ext/transport/chttp2/transport/varint.c",
783 "src/core/ext/transport/chttp2/transport/writing.c",
784 "src/core/ext/transport/chttp2/alpn/alpn.c",
785 "src/core/ext/client_config/channel_connectivity.c",
786 "src/core/ext/client_config/client_channel.c",
787 "src/core/ext/client_config/client_channel_factory.c",
788 "src/core/ext/client_config/client_config.c",
789 "src/core/ext/client_config/client_config_plugin.c",
790 "src/core/ext/client_config/connector.c",
791 "src/core/ext/client_config/default_initial_connect_string.c",
792 "src/core/ext/client_config/initial_connect_string.c",
793 "src/core/ext/client_config/lb_policy.c",
794 "src/core/ext/client_config/lb_policy_factory.c",
795 "src/core/ext/client_config/lb_policy_registry.c",
796 "src/core/ext/client_config/parse_address.c",
797 "src/core/ext/client_config/resolver.c",
798 "src/core/ext/client_config/resolver_factory.c",
799 "src/core/ext/client_config/resolver_registry.c",
800 "src/core/ext/client_config/subchannel.c",
801 "src/core/ext/client_config/subchannel_call_holder.c",
802 "src/core/ext/client_config/subchannel_index.c",
803 "src/core/ext/client_config/uri_parser.c",
804 "src/core/lib/http/httpcli_security_connector.c",
805 "src/core/lib/security/context/security_context.c",
806 "src/core/lib/security/credentials/composite/composite_credentials.c",
807 "src/core/lib/security/credentials/credentials.c",
808 "src/core/lib/security/credentials/credentials_metadata.c",
809 "src/core/lib/security/credentials/fake/fake_credentials.c",
810 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700811 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700812 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
813 "src/core/lib/security/credentials/iam/iam_credentials.c",
814 "src/core/lib/security/credentials/jwt/json_token.c",
815 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
816 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
817 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
818 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
819 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
820 "src/core/lib/security/transport/client_auth_filter.c",
821 "src/core/lib/security/transport/handshake.c",
822 "src/core/lib/security/transport/secure_endpoint.c",
823 "src/core/lib/security/transport/security_connector.c",
824 "src/core/lib/security/transport/server_auth_filter.c",
825 "src/core/lib/security/util/b64.c",
826 "src/core/lib/security/util/json_util.c",
827 "src/core/lib/surface/init_secure.c",
828 "src/core/lib/tsi/fake_transport_security.c",
829 "src/core/lib/tsi/ssl_transport_security.c",
830 "src/core/lib/tsi/transport_security.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700831 "src/core/plugin_registry/grpc_cronet_plugin_registry.c",
832 ],
833 hdrs = [
834 "include/grpc/byte_buffer.h",
835 "include/grpc/byte_buffer_reader.h",
836 "include/grpc/compression.h",
837 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700838 "include/grpc/grpc_posix.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700839 "include/grpc/status.h",
840 "include/grpc/impl/codegen/byte_buffer.h",
841 "include/grpc/impl/codegen/byte_buffer_reader.h",
842 "include/grpc/impl/codegen/compression_types.h",
843 "include/grpc/impl/codegen/connectivity_state.h",
844 "include/grpc/impl/codegen/grpc_types.h",
845 "include/grpc/impl/codegen/propagation_bits.h",
846 "include/grpc/impl/codegen/status.h",
847 "include/grpc/impl/codegen/alloc.h",
848 "include/grpc/impl/codegen/atm.h",
849 "include/grpc/impl/codegen/atm_gcc_atomic.h",
850 "include/grpc/impl/codegen/atm_gcc_sync.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700851 "include/grpc/impl/codegen/atm_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700852 "include/grpc/impl/codegen/log.h",
853 "include/grpc/impl/codegen/port_platform.h",
854 "include/grpc/impl/codegen/slice.h",
855 "include/grpc/impl/codegen/slice_buffer.h",
856 "include/grpc/impl/codegen/sync.h",
857 "include/grpc/impl/codegen/sync_generic.h",
858 "include/grpc/impl/codegen/sync_posix.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700859 "include/grpc/impl/codegen/sync_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700860 "include/grpc/impl/codegen/time.h",
861 "include/grpc/grpc_cronet.h",
862 "include/grpc/grpc_security.h",
863 "include/grpc/grpc_security_constants.h",
864 ],
865 includes = [
866 "include",
867 ".",
868 ],
869 deps = [
870 "//external:libssl",
871 ":gpr",
872 ],
873)
874
875
876
877cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700878 name = "grpc_unsecure",
879 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700880 "src/core/lib/channel/channel_args.h",
881 "src/core/lib/channel/channel_stack.h",
882 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700883 "src/core/lib/channel/compress_filter.h",
884 "src/core/lib/channel/connected_channel.h",
885 "src/core/lib/channel/context.h",
886 "src/core/lib/channel/http_client_filter.h",
887 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700888 "src/core/lib/compression/algorithm_metadata.h",
889 "src/core/lib/compression/message_compress.h",
890 "src/core/lib/debug/trace.h",
891 "src/core/lib/http/format_request.h",
892 "src/core/lib/http/httpcli.h",
893 "src/core/lib/http/parser.h",
894 "src/core/lib/iomgr/closure.h",
895 "src/core/lib/iomgr/endpoint.h",
896 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700897 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700898 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700899 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700900 "src/core/lib/iomgr/exec_ctx.h",
901 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700902 "src/core/lib/iomgr/iocp_windows.h",
903 "src/core/lib/iomgr/iomgr.h",
904 "src/core/lib/iomgr/iomgr_internal.h",
905 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700906 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700907 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700908 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700909 "src/core/lib/iomgr/pollset_set_windows.h",
910 "src/core/lib/iomgr/pollset_windows.h",
911 "src/core/lib/iomgr/resolve_address.h",
912 "src/core/lib/iomgr/sockaddr.h",
913 "src/core/lib/iomgr/sockaddr_posix.h",
914 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700915 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700916 "src/core/lib/iomgr/socket_utils_posix.h",
917 "src/core/lib/iomgr/socket_windows.h",
918 "src/core/lib/iomgr/tcp_client.h",
919 "src/core/lib/iomgr/tcp_posix.h",
920 "src/core/lib/iomgr/tcp_server.h",
921 "src/core/lib/iomgr/tcp_windows.h",
922 "src/core/lib/iomgr/time_averaged_stats.h",
923 "src/core/lib/iomgr/timer.h",
924 "src/core/lib/iomgr/timer_heap.h",
925 "src/core/lib/iomgr/udp_server.h",
926 "src/core/lib/iomgr/unix_sockets_posix.h",
927 "src/core/lib/iomgr/wakeup_fd_pipe.h",
928 "src/core/lib/iomgr/wakeup_fd_posix.h",
929 "src/core/lib/iomgr/workqueue.h",
930 "src/core/lib/iomgr/workqueue_posix.h",
931 "src/core/lib/iomgr/workqueue_windows.h",
932 "src/core/lib/json/json.h",
933 "src/core/lib/json/json_common.h",
934 "src/core/lib/json/json_reader.h",
935 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700936 "src/core/lib/surface/api_trace.h",
937 "src/core/lib/surface/call.h",
938 "src/core/lib/surface/call_test_only.h",
939 "src/core/lib/surface/channel.h",
940 "src/core/lib/surface/channel_init.h",
941 "src/core/lib/surface/channel_stack_type.h",
942 "src/core/lib/surface/completion_queue.h",
943 "src/core/lib/surface/event_string.h",
944 "src/core/lib/surface/init.h",
945 "src/core/lib/surface/lame_client.h",
946 "src/core/lib/surface/server.h",
947 "src/core/lib/surface/surface_trace.h",
948 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700949 "src/core/lib/transport/connectivity_state.h",
950 "src/core/lib/transport/metadata.h",
951 "src/core/lib/transport/metadata_batch.h",
952 "src/core/lib/transport/static_metadata.h",
953 "src/core/lib/transport/transport.h",
954 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700955 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
956 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
957 "src/core/ext/transport/chttp2/transport/frame.h",
958 "src/core/ext/transport/chttp2/transport/frame_data.h",
959 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
960 "src/core/ext/transport/chttp2/transport/frame_ping.h",
961 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
962 "src/core/ext/transport/chttp2/transport/frame_settings.h",
963 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
964 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
965 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
966 "src/core/ext/transport/chttp2/transport/hpack_table.h",
967 "src/core/ext/transport/chttp2/transport/http2_errors.h",
968 "src/core/ext/transport/chttp2/transport/huffsyms.h",
969 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
970 "src/core/ext/transport/chttp2/transport/internal.h",
971 "src/core/ext/transport/chttp2/transport/status_conversion.h",
972 "src/core/ext/transport/chttp2/transport/stream_map.h",
973 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
974 "src/core/ext/transport/chttp2/transport/varint.h",
975 "src/core/ext/transport/chttp2/alpn/alpn.h",
976 "src/core/ext/client_config/client_channel.h",
977 "src/core/ext/client_config/client_channel_factory.h",
978 "src/core/ext/client_config/client_config.h",
979 "src/core/ext/client_config/connector.h",
980 "src/core/ext/client_config/initial_connect_string.h",
981 "src/core/ext/client_config/lb_policy.h",
982 "src/core/ext/client_config/lb_policy_factory.h",
983 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700984 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700985 "src/core/ext/client_config/resolver.h",
986 "src/core/ext/client_config/resolver_factory.h",
987 "src/core/ext/client_config/resolver_registry.h",
988 "src/core/ext/client_config/subchannel.h",
989 "src/core/ext/client_config/subchannel_call_holder.h",
990 "src/core/ext/client_config/subchannel_index.h",
991 "src/core/ext/client_config/uri_parser.h",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -0700992 "src/core/ext/load_reporting/load_reporting.h",
993 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700994 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700995 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700996 "src/core/ext/census/aggregation.h",
997 "src/core/ext/census/census_interface.h",
998 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700999 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001000 "src/core/ext/census/grpc_filter.h",
1001 "src/core/ext/census/mlog.h",
1002 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001003 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001004 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001005 "src/core/lib/channel/channel_args.c",
1006 "src/core/lib/channel/channel_stack.c",
1007 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001008 "src/core/lib/channel/compress_filter.c",
1009 "src/core/lib/channel/connected_channel.c",
1010 "src/core/lib/channel/http_client_filter.c",
1011 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001012 "src/core/lib/compression/compression_algorithm.c",
1013 "src/core/lib/compression/message_compress.c",
1014 "src/core/lib/debug/trace.c",
1015 "src/core/lib/http/format_request.c",
1016 "src/core/lib/http/httpcli.c",
1017 "src/core/lib/http/parser.c",
1018 "src/core/lib/iomgr/closure.c",
1019 "src/core/lib/iomgr/endpoint.c",
1020 "src/core/lib/iomgr/endpoint_pair_posix.c",
1021 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001022 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001023 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001024 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001025 "src/core/lib/iomgr/exec_ctx.c",
1026 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001027 "src/core/lib/iomgr/iocp_windows.c",
1028 "src/core/lib/iomgr/iomgr.c",
1029 "src/core/lib/iomgr/iomgr_posix.c",
1030 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001031 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001032 "src/core/lib/iomgr/pollset_set_windows.c",
1033 "src/core/lib/iomgr/pollset_windows.c",
1034 "src/core/lib/iomgr/resolve_address_posix.c",
1035 "src/core/lib/iomgr/resolve_address_windows.c",
1036 "src/core/lib/iomgr/sockaddr_utils.c",
1037 "src/core/lib/iomgr/socket_utils_common_posix.c",
1038 "src/core/lib/iomgr/socket_utils_linux.c",
1039 "src/core/lib/iomgr/socket_utils_posix.c",
1040 "src/core/lib/iomgr/socket_windows.c",
1041 "src/core/lib/iomgr/tcp_client_posix.c",
1042 "src/core/lib/iomgr/tcp_client_windows.c",
1043 "src/core/lib/iomgr/tcp_posix.c",
1044 "src/core/lib/iomgr/tcp_server_posix.c",
1045 "src/core/lib/iomgr/tcp_server_windows.c",
1046 "src/core/lib/iomgr/tcp_windows.c",
1047 "src/core/lib/iomgr/time_averaged_stats.c",
1048 "src/core/lib/iomgr/timer.c",
1049 "src/core/lib/iomgr/timer_heap.c",
1050 "src/core/lib/iomgr/udp_server.c",
1051 "src/core/lib/iomgr/unix_sockets_posix.c",
1052 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1053 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1054 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1055 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1056 "src/core/lib/iomgr/wakeup_fd_posix.c",
1057 "src/core/lib/iomgr/workqueue_posix.c",
1058 "src/core/lib/iomgr/workqueue_windows.c",
1059 "src/core/lib/json/json.c",
1060 "src/core/lib/json/json_reader.c",
1061 "src/core/lib/json/json_string.c",
1062 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001063 "src/core/lib/surface/alarm.c",
1064 "src/core/lib/surface/api_trace.c",
1065 "src/core/lib/surface/byte_buffer.c",
1066 "src/core/lib/surface/byte_buffer_reader.c",
1067 "src/core/lib/surface/call.c",
1068 "src/core/lib/surface/call_details.c",
1069 "src/core/lib/surface/call_log_batch.c",
1070 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001071 "src/core/lib/surface/channel_init.c",
1072 "src/core/lib/surface/channel_ping.c",
1073 "src/core/lib/surface/channel_stack_type.c",
1074 "src/core/lib/surface/completion_queue.c",
1075 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001076 "src/core/lib/surface/lame_client.c",
1077 "src/core/lib/surface/metadata_array.c",
1078 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001079 "src/core/lib/surface/validate_metadata.c",
1080 "src/core/lib/surface/version.c",
1081 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001082 "src/core/lib/transport/connectivity_state.c",
1083 "src/core/lib/transport/metadata.c",
1084 "src/core/lib/transport/metadata_batch.c",
1085 "src/core/lib/transport/static_metadata.c",
1086 "src/core/lib/transport/transport.c",
1087 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001088 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1089 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1090 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1091 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1092 "src/core/ext/transport/chttp2/transport/frame_data.c",
1093 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1094 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1095 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1096 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1097 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1098 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1099 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1100 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1101 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1102 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1103 "src/core/ext/transport/chttp2/transport/parsing.c",
1104 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1105 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1106 "src/core/ext/transport/chttp2/transport/stream_map.c",
1107 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1108 "src/core/ext/transport/chttp2/transport/varint.c",
1109 "src/core/ext/transport/chttp2/transport/writing.c",
1110 "src/core/ext/transport/chttp2/alpn/alpn.c",
1111 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001112 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001113 "src/core/ext/client_config/channel_connectivity.c",
1114 "src/core/ext/client_config/client_channel.c",
1115 "src/core/ext/client_config/client_channel_factory.c",
1116 "src/core/ext/client_config/client_config.c",
1117 "src/core/ext/client_config/client_config_plugin.c",
1118 "src/core/ext/client_config/connector.c",
1119 "src/core/ext/client_config/default_initial_connect_string.c",
1120 "src/core/ext/client_config/initial_connect_string.c",
1121 "src/core/ext/client_config/lb_policy.c",
1122 "src/core/ext/client_config/lb_policy_factory.c",
1123 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001124 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001125 "src/core/ext/client_config/resolver.c",
1126 "src/core/ext/client_config/resolver_factory.c",
1127 "src/core/ext/client_config/resolver_registry.c",
1128 "src/core/ext/client_config/subchannel.c",
1129 "src/core/ext/client_config/subchannel_call_holder.c",
1130 "src/core/ext/client_config/subchannel_index.c",
1131 "src/core/ext/client_config/uri_parser.c",
1132 "src/core/ext/resolver/dns/native/dns_resolver.c",
1133 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001134 "src/core/ext/load_reporting/load_reporting.c",
1135 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001136 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001137 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001138 "src/core/ext/lb_policy/pick_first/pick_first.c",
1139 "src/core/ext/lb_policy/round_robin/round_robin.c",
1140 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001141 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001142 "src/core/ext/census/grpc_context.c",
1143 "src/core/ext/census/grpc_filter.c",
1144 "src/core/ext/census/grpc_plugin.c",
1145 "src/core/ext/census/initialize.c",
1146 "src/core/ext/census/mlog.c",
1147 "src/core/ext/census/operation.c",
1148 "src/core/ext/census/placeholders.c",
1149 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001150 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001151 ],
1152 hdrs = [
1153 "include/grpc/byte_buffer.h",
1154 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -07001155 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001156 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001157 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001158 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -08001159 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001160 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -08001161 "include/grpc/impl/codegen/compression_types.h",
1162 "include/grpc/impl/codegen/connectivity_state.h",
1163 "include/grpc/impl/codegen/grpc_types.h",
1164 "include/grpc/impl/codegen/propagation_bits.h",
1165 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001166 "include/grpc/impl/codegen/alloc.h",
1167 "include/grpc/impl/codegen/atm.h",
1168 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1169 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001170 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001171 "include/grpc/impl/codegen/log.h",
1172 "include/grpc/impl/codegen/port_platform.h",
1173 "include/grpc/impl/codegen/slice.h",
1174 "include/grpc/impl/codegen/slice_buffer.h",
1175 "include/grpc/impl/codegen/sync.h",
1176 "include/grpc/impl/codegen/sync_generic.h",
1177 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001178 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001179 "include/grpc/impl/codegen/time.h",
1180 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001181 ],
1182 includes = [
1183 "include",
1184 ".",
1185 ],
1186 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001187 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001188 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001189 ],
Rob Earhartaf379b22016-01-21 13:43:09 -08001190 copts = [
1191 "-std=gnu99",
1192 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001193)
1194
1195
Rob Earhartb7b8d052016-03-29 11:35:29 -07001196
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001197cc_library(
Hongwei Wangda8858f2015-07-16 16:18:19 -07001198 name = "grpc_zookeeper",
1199 srcs = [
Craig Tillerb11b34a2016-04-01 12:30:06 -07001200 "src/core/ext/resolver/zookeeper/zookeeper_resolver.c",
Hongwei Wangda8858f2015-07-16 16:18:19 -07001201 ],
1202 hdrs = [
Hongwei Wanga3780a82015-07-17 15:27:18 -07001203 "include/grpc/grpc_zookeeper.h",
Hongwei Wangda8858f2015-07-16 16:18:19 -07001204 ],
1205 includes = [
1206 "include",
1207 ".",
1208 ],
1209 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001210 ":gpr",
Hongwei Wangda8858f2015-07-16 16:18:19 -07001211 ":grpc",
1212 ],
1213)
1214
1215
Rob Earhartb7b8d052016-03-29 11:35:29 -07001216
Hongwei Wangda8858f2015-07-16 16:18:19 -07001217cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001218 name = "grpc++",
1219 srcs = [
1220 "src/cpp/client/secure_credentials.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -08001221 "src/cpp/common/core_codegen.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001222 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001223 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001224 "src/cpp/client/create_channel_internal.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001225 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001226 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001227 "src/cpp/client/secure_credentials.cc",
1228 "src/cpp/common/auth_property_iterator.cc",
1229 "src/cpp/common/secure_auth_context.cc",
1230 "src/cpp/common/secure_channel_arguments.cc",
1231 "src/cpp/common/secure_create_auth_context.cc",
1232 "src/cpp/server/secure_server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001233 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001234 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001235 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001236 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001237 "src/cpp/client/credentials.cc",
1238 "src/cpp/client/generic_stub.cc",
1239 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001240 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001241 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001242 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001243 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001244 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001245 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001246 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001247 "src/cpp/server/insecure_server_credentials.cc",
1248 "src/cpp/server/server.cc",
1249 "src/cpp/server/server_builder.cc",
1250 "src/cpp/server/server_context.cc",
1251 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001252 "src/cpp/util/byte_buffer.cc",
1253 "src/cpp/util/slice.cc",
1254 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001255 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001256 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001257 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001258 ],
1259 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001260 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001261 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001262 "include/grpc++/client_context.h",
1263 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001264 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001265 "include/grpc++/generic/async_generic_service.h",
1266 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001267 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001268 "include/grpc++/impl/call.h",
1269 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -07001270 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001271 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001272 "include/grpc++/impl/rpc_method.h",
1273 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001274 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001275 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001276 "include/grpc++/impl/server_builder_plugin.h",
1277 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001278 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001279 "include/grpc++/impl/sync.h",
1280 "include/grpc++/impl/sync_cxx11.h",
1281 "include/grpc++/impl/sync_no_cxx11.h",
1282 "include/grpc++/impl/thd.h",
1283 "include/grpc++/impl/thd_cxx11.h",
1284 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001285 "include/grpc++/security/auth_context.h",
1286 "include/grpc++/security/auth_metadata_processor.h",
1287 "include/grpc++/security/credentials.h",
1288 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001289 "include/grpc++/server.h",
1290 "include/grpc++/server_builder.h",
1291 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -07001292 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001293 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001294 "include/grpc++/support/byte_buffer.h",
1295 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001296 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001297 "include/grpc++/support/slice.h",
1298 "include/grpc++/support/status.h",
1299 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001300 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001301 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001302 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001303 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001304 "include/grpc++/impl/codegen/async_stream.h",
1305 "include/grpc++/impl/codegen/async_unary_call.h",
1306 "include/grpc++/impl/codegen/call.h",
1307 "include/grpc++/impl/codegen/call_hook.h",
1308 "include/grpc++/impl/codegen/channel_interface.h",
1309 "include/grpc++/impl/codegen/client_context.h",
1310 "include/grpc++/impl/codegen/client_unary_call.h",
1311 "include/grpc++/impl/codegen/completion_queue.h",
1312 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001313 "include/grpc++/impl/codegen/config.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001314 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001315 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001316 "include/grpc++/impl/codegen/grpc_library.h",
1317 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001318 "include/grpc++/impl/codegen/rpc_method.h",
1319 "include/grpc++/impl/codegen/rpc_service_method.h",
1320 "include/grpc++/impl/codegen/security/auth_context.h",
1321 "include/grpc++/impl/codegen/serialization_traits.h",
1322 "include/grpc++/impl/codegen/server_context.h",
1323 "include/grpc++/impl/codegen/server_interface.h",
1324 "include/grpc++/impl/codegen/service_type.h",
1325 "include/grpc++/impl/codegen/status.h",
1326 "include/grpc++/impl/codegen/status_code_enum.h",
1327 "include/grpc++/impl/codegen/string_ref.h",
1328 "include/grpc++/impl/codegen/stub_options.h",
1329 "include/grpc++/impl/codegen/sync.h",
1330 "include/grpc++/impl/codegen/sync_cxx11.h",
1331 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1332 "include/grpc++/impl/codegen/sync_stream.h",
1333 "include/grpc++/impl/codegen/time.h",
1334 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001335 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001336 "include/grpc/impl/codegen/compression_types.h",
1337 "include/grpc/impl/codegen/connectivity_state.h",
1338 "include/grpc/impl/codegen/grpc_types.h",
1339 "include/grpc/impl/codegen/propagation_bits.h",
1340 "include/grpc/impl/codegen/status.h",
1341 "include/grpc/impl/codegen/alloc.h",
1342 "include/grpc/impl/codegen/atm.h",
1343 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1344 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001345 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001346 "include/grpc/impl/codegen/log.h",
1347 "include/grpc/impl/codegen/port_platform.h",
1348 "include/grpc/impl/codegen/slice.h",
1349 "include/grpc/impl/codegen/slice_buffer.h",
1350 "include/grpc/impl/codegen/sync.h",
1351 "include/grpc/impl/codegen/sync_generic.h",
1352 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001353 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001354 "include/grpc/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001355 ],
1356 includes = [
1357 "include",
1358 ".",
1359 ],
1360 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001361 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001362 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001363 ":grpc",
1364 ],
1365)
1366
1367
Rob Earhartb7b8d052016-03-29 11:35:29 -07001368
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001369cc_library(
1370 name = "grpc++_unsecure",
1371 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001372 "src/cpp/client/create_channel_internal.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -08001373 "src/cpp/common/core_codegen.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001374 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001375 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001376 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001377 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001378 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001379 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001380 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001381 "src/cpp/client/credentials.cc",
1382 "src/cpp/client/generic_stub.cc",
1383 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001384 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001385 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001386 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001387 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001388 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001389 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001390 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001391 "src/cpp/server/insecure_server_credentials.cc",
1392 "src/cpp/server/server.cc",
1393 "src/cpp/server/server_builder.cc",
1394 "src/cpp/server/server_context.cc",
1395 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001396 "src/cpp/util/byte_buffer.cc",
1397 "src/cpp/util/slice.cc",
1398 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001399 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001400 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001401 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001402 ],
1403 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001404 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001405 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001406 "include/grpc++/client_context.h",
1407 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001408 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001409 "include/grpc++/generic/async_generic_service.h",
1410 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001411 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001412 "include/grpc++/impl/call.h",
1413 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -07001414 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001415 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001416 "include/grpc++/impl/rpc_method.h",
1417 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001418 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001419 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001420 "include/grpc++/impl/server_builder_plugin.h",
1421 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001422 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001423 "include/grpc++/impl/sync.h",
1424 "include/grpc++/impl/sync_cxx11.h",
1425 "include/grpc++/impl/sync_no_cxx11.h",
1426 "include/grpc++/impl/thd.h",
1427 "include/grpc++/impl/thd_cxx11.h",
1428 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001429 "include/grpc++/security/auth_context.h",
1430 "include/grpc++/security/auth_metadata_processor.h",
1431 "include/grpc++/security/credentials.h",
1432 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001433 "include/grpc++/server.h",
1434 "include/grpc++/server_builder.h",
1435 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -07001436 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001437 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001438 "include/grpc++/support/byte_buffer.h",
1439 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001440 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001441 "include/grpc++/support/slice.h",
1442 "include/grpc++/support/status.h",
1443 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001444 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001445 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001446 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001447 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001448 "include/grpc++/impl/codegen/async_stream.h",
1449 "include/grpc++/impl/codegen/async_unary_call.h",
1450 "include/grpc++/impl/codegen/call.h",
1451 "include/grpc++/impl/codegen/call_hook.h",
1452 "include/grpc++/impl/codegen/channel_interface.h",
1453 "include/grpc++/impl/codegen/client_context.h",
1454 "include/grpc++/impl/codegen/client_unary_call.h",
1455 "include/grpc++/impl/codegen/completion_queue.h",
1456 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001457 "include/grpc++/impl/codegen/config.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001458 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001459 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001460 "include/grpc++/impl/codegen/grpc_library.h",
1461 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001462 "include/grpc++/impl/codegen/rpc_method.h",
1463 "include/grpc++/impl/codegen/rpc_service_method.h",
1464 "include/grpc++/impl/codegen/security/auth_context.h",
1465 "include/grpc++/impl/codegen/serialization_traits.h",
1466 "include/grpc++/impl/codegen/server_context.h",
1467 "include/grpc++/impl/codegen/server_interface.h",
1468 "include/grpc++/impl/codegen/service_type.h",
1469 "include/grpc++/impl/codegen/status.h",
1470 "include/grpc++/impl/codegen/status_code_enum.h",
1471 "include/grpc++/impl/codegen/string_ref.h",
1472 "include/grpc++/impl/codegen/stub_options.h",
1473 "include/grpc++/impl/codegen/sync.h",
1474 "include/grpc++/impl/codegen/sync_cxx11.h",
1475 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1476 "include/grpc++/impl/codegen/sync_stream.h",
1477 "include/grpc++/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001478 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001479 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001480 "include/grpc/impl/codegen/compression_types.h",
1481 "include/grpc/impl/codegen/connectivity_state.h",
1482 "include/grpc/impl/codegen/grpc_types.h",
1483 "include/grpc/impl/codegen/propagation_bits.h",
1484 "include/grpc/impl/codegen/status.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001485 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001486 "include/grpc/impl/codegen/atm.h",
1487 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1488 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001489 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001490 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001491 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001492 "include/grpc/impl/codegen/slice.h",
1493 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001494 "include/grpc/impl/codegen/sync.h",
1495 "include/grpc/impl/codegen/sync_generic.h",
1496 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001497 "include/grpc/impl/codegen/sync_windows.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001498 "include/grpc/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001499 ],
1500 includes = [
1501 "include",
1502 ".",
1503 ],
1504 deps = [
1505 "//external:protobuf_clib",
1506 ":gpr",
1507 ":grpc_unsecure",
Craig Tiller03915e52016-04-07 09:15:10 -07001508 ":grpc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001509 ],
1510)
1511
yang-g297a25b2015-08-03 16:43:46 -07001512
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001513
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001514cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001515 name = "grpc_plugin_support",
1516 srcs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001517 "src/compiler/config.h",
1518 "src/compiler/cpp_generator.h",
1519 "src/compiler/cpp_generator_helpers.h",
1520 "src/compiler/csharp_generator.h",
1521 "src/compiler/csharp_generator_helpers.h",
1522 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001523 "src/compiler/node_generator.h",
1524 "src/compiler/node_generator_helpers.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001525 "src/compiler/objective_c_generator.h",
1526 "src/compiler/objective_c_generator_helpers.h",
1527 "src/compiler/python_generator.h",
1528 "src/compiler/ruby_generator.h",
1529 "src/compiler/ruby_generator_helpers-inl.h",
1530 "src/compiler/ruby_generator_map-inl.h",
yang-g9d1f0c42015-08-24 16:08:36 -07001531 "src/compiler/ruby_generator_string-inl.h",
1532 "src/compiler/cpp_generator.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001533 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001534 "src/compiler/node_generator.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001535 "src/compiler/objective_c_generator.cc",
1536 "src/compiler/python_generator.cc",
Jan Tattermusch2d924952015-05-06 10:23:17 -07001537 "src/compiler/ruby_generator.cc",
1538 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001539 hdrs = [
Craig Tiller03915e52016-04-07 09:15:10 -07001540 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001541 ],
1542 includes = [
1543 "include",
1544 ".",
1545 ],
1546 deps = [
1547 "//external:protobuf_compiler",
1548 ],
1549)
1550
1551
Rob Earhartb7b8d052016-03-29 11:35:29 -07001552
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001553cc_library(
1554 name = "grpc_csharp_ext",
1555 srcs = [
1556 "src/csharp/ext/grpc_csharp_ext.c",
1557 ],
1558 hdrs = [
1559 ],
1560 includes = [
1561 "include",
1562 ".",
1563 ],
1564 deps = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001565 ":grpc",
Craig Tillerda179ce2016-02-09 12:01:53 -08001566 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001567 ],
1568)
1569
1570
1571
Rob Earhartb7b8d052016-03-29 11:35:29 -07001572
Jorge Canizales140bca82015-06-20 09:47:00 -07001573objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001574 name = "gpr_objc",
1575 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001576 "src/core/lib/profiling/basic_timers.c",
1577 "src/core/lib/profiling/stap_timers.c",
1578 "src/core/lib/support/alloc.c",
1579 "src/core/lib/support/avl.c",
1580 "src/core/lib/support/backoff.c",
1581 "src/core/lib/support/cmdline.c",
1582 "src/core/lib/support/cpu_iphone.c",
1583 "src/core/lib/support/cpu_linux.c",
1584 "src/core/lib/support/cpu_posix.c",
1585 "src/core/lib/support/cpu_windows.c",
1586 "src/core/lib/support/env_linux.c",
1587 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001588 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001589 "src/core/lib/support/histogram.c",
1590 "src/core/lib/support/host_port.c",
1591 "src/core/lib/support/load_file.c",
1592 "src/core/lib/support/log.c",
1593 "src/core/lib/support/log_android.c",
1594 "src/core/lib/support/log_linux.c",
1595 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001596 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001597 "src/core/lib/support/murmur_hash.c",
1598 "src/core/lib/support/slice.c",
1599 "src/core/lib/support/slice_buffer.c",
1600 "src/core/lib/support/stack_lockfree.c",
1601 "src/core/lib/support/string.c",
1602 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001603 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001604 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001605 "src/core/lib/support/subprocess_posix.c",
1606 "src/core/lib/support/subprocess_windows.c",
1607 "src/core/lib/support/sync.c",
1608 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001609 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001610 "src/core/lib/support/thd.c",
1611 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001612 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001613 "src/core/lib/support/time.c",
1614 "src/core/lib/support/time_posix.c",
1615 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001616 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001617 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001618 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001619 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001620 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001621 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001622 ],
1623 hdrs = [
1624 "include/grpc/support/alloc.h",
1625 "include/grpc/support/atm.h",
1626 "include/grpc/support/atm_gcc_atomic.h",
1627 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001628 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001629 "include/grpc/support/avl.h",
1630 "include/grpc/support/cmdline.h",
1631 "include/grpc/support/cpu.h",
1632 "include/grpc/support/histogram.h",
1633 "include/grpc/support/host_port.h",
1634 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001635 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001636 "include/grpc/support/port_platform.h",
1637 "include/grpc/support/slice.h",
1638 "include/grpc/support/slice_buffer.h",
1639 "include/grpc/support/string_util.h",
1640 "include/grpc/support/subprocess.h",
1641 "include/grpc/support/sync.h",
1642 "include/grpc/support/sync_generic.h",
1643 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001644 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001645 "include/grpc/support/thd.h",
1646 "include/grpc/support/time.h",
1647 "include/grpc/support/tls.h",
1648 "include/grpc/support/tls_gcc.h",
1649 "include/grpc/support/tls_msvc.h",
1650 "include/grpc/support/tls_pthread.h",
1651 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001652 "include/grpc/impl/codegen/alloc.h",
1653 "include/grpc/impl/codegen/atm.h",
1654 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1655 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001656 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001657 "include/grpc/impl/codegen/log.h",
1658 "include/grpc/impl/codegen/port_platform.h",
1659 "include/grpc/impl/codegen/slice.h",
1660 "include/grpc/impl/codegen/slice_buffer.h",
1661 "include/grpc/impl/codegen/sync.h",
1662 "include/grpc/impl/codegen/sync_generic.h",
1663 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001664 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001665 "include/grpc/impl/codegen/time.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001666 "src/core/lib/profiling/timers.h",
1667 "src/core/lib/support/backoff.h",
1668 "src/core/lib/support/block_annotate.h",
1669 "src/core/lib/support/env.h",
1670 "src/core/lib/support/load_file.h",
1671 "src/core/lib/support/murmur_hash.h",
1672 "src/core/lib/support/stack_lockfree.h",
1673 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001674 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001675 "src/core/lib/support/thd_internal.h",
1676 "src/core/lib/support/time_precise.h",
1677 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001678 ],
1679 includes = [
1680 "include",
1681 ".",
1682 ],
1683 deps = [
1684 ],
1685)
1686
1687
Rob Earhartb7b8d052016-03-29 11:35:29 -07001688
Craig Tillerda179ce2016-02-09 12:01:53 -08001689objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001690 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001691 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001692 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001693 "src/core/lib/channel/channel_args.c",
1694 "src/core/lib/channel/channel_stack.c",
1695 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001696 "src/core/lib/channel/compress_filter.c",
1697 "src/core/lib/channel/connected_channel.c",
1698 "src/core/lib/channel/http_client_filter.c",
1699 "src/core/lib/channel/http_server_filter.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001700 "src/core/lib/compression/compression_algorithm.c",
1701 "src/core/lib/compression/message_compress.c",
1702 "src/core/lib/debug/trace.c",
1703 "src/core/lib/http/format_request.c",
1704 "src/core/lib/http/httpcli.c",
1705 "src/core/lib/http/parser.c",
1706 "src/core/lib/iomgr/closure.c",
1707 "src/core/lib/iomgr/endpoint.c",
1708 "src/core/lib/iomgr/endpoint_pair_posix.c",
1709 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001710 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001711 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001712 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001713 "src/core/lib/iomgr/exec_ctx.c",
1714 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001715 "src/core/lib/iomgr/iocp_windows.c",
1716 "src/core/lib/iomgr/iomgr.c",
1717 "src/core/lib/iomgr/iomgr_posix.c",
1718 "src/core/lib/iomgr/iomgr_windows.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001719 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001720 "src/core/lib/iomgr/pollset_set_windows.c",
1721 "src/core/lib/iomgr/pollset_windows.c",
1722 "src/core/lib/iomgr/resolve_address_posix.c",
1723 "src/core/lib/iomgr/resolve_address_windows.c",
1724 "src/core/lib/iomgr/sockaddr_utils.c",
1725 "src/core/lib/iomgr/socket_utils_common_posix.c",
1726 "src/core/lib/iomgr/socket_utils_linux.c",
1727 "src/core/lib/iomgr/socket_utils_posix.c",
1728 "src/core/lib/iomgr/socket_windows.c",
1729 "src/core/lib/iomgr/tcp_client_posix.c",
1730 "src/core/lib/iomgr/tcp_client_windows.c",
1731 "src/core/lib/iomgr/tcp_posix.c",
1732 "src/core/lib/iomgr/tcp_server_posix.c",
1733 "src/core/lib/iomgr/tcp_server_windows.c",
1734 "src/core/lib/iomgr/tcp_windows.c",
1735 "src/core/lib/iomgr/time_averaged_stats.c",
1736 "src/core/lib/iomgr/timer.c",
1737 "src/core/lib/iomgr/timer_heap.c",
1738 "src/core/lib/iomgr/udp_server.c",
1739 "src/core/lib/iomgr/unix_sockets_posix.c",
1740 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1741 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1742 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1743 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1744 "src/core/lib/iomgr/wakeup_fd_posix.c",
1745 "src/core/lib/iomgr/workqueue_posix.c",
1746 "src/core/lib/iomgr/workqueue_windows.c",
1747 "src/core/lib/json/json.c",
1748 "src/core/lib/json/json_reader.c",
1749 "src/core/lib/json/json_string.c",
1750 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001751 "src/core/lib/surface/alarm.c",
1752 "src/core/lib/surface/api_trace.c",
1753 "src/core/lib/surface/byte_buffer.c",
1754 "src/core/lib/surface/byte_buffer_reader.c",
1755 "src/core/lib/surface/call.c",
1756 "src/core/lib/surface/call_details.c",
1757 "src/core/lib/surface/call_log_batch.c",
1758 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001759 "src/core/lib/surface/channel_init.c",
1760 "src/core/lib/surface/channel_ping.c",
1761 "src/core/lib/surface/channel_stack_type.c",
1762 "src/core/lib/surface/completion_queue.c",
1763 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001764 "src/core/lib/surface/lame_client.c",
1765 "src/core/lib/surface/metadata_array.c",
1766 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001767 "src/core/lib/surface/validate_metadata.c",
1768 "src/core/lib/surface/version.c",
1769 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001770 "src/core/lib/transport/connectivity_state.c",
1771 "src/core/lib/transport/metadata.c",
1772 "src/core/lib/transport/metadata_batch.c",
1773 "src/core/lib/transport/static_metadata.c",
1774 "src/core/lib/transport/transport.c",
1775 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001776 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
1777 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1778 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1779 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1780 "src/core/ext/transport/chttp2/transport/frame_data.c",
1781 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1782 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1783 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1784 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1785 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1786 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1787 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1788 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1789 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1790 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1791 "src/core/ext/transport/chttp2/transport/parsing.c",
1792 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1793 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1794 "src/core/ext/transport/chttp2/transport/stream_map.c",
1795 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1796 "src/core/ext/transport/chttp2/transport/varint.c",
1797 "src/core/ext/transport/chttp2/transport/writing.c",
1798 "src/core/ext/transport/chttp2/alpn/alpn.c",
1799 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001800 "src/core/lib/security/context/security_context.c",
1801 "src/core/lib/security/credentials/composite/composite_credentials.c",
1802 "src/core/lib/security/credentials/credentials.c",
1803 "src/core/lib/security/credentials/credentials_metadata.c",
1804 "src/core/lib/security/credentials/fake/fake_credentials.c",
1805 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001806 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001807 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
1808 "src/core/lib/security/credentials/iam/iam_credentials.c",
1809 "src/core/lib/security/credentials/jwt/json_token.c",
1810 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
1811 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
1812 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
1813 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
1814 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
1815 "src/core/lib/security/transport/client_auth_filter.c",
1816 "src/core/lib/security/transport/handshake.c",
1817 "src/core/lib/security/transport/secure_endpoint.c",
1818 "src/core/lib/security/transport/security_connector.c",
1819 "src/core/lib/security/transport/server_auth_filter.c",
1820 "src/core/lib/security/util/b64.c",
1821 "src/core/lib/security/util/json_util.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001822 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001823 "src/core/lib/tsi/fake_transport_security.c",
1824 "src/core/lib/tsi/ssl_transport_security.c",
1825 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001826 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
1827 "src/core/ext/client_config/channel_connectivity.c",
1828 "src/core/ext/client_config/client_channel.c",
1829 "src/core/ext/client_config/client_channel_factory.c",
1830 "src/core/ext/client_config/client_config.c",
1831 "src/core/ext/client_config/client_config_plugin.c",
1832 "src/core/ext/client_config/connector.c",
1833 "src/core/ext/client_config/default_initial_connect_string.c",
1834 "src/core/ext/client_config/initial_connect_string.c",
1835 "src/core/ext/client_config/lb_policy.c",
1836 "src/core/ext/client_config/lb_policy_factory.c",
1837 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001838 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001839 "src/core/ext/client_config/resolver.c",
1840 "src/core/ext/client_config/resolver_factory.c",
1841 "src/core/ext/client_config/resolver_registry.c",
1842 "src/core/ext/client_config/subchannel.c",
1843 "src/core/ext/client_config/subchannel_call_holder.c",
1844 "src/core/ext/client_config/subchannel_index.c",
1845 "src/core/ext/client_config/uri_parser.c",
1846 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
1847 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001848 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001849 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001850 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001851 "src/core/ext/lb_policy/pick_first/pick_first.c",
1852 "src/core/ext/lb_policy/round_robin/round_robin.c",
1853 "src/core/ext/resolver/dns/native/dns_resolver.c",
1854 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07001855 "src/core/ext/load_reporting/load_reporting.c",
1856 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001857 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001858 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001859 "src/core/ext/census/grpc_context.c",
1860 "src/core/ext/census/grpc_filter.c",
1861 "src/core/ext/census/grpc_plugin.c",
1862 "src/core/ext/census/initialize.c",
1863 "src/core/ext/census/mlog.c",
1864 "src/core/ext/census/operation.c",
1865 "src/core/ext/census/placeholders.c",
1866 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001867 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001868 ],
1869 hdrs = [
1870 "include/grpc/byte_buffer.h",
1871 "include/grpc/byte_buffer_reader.h",
1872 "include/grpc/compression.h",
1873 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001874 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001875 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001876 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001877 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001878 "include/grpc/impl/codegen/compression_types.h",
1879 "include/grpc/impl/codegen/connectivity_state.h",
1880 "include/grpc/impl/codegen/grpc_types.h",
1881 "include/grpc/impl/codegen/propagation_bits.h",
1882 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001883 "include/grpc/impl/codegen/alloc.h",
1884 "include/grpc/impl/codegen/atm.h",
1885 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1886 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001887 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001888 "include/grpc/impl/codegen/log.h",
1889 "include/grpc/impl/codegen/port_platform.h",
1890 "include/grpc/impl/codegen/slice.h",
1891 "include/grpc/impl/codegen/slice_buffer.h",
1892 "include/grpc/impl/codegen/sync.h",
1893 "include/grpc/impl/codegen/sync_generic.h",
1894 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001895 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001896 "include/grpc/impl/codegen/time.h",
1897 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -07001898 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001899 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001900 "src/core/lib/channel/channel_args.h",
1901 "src/core/lib/channel/channel_stack.h",
1902 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001903 "src/core/lib/channel/compress_filter.h",
1904 "src/core/lib/channel/connected_channel.h",
1905 "src/core/lib/channel/context.h",
1906 "src/core/lib/channel/http_client_filter.h",
1907 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001908 "src/core/lib/compression/algorithm_metadata.h",
1909 "src/core/lib/compression/message_compress.h",
1910 "src/core/lib/debug/trace.h",
1911 "src/core/lib/http/format_request.h",
1912 "src/core/lib/http/httpcli.h",
1913 "src/core/lib/http/parser.h",
1914 "src/core/lib/iomgr/closure.h",
1915 "src/core/lib/iomgr/endpoint.h",
1916 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller8a034482016-03-28 16:09:04 -07001917 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001918 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -07001919 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001920 "src/core/lib/iomgr/exec_ctx.h",
1921 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001922 "src/core/lib/iomgr/iocp_windows.h",
1923 "src/core/lib/iomgr/iomgr.h",
1924 "src/core/lib/iomgr/iomgr_internal.h",
1925 "src/core/lib/iomgr/iomgr_posix.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001926 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001927 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001928 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001929 "src/core/lib/iomgr/pollset_set_windows.h",
1930 "src/core/lib/iomgr/pollset_windows.h",
1931 "src/core/lib/iomgr/resolve_address.h",
1932 "src/core/lib/iomgr/sockaddr.h",
1933 "src/core/lib/iomgr/sockaddr_posix.h",
1934 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001935 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001936 "src/core/lib/iomgr/socket_utils_posix.h",
1937 "src/core/lib/iomgr/socket_windows.h",
1938 "src/core/lib/iomgr/tcp_client.h",
1939 "src/core/lib/iomgr/tcp_posix.h",
1940 "src/core/lib/iomgr/tcp_server.h",
1941 "src/core/lib/iomgr/tcp_windows.h",
1942 "src/core/lib/iomgr/time_averaged_stats.h",
1943 "src/core/lib/iomgr/timer.h",
1944 "src/core/lib/iomgr/timer_heap.h",
1945 "src/core/lib/iomgr/udp_server.h",
1946 "src/core/lib/iomgr/unix_sockets_posix.h",
1947 "src/core/lib/iomgr/wakeup_fd_pipe.h",
1948 "src/core/lib/iomgr/wakeup_fd_posix.h",
1949 "src/core/lib/iomgr/workqueue.h",
1950 "src/core/lib/iomgr/workqueue_posix.h",
1951 "src/core/lib/iomgr/workqueue_windows.h",
1952 "src/core/lib/json/json.h",
1953 "src/core/lib/json/json_common.h",
1954 "src/core/lib/json/json_reader.h",
1955 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001956 "src/core/lib/surface/api_trace.h",
1957 "src/core/lib/surface/call.h",
1958 "src/core/lib/surface/call_test_only.h",
1959 "src/core/lib/surface/channel.h",
1960 "src/core/lib/surface/channel_init.h",
1961 "src/core/lib/surface/channel_stack_type.h",
1962 "src/core/lib/surface/completion_queue.h",
1963 "src/core/lib/surface/event_string.h",
1964 "src/core/lib/surface/init.h",
1965 "src/core/lib/surface/lame_client.h",
1966 "src/core/lib/surface/server.h",
1967 "src/core/lib/surface/surface_trace.h",
1968 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001969 "src/core/lib/transport/connectivity_state.h",
1970 "src/core/lib/transport/metadata.h",
1971 "src/core/lib/transport/metadata_batch.h",
1972 "src/core/lib/transport/static_metadata.h",
1973 "src/core/lib/transport/transport.h",
1974 "src/core/lib/transport/transport_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001975 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
1976 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
1977 "src/core/ext/transport/chttp2/transport/frame.h",
1978 "src/core/ext/transport/chttp2/transport/frame_data.h",
1979 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
1980 "src/core/ext/transport/chttp2/transport/frame_ping.h",
1981 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
1982 "src/core/ext/transport/chttp2/transport/frame_settings.h",
1983 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
1984 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
1985 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
1986 "src/core/ext/transport/chttp2/transport/hpack_table.h",
1987 "src/core/ext/transport/chttp2/transport/http2_errors.h",
1988 "src/core/ext/transport/chttp2/transport/huffsyms.h",
1989 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
1990 "src/core/ext/transport/chttp2/transport/internal.h",
1991 "src/core/ext/transport/chttp2/transport/status_conversion.h",
1992 "src/core/ext/transport/chttp2/transport/stream_map.h",
1993 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
1994 "src/core/ext/transport/chttp2/transport/varint.h",
1995 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001996 "src/core/lib/security/context/security_context.h",
1997 "src/core/lib/security/credentials/composite/composite_credentials.h",
1998 "src/core/lib/security/credentials/credentials.h",
1999 "src/core/lib/security/credentials/fake/fake_credentials.h",
2000 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
2001 "src/core/lib/security/credentials/iam/iam_credentials.h",
2002 "src/core/lib/security/credentials/jwt/json_token.h",
2003 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
2004 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
2005 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
2006 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
2007 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
2008 "src/core/lib/security/transport/auth_filters.h",
2009 "src/core/lib/security/transport/handshake.h",
2010 "src/core/lib/security/transport/secure_endpoint.h",
2011 "src/core/lib/security/transport/security_connector.h",
2012 "src/core/lib/security/util/b64.h",
2013 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002014 "src/core/lib/tsi/fake_transport_security.h",
2015 "src/core/lib/tsi/ssl_transport_security.h",
2016 "src/core/lib/tsi/ssl_types.h",
2017 "src/core/lib/tsi/transport_security.h",
2018 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002019 "src/core/ext/client_config/client_channel.h",
2020 "src/core/ext/client_config/client_channel_factory.h",
2021 "src/core/ext/client_config/client_config.h",
2022 "src/core/ext/client_config/connector.h",
2023 "src/core/ext/client_config/initial_connect_string.h",
2024 "src/core/ext/client_config/lb_policy.h",
2025 "src/core/ext/client_config/lb_policy_factory.h",
2026 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07002027 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002028 "src/core/ext/client_config/resolver.h",
2029 "src/core/ext/client_config/resolver_factory.h",
2030 "src/core/ext/client_config/resolver_registry.h",
2031 "src/core/ext/client_config/subchannel.h",
2032 "src/core/ext/client_config/subchannel_call_holder.h",
2033 "src/core/ext/client_config/subchannel_index.h",
2034 "src/core/ext/client_config/uri_parser.h",
2035 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002036 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07002037 "src/core/ext/load_reporting/load_reporting.h",
2038 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002039 "src/core/ext/census/aggregation.h",
2040 "src/core/ext/census/census_interface.h",
2041 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07002042 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002043 "src/core/ext/census/grpc_filter.h",
2044 "src/core/ext/census/mlog.h",
2045 "src/core/ext/census/rpc_metric_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002046 ],
2047 includes = [
2048 "include",
2049 ".",
2050 ],
2051 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08002052 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07002053 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07002054 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07002055 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07002056 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07002057)
2058
2059
2060
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002061cc_binary(
2062 name = "grpc_cpp_plugin",
2063 srcs = [
2064 "src/compiler/cpp_plugin.cc",
2065 ],
2066 deps = [
2067 "//external:protobuf_compiler",
2068 ":grpc_plugin_support",
2069 ],
2070)
2071
2072
2073cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07002074 name = "grpc_csharp_plugin",
2075 srcs = [
2076 "src/compiler/csharp_plugin.cc",
2077 ],
2078 deps = [
2079 "//external:protobuf_compiler",
2080 ":grpc_plugin_support",
2081 ],
2082)
2083
2084
2085cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08002086 name = "grpc_node_plugin",
2087 srcs = [
2088 "src/compiler/node_plugin.cc",
2089 ],
2090 deps = [
2091 "//external:protobuf_compiler",
2092 ":grpc_plugin_support",
2093 ],
2094)
2095
2096
2097cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002098 name = "grpc_objective_c_plugin",
2099 srcs = [
2100 "src/compiler/objective_c_plugin.cc",
2101 ],
2102 deps = [
2103 "//external:protobuf_compiler",
2104 ":grpc_plugin_support",
2105 ],
2106)
2107
2108
2109cc_binary(
2110 name = "grpc_python_plugin",
2111 srcs = [
2112 "src/compiler/python_plugin.cc",
2113 ],
2114 deps = [
2115 "//external:protobuf_compiler",
2116 ":grpc_plugin_support",
2117 ],
2118)
2119
2120
2121cc_binary(
2122 name = "grpc_ruby_plugin",
2123 srcs = [
2124 "src/compiler/ruby_plugin.cc",
2125 ],
2126 deps = [
2127 "//external:protobuf_compiler",
2128 ":grpc_plugin_support",
2129 ],
2130)
2131
2132
2133
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02002134
2135
Jorge Canizales140bca82015-06-20 09:47:00 -07002136
Jorge Canizales91e67a22015-06-24 13:50:04 -07002137
2138
Jorge Canizales44dc4232015-06-19 16:30:31 -07002139objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07002140
Jorge Canizales44dc4232015-06-19 16:30:31 -07002141rx_library_path = objc_path + "/RxLibrary"
2142
2143objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002144 name = "rx_library",
2145 hdrs = glob([
2146 rx_library_path + "/*.h",
2147 rx_library_path + "/transformations/*.h",
2148 ]),
2149 srcs = glob([
2150 rx_library_path + "/*.m",
2151 rx_library_path + "/transformations/*.m",
2152 ]),
2153 includes = [objc_path],
2154 deps = [
2155 ":rx_library_private",
2156 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002157)
2158
2159objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002160 name = "rx_library_private",
2161 hdrs = glob([rx_library_path + "/private/*.h"]),
2162 srcs = glob([rx_library_path + "/private/*.m"]),
2163 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002164)
Jorge Canizales866255e2015-06-20 18:58:38 -07002165
2166objc_client_path = objc_path + "/GRPCClient"
2167
2168objc_library(
2169 name = "grpc_client",
2170 hdrs = glob([
2171 objc_client_path + "/*.h",
2172 objc_client_path + "/private/*.h",
2173 ]),
2174 srcs = glob([
2175 objc_client_path + "/*.m",
2176 objc_client_path + "/private/*.m",
2177 ]),
2178 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002179 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07002180 deps = [
2181 ":grpc_objc",
2182 ":rx_library",
2183 ],
2184)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002185
2186objc_bundle_library(
2187 # The choice of name is signicant here, since it determines the bundle name.
2188 name = "gRPCCertificates",
2189 resources = ["etc/roots.pem"],
2190)
Jorge Canizales50f19822015-06-28 23:48:30 -07002191
2192proto_objc_rpc_path = objc_path + "/ProtoRPC"
2193
2194objc_library(
2195 name = "proto_objc_rpc",
2196 hdrs = glob([
2197 proto_objc_rpc_path + "/*.h",
2198 ]),
2199 srcs = glob([
2200 proto_objc_rpc_path + "/*.m",
2201 ]),
2202 includes = [objc_path],
2203 deps = [
2204 ":grpc_client",
2205 ":rx_library",
2206 "//external:protobuf_objc",
2207 ],
2208)