blob: 0d4d9e2eb06673871a9557a5773cade310872568 [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
44cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070045 name = "gpr",
46 srcs = [
47 "src/core/support/env.h",
48 "src/core/support/file.h",
49 "src/core/support/murmur_hash.h",
Vijay Pai005e3052015-07-10 15:18:45 -070050 "src/core/support/stack_lockfree.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070051 "src/core/support/string.h",
52 "src/core/support/string_win32.h",
53 "src/core/support/thd_internal.h",
54 "src/core/support/alloc.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070055 "src/core/support/cmdline.c",
56 "src/core/support/cpu_iphone.c",
57 "src/core/support/cpu_linux.c",
58 "src/core/support/cpu_posix.c",
59 "src/core/support/cpu_windows.c",
60 "src/core/support/env_linux.c",
61 "src/core/support/env_posix.c",
62 "src/core/support/env_win32.c",
63 "src/core/support/file.c",
64 "src/core/support/file_posix.c",
65 "src/core/support/file_win32.c",
66 "src/core/support/histogram.c",
67 "src/core/support/host_port.c",
68 "src/core/support/log.c",
69 "src/core/support/log_android.c",
70 "src/core/support/log_linux.c",
71 "src/core/support/log_posix.c",
72 "src/core/support/log_win32.c",
73 "src/core/support/murmur_hash.c",
74 "src/core/support/slice.c",
75 "src/core/support/slice_buffer.c",
Vijay Pai005e3052015-07-10 15:18:45 -070076 "src/core/support/stack_lockfree.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070077 "src/core/support/string.c",
78 "src/core/support/string_posix.c",
79 "src/core/support/string_win32.c",
Craig Tillerc21a8092015-05-15 10:03:40 -070080 "src/core/support/subprocess_posix.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070081 "src/core/support/sync.c",
82 "src/core/support/sync_posix.c",
83 "src/core/support/sync_win32.c",
84 "src/core/support/thd.c",
85 "src/core/support/thd_posix.c",
86 "src/core/support/thd_win32.c",
87 "src/core/support/time.c",
88 "src/core/support/time_posix.c",
89 "src/core/support/time_win32.c",
Craig Tilleree210ab2015-05-15 10:32:28 -070090 "src/core/support/tls_pthread.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070091 ],
92 hdrs = [
93 "include/grpc/support/alloc.h",
94 "include/grpc/support/atm.h",
95 "include/grpc/support/atm_gcc_atomic.h",
96 "include/grpc/support/atm_gcc_sync.h",
97 "include/grpc/support/atm_win32.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070098 "include/grpc/support/cmdline.h",
99 "include/grpc/support/cpu.h",
100 "include/grpc/support/histogram.h",
101 "include/grpc/support/host_port.h",
102 "include/grpc/support/log.h",
103 "include/grpc/support/log_win32.h",
104 "include/grpc/support/port_platform.h",
105 "include/grpc/support/slice.h",
106 "include/grpc/support/slice_buffer.h",
Masood Malekghassemi701af602015-06-03 15:01:17 -0700107 "include/grpc/support/string_util.h",
Craig Tiller685f1e62015-05-15 11:40:59 -0700108 "include/grpc/support/subprocess.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700109 "include/grpc/support/sync.h",
110 "include/grpc/support/sync_generic.h",
111 "include/grpc/support/sync_posix.h",
112 "include/grpc/support/sync_win32.h",
113 "include/grpc/support/thd.h",
114 "include/grpc/support/time.h",
Yang Gaob0b518e2015-04-13 14:53:25 -0700115 "include/grpc/support/tls.h",
116 "include/grpc/support/tls_gcc.h",
117 "include/grpc/support/tls_msvc.h",
118 "include/grpc/support/tls_pthread.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700119 "include/grpc/support/useful.h",
120 ],
121 includes = [
122 "include",
123 ".",
124 ],
125 deps = [
126 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200127)
128
129
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200130cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700131 name = "grpc",
132 srcs = [
Julien Boeufc6f8d0a2015-05-11 22:40:02 -0700133 "src/core/security/auth_filters.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700134 "src/core/security/base64.h",
135 "src/core/security/credentials.h",
136 "src/core/security/json_token.h",
Julien Boeuffeca1bf2015-06-22 16:46:20 +0200137 "src/core/security/jwt_verifier.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700138 "src/core/security/secure_endpoint.h",
139 "src/core/security/secure_transport_setup.h",
Julien Boeuf7d1d9ca2015-04-17 14:38:48 -0700140 "src/core/security/security_connector.h",
Julien Boeufd7f768b2015-05-08 16:37:16 -0700141 "src/core/security/security_context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700142 "src/core/tsi/fake_transport_security.h",
143 "src/core/tsi/ssl_transport_security.h",
144 "src/core/tsi/transport_security.h",
145 "src/core/tsi/transport_security_interface.h",
murgatroid997da8b1a2015-06-17 12:37:34 -0700146 "src/core/channel/census_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700147 "src/core/channel/channel_args.h",
148 "src/core/channel/channel_stack.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700149 "src/core/channel/client_channel.h",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700150 "src/core/channel/compress_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700151 "src/core/channel/connected_channel.h",
murgatroid997da8b1a2015-06-17 12:37:34 -0700152 "src/core/channel/context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700153 "src/core/channel/http_client_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700154 "src/core/channel/http_server_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700155 "src/core/channel/noop_filter.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700156 "src/core/client_config/client_config.h",
Craig Tiller91624662015-06-25 16:31:02 -0700157 "src/core/client_config/connector.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700158 "src/core/client_config/lb_policies/pick_first.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700159 "src/core/client_config/lb_policy.h",
160 "src/core/client_config/resolver.h",
Craig Tiller7df28a72015-06-24 09:23:52 -0700161 "src/core/client_config/resolver_factory.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700162 "src/core/client_config/resolver_registry.h",
163 "src/core/client_config/resolvers/dns_resolver.h",
Craig Tiller698d00c2015-07-20 12:32:58 -0700164 "src/core/client_config/resolvers/sockaddr_resolver.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700165 "src/core/client_config/subchannel.h",
166 "src/core/client_config/subchannel_factory.h",
Craig Tiller83f4d4e2015-07-29 18:14:41 -0700167 "src/core/client_config/subchannel_factory_decorators/add_channel_arg.h",
168 "src/core/client_config/subchannel_factory_decorators/merge_channel_args.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700169 "src/core/client_config/uri_parser.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700170 "src/core/compression/message_compress.h",
171 "src/core/debug/trace.h",
Craig Tillerf53d9c82015-08-04 14:19:43 -0700172 "src/core/httpcli/format_request.h",
173 "src/core/httpcli/httpcli.h",
174 "src/core/httpcli/parser.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700175 "src/core/iomgr/alarm.h",
176 "src/core/iomgr/alarm_heap.h",
177 "src/core/iomgr/alarm_internal.h",
178 "src/core/iomgr/endpoint.h",
179 "src/core/iomgr/endpoint_pair.h",
180 "src/core/iomgr/fd_posix.h",
181 "src/core/iomgr/iocp_windows.h",
182 "src/core/iomgr/iomgr.h",
183 "src/core/iomgr/iomgr_internal.h",
184 "src/core/iomgr/iomgr_posix.h",
185 "src/core/iomgr/pollset.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700186 "src/core/iomgr/pollset_posix.h",
Jorge Canizalesfe8ad732015-06-20 19:53:59 -0700187 "src/core/iomgr/pollset_set.h",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700188 "src/core/iomgr/pollset_set_posix.h",
189 "src/core/iomgr/pollset_set_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700190 "src/core/iomgr/pollset_windows.h",
191 "src/core/iomgr/resolve_address.h",
192 "src/core/iomgr/sockaddr.h",
193 "src/core/iomgr/sockaddr_posix.h",
194 "src/core/iomgr/sockaddr_utils.h",
195 "src/core/iomgr/sockaddr_win32.h",
196 "src/core/iomgr/socket_utils_posix.h",
197 "src/core/iomgr/socket_windows.h",
198 "src/core/iomgr/tcp_client.h",
199 "src/core/iomgr/tcp_posix.h",
200 "src/core/iomgr/tcp_server.h",
201 "src/core/iomgr/tcp_windows.h",
202 "src/core/iomgr/time_averaged_stats.h",
203 "src/core/iomgr/wakeup_fd_pipe.h",
204 "src/core/iomgr/wakeup_fd_posix.h",
205 "src/core/json/json.h",
206 "src/core/json/json_common.h",
207 "src/core/json/json_reader.h",
208 "src/core/json/json_writer.h",
Vijay Pai6dfa7e62015-04-13 10:41:40 -0700209 "src/core/profiling/timers.h",
Vijay Pai9cccb082015-04-13 13:04:06 -0700210 "src/core/profiling/timers_preciseclock.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700211 "src/core/surface/byte_buffer_queue.h",
212 "src/core/surface/call.h",
213 "src/core/surface/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700214 "src/core/surface/completion_queue.h",
215 "src/core/surface/event_string.h",
216 "src/core/surface/init.h",
217 "src/core/surface/server.h",
218 "src/core/surface/surface_trace.h",
219 "src/core/transport/chttp2/alpn.h",
220 "src/core/transport/chttp2/bin_encoder.h",
221 "src/core/transport/chttp2/frame.h",
222 "src/core/transport/chttp2/frame_data.h",
223 "src/core/transport/chttp2/frame_goaway.h",
224 "src/core/transport/chttp2/frame_ping.h",
225 "src/core/transport/chttp2/frame_rst_stream.h",
226 "src/core/transport/chttp2/frame_settings.h",
227 "src/core/transport/chttp2/frame_window_update.h",
228 "src/core/transport/chttp2/hpack_parser.h",
229 "src/core/transport/chttp2/hpack_table.h",
230 "src/core/transport/chttp2/http2_errors.h",
231 "src/core/transport/chttp2/huffsyms.h",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700232 "src/core/transport/chttp2/incoming_metadata.h",
Craig Tiller41527062015-06-12 07:51:05 -0700233 "src/core/transport/chttp2/internal.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700234 "src/core/transport/chttp2/status_conversion.h",
235 "src/core/transport/chttp2/stream_encoder.h",
236 "src/core/transport/chttp2/stream_map.h",
237 "src/core/transport/chttp2/timeout_encoding.h",
238 "src/core/transport/chttp2/varint.h",
239 "src/core/transport/chttp2_transport.h",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700240 "src/core/transport/connectivity_state.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700241 "src/core/transport/metadata.h",
242 "src/core/transport/stream_op.h",
243 "src/core/transport/transport.h",
244 "src/core/transport/transport_impl.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700245 "src/core/census/context.h",
Alistair Veitchb46f3f42015-07-20 13:34:10 -0700246 "src/core/census/rpc_stat_id.h",
Julien Boeuf7d1d9ca2015-04-17 14:38:48 -0700247 "src/core/httpcli/httpcli_security_connector.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700248 "src/core/security/base64.c",
Julien Boeufc6f8d0a2015-05-11 22:40:02 -0700249 "src/core/security/client_auth_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700250 "src/core/security/credentials.c",
Julien Boeuf75c9b6f2015-05-29 13:12:12 -0700251 "src/core/security/credentials_metadata.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700252 "src/core/security/credentials_posix.c",
253 "src/core/security/credentials_win32.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700254 "src/core/security/google_default_credentials.c",
255 "src/core/security/json_token.c",
Julien Boeuffeca1bf2015-06-22 16:46:20 +0200256 "src/core/security/jwt_verifier.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700257 "src/core/security/secure_endpoint.c",
258 "src/core/security/secure_transport_setup.c",
Julien Boeuf7d1d9ca2015-04-17 14:38:48 -0700259 "src/core/security/security_connector.c",
Julien Boeufd7f768b2015-05-08 16:37:16 -0700260 "src/core/security/security_context.c",
Julien Boeufc6f8d0a2015-05-11 22:40:02 -0700261 "src/core/security/server_auth_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700262 "src/core/security/server_secure_chttp2.c",
263 "src/core/surface/init_secure.c",
264 "src/core/surface/secure_channel_create.c",
265 "src/core/tsi/fake_transport_security.c",
266 "src/core/tsi/ssl_transport_security.c",
267 "src/core/tsi/transport_security.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700268 "src/core/census/grpc_context.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700269 "src/core/channel/channel_args.c",
270 "src/core/channel/channel_stack.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700271 "src/core/channel/client_channel.c",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700272 "src/core/channel/compress_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700273 "src/core/channel/connected_channel.c",
274 "src/core/channel/http_client_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700275 "src/core/channel/http_server_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700276 "src/core/channel/noop_filter.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700277 "src/core/client_config/client_config.c",
Craig Tiller91624662015-06-25 16:31:02 -0700278 "src/core/client_config/connector.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700279 "src/core/client_config/lb_policies/pick_first.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700280 "src/core/client_config/lb_policy.c",
281 "src/core/client_config/resolver.c",
Craig Tiller7df28a72015-06-24 09:23:52 -0700282 "src/core/client_config/resolver_factory.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700283 "src/core/client_config/resolver_registry.c",
284 "src/core/client_config/resolvers/dns_resolver.c",
Craig Tiller698d00c2015-07-20 12:32:58 -0700285 "src/core/client_config/resolvers/sockaddr_resolver.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700286 "src/core/client_config/subchannel.c",
287 "src/core/client_config/subchannel_factory.c",
Craig Tiller83f4d4e2015-07-29 18:14:41 -0700288 "src/core/client_config/subchannel_factory_decorators/add_channel_arg.c",
289 "src/core/client_config/subchannel_factory_decorators/merge_channel_args.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700290 "src/core/client_config/uri_parser.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700291 "src/core/compression/algorithm.c",
292 "src/core/compression/message_compress.c",
293 "src/core/debug/trace.c",
Craig Tillerf53d9c82015-08-04 14:19:43 -0700294 "src/core/httpcli/format_request.c",
295 "src/core/httpcli/httpcli.c",
296 "src/core/httpcli/parser.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700297 "src/core/iomgr/alarm.c",
298 "src/core/iomgr/alarm_heap.c",
299 "src/core/iomgr/endpoint.c",
300 "src/core/iomgr/endpoint_pair_posix.c",
Craig Tillerd180e032015-04-13 10:10:07 -0700301 "src/core/iomgr/endpoint_pair_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700302 "src/core/iomgr/fd_posix.c",
303 "src/core/iomgr/iocp_windows.c",
304 "src/core/iomgr/iomgr.c",
305 "src/core/iomgr/iomgr_posix.c",
306 "src/core/iomgr/iomgr_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700307 "src/core/iomgr/pollset_multipoller_with_epoll.c",
308 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
309 "src/core/iomgr/pollset_posix.c",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700310 "src/core/iomgr/pollset_set_posix.c",
311 "src/core/iomgr/pollset_set_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700312 "src/core/iomgr/pollset_windows.c",
313 "src/core/iomgr/resolve_address_posix.c",
314 "src/core/iomgr/resolve_address_windows.c",
315 "src/core/iomgr/sockaddr_utils.c",
316 "src/core/iomgr/socket_utils_common_posix.c",
317 "src/core/iomgr/socket_utils_linux.c",
318 "src/core/iomgr/socket_utils_posix.c",
319 "src/core/iomgr/socket_windows.c",
320 "src/core/iomgr/tcp_client_posix.c",
321 "src/core/iomgr/tcp_client_windows.c",
322 "src/core/iomgr/tcp_posix.c",
323 "src/core/iomgr/tcp_server_posix.c",
324 "src/core/iomgr/tcp_server_windows.c",
325 "src/core/iomgr/tcp_windows.c",
326 "src/core/iomgr/time_averaged_stats.c",
327 "src/core/iomgr/wakeup_fd_eventfd.c",
328 "src/core/iomgr/wakeup_fd_nospecial.c",
329 "src/core/iomgr/wakeup_fd_pipe.c",
330 "src/core/iomgr/wakeup_fd_posix.c",
331 "src/core/json/json.c",
332 "src/core/json/json_reader.c",
333 "src/core/json/json_string.c",
334 "src/core/json/json_writer.c",
David Garcia Quintas8954e902015-04-29 09:46:33 -0700335 "src/core/profiling/basic_timers.c",
336 "src/core/profiling/stap_timers.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700337 "src/core/surface/byte_buffer.c",
338 "src/core/surface/byte_buffer_queue.c",
339 "src/core/surface/byte_buffer_reader.c",
340 "src/core/surface/call.c",
341 "src/core/surface/call_details.c",
342 "src/core/surface/call_log_batch.c",
343 "src/core/surface/channel.c",
Craig Tiller48cb07c2015-07-15 16:16:15 -0700344 "src/core/surface/channel_connectivity.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700345 "src/core/surface/channel_create.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700346 "src/core/surface/completion_queue.c",
347 "src/core/surface/event_string.c",
348 "src/core/surface/init.c",
349 "src/core/surface/lame_client.c",
350 "src/core/surface/metadata_array.c",
351 "src/core/surface/server.c",
352 "src/core/surface/server_chttp2.c",
353 "src/core/surface/server_create.c",
354 "src/core/surface/surface_trace.c",
Craig Tiller2e622bc2015-07-10 07:46:03 -0700355 "src/core/surface/version.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700356 "src/core/transport/chttp2/alpn.c",
357 "src/core/transport/chttp2/bin_encoder.c",
358 "src/core/transport/chttp2/frame_data.c",
359 "src/core/transport/chttp2/frame_goaway.c",
360 "src/core/transport/chttp2/frame_ping.c",
361 "src/core/transport/chttp2/frame_rst_stream.c",
362 "src/core/transport/chttp2/frame_settings.c",
363 "src/core/transport/chttp2/frame_window_update.c",
364 "src/core/transport/chttp2/hpack_parser.c",
365 "src/core/transport/chttp2/hpack_table.c",
366 "src/core/transport/chttp2/huffsyms.c",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700367 "src/core/transport/chttp2/incoming_metadata.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700368 "src/core/transport/chttp2/parsing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700369 "src/core/transport/chttp2/status_conversion.c",
370 "src/core/transport/chttp2/stream_encoder.c",
Craig Tiller6459db42015-06-15 17:11:45 -0700371 "src/core/transport/chttp2/stream_lists.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700372 "src/core/transport/chttp2/stream_map.c",
373 "src/core/transport/chttp2/timeout_encoding.c",
374 "src/core/transport/chttp2/varint.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700375 "src/core/transport/chttp2/writing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700376 "src/core/transport/chttp2_transport.c",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700377 "src/core/transport/connectivity_state.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700378 "src/core/transport/metadata.c",
379 "src/core/transport/stream_op.c",
380 "src/core/transport/transport.c",
Craig Tiller83f88d92015-04-21 16:02:05 -0700381 "src/core/transport/transport_op_string.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700382 "src/core/census/context.c",
383 "src/core/census/initialize.c",
Alistair Veitch635899d2015-07-17 16:02:24 -0700384 "src/core/census/record_stat.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700385 ],
386 hdrs = [
387 "include/grpc/grpc_security.h",
388 "include/grpc/byte_buffer.h",
389 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700390 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700391 "include/grpc/grpc.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700392 "include/grpc/status.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700393 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700394 ],
395 includes = [
396 "include",
397 ".",
398 ],
399 deps = [
400 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700401 "//external:zlib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700402 ":gpr",
403 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200404)
405
406
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700407cc_library(
408 name = "grpc_unsecure",
409 srcs = [
murgatroid997da8b1a2015-06-17 12:37:34 -0700410 "src/core/channel/census_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700411 "src/core/channel/channel_args.h",
412 "src/core/channel/channel_stack.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700413 "src/core/channel/client_channel.h",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700414 "src/core/channel/compress_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700415 "src/core/channel/connected_channel.h",
murgatroid997da8b1a2015-06-17 12:37:34 -0700416 "src/core/channel/context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700417 "src/core/channel/http_client_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700418 "src/core/channel/http_server_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700419 "src/core/channel/noop_filter.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700420 "src/core/client_config/client_config.h",
Craig Tiller91624662015-06-25 16:31:02 -0700421 "src/core/client_config/connector.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700422 "src/core/client_config/lb_policies/pick_first.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700423 "src/core/client_config/lb_policy.h",
424 "src/core/client_config/resolver.h",
Craig Tiller7df28a72015-06-24 09:23:52 -0700425 "src/core/client_config/resolver_factory.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700426 "src/core/client_config/resolver_registry.h",
427 "src/core/client_config/resolvers/dns_resolver.h",
Craig Tiller698d00c2015-07-20 12:32:58 -0700428 "src/core/client_config/resolvers/sockaddr_resolver.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700429 "src/core/client_config/subchannel.h",
430 "src/core/client_config/subchannel_factory.h",
Craig Tiller83f4d4e2015-07-29 18:14:41 -0700431 "src/core/client_config/subchannel_factory_decorators/add_channel_arg.h",
432 "src/core/client_config/subchannel_factory_decorators/merge_channel_args.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700433 "src/core/client_config/uri_parser.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700434 "src/core/compression/message_compress.h",
435 "src/core/debug/trace.h",
Craig Tillerf53d9c82015-08-04 14:19:43 -0700436 "src/core/httpcli/format_request.h",
437 "src/core/httpcli/httpcli.h",
438 "src/core/httpcli/parser.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700439 "src/core/iomgr/alarm.h",
440 "src/core/iomgr/alarm_heap.h",
441 "src/core/iomgr/alarm_internal.h",
442 "src/core/iomgr/endpoint.h",
443 "src/core/iomgr/endpoint_pair.h",
444 "src/core/iomgr/fd_posix.h",
445 "src/core/iomgr/iocp_windows.h",
446 "src/core/iomgr/iomgr.h",
447 "src/core/iomgr/iomgr_internal.h",
448 "src/core/iomgr/iomgr_posix.h",
449 "src/core/iomgr/pollset.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700450 "src/core/iomgr/pollset_posix.h",
Jorge Canizalesfe8ad732015-06-20 19:53:59 -0700451 "src/core/iomgr/pollset_set.h",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700452 "src/core/iomgr/pollset_set_posix.h",
453 "src/core/iomgr/pollset_set_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700454 "src/core/iomgr/pollset_windows.h",
455 "src/core/iomgr/resolve_address.h",
456 "src/core/iomgr/sockaddr.h",
457 "src/core/iomgr/sockaddr_posix.h",
458 "src/core/iomgr/sockaddr_utils.h",
459 "src/core/iomgr/sockaddr_win32.h",
460 "src/core/iomgr/socket_utils_posix.h",
461 "src/core/iomgr/socket_windows.h",
462 "src/core/iomgr/tcp_client.h",
463 "src/core/iomgr/tcp_posix.h",
464 "src/core/iomgr/tcp_server.h",
465 "src/core/iomgr/tcp_windows.h",
466 "src/core/iomgr/time_averaged_stats.h",
467 "src/core/iomgr/wakeup_fd_pipe.h",
468 "src/core/iomgr/wakeup_fd_posix.h",
469 "src/core/json/json.h",
470 "src/core/json/json_common.h",
471 "src/core/json/json_reader.h",
472 "src/core/json/json_writer.h",
Vijay Pai6dfa7e62015-04-13 10:41:40 -0700473 "src/core/profiling/timers.h",
Vijay Pai9cccb082015-04-13 13:04:06 -0700474 "src/core/profiling/timers_preciseclock.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700475 "src/core/surface/byte_buffer_queue.h",
476 "src/core/surface/call.h",
477 "src/core/surface/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700478 "src/core/surface/completion_queue.h",
479 "src/core/surface/event_string.h",
480 "src/core/surface/init.h",
481 "src/core/surface/server.h",
482 "src/core/surface/surface_trace.h",
483 "src/core/transport/chttp2/alpn.h",
484 "src/core/transport/chttp2/bin_encoder.h",
485 "src/core/transport/chttp2/frame.h",
486 "src/core/transport/chttp2/frame_data.h",
487 "src/core/transport/chttp2/frame_goaway.h",
488 "src/core/transport/chttp2/frame_ping.h",
489 "src/core/transport/chttp2/frame_rst_stream.h",
490 "src/core/transport/chttp2/frame_settings.h",
491 "src/core/transport/chttp2/frame_window_update.h",
492 "src/core/transport/chttp2/hpack_parser.h",
493 "src/core/transport/chttp2/hpack_table.h",
494 "src/core/transport/chttp2/http2_errors.h",
495 "src/core/transport/chttp2/huffsyms.h",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700496 "src/core/transport/chttp2/incoming_metadata.h",
Craig Tiller41527062015-06-12 07:51:05 -0700497 "src/core/transport/chttp2/internal.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700498 "src/core/transport/chttp2/status_conversion.h",
499 "src/core/transport/chttp2/stream_encoder.h",
500 "src/core/transport/chttp2/stream_map.h",
501 "src/core/transport/chttp2/timeout_encoding.h",
502 "src/core/transport/chttp2/varint.h",
503 "src/core/transport/chttp2_transport.h",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700504 "src/core/transport/connectivity_state.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700505 "src/core/transport/metadata.h",
506 "src/core/transport/stream_op.h",
507 "src/core/transport/transport.h",
508 "src/core/transport/transport_impl.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700509 "src/core/census/context.h",
Alistair Veitchb46f3f42015-07-20 13:34:10 -0700510 "src/core/census/rpc_stat_id.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700511 "src/core/surface/init_unsecure.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700512 "src/core/census/grpc_context.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700513 "src/core/channel/channel_args.c",
514 "src/core/channel/channel_stack.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700515 "src/core/channel/client_channel.c",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700516 "src/core/channel/compress_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700517 "src/core/channel/connected_channel.c",
518 "src/core/channel/http_client_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700519 "src/core/channel/http_server_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700520 "src/core/channel/noop_filter.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700521 "src/core/client_config/client_config.c",
Craig Tiller91624662015-06-25 16:31:02 -0700522 "src/core/client_config/connector.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700523 "src/core/client_config/lb_policies/pick_first.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700524 "src/core/client_config/lb_policy.c",
525 "src/core/client_config/resolver.c",
Craig Tiller7df28a72015-06-24 09:23:52 -0700526 "src/core/client_config/resolver_factory.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700527 "src/core/client_config/resolver_registry.c",
528 "src/core/client_config/resolvers/dns_resolver.c",
Craig Tiller698d00c2015-07-20 12:32:58 -0700529 "src/core/client_config/resolvers/sockaddr_resolver.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700530 "src/core/client_config/subchannel.c",
531 "src/core/client_config/subchannel_factory.c",
Craig Tiller83f4d4e2015-07-29 18:14:41 -0700532 "src/core/client_config/subchannel_factory_decorators/add_channel_arg.c",
533 "src/core/client_config/subchannel_factory_decorators/merge_channel_args.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700534 "src/core/client_config/uri_parser.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700535 "src/core/compression/algorithm.c",
536 "src/core/compression/message_compress.c",
537 "src/core/debug/trace.c",
Craig Tillerf53d9c82015-08-04 14:19:43 -0700538 "src/core/httpcli/format_request.c",
539 "src/core/httpcli/httpcli.c",
540 "src/core/httpcli/parser.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700541 "src/core/iomgr/alarm.c",
542 "src/core/iomgr/alarm_heap.c",
543 "src/core/iomgr/endpoint.c",
544 "src/core/iomgr/endpoint_pair_posix.c",
Craig Tillerd180e032015-04-13 10:10:07 -0700545 "src/core/iomgr/endpoint_pair_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700546 "src/core/iomgr/fd_posix.c",
547 "src/core/iomgr/iocp_windows.c",
548 "src/core/iomgr/iomgr.c",
549 "src/core/iomgr/iomgr_posix.c",
550 "src/core/iomgr/iomgr_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700551 "src/core/iomgr/pollset_multipoller_with_epoll.c",
552 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
553 "src/core/iomgr/pollset_posix.c",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700554 "src/core/iomgr/pollset_set_posix.c",
555 "src/core/iomgr/pollset_set_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700556 "src/core/iomgr/pollset_windows.c",
557 "src/core/iomgr/resolve_address_posix.c",
558 "src/core/iomgr/resolve_address_windows.c",
559 "src/core/iomgr/sockaddr_utils.c",
560 "src/core/iomgr/socket_utils_common_posix.c",
561 "src/core/iomgr/socket_utils_linux.c",
562 "src/core/iomgr/socket_utils_posix.c",
563 "src/core/iomgr/socket_windows.c",
564 "src/core/iomgr/tcp_client_posix.c",
565 "src/core/iomgr/tcp_client_windows.c",
566 "src/core/iomgr/tcp_posix.c",
567 "src/core/iomgr/tcp_server_posix.c",
568 "src/core/iomgr/tcp_server_windows.c",
569 "src/core/iomgr/tcp_windows.c",
570 "src/core/iomgr/time_averaged_stats.c",
571 "src/core/iomgr/wakeup_fd_eventfd.c",
572 "src/core/iomgr/wakeup_fd_nospecial.c",
573 "src/core/iomgr/wakeup_fd_pipe.c",
574 "src/core/iomgr/wakeup_fd_posix.c",
575 "src/core/json/json.c",
576 "src/core/json/json_reader.c",
577 "src/core/json/json_string.c",
578 "src/core/json/json_writer.c",
David Garcia Quintas8954e902015-04-29 09:46:33 -0700579 "src/core/profiling/basic_timers.c",
580 "src/core/profiling/stap_timers.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700581 "src/core/surface/byte_buffer.c",
582 "src/core/surface/byte_buffer_queue.c",
583 "src/core/surface/byte_buffer_reader.c",
584 "src/core/surface/call.c",
585 "src/core/surface/call_details.c",
586 "src/core/surface/call_log_batch.c",
587 "src/core/surface/channel.c",
Craig Tiller48cb07c2015-07-15 16:16:15 -0700588 "src/core/surface/channel_connectivity.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700589 "src/core/surface/channel_create.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700590 "src/core/surface/completion_queue.c",
591 "src/core/surface/event_string.c",
592 "src/core/surface/init.c",
593 "src/core/surface/lame_client.c",
594 "src/core/surface/metadata_array.c",
595 "src/core/surface/server.c",
596 "src/core/surface/server_chttp2.c",
597 "src/core/surface/server_create.c",
598 "src/core/surface/surface_trace.c",
Craig Tiller2e622bc2015-07-10 07:46:03 -0700599 "src/core/surface/version.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700600 "src/core/transport/chttp2/alpn.c",
601 "src/core/transport/chttp2/bin_encoder.c",
602 "src/core/transport/chttp2/frame_data.c",
603 "src/core/transport/chttp2/frame_goaway.c",
604 "src/core/transport/chttp2/frame_ping.c",
605 "src/core/transport/chttp2/frame_rst_stream.c",
606 "src/core/transport/chttp2/frame_settings.c",
607 "src/core/transport/chttp2/frame_window_update.c",
608 "src/core/transport/chttp2/hpack_parser.c",
609 "src/core/transport/chttp2/hpack_table.c",
610 "src/core/transport/chttp2/huffsyms.c",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700611 "src/core/transport/chttp2/incoming_metadata.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700612 "src/core/transport/chttp2/parsing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700613 "src/core/transport/chttp2/status_conversion.c",
614 "src/core/transport/chttp2/stream_encoder.c",
Craig Tiller6459db42015-06-15 17:11:45 -0700615 "src/core/transport/chttp2/stream_lists.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700616 "src/core/transport/chttp2/stream_map.c",
617 "src/core/transport/chttp2/timeout_encoding.c",
618 "src/core/transport/chttp2/varint.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700619 "src/core/transport/chttp2/writing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700620 "src/core/transport/chttp2_transport.c",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700621 "src/core/transport/connectivity_state.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700622 "src/core/transport/metadata.c",
623 "src/core/transport/stream_op.c",
624 "src/core/transport/transport.c",
Craig Tiller83f88d92015-04-21 16:02:05 -0700625 "src/core/transport/transport_op_string.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700626 "src/core/census/context.c",
627 "src/core/census/initialize.c",
Alistair Veitch635899d2015-07-17 16:02:24 -0700628 "src/core/census/record_stat.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700629 ],
630 hdrs = [
631 "include/grpc/byte_buffer.h",
632 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700633 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700634 "include/grpc/grpc.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700635 "include/grpc/status.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700636 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700637 ],
638 includes = [
639 "include",
640 ".",
641 ],
642 deps = [
643 ":gpr",
644 ],
645)
646
647
648cc_library(
649 name = "grpc++",
650 srcs = [
651 "src/cpp/client/secure_credentials.h",
yang-g3abe60b2015-07-06 14:00:36 -0700652 "src/cpp/common/secure_auth_context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700653 "src/cpp/server/secure_server_credentials.h",
654 "src/cpp/client/channel.h",
yang-g3abe60b2015-07-06 14:00:36 -0700655 "src/cpp/common/create_auth_context.h",
Craig Tillerf75fc122015-06-25 06:58:00 -0700656 "src/cpp/client/secure_channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700657 "src/cpp/client/secure_credentials.cc",
yang-g7ef72322015-07-16 21:00:51 -0700658 "src/cpp/common/auth_property_iterator.cc",
yang-g3abe60b2015-07-06 14:00:36 -0700659 "src/cpp/common/secure_auth_context.cc",
660 "src/cpp/common/secure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700661 "src/cpp/server/secure_server_credentials.cc",
662 "src/cpp/client/channel.cc",
663 "src/cpp/client/channel_arguments.cc",
664 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700665 "src/cpp/client/create_channel.cc",
666 "src/cpp/client/credentials.cc",
667 "src/cpp/client/generic_stub.cc",
668 "src/cpp/client/insecure_credentials.cc",
669 "src/cpp/client/internal_stub.cc",
670 "src/cpp/common/call.cc",
671 "src/cpp/common/completion_queue.cc",
672 "src/cpp/common/rpc_method.cc",
673 "src/cpp/proto/proto_utils.cc",
674 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -0700675 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -0700676 "src/cpp/server/dynamic_thread_pool.cc",
vjpaia2e1bb12015-07-15 16:49:49 -0700677 "src/cpp/server/fixed_size_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700678 "src/cpp/server/insecure_server_credentials.cc",
679 "src/cpp/server/server.cc",
680 "src/cpp/server/server_builder.cc",
681 "src/cpp/server/server_context.cc",
682 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700683 "src/cpp/util/byte_buffer.cc",
684 "src/cpp/util/slice.cc",
685 "src/cpp/util/status.cc",
686 "src/cpp/util/time.cc",
687 ],
688 hdrs = [
689 "include/grpc++/async_generic_service.h",
690 "include/grpc++/async_unary_call.h",
yang-g3abe60b2015-07-06 14:00:36 -0700691 "include/grpc++/auth_context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700692 "include/grpc++/byte_buffer.h",
693 "include/grpc++/channel_arguments.h",
694 "include/grpc++/channel_interface.h",
695 "include/grpc++/client_context.h",
696 "include/grpc++/completion_queue.h",
697 "include/grpc++/config.h",
yang-gadfed032015-06-23 13:01:22 -0700698 "include/grpc++/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700699 "include/grpc++/create_channel.h",
700 "include/grpc++/credentials.h",
vjpaib28456b2015-07-23 14:17:10 -0700701 "include/grpc++/dynamic_thread_pool.h",
vjpaia2e1bb12015-07-15 16:49:49 -0700702 "include/grpc++/fixed_size_thread_pool.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700703 "include/grpc++/generic_stub.h",
704 "include/grpc++/impl/call.h",
705 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -0700706 "include/grpc++/impl/grpc_library.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700707 "include/grpc++/impl/internal_stub.h",
yang-gadfed032015-06-23 13:01:22 -0700708 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700709 "include/grpc++/impl/rpc_method.h",
710 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -0700711 "include/grpc++/impl/serialization_traits.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700712 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200713 "include/grpc++/impl/sync.h",
714 "include/grpc++/impl/sync_cxx11.h",
715 "include/grpc++/impl/sync_no_cxx11.h",
716 "include/grpc++/impl/thd.h",
717 "include/grpc++/impl/thd_cxx11.h",
718 "include/grpc++/impl/thd_no_cxx11.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700719 "include/grpc++/server.h",
720 "include/grpc++/server_builder.h",
721 "include/grpc++/server_context.h",
722 "include/grpc++/server_credentials.h",
723 "include/grpc++/slice.h",
724 "include/grpc++/status.h",
725 "include/grpc++/status_code_enum.h",
726 "include/grpc++/stream.h",
yang-g297a25b2015-08-03 16:43:46 -0700727 "include/grpc++/stub_options.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700728 "include/grpc++/thread_pool_interface.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200729 "include/grpc++/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700730 ],
731 includes = [
732 "include",
733 ".",
734 ],
735 deps = [
736 "//external:protobuf_clib",
737 ":gpr",
738 ":grpc",
739 ],
740)
741
742
743cc_library(
744 name = "grpc++_unsecure",
745 srcs = [
746 "src/cpp/client/channel.h",
yang-g3abe60b2015-07-06 14:00:36 -0700747 "src/cpp/common/create_auth_context.h",
yang-g3abe60b2015-07-06 14:00:36 -0700748 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700749 "src/cpp/client/channel.cc",
750 "src/cpp/client/channel_arguments.cc",
751 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700752 "src/cpp/client/create_channel.cc",
753 "src/cpp/client/credentials.cc",
754 "src/cpp/client/generic_stub.cc",
755 "src/cpp/client/insecure_credentials.cc",
756 "src/cpp/client/internal_stub.cc",
757 "src/cpp/common/call.cc",
758 "src/cpp/common/completion_queue.cc",
759 "src/cpp/common/rpc_method.cc",
760 "src/cpp/proto/proto_utils.cc",
761 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -0700762 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -0700763 "src/cpp/server/dynamic_thread_pool.cc",
vjpaia2e1bb12015-07-15 16:49:49 -0700764 "src/cpp/server/fixed_size_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700765 "src/cpp/server/insecure_server_credentials.cc",
766 "src/cpp/server/server.cc",
767 "src/cpp/server/server_builder.cc",
768 "src/cpp/server/server_context.cc",
769 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700770 "src/cpp/util/byte_buffer.cc",
771 "src/cpp/util/slice.cc",
772 "src/cpp/util/status.cc",
773 "src/cpp/util/time.cc",
774 ],
775 hdrs = [
776 "include/grpc++/async_generic_service.h",
777 "include/grpc++/async_unary_call.h",
yang-g3abe60b2015-07-06 14:00:36 -0700778 "include/grpc++/auth_context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700779 "include/grpc++/byte_buffer.h",
780 "include/grpc++/channel_arguments.h",
781 "include/grpc++/channel_interface.h",
782 "include/grpc++/client_context.h",
783 "include/grpc++/completion_queue.h",
784 "include/grpc++/config.h",
yang-gadfed032015-06-23 13:01:22 -0700785 "include/grpc++/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700786 "include/grpc++/create_channel.h",
787 "include/grpc++/credentials.h",
vjpaib28456b2015-07-23 14:17:10 -0700788 "include/grpc++/dynamic_thread_pool.h",
vjpaia2e1bb12015-07-15 16:49:49 -0700789 "include/grpc++/fixed_size_thread_pool.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700790 "include/grpc++/generic_stub.h",
791 "include/grpc++/impl/call.h",
792 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -0700793 "include/grpc++/impl/grpc_library.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700794 "include/grpc++/impl/internal_stub.h",
yang-gadfed032015-06-23 13:01:22 -0700795 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700796 "include/grpc++/impl/rpc_method.h",
797 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -0700798 "include/grpc++/impl/serialization_traits.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700799 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200800 "include/grpc++/impl/sync.h",
801 "include/grpc++/impl/sync_cxx11.h",
802 "include/grpc++/impl/sync_no_cxx11.h",
803 "include/grpc++/impl/thd.h",
804 "include/grpc++/impl/thd_cxx11.h",
805 "include/grpc++/impl/thd_no_cxx11.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700806 "include/grpc++/server.h",
807 "include/grpc++/server_builder.h",
808 "include/grpc++/server_context.h",
809 "include/grpc++/server_credentials.h",
810 "include/grpc++/slice.h",
811 "include/grpc++/status.h",
812 "include/grpc++/status_code_enum.h",
813 "include/grpc++/stream.h",
yang-g297a25b2015-08-03 16:43:46 -0700814 "include/grpc++/stub_options.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700815 "include/grpc++/thread_pool_interface.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200816 "include/grpc++/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700817 ],
818 includes = [
819 "include",
820 ".",
821 ],
822 deps = [
823 "//external:protobuf_clib",
824 ":gpr",
825 ":grpc_unsecure",
826 ],
827)
828
829
830cc_library(
831 name = "grpc_plugin_support",
832 srcs = [
Craig Tillerf75fc122015-06-25 06:58:00 -0700833 "include/grpc++/config.h",
834 "include/grpc++/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700835 "src/compiler/config.h",
836 "src/compiler/cpp_generator.h",
837 "src/compiler/cpp_generator_helpers.h",
Jan Tattermusch2d924952015-05-06 10:23:17 -0700838 "src/compiler/csharp_generator.h",
839 "src/compiler/csharp_generator_helpers.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700840 "src/compiler/generator_helpers.h",
841 "src/compiler/objective_c_generator.h",
842 "src/compiler/objective_c_generator_helpers.h",
843 "src/compiler/python_generator.h",
844 "src/compiler/ruby_generator.h",
845 "src/compiler/ruby_generator_helpers-inl.h",
846 "src/compiler/ruby_generator_map-inl.h",
847 "src/compiler/ruby_generator_string-inl.h",
848 "src/compiler/cpp_generator.cc",
Jan Tattermusch2d924952015-05-06 10:23:17 -0700849 "src/compiler/csharp_generator.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700850 "src/compiler/objective_c_generator.cc",
851 "src/compiler/python_generator.cc",
852 "src/compiler/ruby_generator.cc",
853 ],
854 hdrs = [
855 ],
856 includes = [
857 "include",
858 ".",
859 ],
860 deps = [
861 "//external:protobuf_compiler",
862 ],
863)
864
865
866cc_library(
867 name = "grpc_csharp_ext",
868 srcs = [
869 "src/csharp/ext/grpc_csharp_ext.c",
870 ],
871 hdrs = [
872 ],
873 includes = [
874 "include",
875 ".",
876 ],
877 deps = [
878 ":gpr",
879 ":grpc",
880 ],
881)
882
883
884
Jorge Canizales140bca82015-06-20 09:47:00 -0700885objc_library(
886 name = "gpr_objc",
887 srcs = [
888 "src/core/support/alloc.c",
Jorge Canizales140bca82015-06-20 09:47:00 -0700889 "src/core/support/cmdline.c",
890 "src/core/support/cpu_iphone.c",
891 "src/core/support/cpu_linux.c",
892 "src/core/support/cpu_posix.c",
893 "src/core/support/cpu_windows.c",
894 "src/core/support/env_linux.c",
895 "src/core/support/env_posix.c",
896 "src/core/support/env_win32.c",
897 "src/core/support/file.c",
898 "src/core/support/file_posix.c",
899 "src/core/support/file_win32.c",
900 "src/core/support/histogram.c",
901 "src/core/support/host_port.c",
902 "src/core/support/log.c",
903 "src/core/support/log_android.c",
904 "src/core/support/log_linux.c",
905 "src/core/support/log_posix.c",
906 "src/core/support/log_win32.c",
907 "src/core/support/murmur_hash.c",
908 "src/core/support/slice.c",
909 "src/core/support/slice_buffer.c",
Vijay Pai005e3052015-07-10 15:18:45 -0700910 "src/core/support/stack_lockfree.c",
Jorge Canizales140bca82015-06-20 09:47:00 -0700911 "src/core/support/string.c",
912 "src/core/support/string_posix.c",
913 "src/core/support/string_win32.c",
914 "src/core/support/subprocess_posix.c",
915 "src/core/support/sync.c",
916 "src/core/support/sync_posix.c",
917 "src/core/support/sync_win32.c",
918 "src/core/support/thd.c",
919 "src/core/support/thd_posix.c",
920 "src/core/support/thd_win32.c",
921 "src/core/support/time.c",
922 "src/core/support/time_posix.c",
923 "src/core/support/time_win32.c",
924 "src/core/support/tls_pthread.c",
925 ],
926 hdrs = [
927 "include/grpc/support/alloc.h",
928 "include/grpc/support/atm.h",
929 "include/grpc/support/atm_gcc_atomic.h",
930 "include/grpc/support/atm_gcc_sync.h",
931 "include/grpc/support/atm_win32.h",
Jorge Canizales140bca82015-06-20 09:47:00 -0700932 "include/grpc/support/cmdline.h",
933 "include/grpc/support/cpu.h",
934 "include/grpc/support/histogram.h",
935 "include/grpc/support/host_port.h",
936 "include/grpc/support/log.h",
937 "include/grpc/support/log_win32.h",
938 "include/grpc/support/port_platform.h",
939 "include/grpc/support/slice.h",
940 "include/grpc/support/slice_buffer.h",
941 "include/grpc/support/string_util.h",
942 "include/grpc/support/subprocess.h",
943 "include/grpc/support/sync.h",
944 "include/grpc/support/sync_generic.h",
945 "include/grpc/support/sync_posix.h",
946 "include/grpc/support/sync_win32.h",
947 "include/grpc/support/thd.h",
948 "include/grpc/support/time.h",
949 "include/grpc/support/tls.h",
950 "include/grpc/support/tls_gcc.h",
951 "include/grpc/support/tls_msvc.h",
952 "include/grpc/support/tls_pthread.h",
953 "include/grpc/support/useful.h",
954 "src/core/support/env.h",
955 "src/core/support/file.h",
956 "src/core/support/murmur_hash.h",
Vijay Pai005e3052015-07-10 15:18:45 -0700957 "src/core/support/stack_lockfree.h",
Jorge Canizales140bca82015-06-20 09:47:00 -0700958 "src/core/support/string.h",
959 "src/core/support/string_win32.h",
960 "src/core/support/thd_internal.h",
961 ],
962 includes = [
963 "include",
964 ".",
965 ],
966 deps = [
967 ],
968)
969
970
971objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -0700972 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -0700973 srcs = [
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -0700974 "src/core/httpcli/httpcli_security_connector.c",
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -0700975 "src/core/security/base64.c",
976 "src/core/security/client_auth_filter.c",
977 "src/core/security/credentials.c",
978 "src/core/security/credentials_metadata.c",
979 "src/core/security/credentials_posix.c",
980 "src/core/security/credentials_win32.c",
981 "src/core/security/google_default_credentials.c",
982 "src/core/security/json_token.c",
Julien Boeuffeca1bf2015-06-22 16:46:20 +0200983 "src/core/security/jwt_verifier.c",
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -0700984 "src/core/security/secure_endpoint.c",
985 "src/core/security/secure_transport_setup.c",
986 "src/core/security/security_connector.c",
987 "src/core/security/security_context.c",
988 "src/core/security/server_auth_filter.c",
989 "src/core/security/server_secure_chttp2.c",
990 "src/core/surface/init_secure.c",
991 "src/core/surface/secure_channel_create.c",
992 "src/core/tsi/fake_transport_security.c",
993 "src/core/tsi/ssl_transport_security.c",
994 "src/core/tsi/transport_security.c",
Jorge Canizales140bca82015-06-20 09:47:00 -0700995 "src/core/census/grpc_context.c",
996 "src/core/channel/channel_args.c",
997 "src/core/channel/channel_stack.c",
Jorge Canizales140bca82015-06-20 09:47:00 -0700998 "src/core/channel/client_channel.c",
David Garcia Quintas8a187092015-07-01 14:52:44 -0700999 "src/core/channel/compress_filter.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001000 "src/core/channel/connected_channel.c",
1001 "src/core/channel/http_client_filter.c",
1002 "src/core/channel/http_server_filter.c",
1003 "src/core/channel/noop_filter.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001004 "src/core/client_config/client_config.c",
1005 "src/core/client_config/connector.c",
1006 "src/core/client_config/lb_policies/pick_first.c",
1007 "src/core/client_config/lb_policy.c",
1008 "src/core/client_config/resolver.c",
1009 "src/core/client_config/resolver_factory.c",
1010 "src/core/client_config/resolver_registry.c",
1011 "src/core/client_config/resolvers/dns_resolver.c",
Craig Tiller698d00c2015-07-20 12:32:58 -07001012 "src/core/client_config/resolvers/sockaddr_resolver.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001013 "src/core/client_config/subchannel.c",
1014 "src/core/client_config/subchannel_factory.c",
Craig Tiller83f4d4e2015-07-29 18:14:41 -07001015 "src/core/client_config/subchannel_factory_decorators/add_channel_arg.c",
1016 "src/core/client_config/subchannel_factory_decorators/merge_channel_args.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001017 "src/core/client_config/uri_parser.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001018 "src/core/compression/algorithm.c",
1019 "src/core/compression/message_compress.c",
1020 "src/core/debug/trace.c",
Craig Tillerf53d9c82015-08-04 14:19:43 -07001021 "src/core/httpcli/format_request.c",
1022 "src/core/httpcli/httpcli.c",
1023 "src/core/httpcli/parser.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001024 "src/core/iomgr/alarm.c",
1025 "src/core/iomgr/alarm_heap.c",
1026 "src/core/iomgr/endpoint.c",
1027 "src/core/iomgr/endpoint_pair_posix.c",
1028 "src/core/iomgr/endpoint_pair_windows.c",
1029 "src/core/iomgr/fd_posix.c",
1030 "src/core/iomgr/iocp_windows.c",
1031 "src/core/iomgr/iomgr.c",
1032 "src/core/iomgr/iomgr_posix.c",
1033 "src/core/iomgr/iomgr_windows.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001034 "src/core/iomgr/pollset_multipoller_with_epoll.c",
1035 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
1036 "src/core/iomgr/pollset_posix.c",
1037 "src/core/iomgr/pollset_set_posix.c",
1038 "src/core/iomgr/pollset_set_windows.c",
1039 "src/core/iomgr/pollset_windows.c",
1040 "src/core/iomgr/resolve_address_posix.c",
1041 "src/core/iomgr/resolve_address_windows.c",
1042 "src/core/iomgr/sockaddr_utils.c",
1043 "src/core/iomgr/socket_utils_common_posix.c",
1044 "src/core/iomgr/socket_utils_linux.c",
1045 "src/core/iomgr/socket_utils_posix.c",
1046 "src/core/iomgr/socket_windows.c",
1047 "src/core/iomgr/tcp_client_posix.c",
1048 "src/core/iomgr/tcp_client_windows.c",
1049 "src/core/iomgr/tcp_posix.c",
1050 "src/core/iomgr/tcp_server_posix.c",
1051 "src/core/iomgr/tcp_server_windows.c",
1052 "src/core/iomgr/tcp_windows.c",
1053 "src/core/iomgr/time_averaged_stats.c",
1054 "src/core/iomgr/wakeup_fd_eventfd.c",
1055 "src/core/iomgr/wakeup_fd_nospecial.c",
1056 "src/core/iomgr/wakeup_fd_pipe.c",
1057 "src/core/iomgr/wakeup_fd_posix.c",
1058 "src/core/json/json.c",
1059 "src/core/json/json_reader.c",
1060 "src/core/json/json_string.c",
1061 "src/core/json/json_writer.c",
1062 "src/core/profiling/basic_timers.c",
1063 "src/core/profiling/stap_timers.c",
1064 "src/core/surface/byte_buffer.c",
1065 "src/core/surface/byte_buffer_queue.c",
1066 "src/core/surface/byte_buffer_reader.c",
1067 "src/core/surface/call.c",
1068 "src/core/surface/call_details.c",
1069 "src/core/surface/call_log_batch.c",
1070 "src/core/surface/channel.c",
Craig Tiller48cb07c2015-07-15 16:16:15 -07001071 "src/core/surface/channel_connectivity.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001072 "src/core/surface/channel_create.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001073 "src/core/surface/completion_queue.c",
1074 "src/core/surface/event_string.c",
1075 "src/core/surface/init.c",
1076 "src/core/surface/lame_client.c",
1077 "src/core/surface/metadata_array.c",
1078 "src/core/surface/server.c",
1079 "src/core/surface/server_chttp2.c",
1080 "src/core/surface/server_create.c",
1081 "src/core/surface/surface_trace.c",
Craig Tiller2e622bc2015-07-10 07:46:03 -07001082 "src/core/surface/version.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001083 "src/core/transport/chttp2/alpn.c",
1084 "src/core/transport/chttp2/bin_encoder.c",
1085 "src/core/transport/chttp2/frame_data.c",
1086 "src/core/transport/chttp2/frame_goaway.c",
1087 "src/core/transport/chttp2/frame_ping.c",
1088 "src/core/transport/chttp2/frame_rst_stream.c",
1089 "src/core/transport/chttp2/frame_settings.c",
1090 "src/core/transport/chttp2/frame_window_update.c",
1091 "src/core/transport/chttp2/hpack_parser.c",
1092 "src/core/transport/chttp2/hpack_table.c",
1093 "src/core/transport/chttp2/huffsyms.c",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001094 "src/core/transport/chttp2/incoming_metadata.c",
1095 "src/core/transport/chttp2/parsing.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001096 "src/core/transport/chttp2/status_conversion.c",
1097 "src/core/transport/chttp2/stream_encoder.c",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001098 "src/core/transport/chttp2/stream_lists.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001099 "src/core/transport/chttp2/stream_map.c",
1100 "src/core/transport/chttp2/timeout_encoding.c",
1101 "src/core/transport/chttp2/varint.c",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001102 "src/core/transport/chttp2/writing.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001103 "src/core/transport/chttp2_transport.c",
Craig Tiller08a1cf82015-06-29 09:37:52 -07001104 "src/core/transport/connectivity_state.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001105 "src/core/transport/metadata.c",
1106 "src/core/transport/stream_op.c",
1107 "src/core/transport/transport.c",
1108 "src/core/transport/transport_op_string.c",
1109 "src/core/census/context.c",
1110 "src/core/census/initialize.c",
Alistair Veitch635899d2015-07-17 16:02:24 -07001111 "src/core/census/record_stat.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001112 ],
1113 hdrs = [
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001114 "include/grpc/grpc_security.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001115 "include/grpc/byte_buffer.h",
1116 "include/grpc/byte_buffer_reader.h",
1117 "include/grpc/compression.h",
1118 "include/grpc/grpc.h",
1119 "include/grpc/status.h",
1120 "include/grpc/census.h",
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001121 "src/core/security/auth_filters.h",
1122 "src/core/security/base64.h",
1123 "src/core/security/credentials.h",
1124 "src/core/security/json_token.h",
Julien Boeuffeca1bf2015-06-22 16:46:20 +02001125 "src/core/security/jwt_verifier.h",
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001126 "src/core/security/secure_endpoint.h",
1127 "src/core/security/secure_transport_setup.h",
1128 "src/core/security/security_connector.h",
1129 "src/core/security/security_context.h",
1130 "src/core/tsi/fake_transport_security.h",
1131 "src/core/tsi/ssl_transport_security.h",
1132 "src/core/tsi/transport_security.h",
1133 "src/core/tsi/transport_security_interface.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001134 "src/core/channel/census_filter.h",
1135 "src/core/channel/channel_args.h",
1136 "src/core/channel/channel_stack.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001137 "src/core/channel/client_channel.h",
David Garcia Quintas8a187092015-07-01 14:52:44 -07001138 "src/core/channel/compress_filter.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001139 "src/core/channel/connected_channel.h",
1140 "src/core/channel/context.h",
1141 "src/core/channel/http_client_filter.h",
1142 "src/core/channel/http_server_filter.h",
1143 "src/core/channel/noop_filter.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001144 "src/core/client_config/client_config.h",
1145 "src/core/client_config/connector.h",
1146 "src/core/client_config/lb_policies/pick_first.h",
1147 "src/core/client_config/lb_policy.h",
1148 "src/core/client_config/resolver.h",
1149 "src/core/client_config/resolver_factory.h",
1150 "src/core/client_config/resolver_registry.h",
1151 "src/core/client_config/resolvers/dns_resolver.h",
Craig Tiller698d00c2015-07-20 12:32:58 -07001152 "src/core/client_config/resolvers/sockaddr_resolver.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001153 "src/core/client_config/subchannel.h",
1154 "src/core/client_config/subchannel_factory.h",
Craig Tiller83f4d4e2015-07-29 18:14:41 -07001155 "src/core/client_config/subchannel_factory_decorators/add_channel_arg.h",
1156 "src/core/client_config/subchannel_factory_decorators/merge_channel_args.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001157 "src/core/client_config/uri_parser.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001158 "src/core/compression/message_compress.h",
1159 "src/core/debug/trace.h",
Craig Tillerf53d9c82015-08-04 14:19:43 -07001160 "src/core/httpcli/format_request.h",
1161 "src/core/httpcli/httpcli.h",
1162 "src/core/httpcli/parser.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001163 "src/core/iomgr/alarm.h",
1164 "src/core/iomgr/alarm_heap.h",
1165 "src/core/iomgr/alarm_internal.h",
1166 "src/core/iomgr/endpoint.h",
1167 "src/core/iomgr/endpoint_pair.h",
1168 "src/core/iomgr/fd_posix.h",
1169 "src/core/iomgr/iocp_windows.h",
1170 "src/core/iomgr/iomgr.h",
1171 "src/core/iomgr/iomgr_internal.h",
1172 "src/core/iomgr/iomgr_posix.h",
1173 "src/core/iomgr/pollset.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001174 "src/core/iomgr/pollset_posix.h",
1175 "src/core/iomgr/pollset_set.h",
1176 "src/core/iomgr/pollset_set_posix.h",
1177 "src/core/iomgr/pollset_set_windows.h",
1178 "src/core/iomgr/pollset_windows.h",
1179 "src/core/iomgr/resolve_address.h",
1180 "src/core/iomgr/sockaddr.h",
1181 "src/core/iomgr/sockaddr_posix.h",
1182 "src/core/iomgr/sockaddr_utils.h",
1183 "src/core/iomgr/sockaddr_win32.h",
1184 "src/core/iomgr/socket_utils_posix.h",
1185 "src/core/iomgr/socket_windows.h",
1186 "src/core/iomgr/tcp_client.h",
1187 "src/core/iomgr/tcp_posix.h",
1188 "src/core/iomgr/tcp_server.h",
1189 "src/core/iomgr/tcp_windows.h",
1190 "src/core/iomgr/time_averaged_stats.h",
1191 "src/core/iomgr/wakeup_fd_pipe.h",
1192 "src/core/iomgr/wakeup_fd_posix.h",
1193 "src/core/json/json.h",
1194 "src/core/json/json_common.h",
1195 "src/core/json/json_reader.h",
1196 "src/core/json/json_writer.h",
1197 "src/core/profiling/timers.h",
1198 "src/core/profiling/timers_preciseclock.h",
1199 "src/core/surface/byte_buffer_queue.h",
1200 "src/core/surface/call.h",
1201 "src/core/surface/channel.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001202 "src/core/surface/completion_queue.h",
1203 "src/core/surface/event_string.h",
1204 "src/core/surface/init.h",
1205 "src/core/surface/server.h",
1206 "src/core/surface/surface_trace.h",
1207 "src/core/transport/chttp2/alpn.h",
1208 "src/core/transport/chttp2/bin_encoder.h",
1209 "src/core/transport/chttp2/frame.h",
1210 "src/core/transport/chttp2/frame_data.h",
1211 "src/core/transport/chttp2/frame_goaway.h",
1212 "src/core/transport/chttp2/frame_ping.h",
1213 "src/core/transport/chttp2/frame_rst_stream.h",
1214 "src/core/transport/chttp2/frame_settings.h",
1215 "src/core/transport/chttp2/frame_window_update.h",
1216 "src/core/transport/chttp2/hpack_parser.h",
1217 "src/core/transport/chttp2/hpack_table.h",
1218 "src/core/transport/chttp2/http2_errors.h",
1219 "src/core/transport/chttp2/huffsyms.h",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001220 "src/core/transport/chttp2/incoming_metadata.h",
1221 "src/core/transport/chttp2/internal.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001222 "src/core/transport/chttp2/status_conversion.h",
1223 "src/core/transport/chttp2/stream_encoder.h",
1224 "src/core/transport/chttp2/stream_map.h",
1225 "src/core/transport/chttp2/timeout_encoding.h",
1226 "src/core/transport/chttp2/varint.h",
1227 "src/core/transport/chttp2_transport.h",
Craig Tiller08a1cf82015-06-29 09:37:52 -07001228 "src/core/transport/connectivity_state.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001229 "src/core/transport/metadata.h",
1230 "src/core/transport/stream_op.h",
1231 "src/core/transport/transport.h",
1232 "src/core/transport/transport_impl.h",
1233 "src/core/census/context.h",
Alistair Veitchb46f3f42015-07-20 13:34:10 -07001234 "src/core/census/rpc_stat_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001235 ],
1236 includes = [
1237 "include",
1238 ".",
1239 ],
1240 deps = [
1241 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07001242 "//external:libssl_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001243 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07001244 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07001245)
1246
1247
1248
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001249cc_binary(
1250 name = "grpc_cpp_plugin",
1251 srcs = [
1252 "src/compiler/cpp_plugin.cc",
1253 ],
1254 deps = [
1255 "//external:protobuf_compiler",
1256 ":grpc_plugin_support",
1257 ],
1258)
1259
1260
1261cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07001262 name = "grpc_csharp_plugin",
1263 srcs = [
1264 "src/compiler/csharp_plugin.cc",
1265 ],
1266 deps = [
1267 "//external:protobuf_compiler",
1268 ":grpc_plugin_support",
1269 ],
1270)
1271
1272
1273cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001274 name = "grpc_objective_c_plugin",
1275 srcs = [
1276 "src/compiler/objective_c_plugin.cc",
1277 ],
1278 deps = [
1279 "//external:protobuf_compiler",
1280 ":grpc_plugin_support",
1281 ],
1282)
1283
1284
1285cc_binary(
1286 name = "grpc_python_plugin",
1287 srcs = [
1288 "src/compiler/python_plugin.cc",
1289 ],
1290 deps = [
1291 "//external:protobuf_compiler",
1292 ":grpc_plugin_support",
1293 ],
1294)
1295
1296
1297cc_binary(
1298 name = "grpc_ruby_plugin",
1299 srcs = [
1300 "src/compiler/ruby_plugin.cc",
1301 ],
1302 deps = [
1303 "//external:protobuf_compiler",
1304 ":grpc_plugin_support",
1305 ],
1306)
1307
1308
1309
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001310
1311
Jorge Canizales140bca82015-06-20 09:47:00 -07001312
Jorge Canizales91e67a22015-06-24 13:50:04 -07001313
1314
Jorge Canizales44dc4232015-06-19 16:30:31 -07001315objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07001316
Jorge Canizales44dc4232015-06-19 16:30:31 -07001317rx_library_path = objc_path + "/RxLibrary"
1318
1319objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001320 name = "rx_library",
1321 hdrs = glob([
1322 rx_library_path + "/*.h",
1323 rx_library_path + "/transformations/*.h",
1324 ]),
1325 srcs = glob([
1326 rx_library_path + "/*.m",
1327 rx_library_path + "/transformations/*.m",
1328 ]),
1329 includes = [objc_path],
1330 deps = [
1331 ":rx_library_private",
1332 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001333)
1334
1335objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001336 name = "rx_library_private",
1337 hdrs = glob([rx_library_path + "/private/*.h"]),
1338 srcs = glob([rx_library_path + "/private/*.m"]),
1339 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001340)
Jorge Canizales866255e2015-06-20 18:58:38 -07001341
1342objc_client_path = objc_path + "/GRPCClient"
1343
1344objc_library(
1345 name = "grpc_client",
1346 hdrs = glob([
1347 objc_client_path + "/*.h",
1348 objc_client_path + "/private/*.h",
1349 ]),
1350 srcs = glob([
1351 objc_client_path + "/*.m",
1352 objc_client_path + "/private/*.m",
1353 ]),
1354 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001355 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07001356 deps = [
1357 ":grpc_objc",
1358 ":rx_library",
1359 ],
1360)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001361
1362objc_bundle_library(
1363 # The choice of name is signicant here, since it determines the bundle name.
1364 name = "gRPCCertificates",
1365 resources = ["etc/roots.pem"],
1366)
Jorge Canizales50f19822015-06-28 23:48:30 -07001367
1368proto_objc_rpc_path = objc_path + "/ProtoRPC"
1369
1370objc_library(
1371 name = "proto_objc_rpc",
1372 hdrs = glob([
1373 proto_objc_rpc_path + "/*.h",
1374 ]),
1375 srcs = glob([
1376 proto_objc_rpc_path + "/*.m",
1377 ]),
1378 includes = [objc_path],
1379 deps = [
1380 ":grpc_client",
1381 ":rx_library",
1382 "//external:protobuf_objc",
1383 ],
1384)