blob: 976bfb62b07315004b295569913b84286285a7ee [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(
Craig Tillerda179ce2016-02-09 12:01:53 -080045 name = "gpr",
46 srcs = [
47 "src/core/profiling/timers.h",
Craig Tillerc72cc422016-03-11 10:54:36 -080048 "src/core/support/backoff.h",
Craig Tillerda179ce2016-02-09 12:01:53 -080049 "src/core/support/block_annotate.h",
50 "src/core/support/env.h",
Craig Tiller521423c2016-02-22 22:22:22 -080051 "src/core/support/load_file.h",
Craig Tillerda179ce2016-02-09 12:01:53 -080052 "src/core/support/murmur_hash.h",
53 "src/core/support/stack_lockfree.h",
54 "src/core/support/string.h",
55 "src/core/support/string_win32.h",
56 "src/core/support/thd_internal.h",
57 "src/core/support/time_precise.h",
Craig Tiller521423c2016-02-22 22:22:22 -080058 "src/core/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -080059 "src/core/profiling/basic_timers.c",
60 "src/core/profiling/stap_timers.c",
61 "src/core/support/alloc.c",
62 "src/core/support/avl.c",
Craig Tillerc72cc422016-03-11 10:54:36 -080063 "src/core/support/backoff.c",
Craig Tillerda179ce2016-02-09 12:01:53 -080064 "src/core/support/cmdline.c",
65 "src/core/support/cpu_iphone.c",
66 "src/core/support/cpu_linux.c",
67 "src/core/support/cpu_posix.c",
68 "src/core/support/cpu_windows.c",
69 "src/core/support/env_linux.c",
70 "src/core/support/env_posix.c",
71 "src/core/support/env_win32.c",
Craig Tillerda179ce2016-02-09 12:01:53 -080072 "src/core/support/histogram.c",
73 "src/core/support/host_port.c",
Craig Tiller521423c2016-02-22 22:22:22 -080074 "src/core/support/load_file.c",
Craig Tillerda179ce2016-02-09 12:01:53 -080075 "src/core/support/log.c",
76 "src/core/support/log_android.c",
77 "src/core/support/log_linux.c",
78 "src/core/support/log_posix.c",
79 "src/core/support/log_win32.c",
80 "src/core/support/murmur_hash.c",
81 "src/core/support/slice.c",
82 "src/core/support/slice_buffer.c",
83 "src/core/support/stack_lockfree.c",
84 "src/core/support/string.c",
85 "src/core/support/string_posix.c",
86 "src/core/support/string_win32.c",
87 "src/core/support/subprocess_posix.c",
Craig Tiller1298afd2016-02-09 12:29:17 -080088 "src/core/support/subprocess_windows.c",
Craig Tillerda179ce2016-02-09 12:01:53 -080089 "src/core/support/sync.c",
90 "src/core/support/sync_posix.c",
91 "src/core/support/sync_win32.c",
92 "src/core/support/thd.c",
93 "src/core/support/thd_posix.c",
94 "src/core/support/thd_win32.c",
95 "src/core/support/time.c",
96 "src/core/support/time_posix.c",
97 "src/core/support/time_precise.c",
98 "src/core/support/time_win32.c",
99 "src/core/support/tls_pthread.c",
Craig Tiller521423c2016-02-22 22:22:22 -0800100 "src/core/support/tmpfile_posix.c",
101 "src/core/support/tmpfile_win32.c",
Craig Tiller1298afd2016-02-09 12:29:17 -0800102 "src/core/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -0800103 ],
104 hdrs = [
105 "include/grpc/support/alloc.h",
106 "include/grpc/support/atm.h",
107 "include/grpc/support/atm_gcc_atomic.h",
108 "include/grpc/support/atm_gcc_sync.h",
109 "include/grpc/support/atm_win32.h",
110 "include/grpc/support/avl.h",
111 "include/grpc/support/cmdline.h",
112 "include/grpc/support/cpu.h",
113 "include/grpc/support/histogram.h",
114 "include/grpc/support/host_port.h",
115 "include/grpc/support/log.h",
116 "include/grpc/support/log_win32.h",
117 "include/grpc/support/port_platform.h",
118 "include/grpc/support/slice.h",
119 "include/grpc/support/slice_buffer.h",
120 "include/grpc/support/string_util.h",
121 "include/grpc/support/subprocess.h",
122 "include/grpc/support/sync.h",
123 "include/grpc/support/sync_generic.h",
124 "include/grpc/support/sync_posix.h",
125 "include/grpc/support/sync_win32.h",
126 "include/grpc/support/thd.h",
127 "include/grpc/support/time.h",
128 "include/grpc/support/tls.h",
129 "include/grpc/support/tls_gcc.h",
130 "include/grpc/support/tls_msvc.h",
131 "include/grpc/support/tls_pthread.h",
132 "include/grpc/support/useful.h",
133 "include/grpc/impl/codegen/alloc.h",
134 "include/grpc/impl/codegen/atm.h",
135 "include/grpc/impl/codegen/atm_gcc_atomic.h",
136 "include/grpc/impl/codegen/atm_gcc_sync.h",
137 "include/grpc/impl/codegen/atm_win32.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800138 "include/grpc/impl/codegen/log.h",
139 "include/grpc/impl/codegen/port_platform.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800140 "include/grpc/impl/codegen/slice.h",
141 "include/grpc/impl/codegen/slice_buffer.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800142 "include/grpc/impl/codegen/sync.h",
143 "include/grpc/impl/codegen/sync_generic.h",
144 "include/grpc/impl/codegen/sync_posix.h",
145 "include/grpc/impl/codegen/sync_win32.h",
146 "include/grpc/impl/codegen/time.h",
147 ],
148 includes = [
149 "include",
150 ".",
151 ],
152 deps = [
153 ],
154)
155
156
157cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700158 name = "grpc",
159 srcs = [
Hongyu Chene09dc782015-08-21 11:28:33 -0700160 "src/core/census/grpc_filter.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800161 "src/core/census/grpc_plugin.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700162 "src/core/channel/channel_args.h",
163 "src/core/channel/channel_stack.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800164 "src/core/channel/channel_stack_builder.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700165 "src/core/channel/client_channel.h",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700166 "src/core/channel/compress_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700167 "src/core/channel/connected_channel.h",
murgatroid997da8b1a2015-06-17 12:37:34 -0700168 "src/core/channel/context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700169 "src/core/channel/http_client_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700170 "src/core/channel/http_server_filter.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800171 "src/core/channel/subchannel_call_holder.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700172 "src/core/client_config/client_config.h",
Craig Tiller91624662015-06-25 16:31:02 -0700173 "src/core/client_config/connector.h",
yang-ga6124122015-11-05 22:36:20 -0800174 "src/core/client_config/initial_connect_string.h",
Craig Tillereb841e22016-02-11 15:49:16 -0800175 "src/core/client_config/lb_policies/load_balancer_api.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700176 "src/core/client_config/lb_policies/pick_first.h",
David Garcia Quintas4fb049b2015-09-03 17:26:06 -0700177 "src/core/client_config/lb_policies/round_robin.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700178 "src/core/client_config/lb_policy.h",
David Garcia Quintas5c4543d2015-09-03 15:49:56 -0700179 "src/core/client_config/lb_policy_factory.h",
180 "src/core/client_config/lb_policy_registry.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700181 "src/core/client_config/resolver.h",
Craig Tiller7df28a72015-06-24 09:23:52 -0700182 "src/core/client_config/resolver_factory.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700183 "src/core/client_config/resolver_registry.h",
184 "src/core/client_config/resolvers/dns_resolver.h",
Craig Tiller698d00c2015-07-20 12:32:58 -0700185 "src/core/client_config/resolvers/sockaddr_resolver.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700186 "src/core/client_config/subchannel.h",
187 "src/core/client_config/subchannel_factory.h",
Craig Tiller694cf8b2016-01-15 21:13:25 -0800188 "src/core/client_config/subchannel_index.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700189 "src/core/client_config/uri_parser.h",
Craig Tillerebdef9d2015-11-19 17:09:49 -0800190 "src/core/compression/algorithm_metadata.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700191 "src/core/compression/message_compress.h",
192 "src/core/debug/trace.h",
Matthew Iselin1824f052016-02-10 12:16:06 +1100193 "src/core/http/format_request.h",
194 "src/core/http/httpcli.h",
195 "src/core/http/parser.h",
Craig Tiller298751c2015-09-22 09:41:05 -0700196 "src/core/iomgr/closure.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700197 "src/core/iomgr/endpoint.h",
198 "src/core/iomgr/endpoint_pair.h",
Craig Tiller298751c2015-09-22 09:41:05 -0700199 "src/core/iomgr/exec_ctx.h",
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700200 "src/core/iomgr/executor.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700201 "src/core/iomgr/fd_posix.h",
202 "src/core/iomgr/iocp_windows.h",
203 "src/core/iomgr/iomgr.h",
204 "src/core/iomgr/iomgr_internal.h",
205 "src/core/iomgr/iomgr_posix.h",
206 "src/core/iomgr/pollset.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700207 "src/core/iomgr/pollset_posix.h",
Jorge Canizalesfe8ad732015-06-20 19:53:59 -0700208 "src/core/iomgr/pollset_set.h",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700209 "src/core/iomgr/pollset_set_posix.h",
210 "src/core/iomgr/pollset_set_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700211 "src/core/iomgr/pollset_windows.h",
212 "src/core/iomgr/resolve_address.h",
213 "src/core/iomgr/sockaddr.h",
214 "src/core/iomgr/sockaddr_posix.h",
215 "src/core/iomgr/sockaddr_utils.h",
216 "src/core/iomgr/sockaddr_win32.h",
217 "src/core/iomgr/socket_utils_posix.h",
218 "src/core/iomgr/socket_windows.h",
219 "src/core/iomgr/tcp_client.h",
220 "src/core/iomgr/tcp_posix.h",
221 "src/core/iomgr/tcp_server.h",
222 "src/core/iomgr/tcp_windows.h",
223 "src/core/iomgr/time_averaged_stats.h",
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700224 "src/core/iomgr/timer.h",
225 "src/core/iomgr/timer_heap.h",
Robbie Shade69535292015-07-10 14:27:34 -0400226 "src/core/iomgr/udp_server.h",
ahedberg43df2952016-03-18 10:46:38 -0400227 "src/core/iomgr/unix_sockets_posix.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700228 "src/core/iomgr/wakeup_fd_pipe.h",
229 "src/core/iomgr/wakeup_fd_posix.h",
Craig Tiller73b66062015-09-09 09:34:46 -0700230 "src/core/iomgr/workqueue.h",
231 "src/core/iomgr/workqueue_posix.h",
232 "src/core/iomgr/workqueue_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700233 "src/core/json/json.h",
234 "src/core/json/json_common.h",
235 "src/core/json/json_reader.h",
236 "src/core/json/json_writer.h",
Craig Tillereb841e22016-02-11 15:49:16 -0800237 "src/core/proto/grpc/lb/v0/load_balancer.pb.h",
Hongyu Chenbeb580b2015-08-25 16:19:33 -0700238 "src/core/statistics/census_interface.h",
239 "src/core/statistics/census_rpc_stats.h",
Masood Malekghassemi92298102015-08-20 18:50:17 -0700240 "src/core/surface/api_trace.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700241 "src/core/surface/call.h",
David Garcia Quintas0c331882015-10-08 14:51:54 -0700242 "src/core/surface/call_test_only.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700243 "src/core/surface/channel.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800244 "src/core/surface/channel_init.h",
245 "src/core/surface/channel_stack_type.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700246 "src/core/surface/completion_queue.h",
247 "src/core/surface/event_string.h",
248 "src/core/surface/init.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800249 "src/core/surface/lame_client.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700250 "src/core/surface/server.h",
251 "src/core/surface/surface_trace.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800252 "src/core/transport/byte_stream.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700253 "src/core/transport/chttp2/alpn.h",
254 "src/core/transport/chttp2/bin_encoder.h",
255 "src/core/transport/chttp2/frame.h",
256 "src/core/transport/chttp2/frame_data.h",
257 "src/core/transport/chttp2/frame_goaway.h",
258 "src/core/transport/chttp2/frame_ping.h",
259 "src/core/transport/chttp2/frame_rst_stream.h",
260 "src/core/transport/chttp2/frame_settings.h",
261 "src/core/transport/chttp2/frame_window_update.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800262 "src/core/transport/chttp2/hpack_encoder.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700263 "src/core/transport/chttp2/hpack_parser.h",
264 "src/core/transport/chttp2/hpack_table.h",
265 "src/core/transport/chttp2/http2_errors.h",
266 "src/core/transport/chttp2/huffsyms.h",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700267 "src/core/transport/chttp2/incoming_metadata.h",
Craig Tiller41527062015-06-12 07:51:05 -0700268 "src/core/transport/chttp2/internal.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700269 "src/core/transport/chttp2/status_conversion.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700270 "src/core/transport/chttp2/stream_map.h",
271 "src/core/transport/chttp2/timeout_encoding.h",
272 "src/core/transport/chttp2/varint.h",
273 "src/core/transport/chttp2_transport.h",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700274 "src/core/transport/connectivity_state.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700275 "src/core/transport/metadata.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800276 "src/core/transport/metadata_batch.h",
Craig Tiller2e7687c2015-11-18 14:56:46 -0800277 "src/core/transport/static_metadata.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700278 "src/core/transport/transport.h",
279 "src/core/transport/transport_impl.h",
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100280 "src/core/security/auth_filters.h",
Craig Tiller521423c2016-02-22 22:22:22 -0800281 "src/core/security/b64.h",
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100282 "src/core/security/credentials.h",
283 "src/core/security/handshake.h",
284 "src/core/security/json_token.h",
285 "src/core/security/jwt_verifier.h",
286 "src/core/security/secure_endpoint.h",
287 "src/core/security/security_connector.h",
288 "src/core/security/security_context.h",
289 "src/core/tsi/fake_transport_security.h",
290 "src/core/tsi/ssl_transport_security.h",
291 "src/core/tsi/ssl_types.h",
292 "src/core/tsi/transport_security.h",
293 "src/core/tsi/transport_security_interface.h",
Alistair Veitch1c09acc2015-08-31 16:57:32 -0700294 "src/core/census/aggregation.h",
Alistair Veitch77715442016-02-22 14:20:25 -0800295 "src/core/census/mlog.h",
Alistair Veitch9a099822015-08-27 13:16:00 -0700296 "src/core/census/rpc_metric_id.h",
Craig Tillereb841e22016-02-11 15:49:16 -0800297 "third_party/nanopb/pb.h",
298 "third_party/nanopb/pb_common.h",
299 "third_party/nanopb/pb_decode.h",
300 "third_party/nanopb/pb_encode.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700301 "src/core/census/grpc_context.c",
Hongyu Chene09dc782015-08-21 11:28:33 -0700302 "src/core/census/grpc_filter.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800303 "src/core/census/grpc_plugin.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700304 "src/core/channel/channel_args.c",
305 "src/core/channel/channel_stack.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800306 "src/core/channel/channel_stack_builder.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700307 "src/core/channel/client_channel.c",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700308 "src/core/channel/compress_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700309 "src/core/channel/connected_channel.c",
310 "src/core/channel/http_client_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700311 "src/core/channel/http_server_filter.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800312 "src/core/channel/subchannel_call_holder.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700313 "src/core/client_config/client_config.c",
Craig Tiller91624662015-06-25 16:31:02 -0700314 "src/core/client_config/connector.c",
yang-ga6124122015-11-05 22:36:20 -0800315 "src/core/client_config/default_initial_connect_string.c",
316 "src/core/client_config/initial_connect_string.c",
Craig Tillereb841e22016-02-11 15:49:16 -0800317 "src/core/client_config/lb_policies/load_balancer_api.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700318 "src/core/client_config/lb_policies/pick_first.c",
David Garcia Quintas4fb049b2015-09-03 17:26:06 -0700319 "src/core/client_config/lb_policies/round_robin.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700320 "src/core/client_config/lb_policy.c",
David Garcia Quintas5c4543d2015-09-03 15:49:56 -0700321 "src/core/client_config/lb_policy_factory.c",
322 "src/core/client_config/lb_policy_registry.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700323 "src/core/client_config/resolver.c",
Craig Tiller7df28a72015-06-24 09:23:52 -0700324 "src/core/client_config/resolver_factory.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700325 "src/core/client_config/resolver_registry.c",
326 "src/core/client_config/resolvers/dns_resolver.c",
Craig Tiller698d00c2015-07-20 12:32:58 -0700327 "src/core/client_config/resolvers/sockaddr_resolver.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700328 "src/core/client_config/subchannel.c",
329 "src/core/client_config/subchannel_factory.c",
Craig Tiller694cf8b2016-01-15 21:13:25 -0800330 "src/core/client_config/subchannel_index.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700331 "src/core/client_config/uri_parser.c",
Craig Tiller521423c2016-02-22 22:22:22 -0800332 "src/core/compression/compression_algorithm.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700333 "src/core/compression/message_compress.c",
334 "src/core/debug/trace.c",
Matthew Iselin1824f052016-02-10 12:16:06 +1100335 "src/core/http/format_request.c",
336 "src/core/http/httpcli.c",
337 "src/core/http/parser.c",
Craig Tiller298751c2015-09-22 09:41:05 -0700338 "src/core/iomgr/closure.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700339 "src/core/iomgr/endpoint.c",
340 "src/core/iomgr/endpoint_pair_posix.c",
Craig Tillerd180e032015-04-13 10:10:07 -0700341 "src/core/iomgr/endpoint_pair_windows.c",
Craig Tiller8af4c332015-09-22 12:32:31 -0700342 "src/core/iomgr/exec_ctx.c",
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700343 "src/core/iomgr/executor.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700344 "src/core/iomgr/fd_posix.c",
345 "src/core/iomgr/iocp_windows.c",
346 "src/core/iomgr/iomgr.c",
347 "src/core/iomgr/iomgr_posix.c",
348 "src/core/iomgr/iomgr_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700349 "src/core/iomgr/pollset_multipoller_with_epoll.c",
350 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
351 "src/core/iomgr/pollset_posix.c",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700352 "src/core/iomgr/pollset_set_posix.c",
353 "src/core/iomgr/pollset_set_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700354 "src/core/iomgr/pollset_windows.c",
355 "src/core/iomgr/resolve_address_posix.c",
356 "src/core/iomgr/resolve_address_windows.c",
357 "src/core/iomgr/sockaddr_utils.c",
358 "src/core/iomgr/socket_utils_common_posix.c",
359 "src/core/iomgr/socket_utils_linux.c",
360 "src/core/iomgr/socket_utils_posix.c",
361 "src/core/iomgr/socket_windows.c",
362 "src/core/iomgr/tcp_client_posix.c",
363 "src/core/iomgr/tcp_client_windows.c",
364 "src/core/iomgr/tcp_posix.c",
365 "src/core/iomgr/tcp_server_posix.c",
366 "src/core/iomgr/tcp_server_windows.c",
367 "src/core/iomgr/tcp_windows.c",
368 "src/core/iomgr/time_averaged_stats.c",
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700369 "src/core/iomgr/timer.c",
370 "src/core/iomgr/timer_heap.c",
Robbie Shade69535292015-07-10 14:27:34 -0400371 "src/core/iomgr/udp_server.c",
ahedberg43df2952016-03-18 10:46:38 -0400372 "src/core/iomgr/unix_sockets_posix.c",
373 "src/core/iomgr/unix_sockets_posix_noop.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700374 "src/core/iomgr/wakeup_fd_eventfd.c",
375 "src/core/iomgr/wakeup_fd_nospecial.c",
376 "src/core/iomgr/wakeup_fd_pipe.c",
377 "src/core/iomgr/wakeup_fd_posix.c",
Craig Tiller73b66062015-09-09 09:34:46 -0700378 "src/core/iomgr/workqueue_posix.c",
379 "src/core/iomgr/workqueue_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700380 "src/core/json/json.c",
381 "src/core/json/json_reader.c",
382 "src/core/json/json_string.c",
383 "src/core/json/json_writer.c",
Craig Tillereb841e22016-02-11 15:49:16 -0800384 "src/core/proto/grpc/lb/v0/load_balancer.pb.c",
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100385 "src/core/surface/alarm.c",
Masood Malekghassemife1093c2015-08-19 19:15:24 -0700386 "src/core/surface/api_trace.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700387 "src/core/surface/byte_buffer.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700388 "src/core/surface/byte_buffer_reader.c",
389 "src/core/surface/call.c",
390 "src/core/surface/call_details.c",
391 "src/core/surface/call_log_batch.c",
392 "src/core/surface/channel.c",
Craig Tiller48cb07c2015-07-15 16:16:15 -0700393 "src/core/surface/channel_connectivity.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700394 "src/core/surface/channel_create.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800395 "src/core/surface/channel_init.c",
Craig Tiller26dab312015-12-07 14:43:47 -0800396 "src/core/surface/channel_ping.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800397 "src/core/surface/channel_stack_type.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700398 "src/core/surface/completion_queue.c",
399 "src/core/surface/event_string.c",
400 "src/core/surface/init.c",
401 "src/core/surface/lame_client.c",
402 "src/core/surface/metadata_array.c",
403 "src/core/surface/server.c",
404 "src/core/surface/server_chttp2.c",
murgatroid99c3910ca2016-01-06 13:14:23 -0800405 "src/core/surface/validate_metadata.c",
Craig Tiller2e622bc2015-07-10 07:46:03 -0700406 "src/core/surface/version.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800407 "src/core/transport/byte_stream.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700408 "src/core/transport/chttp2/alpn.c",
409 "src/core/transport/chttp2/bin_encoder.c",
410 "src/core/transport/chttp2/frame_data.c",
411 "src/core/transport/chttp2/frame_goaway.c",
412 "src/core/transport/chttp2/frame_ping.c",
413 "src/core/transport/chttp2/frame_rst_stream.c",
414 "src/core/transport/chttp2/frame_settings.c",
415 "src/core/transport/chttp2/frame_window_update.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800416 "src/core/transport/chttp2/hpack_encoder.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700417 "src/core/transport/chttp2/hpack_parser.c",
418 "src/core/transport/chttp2/hpack_table.c",
419 "src/core/transport/chttp2/huffsyms.c",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700420 "src/core/transport/chttp2/incoming_metadata.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700421 "src/core/transport/chttp2/parsing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700422 "src/core/transport/chttp2/status_conversion.c",
Craig Tiller6459db42015-06-15 17:11:45 -0700423 "src/core/transport/chttp2/stream_lists.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700424 "src/core/transport/chttp2/stream_map.c",
425 "src/core/transport/chttp2/timeout_encoding.c",
426 "src/core/transport/chttp2/varint.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700427 "src/core/transport/chttp2/writing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700428 "src/core/transport/chttp2_transport.c",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700429 "src/core/transport/connectivity_state.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700430 "src/core/transport/metadata.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800431 "src/core/transport/metadata_batch.c",
Craig Tiller2e7687c2015-11-18 14:56:46 -0800432 "src/core/transport/static_metadata.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700433 "src/core/transport/transport.c",
Craig Tiller83f88d92015-04-21 16:02:05 -0700434 "src/core/transport/transport_op_string.c",
Matthew Iselin1824f052016-02-10 12:16:06 +1100435 "src/core/http/httpcli_security_connector.c",
Craig Tiller521423c2016-02-22 22:22:22 -0800436 "src/core/security/b64.c",
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100437 "src/core/security/client_auth_filter.c",
438 "src/core/security/credentials.c",
439 "src/core/security/credentials_metadata.c",
440 "src/core/security/credentials_posix.c",
441 "src/core/security/credentials_win32.c",
442 "src/core/security/google_default_credentials.c",
443 "src/core/security/handshake.c",
444 "src/core/security/json_token.c",
445 "src/core/security/jwt_verifier.c",
446 "src/core/security/secure_endpoint.c",
447 "src/core/security/security_connector.c",
448 "src/core/security/security_context.c",
449 "src/core/security/server_auth_filter.c",
450 "src/core/security/server_secure_chttp2.c",
451 "src/core/surface/init_secure.c",
452 "src/core/surface/secure_channel_create.c",
453 "src/core/tsi/fake_transport_security.c",
454 "src/core/tsi/ssl_transport_security.c",
455 "src/core/tsi/transport_security.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700456 "src/core/census/context.c",
457 "src/core/census/initialize.c",
Alistair Veitch77715442016-02-22 14:20:25 -0800458 "src/core/census/mlog.c",
Alistair Veitche6d0ad32015-08-13 09:59:48 -0700459 "src/core/census/operation.c",
Nicolas "Pixel" Noblefa132c22016-01-31 09:31:15 +0100460 "src/core/census/placeholders.c",
Alistair Veitch0383d492015-07-26 15:29:00 -0700461 "src/core/census/tracing.c",
Craig Tillereb841e22016-02-11 15:49:16 -0800462 "third_party/nanopb/pb_common.c",
463 "third_party/nanopb/pb_decode.c",
464 "third_party/nanopb/pb_encode.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700465 ],
466 hdrs = [
467 "include/grpc/grpc_security.h",
468 "include/grpc/byte_buffer.h",
469 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700470 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700471 "include/grpc/grpc.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700472 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700473 "include/grpc/impl/codegen/byte_buffer.h",
474 "include/grpc/impl/codegen/compression_types.h",
475 "include/grpc/impl/codegen/connectivity_state.h",
476 "include/grpc/impl/codegen/grpc_types.h",
477 "include/grpc/impl/codegen/propagation_bits.h",
478 "include/grpc/impl/codegen/status.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700479 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700480 ],
481 includes = [
482 "include",
483 ".",
484 ],
485 deps = [
486 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700487 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800488 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700489 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800490 copts = [
491 "-std=gnu99",
492 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200493)
494
495
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700496cc_library(
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100497 name = "grpc_codegen_lib",
498 srcs = [
499 ],
500 hdrs = [
501 "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",
505 "include/grpc/impl/codegen/atm_win32.h",
506 "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",
513 "include/grpc/impl/codegen/sync_win32.h",
514 "include/grpc/impl/codegen/time.h",
515 "include/grpc/impl/codegen/byte_buffer.h",
516 "include/grpc/impl/codegen/compression_types.h",
517 "include/grpc/impl/codegen/connectivity_state.h",
518 "include/grpc/impl/codegen/grpc_types.h",
519 "include/grpc/impl/codegen/propagation_bits.h",
520 "include/grpc/impl/codegen/status.h",
521 ],
522 includes = [
523 "include",
524 ".",
525 ],
526 deps = [
527 "//external:protobuf_compiler",
528 ],
529)
530
531
532cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700533 name = "grpc_unsecure",
534 srcs = [
Hongyu Chene09dc782015-08-21 11:28:33 -0700535 "src/core/census/grpc_filter.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800536 "src/core/census/grpc_plugin.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700537 "src/core/channel/channel_args.h",
538 "src/core/channel/channel_stack.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800539 "src/core/channel/channel_stack_builder.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700540 "src/core/channel/client_channel.h",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700541 "src/core/channel/compress_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700542 "src/core/channel/connected_channel.h",
murgatroid997da8b1a2015-06-17 12:37:34 -0700543 "src/core/channel/context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700544 "src/core/channel/http_client_filter.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700545 "src/core/channel/http_server_filter.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800546 "src/core/channel/subchannel_call_holder.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700547 "src/core/client_config/client_config.h",
Craig Tiller91624662015-06-25 16:31:02 -0700548 "src/core/client_config/connector.h",
yang-ga6124122015-11-05 22:36:20 -0800549 "src/core/client_config/initial_connect_string.h",
Craig Tillereb841e22016-02-11 15:49:16 -0800550 "src/core/client_config/lb_policies/load_balancer_api.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700551 "src/core/client_config/lb_policies/pick_first.h",
David Garcia Quintas4fb049b2015-09-03 17:26:06 -0700552 "src/core/client_config/lb_policies/round_robin.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700553 "src/core/client_config/lb_policy.h",
David Garcia Quintas5c4543d2015-09-03 15:49:56 -0700554 "src/core/client_config/lb_policy_factory.h",
555 "src/core/client_config/lb_policy_registry.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700556 "src/core/client_config/resolver.h",
Craig Tiller7df28a72015-06-24 09:23:52 -0700557 "src/core/client_config/resolver_factory.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700558 "src/core/client_config/resolver_registry.h",
559 "src/core/client_config/resolvers/dns_resolver.h",
Craig Tiller698d00c2015-07-20 12:32:58 -0700560 "src/core/client_config/resolvers/sockaddr_resolver.h",
Craig Tilleraf691802015-06-23 14:57:07 -0700561 "src/core/client_config/subchannel.h",
562 "src/core/client_config/subchannel_factory.h",
Craig Tiller694cf8b2016-01-15 21:13:25 -0800563 "src/core/client_config/subchannel_index.h",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700564 "src/core/client_config/uri_parser.h",
Craig Tillerebdef9d2015-11-19 17:09:49 -0800565 "src/core/compression/algorithm_metadata.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700566 "src/core/compression/message_compress.h",
567 "src/core/debug/trace.h",
Matthew Iselin1824f052016-02-10 12:16:06 +1100568 "src/core/http/format_request.h",
569 "src/core/http/httpcli.h",
570 "src/core/http/parser.h",
Craig Tiller298751c2015-09-22 09:41:05 -0700571 "src/core/iomgr/closure.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700572 "src/core/iomgr/endpoint.h",
573 "src/core/iomgr/endpoint_pair.h",
Craig Tiller298751c2015-09-22 09:41:05 -0700574 "src/core/iomgr/exec_ctx.h",
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700575 "src/core/iomgr/executor.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700576 "src/core/iomgr/fd_posix.h",
577 "src/core/iomgr/iocp_windows.h",
578 "src/core/iomgr/iomgr.h",
579 "src/core/iomgr/iomgr_internal.h",
580 "src/core/iomgr/iomgr_posix.h",
581 "src/core/iomgr/pollset.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700582 "src/core/iomgr/pollset_posix.h",
Jorge Canizalesfe8ad732015-06-20 19:53:59 -0700583 "src/core/iomgr/pollset_set.h",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700584 "src/core/iomgr/pollset_set_posix.h",
585 "src/core/iomgr/pollset_set_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700586 "src/core/iomgr/pollset_windows.h",
587 "src/core/iomgr/resolve_address.h",
588 "src/core/iomgr/sockaddr.h",
589 "src/core/iomgr/sockaddr_posix.h",
590 "src/core/iomgr/sockaddr_utils.h",
591 "src/core/iomgr/sockaddr_win32.h",
592 "src/core/iomgr/socket_utils_posix.h",
593 "src/core/iomgr/socket_windows.h",
594 "src/core/iomgr/tcp_client.h",
595 "src/core/iomgr/tcp_posix.h",
596 "src/core/iomgr/tcp_server.h",
597 "src/core/iomgr/tcp_windows.h",
598 "src/core/iomgr/time_averaged_stats.h",
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700599 "src/core/iomgr/timer.h",
600 "src/core/iomgr/timer_heap.h",
Robbie Shade69535292015-07-10 14:27:34 -0400601 "src/core/iomgr/udp_server.h",
ahedberg43df2952016-03-18 10:46:38 -0400602 "src/core/iomgr/unix_sockets_posix.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700603 "src/core/iomgr/wakeup_fd_pipe.h",
604 "src/core/iomgr/wakeup_fd_posix.h",
Craig Tiller73b66062015-09-09 09:34:46 -0700605 "src/core/iomgr/workqueue.h",
606 "src/core/iomgr/workqueue_posix.h",
607 "src/core/iomgr/workqueue_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700608 "src/core/json/json.h",
609 "src/core/json/json_common.h",
610 "src/core/json/json_reader.h",
611 "src/core/json/json_writer.h",
Craig Tillereb841e22016-02-11 15:49:16 -0800612 "src/core/proto/grpc/lb/v0/load_balancer.pb.h",
Hongyu Chenbeb580b2015-08-25 16:19:33 -0700613 "src/core/statistics/census_interface.h",
614 "src/core/statistics/census_rpc_stats.h",
Masood Malekghassemi92298102015-08-20 18:50:17 -0700615 "src/core/surface/api_trace.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700616 "src/core/surface/call.h",
David Garcia Quintas0c331882015-10-08 14:51:54 -0700617 "src/core/surface/call_test_only.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700618 "src/core/surface/channel.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800619 "src/core/surface/channel_init.h",
620 "src/core/surface/channel_stack_type.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700621 "src/core/surface/completion_queue.h",
622 "src/core/surface/event_string.h",
623 "src/core/surface/init.h",
Craig Tiller178edfa2016-02-17 20:54:46 -0800624 "src/core/surface/lame_client.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700625 "src/core/surface/server.h",
626 "src/core/surface/surface_trace.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800627 "src/core/transport/byte_stream.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700628 "src/core/transport/chttp2/alpn.h",
629 "src/core/transport/chttp2/bin_encoder.h",
630 "src/core/transport/chttp2/frame.h",
631 "src/core/transport/chttp2/frame_data.h",
632 "src/core/transport/chttp2/frame_goaway.h",
633 "src/core/transport/chttp2/frame_ping.h",
634 "src/core/transport/chttp2/frame_rst_stream.h",
635 "src/core/transport/chttp2/frame_settings.h",
636 "src/core/transport/chttp2/frame_window_update.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800637 "src/core/transport/chttp2/hpack_encoder.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700638 "src/core/transport/chttp2/hpack_parser.h",
639 "src/core/transport/chttp2/hpack_table.h",
640 "src/core/transport/chttp2/http2_errors.h",
641 "src/core/transport/chttp2/huffsyms.h",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700642 "src/core/transport/chttp2/incoming_metadata.h",
Craig Tiller41527062015-06-12 07:51:05 -0700643 "src/core/transport/chttp2/internal.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700644 "src/core/transport/chttp2/status_conversion.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700645 "src/core/transport/chttp2/stream_map.h",
646 "src/core/transport/chttp2/timeout_encoding.h",
647 "src/core/transport/chttp2/varint.h",
648 "src/core/transport/chttp2_transport.h",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700649 "src/core/transport/connectivity_state.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700650 "src/core/transport/metadata.h",
Craig Tillerca1593a2015-11-02 14:08:33 -0800651 "src/core/transport/metadata_batch.h",
Craig Tiller2e7687c2015-11-18 14:56:46 -0800652 "src/core/transport/static_metadata.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700653 "src/core/transport/transport.h",
654 "src/core/transport/transport_impl.h",
Alistair Veitch1c09acc2015-08-31 16:57:32 -0700655 "src/core/census/aggregation.h",
Alistair Veitch77715442016-02-22 14:20:25 -0800656 "src/core/census/mlog.h",
Alistair Veitch9a099822015-08-27 13:16:00 -0700657 "src/core/census/rpc_metric_id.h",
Craig Tillereb841e22016-02-11 15:49:16 -0800658 "third_party/nanopb/pb.h",
659 "third_party/nanopb/pb_common.h",
660 "third_party/nanopb/pb_decode.h",
661 "third_party/nanopb/pb_encode.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700662 "src/core/surface/init_unsecure.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700663 "src/core/census/grpc_context.c",
Hongyu Chene09dc782015-08-21 11:28:33 -0700664 "src/core/census/grpc_filter.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800665 "src/core/census/grpc_plugin.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700666 "src/core/channel/channel_args.c",
667 "src/core/channel/channel_stack.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800668 "src/core/channel/channel_stack_builder.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700669 "src/core/channel/client_channel.c",
David Garcia Quintas55b4ea12015-06-16 14:27:32 -0700670 "src/core/channel/compress_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700671 "src/core/channel/connected_channel.c",
672 "src/core/channel/http_client_filter.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700673 "src/core/channel/http_server_filter.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800674 "src/core/channel/subchannel_call_holder.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700675 "src/core/client_config/client_config.c",
Craig Tiller91624662015-06-25 16:31:02 -0700676 "src/core/client_config/connector.c",
yang-ga6124122015-11-05 22:36:20 -0800677 "src/core/client_config/default_initial_connect_string.c",
678 "src/core/client_config/initial_connect_string.c",
Craig Tillereb841e22016-02-11 15:49:16 -0800679 "src/core/client_config/lb_policies/load_balancer_api.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700680 "src/core/client_config/lb_policies/pick_first.c",
David Garcia Quintas4fb049b2015-09-03 17:26:06 -0700681 "src/core/client_config/lb_policies/round_robin.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700682 "src/core/client_config/lb_policy.c",
David Garcia Quintas5c4543d2015-09-03 15:49:56 -0700683 "src/core/client_config/lb_policy_factory.c",
684 "src/core/client_config/lb_policy_registry.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700685 "src/core/client_config/resolver.c",
Craig Tiller7df28a72015-06-24 09:23:52 -0700686 "src/core/client_config/resolver_factory.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700687 "src/core/client_config/resolver_registry.c",
688 "src/core/client_config/resolvers/dns_resolver.c",
Craig Tiller698d00c2015-07-20 12:32:58 -0700689 "src/core/client_config/resolvers/sockaddr_resolver.c",
Craig Tilleraf691802015-06-23 14:57:07 -0700690 "src/core/client_config/subchannel.c",
691 "src/core/client_config/subchannel_factory.c",
Craig Tiller694cf8b2016-01-15 21:13:25 -0800692 "src/core/client_config/subchannel_index.c",
Craig Tiller3bc8ebd2015-06-24 15:41:15 -0700693 "src/core/client_config/uri_parser.c",
Craig Tiller521423c2016-02-22 22:22:22 -0800694 "src/core/compression/compression_algorithm.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700695 "src/core/compression/message_compress.c",
696 "src/core/debug/trace.c",
Matthew Iselin1824f052016-02-10 12:16:06 +1100697 "src/core/http/format_request.c",
698 "src/core/http/httpcli.c",
699 "src/core/http/parser.c",
Craig Tiller298751c2015-09-22 09:41:05 -0700700 "src/core/iomgr/closure.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700701 "src/core/iomgr/endpoint.c",
702 "src/core/iomgr/endpoint_pair_posix.c",
Craig Tillerd180e032015-04-13 10:10:07 -0700703 "src/core/iomgr/endpoint_pair_windows.c",
Craig Tiller8af4c332015-09-22 12:32:31 -0700704 "src/core/iomgr/exec_ctx.c",
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700705 "src/core/iomgr/executor.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700706 "src/core/iomgr/fd_posix.c",
707 "src/core/iomgr/iocp_windows.c",
708 "src/core/iomgr/iomgr.c",
709 "src/core/iomgr/iomgr_posix.c",
710 "src/core/iomgr/iomgr_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700711 "src/core/iomgr/pollset_multipoller_with_epoll.c",
712 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
713 "src/core/iomgr/pollset_posix.c",
Craig Tillerb7cf08f2015-05-07 07:58:30 -0700714 "src/core/iomgr/pollset_set_posix.c",
715 "src/core/iomgr/pollset_set_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700716 "src/core/iomgr/pollset_windows.c",
717 "src/core/iomgr/resolve_address_posix.c",
718 "src/core/iomgr/resolve_address_windows.c",
719 "src/core/iomgr/sockaddr_utils.c",
720 "src/core/iomgr/socket_utils_common_posix.c",
721 "src/core/iomgr/socket_utils_linux.c",
722 "src/core/iomgr/socket_utils_posix.c",
723 "src/core/iomgr/socket_windows.c",
724 "src/core/iomgr/tcp_client_posix.c",
725 "src/core/iomgr/tcp_client_windows.c",
726 "src/core/iomgr/tcp_posix.c",
727 "src/core/iomgr/tcp_server_posix.c",
728 "src/core/iomgr/tcp_server_windows.c",
729 "src/core/iomgr/tcp_windows.c",
730 "src/core/iomgr/time_averaged_stats.c",
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700731 "src/core/iomgr/timer.c",
732 "src/core/iomgr/timer_heap.c",
Robbie Shade69535292015-07-10 14:27:34 -0400733 "src/core/iomgr/udp_server.c",
ahedberg43df2952016-03-18 10:46:38 -0400734 "src/core/iomgr/unix_sockets_posix.c",
735 "src/core/iomgr/unix_sockets_posix_noop.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700736 "src/core/iomgr/wakeup_fd_eventfd.c",
737 "src/core/iomgr/wakeup_fd_nospecial.c",
738 "src/core/iomgr/wakeup_fd_pipe.c",
739 "src/core/iomgr/wakeup_fd_posix.c",
Craig Tiller73b66062015-09-09 09:34:46 -0700740 "src/core/iomgr/workqueue_posix.c",
741 "src/core/iomgr/workqueue_windows.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700742 "src/core/json/json.c",
743 "src/core/json/json_reader.c",
744 "src/core/json/json_string.c",
745 "src/core/json/json_writer.c",
Craig Tillereb841e22016-02-11 15:49:16 -0800746 "src/core/proto/grpc/lb/v0/load_balancer.pb.c",
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100747 "src/core/surface/alarm.c",
Masood Malekghassemife1093c2015-08-19 19:15:24 -0700748 "src/core/surface/api_trace.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700749 "src/core/surface/byte_buffer.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700750 "src/core/surface/byte_buffer_reader.c",
751 "src/core/surface/call.c",
752 "src/core/surface/call_details.c",
753 "src/core/surface/call_log_batch.c",
754 "src/core/surface/channel.c",
Craig Tiller48cb07c2015-07-15 16:16:15 -0700755 "src/core/surface/channel_connectivity.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700756 "src/core/surface/channel_create.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800757 "src/core/surface/channel_init.c",
Craig Tiller26dab312015-12-07 14:43:47 -0800758 "src/core/surface/channel_ping.c",
Craig Tiller178edfa2016-02-17 20:54:46 -0800759 "src/core/surface/channel_stack_type.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700760 "src/core/surface/completion_queue.c",
761 "src/core/surface/event_string.c",
762 "src/core/surface/init.c",
763 "src/core/surface/lame_client.c",
764 "src/core/surface/metadata_array.c",
765 "src/core/surface/server.c",
766 "src/core/surface/server_chttp2.c",
murgatroid99c3910ca2016-01-06 13:14:23 -0800767 "src/core/surface/validate_metadata.c",
Craig Tiller2e622bc2015-07-10 07:46:03 -0700768 "src/core/surface/version.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800769 "src/core/transport/byte_stream.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700770 "src/core/transport/chttp2/alpn.c",
771 "src/core/transport/chttp2/bin_encoder.c",
772 "src/core/transport/chttp2/frame_data.c",
773 "src/core/transport/chttp2/frame_goaway.c",
774 "src/core/transport/chttp2/frame_ping.c",
775 "src/core/transport/chttp2/frame_rst_stream.c",
776 "src/core/transport/chttp2/frame_settings.c",
777 "src/core/transport/chttp2/frame_window_update.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800778 "src/core/transport/chttp2/hpack_encoder.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700779 "src/core/transport/chttp2/hpack_parser.c",
780 "src/core/transport/chttp2/hpack_table.c",
781 "src/core/transport/chttp2/huffsyms.c",
Craig Tiller5dc3b302015-06-15 16:06:50 -0700782 "src/core/transport/chttp2/incoming_metadata.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700783 "src/core/transport/chttp2/parsing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700784 "src/core/transport/chttp2/status_conversion.c",
Craig Tiller6459db42015-06-15 17:11:45 -0700785 "src/core/transport/chttp2/stream_lists.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700786 "src/core/transport/chttp2/stream_map.c",
787 "src/core/transport/chttp2/timeout_encoding.c",
788 "src/core/transport/chttp2/varint.c",
Craig Tillerd8df50c2015-06-12 07:53:56 -0700789 "src/core/transport/chttp2/writing.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700790 "src/core/transport/chttp2_transport.c",
Craig Tiller08a1cf82015-06-29 09:37:52 -0700791 "src/core/transport/connectivity_state.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700792 "src/core/transport/metadata.c",
Craig Tillerca1593a2015-11-02 14:08:33 -0800793 "src/core/transport/metadata_batch.c",
Craig Tiller2e7687c2015-11-18 14:56:46 -0800794 "src/core/transport/static_metadata.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700795 "src/core/transport/transport.c",
Craig Tiller83f88d92015-04-21 16:02:05 -0700796 "src/core/transport/transport_op_string.c",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700797 "src/core/census/context.c",
798 "src/core/census/initialize.c",
Alistair Veitch77715442016-02-22 14:20:25 -0800799 "src/core/census/mlog.c",
Alistair Veitche6d0ad32015-08-13 09:59:48 -0700800 "src/core/census/operation.c",
Nicolas "Pixel" Noblefa132c22016-01-31 09:31:15 +0100801 "src/core/census/placeholders.c",
Alistair Veitch0383d492015-07-26 15:29:00 -0700802 "src/core/census/tracing.c",
Craig Tillereb841e22016-02-11 15:49:16 -0800803 "third_party/nanopb/pb_common.c",
804 "third_party/nanopb/pb_decode.c",
805 "third_party/nanopb/pb_encode.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700806 ],
807 hdrs = [
808 "include/grpc/byte_buffer.h",
809 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700810 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700811 "include/grpc/grpc.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700812 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -0800813 "include/grpc/impl/codegen/byte_buffer.h",
814 "include/grpc/impl/codegen/compression_types.h",
815 "include/grpc/impl/codegen/connectivity_state.h",
816 "include/grpc/impl/codegen/grpc_types.h",
817 "include/grpc/impl/codegen/propagation_bits.h",
818 "include/grpc/impl/codegen/status.h",
Alistair Veitch9686dab2015-05-26 14:26:47 -0700819 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700820 ],
821 includes = [
822 "include",
823 ".",
824 ],
825 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -0800826 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700827 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800828 copts = [
829 "-std=gnu99",
830 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700831)
832
833
834cc_library(
Hongwei Wangda8858f2015-07-16 16:18:19 -0700835 name = "grpc_zookeeper",
836 srcs = [
837 "src/core/client_config/resolvers/zookeeper_resolver.h",
838 "src/core/client_config/resolvers/zookeeper_resolver.c",
839 ],
840 hdrs = [
Hongwei Wanga3780a82015-07-17 15:27:18 -0700841 "include/grpc/grpc_zookeeper.h",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700842 ],
843 includes = [
844 "include",
845 ".",
846 ],
847 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -0800848 ":gpr",
Hongwei Wangda8858f2015-07-16 16:18:19 -0700849 ":grpc",
850 ],
851)
852
853
854cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700855 name = "grpc++",
856 srcs = [
857 "src/cpp/client/secure_credentials.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -0800858 "src/cpp/common/core_codegen.h",
yang-g3abe60b2015-07-06 14:00:36 -0700859 "src/cpp/common/secure_auth_context.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700860 "src/cpp/server/secure_server_credentials.h",
yang-gc317f072015-08-20 12:18:08 -0700861 "src/cpp/client/create_channel_internal.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -0800862 "src/cpp/common/core_codegen.h",
yang-g3abe60b2015-07-06 14:00:36 -0700863 "src/cpp/common/create_auth_context.h",
Vijay Paie8a7e302015-08-24 10:52:33 -0700864 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -0700865 "src/cpp/server/thread_pool_interface.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700866 "src/cpp/client/secure_credentials.cc",
yang-g7ef72322015-07-16 21:00:51 -0700867 "src/cpp/common/auth_property_iterator.cc",
yang-g3abe60b2015-07-06 14:00:36 -0700868 "src/cpp/common/secure_auth_context.cc",
yang-g52705592015-11-25 11:45:33 -0800869 "src/cpp/common/secure_channel_arguments.cc",
yang-g3abe60b2015-07-06 14:00:36 -0700870 "src/cpp/common/secure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700871 "src/cpp/server/secure_server_credentials.cc",
872 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700873 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700874 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -0700875 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700876 "src/cpp/client/credentials.cc",
877 "src/cpp/client/generic_stub.cc",
878 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -0800879 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700880 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +0100881 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700882 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700883 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -0700884 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -0700885 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700886 "src/cpp/server/insecure_server_credentials.cc",
887 "src/cpp/server/server.cc",
888 "src/cpp/server/server_builder.cc",
889 "src/cpp/server/server_context.cc",
890 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700891 "src/cpp/util/byte_buffer.cc",
892 "src/cpp/util/slice.cc",
893 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -0700894 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700895 "src/cpp/util/time.cc",
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100896 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700897 ],
898 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -0800899 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -0700900 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700901 "include/grpc++/client_context.h",
902 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700903 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700904 "include/grpc++/generic/async_generic_service.h",
905 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -0700906 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700907 "include/grpc++/impl/call.h",
908 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -0700909 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -0800910 "include/grpc++/impl/method_handler_impl.h",
yang-gadfed032015-06-23 13:01:22 -0700911 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700912 "include/grpc++/impl/rpc_method.h",
913 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -0700914 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -0800915 "include/grpc++/impl/server_builder_option.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700916 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +0200917 "include/grpc++/impl/sync.h",
918 "include/grpc++/impl/sync_cxx11.h",
919 "include/grpc++/impl/sync_no_cxx11.h",
920 "include/grpc++/impl/thd.h",
921 "include/grpc++/impl/thd_cxx11.h",
922 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -0700923 "include/grpc++/security/auth_context.h",
924 "include/grpc++/security/auth_metadata_processor.h",
925 "include/grpc++/security/credentials.h",
926 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700927 "include/grpc++/server.h",
928 "include/grpc++/server_builder.h",
929 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -0700930 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700931 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700932 "include/grpc++/support/byte_buffer.h",
933 "include/grpc++/support/channel_arguments.h",
934 "include/grpc++/support/config.h",
935 "include/grpc++/support/config_protobuf.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700936 "include/grpc++/support/slice.h",
937 "include/grpc++/support/status.h",
938 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -0700939 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700940 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -0700941 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -0700942 "include/grpc++/support/time.h",
David Garcia Quintas6a484052016-01-25 19:12:37 -0800943 "include/grpc++/impl/codegen/async_stream.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800944 "include/grpc++/impl/codegen/async_unary_call.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -0800945 "include/grpc++/impl/codegen/call.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800946 "include/grpc++/impl/codegen/call_hook.h",
947 "include/grpc++/impl/codegen/channel_interface.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -0800948 "include/grpc++/impl/codegen/client_context.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800949 "include/grpc++/impl/codegen/client_unary_call.h",
950 "include/grpc++/impl/codegen/completion_queue.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800951 "include/grpc++/impl/codegen/completion_queue_tag.h",
952 "include/grpc++/impl/codegen/config.h",
David Garcia Quintas6a484052016-01-25 19:12:37 -0800953 "include/grpc++/impl/codegen/config_protobuf.h",
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100954 "include/grpc++/impl/codegen/core_codegen_interface.h",
David Garcia Quintase1300de2016-01-27 18:41:26 -0800955 "include/grpc++/impl/codegen/grpc_library.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800956 "include/grpc++/impl/codegen/method_handler_impl.h",
David Garcia Quintas6a484052016-01-25 19:12:37 -0800957 "include/grpc++/impl/codegen/proto_utils.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800958 "include/grpc++/impl/codegen/rpc_method.h",
959 "include/grpc++/impl/codegen/rpc_service_method.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800960 "include/grpc++/impl/codegen/security/auth_context.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -0800961 "include/grpc++/impl/codegen/serialization_traits.h",
962 "include/grpc++/impl/codegen/server_context.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800963 "include/grpc++/impl/codegen/server_interface.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -0800964 "include/grpc++/impl/codegen/service_type.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800965 "include/grpc++/impl/codegen/status.h",
966 "include/grpc++/impl/codegen/status_code_enum.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800967 "include/grpc++/impl/codegen/string_ref.h",
David Garcia Quintase1300de2016-01-27 18:41:26 -0800968 "include/grpc++/impl/codegen/stub_options.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800969 "include/grpc++/impl/codegen/sync.h",
970 "include/grpc++/impl/codegen/sync_cxx11.h",
971 "include/grpc++/impl/codegen/sync_no_cxx11.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800972 "include/grpc++/impl/codegen/sync_stream.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800973 "include/grpc++/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700974 ],
975 includes = [
976 "include",
977 ".",
978 ],
979 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -0700980 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700981 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700982 ":grpc",
983 ],
984)
985
986
987cc_library(
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100988 name = "grpc++_codegen_lib",
989 srcs = [
990 "src/cpp/codegen/codegen_init.cc",
991 ],
992 hdrs = [
993 "include/grpc/impl/codegen/alloc.h",
994 "include/grpc/impl/codegen/atm.h",
995 "include/grpc/impl/codegen/atm_gcc_atomic.h",
996 "include/grpc/impl/codegen/atm_gcc_sync.h",
997 "include/grpc/impl/codegen/atm_win32.h",
998 "include/grpc/impl/codegen/log.h",
999 "include/grpc/impl/codegen/port_platform.h",
1000 "include/grpc/impl/codegen/slice.h",
1001 "include/grpc/impl/codegen/slice_buffer.h",
1002 "include/grpc/impl/codegen/sync.h",
1003 "include/grpc/impl/codegen/sync_generic.h",
1004 "include/grpc/impl/codegen/sync_posix.h",
1005 "include/grpc/impl/codegen/sync_win32.h",
1006 "include/grpc/impl/codegen/time.h",
1007 "include/grpc/impl/codegen/byte_buffer.h",
1008 "include/grpc/impl/codegen/compression_types.h",
1009 "include/grpc/impl/codegen/connectivity_state.h",
1010 "include/grpc/impl/codegen/grpc_types.h",
1011 "include/grpc/impl/codegen/propagation_bits.h",
1012 "include/grpc/impl/codegen/status.h",
1013 "include/grpc++/impl/codegen/async_stream.h",
1014 "include/grpc++/impl/codegen/async_unary_call.h",
1015 "include/grpc++/impl/codegen/call.h",
1016 "include/grpc++/impl/codegen/call_hook.h",
1017 "include/grpc++/impl/codegen/channel_interface.h",
1018 "include/grpc++/impl/codegen/client_context.h",
1019 "include/grpc++/impl/codegen/client_unary_call.h",
1020 "include/grpc++/impl/codegen/completion_queue.h",
1021 "include/grpc++/impl/codegen/completion_queue_tag.h",
1022 "include/grpc++/impl/codegen/config.h",
1023 "include/grpc++/impl/codegen/config_protobuf.h",
1024 "include/grpc++/impl/codegen/core_codegen_interface.h",
1025 "include/grpc++/impl/codegen/grpc_library.h",
1026 "include/grpc++/impl/codegen/method_handler_impl.h",
1027 "include/grpc++/impl/codegen/proto_utils.h",
1028 "include/grpc++/impl/codegen/rpc_method.h",
1029 "include/grpc++/impl/codegen/rpc_service_method.h",
1030 "include/grpc++/impl/codegen/security/auth_context.h",
1031 "include/grpc++/impl/codegen/serialization_traits.h",
1032 "include/grpc++/impl/codegen/server_context.h",
1033 "include/grpc++/impl/codegen/server_interface.h",
1034 "include/grpc++/impl/codegen/service_type.h",
1035 "include/grpc++/impl/codegen/status.h",
1036 "include/grpc++/impl/codegen/status_code_enum.h",
1037 "include/grpc++/impl/codegen/string_ref.h",
1038 "include/grpc++/impl/codegen/stub_options.h",
1039 "include/grpc++/impl/codegen/sync.h",
1040 "include/grpc++/impl/codegen/sync_cxx11.h",
1041 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1042 "include/grpc++/impl/codegen/sync_stream.h",
1043 "include/grpc++/impl/codegen/time.h",
1044 ],
1045 includes = [
1046 "include",
1047 ".",
1048 ],
1049 deps = [
1050 "//external:protobuf_compiler",
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -08001051 ],
1052)
1053
1054
1055cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001056 name = "grpc++_unsecure",
1057 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001058 "src/cpp/client/create_channel_internal.h",
David Garcia Quintas79d90962016-03-09 13:57:46 -08001059 "src/cpp/common/core_codegen.h",
yang-g3abe60b2015-07-06 14:00:36 -07001060 "src/cpp/common/create_auth_context.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001061 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001062 "src/cpp/server/thread_pool_interface.h",
yang-g3abe60b2015-07-06 14:00:36 -07001063 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001064 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001065 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001066 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001067 "src/cpp/client/create_channel_internal.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001068 "src/cpp/client/credentials.cc",
1069 "src/cpp/client/generic_stub.cc",
1070 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001071 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001072 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001073 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001074 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001075 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001076 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001077 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001078 "src/cpp/server/insecure_server_credentials.cc",
1079 "src/cpp/server/server.cc",
1080 "src/cpp/server/server_builder.cc",
1081 "src/cpp/server/server_context.cc",
1082 "src/cpp/server/server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001083 "src/cpp/util/byte_buffer.cc",
1084 "src/cpp/util/slice.cc",
1085 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001086 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001087 "src/cpp/util/time.cc",
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +01001088 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001089 ],
1090 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001091 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001092 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001093 "include/grpc++/client_context.h",
1094 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001095 "include/grpc++/create_channel.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001096 "include/grpc++/generic/async_generic_service.h",
1097 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001098 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001099 "include/grpc++/impl/call.h",
1100 "include/grpc++/impl/client_unary_call.h",
Yang Gao96de4842015-04-24 13:13:12 -07001101 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001102 "include/grpc++/impl/method_handler_impl.h",
yang-gadfed032015-06-23 13:01:22 -07001103 "include/grpc++/impl/proto_utils.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001104 "include/grpc++/impl/rpc_method.h",
1105 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001106 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001107 "include/grpc++/impl/server_builder_option.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001108 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001109 "include/grpc++/impl/sync.h",
1110 "include/grpc++/impl/sync_cxx11.h",
1111 "include/grpc++/impl/sync_no_cxx11.h",
1112 "include/grpc++/impl/thd.h",
1113 "include/grpc++/impl/thd_cxx11.h",
1114 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001115 "include/grpc++/security/auth_context.h",
1116 "include/grpc++/security/auth_metadata_processor.h",
1117 "include/grpc++/security/credentials.h",
1118 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001119 "include/grpc++/server.h",
1120 "include/grpc++/server_builder.h",
1121 "include/grpc++/server_context.h",
yang-g9fb35a52015-08-21 15:49:35 -07001122 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001123 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001124 "include/grpc++/support/byte_buffer.h",
1125 "include/grpc++/support/channel_arguments.h",
1126 "include/grpc++/support/config.h",
1127 "include/grpc++/support/config_protobuf.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001128 "include/grpc++/support/slice.h",
1129 "include/grpc++/support/status.h",
1130 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001131 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001132 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001133 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001134 "include/grpc++/support/time.h",
David Garcia Quintas6a484052016-01-25 19:12:37 -08001135 "include/grpc++/impl/codegen/async_stream.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -08001136 "include/grpc++/impl/codegen/async_unary_call.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001137 "include/grpc++/impl/codegen/call.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001138 "include/grpc++/impl/codegen/call_hook.h",
1139 "include/grpc++/impl/codegen/channel_interface.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001140 "include/grpc++/impl/codegen/client_context.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -08001141 "include/grpc++/impl/codegen/client_unary_call.h",
1142 "include/grpc++/impl/codegen/completion_queue.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001143 "include/grpc++/impl/codegen/completion_queue_tag.h",
1144 "include/grpc++/impl/codegen/config.h",
David Garcia Quintas6a484052016-01-25 19:12:37 -08001145 "include/grpc++/impl/codegen/config_protobuf.h",
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +01001146 "include/grpc++/impl/codegen/core_codegen_interface.h",
David Garcia Quintase1300de2016-01-27 18:41:26 -08001147 "include/grpc++/impl/codegen/grpc_library.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -08001148 "include/grpc++/impl/codegen/method_handler_impl.h",
David Garcia Quintas6a484052016-01-25 19:12:37 -08001149 "include/grpc++/impl/codegen/proto_utils.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -08001150 "include/grpc++/impl/codegen/rpc_method.h",
1151 "include/grpc++/impl/codegen/rpc_service_method.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001152 "include/grpc++/impl/codegen/security/auth_context.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001153 "include/grpc++/impl/codegen/serialization_traits.h",
1154 "include/grpc++/impl/codegen/server_context.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001155 "include/grpc++/impl/codegen/server_interface.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001156 "include/grpc++/impl/codegen/service_type.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001157 "include/grpc++/impl/codegen/status.h",
1158 "include/grpc++/impl/codegen/status_code_enum.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001159 "include/grpc++/impl/codegen/string_ref.h",
David Garcia Quintase1300de2016-01-27 18:41:26 -08001160 "include/grpc++/impl/codegen/stub_options.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001161 "include/grpc++/impl/codegen/sync.h",
1162 "include/grpc++/impl/codegen/sync_cxx11.h",
1163 "include/grpc++/impl/codegen/sync_no_cxx11.h",
David Garcia Quintas6bd7b972016-01-27 19:21:12 -08001164 "include/grpc++/impl/codegen/sync_stream.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001165 "include/grpc++/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001166 ],
1167 includes = [
1168 "include",
1169 ".",
1170 ],
1171 deps = [
1172 "//external:protobuf_clib",
Craig Tillerda179ce2016-02-09 12:01:53 -08001173 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001174 ":grpc_unsecure",
1175 ],
1176)
1177
1178
1179cc_library(
1180 name = "grpc_plugin_support",
1181 srcs = [
yang-g9d1f0c42015-08-24 16:08:36 -07001182 "include/grpc++/support/config.h",
1183 "include/grpc++/support/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001184 "src/compiler/config.h",
1185 "src/compiler/cpp_generator.h",
1186 "src/compiler/cpp_generator_helpers.h",
Jan Tattermusch2d924952015-05-06 10:23:17 -07001187 "src/compiler/csharp_generator.h",
1188 "src/compiler/csharp_generator_helpers.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001189 "src/compiler/generator_helpers.h",
1190 "src/compiler/objective_c_generator.h",
1191 "src/compiler/objective_c_generator_helpers.h",
1192 "src/compiler/python_generator.h",
1193 "src/compiler/ruby_generator.h",
1194 "src/compiler/ruby_generator_helpers-inl.h",
1195 "src/compiler/ruby_generator_map-inl.h",
1196 "src/compiler/ruby_generator_string-inl.h",
1197 "src/compiler/cpp_generator.cc",
Jan Tattermusch2d924952015-05-06 10:23:17 -07001198 "src/compiler/csharp_generator.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001199 "src/compiler/objective_c_generator.cc",
1200 "src/compiler/python_generator.cc",
1201 "src/compiler/ruby_generator.cc",
1202 ],
1203 hdrs = [
David Garcia Quintasb523c732016-01-25 18:22:28 -08001204 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001205 "include/grpc/impl/codegen/atm.h",
1206 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1207 "include/grpc/impl/codegen/atm_gcc_sync.h",
1208 "include/grpc/impl/codegen/atm_win32.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001209 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001210 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001211 "include/grpc/impl/codegen/slice.h",
1212 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001213 "include/grpc/impl/codegen/sync.h",
1214 "include/grpc/impl/codegen/sync_generic.h",
1215 "include/grpc/impl/codegen/sync_posix.h",
1216 "include/grpc/impl/codegen/sync_win32.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001217 "include/grpc/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001218 ],
1219 includes = [
1220 "include",
1221 ".",
1222 ],
1223 deps = [
1224 "//external:protobuf_compiler",
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -08001225 ":grpc++_codegen_lib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001226 ],
1227)
1228
1229
1230cc_library(
1231 name = "grpc_csharp_ext",
1232 srcs = [
1233 "src/csharp/ext/grpc_csharp_ext.c",
1234 ],
1235 hdrs = [
1236 ],
1237 includes = [
1238 "include",
1239 ".",
1240 ],
1241 deps = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001242 ":grpc",
Craig Tillerda179ce2016-02-09 12:01:53 -08001243 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001244 ],
1245)
1246
1247
1248
Jorge Canizales140bca82015-06-20 09:47:00 -07001249objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001250 name = "gpr_objc",
1251 srcs = [
1252 "src/core/profiling/basic_timers.c",
1253 "src/core/profiling/stap_timers.c",
1254 "src/core/support/alloc.c",
1255 "src/core/support/avl.c",
Craig Tillerc72cc422016-03-11 10:54:36 -08001256 "src/core/support/backoff.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001257 "src/core/support/cmdline.c",
1258 "src/core/support/cpu_iphone.c",
1259 "src/core/support/cpu_linux.c",
1260 "src/core/support/cpu_posix.c",
1261 "src/core/support/cpu_windows.c",
1262 "src/core/support/env_linux.c",
1263 "src/core/support/env_posix.c",
1264 "src/core/support/env_win32.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001265 "src/core/support/histogram.c",
1266 "src/core/support/host_port.c",
Craig Tiller521423c2016-02-22 22:22:22 -08001267 "src/core/support/load_file.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001268 "src/core/support/log.c",
1269 "src/core/support/log_android.c",
1270 "src/core/support/log_linux.c",
1271 "src/core/support/log_posix.c",
1272 "src/core/support/log_win32.c",
1273 "src/core/support/murmur_hash.c",
1274 "src/core/support/slice.c",
1275 "src/core/support/slice_buffer.c",
1276 "src/core/support/stack_lockfree.c",
1277 "src/core/support/string.c",
1278 "src/core/support/string_posix.c",
1279 "src/core/support/string_win32.c",
1280 "src/core/support/subprocess_posix.c",
Craig Tiller1298afd2016-02-09 12:29:17 -08001281 "src/core/support/subprocess_windows.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001282 "src/core/support/sync.c",
1283 "src/core/support/sync_posix.c",
1284 "src/core/support/sync_win32.c",
1285 "src/core/support/thd.c",
1286 "src/core/support/thd_posix.c",
1287 "src/core/support/thd_win32.c",
1288 "src/core/support/time.c",
1289 "src/core/support/time_posix.c",
1290 "src/core/support/time_precise.c",
1291 "src/core/support/time_win32.c",
1292 "src/core/support/tls_pthread.c",
Craig Tiller521423c2016-02-22 22:22:22 -08001293 "src/core/support/tmpfile_posix.c",
1294 "src/core/support/tmpfile_win32.c",
Craig Tiller1298afd2016-02-09 12:29:17 -08001295 "src/core/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001296 ],
1297 hdrs = [
1298 "include/grpc/support/alloc.h",
1299 "include/grpc/support/atm.h",
1300 "include/grpc/support/atm_gcc_atomic.h",
1301 "include/grpc/support/atm_gcc_sync.h",
1302 "include/grpc/support/atm_win32.h",
1303 "include/grpc/support/avl.h",
1304 "include/grpc/support/cmdline.h",
1305 "include/grpc/support/cpu.h",
1306 "include/grpc/support/histogram.h",
1307 "include/grpc/support/host_port.h",
1308 "include/grpc/support/log.h",
1309 "include/grpc/support/log_win32.h",
1310 "include/grpc/support/port_platform.h",
1311 "include/grpc/support/slice.h",
1312 "include/grpc/support/slice_buffer.h",
1313 "include/grpc/support/string_util.h",
1314 "include/grpc/support/subprocess.h",
1315 "include/grpc/support/sync.h",
1316 "include/grpc/support/sync_generic.h",
1317 "include/grpc/support/sync_posix.h",
1318 "include/grpc/support/sync_win32.h",
1319 "include/grpc/support/thd.h",
1320 "include/grpc/support/time.h",
1321 "include/grpc/support/tls.h",
1322 "include/grpc/support/tls_gcc.h",
1323 "include/grpc/support/tls_msvc.h",
1324 "include/grpc/support/tls_pthread.h",
1325 "include/grpc/support/useful.h",
1326 "include/grpc/impl/codegen/alloc.h",
1327 "include/grpc/impl/codegen/atm.h",
1328 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1329 "include/grpc/impl/codegen/atm_gcc_sync.h",
1330 "include/grpc/impl/codegen/atm_win32.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001331 "include/grpc/impl/codegen/log.h",
1332 "include/grpc/impl/codegen/port_platform.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001333 "include/grpc/impl/codegen/slice.h",
1334 "include/grpc/impl/codegen/slice_buffer.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001335 "include/grpc/impl/codegen/sync.h",
1336 "include/grpc/impl/codegen/sync_generic.h",
1337 "include/grpc/impl/codegen/sync_posix.h",
1338 "include/grpc/impl/codegen/sync_win32.h",
1339 "include/grpc/impl/codegen/time.h",
1340 "src/core/profiling/timers.h",
Craig Tillerc72cc422016-03-11 10:54:36 -08001341 "src/core/support/backoff.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001342 "src/core/support/block_annotate.h",
1343 "src/core/support/env.h",
Craig Tiller521423c2016-02-22 22:22:22 -08001344 "src/core/support/load_file.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001345 "src/core/support/murmur_hash.h",
1346 "src/core/support/stack_lockfree.h",
1347 "src/core/support/string.h",
1348 "src/core/support/string_win32.h",
1349 "src/core/support/thd_internal.h",
1350 "src/core/support/time_precise.h",
Craig Tiller521423c2016-02-22 22:22:22 -08001351 "src/core/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001352 ],
1353 includes = [
1354 "include",
1355 ".",
1356 ],
1357 deps = [
1358 ],
1359)
1360
1361
1362objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001363 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001364 srcs = [
Jorge Canizales140bca82015-06-20 09:47:00 -07001365 "src/core/census/grpc_context.c",
Hongyu Chene09dc782015-08-21 11:28:33 -07001366 "src/core/census/grpc_filter.c",
Craig Tiller178edfa2016-02-17 20:54:46 -08001367 "src/core/census/grpc_plugin.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001368 "src/core/channel/channel_args.c",
1369 "src/core/channel/channel_stack.c",
Craig Tiller178edfa2016-02-17 20:54:46 -08001370 "src/core/channel/channel_stack_builder.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001371 "src/core/channel/client_channel.c",
David Garcia Quintas8a187092015-07-01 14:52:44 -07001372 "src/core/channel/compress_filter.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001373 "src/core/channel/connected_channel.c",
1374 "src/core/channel/http_client_filter.c",
1375 "src/core/channel/http_server_filter.c",
Craig Tillerca1593a2015-11-02 14:08:33 -08001376 "src/core/channel/subchannel_call_holder.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001377 "src/core/client_config/client_config.c",
1378 "src/core/client_config/connector.c",
yang-ga6124122015-11-05 22:36:20 -08001379 "src/core/client_config/default_initial_connect_string.c",
1380 "src/core/client_config/initial_connect_string.c",
Craig Tillereb841e22016-02-11 15:49:16 -08001381 "src/core/client_config/lb_policies/load_balancer_api.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001382 "src/core/client_config/lb_policies/pick_first.c",
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001383 "src/core/client_config/lb_policies/round_robin.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001384 "src/core/client_config/lb_policy.c",
David Garcia Quintas5c4543d2015-09-03 15:49:56 -07001385 "src/core/client_config/lb_policy_factory.c",
1386 "src/core/client_config/lb_policy_registry.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001387 "src/core/client_config/resolver.c",
1388 "src/core/client_config/resolver_factory.c",
1389 "src/core/client_config/resolver_registry.c",
1390 "src/core/client_config/resolvers/dns_resolver.c",
Craig Tiller698d00c2015-07-20 12:32:58 -07001391 "src/core/client_config/resolvers/sockaddr_resolver.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001392 "src/core/client_config/subchannel.c",
1393 "src/core/client_config/subchannel_factory.c",
Craig Tiller694cf8b2016-01-15 21:13:25 -08001394 "src/core/client_config/subchannel_index.c",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001395 "src/core/client_config/uri_parser.c",
Craig Tiller521423c2016-02-22 22:22:22 -08001396 "src/core/compression/compression_algorithm.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001397 "src/core/compression/message_compress.c",
1398 "src/core/debug/trace.c",
Matthew Iselin1824f052016-02-10 12:16:06 +11001399 "src/core/http/format_request.c",
1400 "src/core/http/httpcli.c",
1401 "src/core/http/parser.c",
Craig Tiller298751c2015-09-22 09:41:05 -07001402 "src/core/iomgr/closure.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001403 "src/core/iomgr/endpoint.c",
1404 "src/core/iomgr/endpoint_pair_posix.c",
1405 "src/core/iomgr/endpoint_pair_windows.c",
Craig Tiller8af4c332015-09-22 12:32:31 -07001406 "src/core/iomgr/exec_ctx.c",
David Garcia Quintas4bc34632015-10-07 16:12:35 -07001407 "src/core/iomgr/executor.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001408 "src/core/iomgr/fd_posix.c",
1409 "src/core/iomgr/iocp_windows.c",
1410 "src/core/iomgr/iomgr.c",
1411 "src/core/iomgr/iomgr_posix.c",
1412 "src/core/iomgr/iomgr_windows.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001413 "src/core/iomgr/pollset_multipoller_with_epoll.c",
1414 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
1415 "src/core/iomgr/pollset_posix.c",
1416 "src/core/iomgr/pollset_set_posix.c",
1417 "src/core/iomgr/pollset_set_windows.c",
1418 "src/core/iomgr/pollset_windows.c",
1419 "src/core/iomgr/resolve_address_posix.c",
1420 "src/core/iomgr/resolve_address_windows.c",
1421 "src/core/iomgr/sockaddr_utils.c",
1422 "src/core/iomgr/socket_utils_common_posix.c",
1423 "src/core/iomgr/socket_utils_linux.c",
1424 "src/core/iomgr/socket_utils_posix.c",
1425 "src/core/iomgr/socket_windows.c",
1426 "src/core/iomgr/tcp_client_posix.c",
1427 "src/core/iomgr/tcp_client_windows.c",
1428 "src/core/iomgr/tcp_posix.c",
1429 "src/core/iomgr/tcp_server_posix.c",
1430 "src/core/iomgr/tcp_server_windows.c",
1431 "src/core/iomgr/tcp_windows.c",
1432 "src/core/iomgr/time_averaged_stats.c",
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001433 "src/core/iomgr/timer.c",
1434 "src/core/iomgr/timer_heap.c",
Robbie Shade69535292015-07-10 14:27:34 -04001435 "src/core/iomgr/udp_server.c",
ahedberg43df2952016-03-18 10:46:38 -04001436 "src/core/iomgr/unix_sockets_posix.c",
1437 "src/core/iomgr/unix_sockets_posix_noop.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001438 "src/core/iomgr/wakeup_fd_eventfd.c",
1439 "src/core/iomgr/wakeup_fd_nospecial.c",
1440 "src/core/iomgr/wakeup_fd_pipe.c",
1441 "src/core/iomgr/wakeup_fd_posix.c",
Craig Tiller73b66062015-09-09 09:34:46 -07001442 "src/core/iomgr/workqueue_posix.c",
1443 "src/core/iomgr/workqueue_windows.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001444 "src/core/json/json.c",
1445 "src/core/json/json_reader.c",
1446 "src/core/json/json_string.c",
1447 "src/core/json/json_writer.c",
Craig Tillereb841e22016-02-11 15:49:16 -08001448 "src/core/proto/grpc/lb/v0/load_balancer.pb.c",
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001449 "src/core/surface/alarm.c",
Masood Malekghassemife1093c2015-08-19 19:15:24 -07001450 "src/core/surface/api_trace.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001451 "src/core/surface/byte_buffer.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001452 "src/core/surface/byte_buffer_reader.c",
1453 "src/core/surface/call.c",
1454 "src/core/surface/call_details.c",
1455 "src/core/surface/call_log_batch.c",
1456 "src/core/surface/channel.c",
Craig Tiller48cb07c2015-07-15 16:16:15 -07001457 "src/core/surface/channel_connectivity.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001458 "src/core/surface/channel_create.c",
Craig Tiller178edfa2016-02-17 20:54:46 -08001459 "src/core/surface/channel_init.c",
Craig Tiller26dab312015-12-07 14:43:47 -08001460 "src/core/surface/channel_ping.c",
Craig Tiller178edfa2016-02-17 20:54:46 -08001461 "src/core/surface/channel_stack_type.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001462 "src/core/surface/completion_queue.c",
1463 "src/core/surface/event_string.c",
1464 "src/core/surface/init.c",
1465 "src/core/surface/lame_client.c",
1466 "src/core/surface/metadata_array.c",
1467 "src/core/surface/server.c",
1468 "src/core/surface/server_chttp2.c",
murgatroid99c3910ca2016-01-06 13:14:23 -08001469 "src/core/surface/validate_metadata.c",
Craig Tiller2e622bc2015-07-10 07:46:03 -07001470 "src/core/surface/version.c",
Craig Tillerca1593a2015-11-02 14:08:33 -08001471 "src/core/transport/byte_stream.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001472 "src/core/transport/chttp2/alpn.c",
1473 "src/core/transport/chttp2/bin_encoder.c",
1474 "src/core/transport/chttp2/frame_data.c",
1475 "src/core/transport/chttp2/frame_goaway.c",
1476 "src/core/transport/chttp2/frame_ping.c",
1477 "src/core/transport/chttp2/frame_rst_stream.c",
1478 "src/core/transport/chttp2/frame_settings.c",
1479 "src/core/transport/chttp2/frame_window_update.c",
Craig Tillerca1593a2015-11-02 14:08:33 -08001480 "src/core/transport/chttp2/hpack_encoder.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001481 "src/core/transport/chttp2/hpack_parser.c",
1482 "src/core/transport/chttp2/hpack_table.c",
1483 "src/core/transport/chttp2/huffsyms.c",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001484 "src/core/transport/chttp2/incoming_metadata.c",
1485 "src/core/transport/chttp2/parsing.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001486 "src/core/transport/chttp2/status_conversion.c",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001487 "src/core/transport/chttp2/stream_lists.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001488 "src/core/transport/chttp2/stream_map.c",
1489 "src/core/transport/chttp2/timeout_encoding.c",
1490 "src/core/transport/chttp2/varint.c",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001491 "src/core/transport/chttp2/writing.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001492 "src/core/transport/chttp2_transport.c",
Craig Tiller08a1cf82015-06-29 09:37:52 -07001493 "src/core/transport/connectivity_state.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001494 "src/core/transport/metadata.c",
Craig Tillerca1593a2015-11-02 14:08:33 -08001495 "src/core/transport/metadata_batch.c",
Craig Tiller2e7687c2015-11-18 14:56:46 -08001496 "src/core/transport/static_metadata.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001497 "src/core/transport/transport.c",
1498 "src/core/transport/transport_op_string.c",
Matthew Iselin1824f052016-02-10 12:16:06 +11001499 "src/core/http/httpcli_security_connector.c",
Craig Tiller521423c2016-02-22 22:22:22 -08001500 "src/core/security/b64.c",
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +01001501 "src/core/security/client_auth_filter.c",
1502 "src/core/security/credentials.c",
1503 "src/core/security/credentials_metadata.c",
1504 "src/core/security/credentials_posix.c",
1505 "src/core/security/credentials_win32.c",
1506 "src/core/security/google_default_credentials.c",
1507 "src/core/security/handshake.c",
1508 "src/core/security/json_token.c",
1509 "src/core/security/jwt_verifier.c",
1510 "src/core/security/secure_endpoint.c",
1511 "src/core/security/security_connector.c",
1512 "src/core/security/security_context.c",
1513 "src/core/security/server_auth_filter.c",
1514 "src/core/security/server_secure_chttp2.c",
1515 "src/core/surface/init_secure.c",
1516 "src/core/surface/secure_channel_create.c",
1517 "src/core/tsi/fake_transport_security.c",
1518 "src/core/tsi/ssl_transport_security.c",
1519 "src/core/tsi/transport_security.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001520 "src/core/census/context.c",
1521 "src/core/census/initialize.c",
Alistair Veitch77715442016-02-22 14:20:25 -08001522 "src/core/census/mlog.c",
Alistair Veitche6d0ad32015-08-13 09:59:48 -07001523 "src/core/census/operation.c",
Nicolas "Pixel" Noblefa132c22016-01-31 09:31:15 +01001524 "src/core/census/placeholders.c",
Alistair Veitch0383d492015-07-26 15:29:00 -07001525 "src/core/census/tracing.c",
Craig Tillereb841e22016-02-11 15:49:16 -08001526 "third_party/nanopb/pb_common.c",
1527 "third_party/nanopb/pb_decode.c",
1528 "third_party/nanopb/pb_encode.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001529 ],
1530 hdrs = [
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001531 "include/grpc/grpc_security.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001532 "include/grpc/byte_buffer.h",
1533 "include/grpc/byte_buffer_reader.h",
1534 "include/grpc/compression.h",
1535 "include/grpc/grpc.h",
1536 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001537 "include/grpc/impl/codegen/byte_buffer.h",
1538 "include/grpc/impl/codegen/compression_types.h",
1539 "include/grpc/impl/codegen/connectivity_state.h",
1540 "include/grpc/impl/codegen/grpc_types.h",
1541 "include/grpc/impl/codegen/propagation_bits.h",
1542 "include/grpc/impl/codegen/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001543 "include/grpc/census.h",
Hongyu Chene09dc782015-08-21 11:28:33 -07001544 "src/core/census/grpc_filter.h",
Craig Tiller178edfa2016-02-17 20:54:46 -08001545 "src/core/census/grpc_plugin.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001546 "src/core/channel/channel_args.h",
1547 "src/core/channel/channel_stack.h",
Craig Tiller178edfa2016-02-17 20:54:46 -08001548 "src/core/channel/channel_stack_builder.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001549 "src/core/channel/client_channel.h",
David Garcia Quintas8a187092015-07-01 14:52:44 -07001550 "src/core/channel/compress_filter.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001551 "src/core/channel/connected_channel.h",
1552 "src/core/channel/context.h",
1553 "src/core/channel/http_client_filter.h",
1554 "src/core/channel/http_server_filter.h",
Craig Tillerca1593a2015-11-02 14:08:33 -08001555 "src/core/channel/subchannel_call_holder.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001556 "src/core/client_config/client_config.h",
1557 "src/core/client_config/connector.h",
yang-ga6124122015-11-05 22:36:20 -08001558 "src/core/client_config/initial_connect_string.h",
Craig Tillereb841e22016-02-11 15:49:16 -08001559 "src/core/client_config/lb_policies/load_balancer_api.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001560 "src/core/client_config/lb_policies/pick_first.h",
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001561 "src/core/client_config/lb_policies/round_robin.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001562 "src/core/client_config/lb_policy.h",
David Garcia Quintas5c4543d2015-09-03 15:49:56 -07001563 "src/core/client_config/lb_policy_factory.h",
1564 "src/core/client_config/lb_policy_registry.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001565 "src/core/client_config/resolver.h",
1566 "src/core/client_config/resolver_factory.h",
1567 "src/core/client_config/resolver_registry.h",
1568 "src/core/client_config/resolvers/dns_resolver.h",
Craig Tiller698d00c2015-07-20 12:32:58 -07001569 "src/core/client_config/resolvers/sockaddr_resolver.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001570 "src/core/client_config/subchannel.h",
1571 "src/core/client_config/subchannel_factory.h",
Craig Tiller694cf8b2016-01-15 21:13:25 -08001572 "src/core/client_config/subchannel_index.h",
Craig Tillerc7b5f762015-06-27 11:48:42 -07001573 "src/core/client_config/uri_parser.h",
Craig Tillerebdef9d2015-11-19 17:09:49 -08001574 "src/core/compression/algorithm_metadata.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001575 "src/core/compression/message_compress.h",
1576 "src/core/debug/trace.h",
Matthew Iselin1824f052016-02-10 12:16:06 +11001577 "src/core/http/format_request.h",
1578 "src/core/http/httpcli.h",
1579 "src/core/http/parser.h",
Craig Tiller298751c2015-09-22 09:41:05 -07001580 "src/core/iomgr/closure.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001581 "src/core/iomgr/endpoint.h",
1582 "src/core/iomgr/endpoint_pair.h",
Craig Tiller298751c2015-09-22 09:41:05 -07001583 "src/core/iomgr/exec_ctx.h",
David Garcia Quintas4bc34632015-10-07 16:12:35 -07001584 "src/core/iomgr/executor.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001585 "src/core/iomgr/fd_posix.h",
1586 "src/core/iomgr/iocp_windows.h",
1587 "src/core/iomgr/iomgr.h",
1588 "src/core/iomgr/iomgr_internal.h",
1589 "src/core/iomgr/iomgr_posix.h",
1590 "src/core/iomgr/pollset.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001591 "src/core/iomgr/pollset_posix.h",
1592 "src/core/iomgr/pollset_set.h",
1593 "src/core/iomgr/pollset_set_posix.h",
1594 "src/core/iomgr/pollset_set_windows.h",
1595 "src/core/iomgr/pollset_windows.h",
1596 "src/core/iomgr/resolve_address.h",
1597 "src/core/iomgr/sockaddr.h",
1598 "src/core/iomgr/sockaddr_posix.h",
1599 "src/core/iomgr/sockaddr_utils.h",
1600 "src/core/iomgr/sockaddr_win32.h",
1601 "src/core/iomgr/socket_utils_posix.h",
1602 "src/core/iomgr/socket_windows.h",
1603 "src/core/iomgr/tcp_client.h",
1604 "src/core/iomgr/tcp_posix.h",
1605 "src/core/iomgr/tcp_server.h",
1606 "src/core/iomgr/tcp_windows.h",
1607 "src/core/iomgr/time_averaged_stats.h",
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001608 "src/core/iomgr/timer.h",
1609 "src/core/iomgr/timer_heap.h",
Robbie Shade69535292015-07-10 14:27:34 -04001610 "src/core/iomgr/udp_server.h",
ahedberg43df2952016-03-18 10:46:38 -04001611 "src/core/iomgr/unix_sockets_posix.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001612 "src/core/iomgr/wakeup_fd_pipe.h",
1613 "src/core/iomgr/wakeup_fd_posix.h",
Craig Tiller73b66062015-09-09 09:34:46 -07001614 "src/core/iomgr/workqueue.h",
1615 "src/core/iomgr/workqueue_posix.h",
1616 "src/core/iomgr/workqueue_windows.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001617 "src/core/json/json.h",
1618 "src/core/json/json_common.h",
1619 "src/core/json/json_reader.h",
1620 "src/core/json/json_writer.h",
Craig Tillereb841e22016-02-11 15:49:16 -08001621 "src/core/proto/grpc/lb/v0/load_balancer.pb.h",
Hongyu Chenbeb580b2015-08-25 16:19:33 -07001622 "src/core/statistics/census_interface.h",
1623 "src/core/statistics/census_rpc_stats.h",
Masood Malekghassemi92298102015-08-20 18:50:17 -07001624 "src/core/surface/api_trace.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001625 "src/core/surface/call.h",
David Garcia Quintas0c331882015-10-08 14:51:54 -07001626 "src/core/surface/call_test_only.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001627 "src/core/surface/channel.h",
Craig Tiller178edfa2016-02-17 20:54:46 -08001628 "src/core/surface/channel_init.h",
1629 "src/core/surface/channel_stack_type.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001630 "src/core/surface/completion_queue.h",
1631 "src/core/surface/event_string.h",
1632 "src/core/surface/init.h",
Craig Tiller178edfa2016-02-17 20:54:46 -08001633 "src/core/surface/lame_client.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001634 "src/core/surface/server.h",
1635 "src/core/surface/surface_trace.h",
Craig Tillerca1593a2015-11-02 14:08:33 -08001636 "src/core/transport/byte_stream.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001637 "src/core/transport/chttp2/alpn.h",
1638 "src/core/transport/chttp2/bin_encoder.h",
1639 "src/core/transport/chttp2/frame.h",
1640 "src/core/transport/chttp2/frame_data.h",
1641 "src/core/transport/chttp2/frame_goaway.h",
1642 "src/core/transport/chttp2/frame_ping.h",
1643 "src/core/transport/chttp2/frame_rst_stream.h",
1644 "src/core/transport/chttp2/frame_settings.h",
1645 "src/core/transport/chttp2/frame_window_update.h",
Craig Tillerca1593a2015-11-02 14:08:33 -08001646 "src/core/transport/chttp2/hpack_encoder.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001647 "src/core/transport/chttp2/hpack_parser.h",
1648 "src/core/transport/chttp2/hpack_table.h",
1649 "src/core/transport/chttp2/http2_errors.h",
1650 "src/core/transport/chttp2/huffsyms.h",
Nicolas "Pixel" Nobled35f93d2015-06-27 00:57:29 +02001651 "src/core/transport/chttp2/incoming_metadata.h",
1652 "src/core/transport/chttp2/internal.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001653 "src/core/transport/chttp2/status_conversion.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001654 "src/core/transport/chttp2/stream_map.h",
1655 "src/core/transport/chttp2/timeout_encoding.h",
1656 "src/core/transport/chttp2/varint.h",
1657 "src/core/transport/chttp2_transport.h",
Craig Tiller08a1cf82015-06-29 09:37:52 -07001658 "src/core/transport/connectivity_state.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001659 "src/core/transport/metadata.h",
Craig Tillerca1593a2015-11-02 14:08:33 -08001660 "src/core/transport/metadata_batch.h",
Craig Tiller2e7687c2015-11-18 14:56:46 -08001661 "src/core/transport/static_metadata.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001662 "src/core/transport/transport.h",
1663 "src/core/transport/transport_impl.h",
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +01001664 "src/core/security/auth_filters.h",
Craig Tiller521423c2016-02-22 22:22:22 -08001665 "src/core/security/b64.h",
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +01001666 "src/core/security/credentials.h",
1667 "src/core/security/handshake.h",
1668 "src/core/security/json_token.h",
1669 "src/core/security/jwt_verifier.h",
1670 "src/core/security/secure_endpoint.h",
1671 "src/core/security/security_connector.h",
1672 "src/core/security/security_context.h",
1673 "src/core/tsi/fake_transport_security.h",
1674 "src/core/tsi/ssl_transport_security.h",
1675 "src/core/tsi/ssl_types.h",
1676 "src/core/tsi/transport_security.h",
1677 "src/core/tsi/transport_security_interface.h",
Alistair Veitch1c09acc2015-08-31 16:57:32 -07001678 "src/core/census/aggregation.h",
Alistair Veitch77715442016-02-22 14:20:25 -08001679 "src/core/census/mlog.h",
Alistair Veitch9a099822015-08-27 13:16:00 -07001680 "src/core/census/rpc_metric_id.h",
Craig Tillereb841e22016-02-11 15:49:16 -08001681 "third_party/nanopb/pb.h",
1682 "third_party/nanopb/pb_common.h",
1683 "third_party/nanopb/pb_decode.h",
1684 "third_party/nanopb/pb_encode.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001685 ],
1686 includes = [
1687 "include",
1688 ".",
1689 ],
1690 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001691 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07001692 "//external:libssl_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001693 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07001694 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07001695)
1696
1697
1698
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001699cc_binary(
1700 name = "grpc_cpp_plugin",
1701 srcs = [
1702 "src/compiler/cpp_plugin.cc",
1703 ],
1704 deps = [
1705 "//external:protobuf_compiler",
1706 ":grpc_plugin_support",
1707 ],
1708)
1709
1710
1711cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07001712 name = "grpc_csharp_plugin",
1713 srcs = [
1714 "src/compiler/csharp_plugin.cc",
1715 ],
1716 deps = [
1717 "//external:protobuf_compiler",
1718 ":grpc_plugin_support",
1719 ],
1720)
1721
1722
1723cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001724 name = "grpc_objective_c_plugin",
1725 srcs = [
1726 "src/compiler/objective_c_plugin.cc",
1727 ],
1728 deps = [
1729 "//external:protobuf_compiler",
1730 ":grpc_plugin_support",
1731 ],
1732)
1733
1734
1735cc_binary(
1736 name = "grpc_python_plugin",
1737 srcs = [
1738 "src/compiler/python_plugin.cc",
1739 ],
1740 deps = [
1741 "//external:protobuf_compiler",
1742 ":grpc_plugin_support",
1743 ],
1744)
1745
1746
1747cc_binary(
1748 name = "grpc_ruby_plugin",
1749 srcs = [
1750 "src/compiler/ruby_plugin.cc",
1751 ],
1752 deps = [
1753 "//external:protobuf_compiler",
1754 ":grpc_plugin_support",
1755 ],
1756)
1757
1758
1759
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001760
1761
Jorge Canizales140bca82015-06-20 09:47:00 -07001762
Jorge Canizales91e67a22015-06-24 13:50:04 -07001763
1764
Jorge Canizales44dc4232015-06-19 16:30:31 -07001765objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07001766
Jorge Canizales44dc4232015-06-19 16:30:31 -07001767rx_library_path = objc_path + "/RxLibrary"
1768
1769objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001770 name = "rx_library",
1771 hdrs = glob([
1772 rx_library_path + "/*.h",
1773 rx_library_path + "/transformations/*.h",
1774 ]),
1775 srcs = glob([
1776 rx_library_path + "/*.m",
1777 rx_library_path + "/transformations/*.m",
1778 ]),
1779 includes = [objc_path],
1780 deps = [
1781 ":rx_library_private",
1782 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001783)
1784
1785objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07001786 name = "rx_library_private",
1787 hdrs = glob([rx_library_path + "/private/*.h"]),
1788 srcs = glob([rx_library_path + "/private/*.m"]),
1789 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07001790)
Jorge Canizales866255e2015-06-20 18:58:38 -07001791
1792objc_client_path = objc_path + "/GRPCClient"
1793
1794objc_library(
1795 name = "grpc_client",
1796 hdrs = glob([
1797 objc_client_path + "/*.h",
1798 objc_client_path + "/private/*.h",
1799 ]),
1800 srcs = glob([
1801 objc_client_path + "/*.m",
1802 objc_client_path + "/private/*.m",
1803 ]),
1804 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001805 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07001806 deps = [
1807 ":grpc_objc",
1808 ":rx_library",
1809 ],
1810)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07001811
1812objc_bundle_library(
1813 # The choice of name is signicant here, since it determines the bundle name.
1814 name = "gRPCCertificates",
1815 resources = ["etc/roots.pem"],
1816)
Jorge Canizales50f19822015-06-28 23:48:30 -07001817
1818proto_objc_rpc_path = objc_path + "/ProtoRPC"
1819
1820objc_library(
1821 name = "proto_objc_rpc",
1822 hdrs = glob([
1823 proto_objc_rpc_path + "/*.h",
1824 ]),
1825 srcs = glob([
1826 proto_objc_rpc_path + "/*.m",
1827 ]),
1828 includes = [objc_path],
1829 deps = [
1830 ":grpc_client",
1831 ":rx_library",
1832 "//external:protobuf_objc",
1833 ],
1834)