blob: b7044c5e68508a069f149b18bb13c5e006f505d0 [file] [log] [blame]
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001# GRPC Bazel BUILD file.
Jorge Canizales3beb2402015-07-02 01:30:33 -07002# This currently builds C, C++ and Objective-C code.
Nicolas "Pixel" Nobled49893d2015-04-21 04:57:45 +02003# This file has been automatically generated from a template file.
4# Please look at the templates directory instead.
murgatroid99f680af02015-06-22 11:20:24 -07005# This file can be regenerated from the template by running
6# tools/buildgen/generate_projects.sh
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02007
8# Copyright 2015, Google Inc.
9# All rights reserved.
10#
11# Redistribution and use in source and binary forms, with or without
12# modification, are permitted provided that the following conditions are
13# met:
14#
15# * Redistributions of source code must retain the above copyright
16# notice, this list of conditions and the following disclaimer.
17# * Redistributions in binary form must reproduce the above
18# copyright notice, this list of conditions and the following disclaimer
19# in the documentation and/or other materials provided with the
20# distribution.
21# * Neither the name of Google Inc. nor the names of its
22# contributors may be used to endorse or promote products derived from
23# this software without specific prior written permission.
24#
25# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
37licenses(["notice"]) # 3-clause BSD
38
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070039package(default_visibility = ["//visibility:public"])
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020040
41
42
43
Rob Earhartb7b8d052016-03-29 11:35:29 -070044
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020045cc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -080046 name = "gpr",
47 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -070048 "src/core/lib/profiling/timers.h",
49 "src/core/lib/support/backoff.h",
50 "src/core/lib/support/block_annotate.h",
51 "src/core/lib/support/env.h",
Craig Tillerf23078c2016-03-25 17:07:29 -070052 "src/core/lib/support/murmur_hash.h",
53 "src/core/lib/support/stack_lockfree.h",
54 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070055 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -070056 "src/core/lib/support/thd_internal.h",
57 "src/core/lib/support/time_precise.h",
58 "src/core/lib/support/tmpfile.h",
59 "src/core/lib/profiling/basic_timers.c",
60 "src/core/lib/profiling/stap_timers.c",
61 "src/core/lib/support/alloc.c",
62 "src/core/lib/support/avl.c",
63 "src/core/lib/support/backoff.c",
64 "src/core/lib/support/cmdline.c",
65 "src/core/lib/support/cpu_iphone.c",
66 "src/core/lib/support/cpu_linux.c",
67 "src/core/lib/support/cpu_posix.c",
68 "src/core/lib/support/cpu_windows.c",
69 "src/core/lib/support/env_linux.c",
70 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070071 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070072 "src/core/lib/support/histogram.c",
73 "src/core/lib/support/host_port.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070074 "src/core/lib/support/log.c",
75 "src/core/lib/support/log_android.c",
76 "src/core/lib/support/log_linux.c",
77 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070078 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070079 "src/core/lib/support/murmur_hash.c",
80 "src/core/lib/support/slice.c",
81 "src/core/lib/support/slice_buffer.c",
82 "src/core/lib/support/stack_lockfree.c",
83 "src/core/lib/support/string.c",
84 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -070085 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070086 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070087 "src/core/lib/support/subprocess_posix.c",
88 "src/core/lib/support/subprocess_windows.c",
89 "src/core/lib/support/sync.c",
90 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070091 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070092 "src/core/lib/support/thd.c",
93 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070094 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070095 "src/core/lib/support/time.c",
96 "src/core/lib/support/time_posix.c",
97 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070098 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070099 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200100 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700101 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700102 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700103 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -0800104 ],
105 hdrs = [
106 "include/grpc/support/alloc.h",
107 "include/grpc/support/atm.h",
108 "include/grpc/support/atm_gcc_atomic.h",
109 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700110 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800111 "include/grpc/support/avl.h",
112 "include/grpc/support/cmdline.h",
113 "include/grpc/support/cpu.h",
114 "include/grpc/support/histogram.h",
115 "include/grpc/support/host_port.h",
116 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700117 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800118 "include/grpc/support/port_platform.h",
119 "include/grpc/support/slice.h",
120 "include/grpc/support/slice_buffer.h",
121 "include/grpc/support/string_util.h",
122 "include/grpc/support/subprocess.h",
123 "include/grpc/support/sync.h",
124 "include/grpc/support/sync_generic.h",
125 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700126 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800127 "include/grpc/support/thd.h",
128 "include/grpc/support/time.h",
129 "include/grpc/support/tls.h",
130 "include/grpc/support/tls_gcc.h",
131 "include/grpc/support/tls_msvc.h",
132 "include/grpc/support/tls_pthread.h",
133 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700134 "include/grpc/impl/codegen/alloc.h",
135 "include/grpc/impl/codegen/atm.h",
136 "include/grpc/impl/codegen/atm_gcc_atomic.h",
137 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700138 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700139 "include/grpc/impl/codegen/log.h",
140 "include/grpc/impl/codegen/port_platform.h",
141 "include/grpc/impl/codegen/slice.h",
142 "include/grpc/impl/codegen/slice_buffer.h",
143 "include/grpc/impl/codegen/sync.h",
144 "include/grpc/impl/codegen/sync_generic.h",
145 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700146 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700147 "include/grpc/impl/codegen/time.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800148 ],
149 includes = [
150 "include",
151 ".",
152 ],
153 deps = [
154 ],
155)
156
157
Rob Earhartb7b8d052016-03-29 11:35:29 -0700158
Craig Tillerda179ce2016-02-09 12:01:53 -0800159cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700160 name = "grpc",
161 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700162 "src/core/lib/channel/channel_args.h",
163 "src/core/lib/channel/channel_stack.h",
164 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700165 "src/core/lib/channel/compress_filter.h",
166 "src/core/lib/channel/connected_channel.h",
167 "src/core/lib/channel/context.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700168 "src/core/lib/channel/handshaker.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700169 "src/core/lib/channel/http_client_filter.h",
170 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700171 "src/core/lib/compression/algorithm_metadata.h",
172 "src/core/lib/compression/message_compress.h",
173 "src/core/lib/debug/trace.h",
174 "src/core/lib/http/format_request.h",
175 "src/core/lib/http/httpcli.h",
176 "src/core/lib/http/parser.h",
177 "src/core/lib/iomgr/closure.h",
178 "src/core/lib/iomgr/endpoint.h",
179 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700180 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700181 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700182 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700183 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700184 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700185 "src/core/lib/iomgr/exec_ctx.h",
186 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700187 "src/core/lib/iomgr/iocp_windows.h",
188 "src/core/lib/iomgr/iomgr.h",
189 "src/core/lib/iomgr/iomgr_internal.h",
190 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -0700191 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700192 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700193 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700194 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700195 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700196 "src/core/lib/iomgr/pollset_set_windows.h",
197 "src/core/lib/iomgr/pollset_windows.h",
198 "src/core/lib/iomgr/resolve_address.h",
199 "src/core/lib/iomgr/sockaddr.h",
200 "src/core/lib/iomgr/sockaddr_posix.h",
201 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700202 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700203 "src/core/lib/iomgr/socket_utils_posix.h",
204 "src/core/lib/iomgr/socket_windows.h",
205 "src/core/lib/iomgr/tcp_client.h",
206 "src/core/lib/iomgr/tcp_posix.h",
207 "src/core/lib/iomgr/tcp_server.h",
208 "src/core/lib/iomgr/tcp_windows.h",
209 "src/core/lib/iomgr/time_averaged_stats.h",
210 "src/core/lib/iomgr/timer.h",
211 "src/core/lib/iomgr/timer_heap.h",
212 "src/core/lib/iomgr/udp_server.h",
213 "src/core/lib/iomgr/unix_sockets_posix.h",
214 "src/core/lib/iomgr/wakeup_fd_pipe.h",
215 "src/core/lib/iomgr/wakeup_fd_posix.h",
216 "src/core/lib/iomgr/workqueue.h",
217 "src/core/lib/iomgr/workqueue_posix.h",
218 "src/core/lib/iomgr/workqueue_windows.h",
219 "src/core/lib/json/json.h",
220 "src/core/lib/json/json_common.h",
221 "src/core/lib/json/json_reader.h",
222 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700223 "src/core/lib/surface/api_trace.h",
224 "src/core/lib/surface/call.h",
225 "src/core/lib/surface/call_test_only.h",
226 "src/core/lib/surface/channel.h",
227 "src/core/lib/surface/channel_init.h",
228 "src/core/lib/surface/channel_stack_type.h",
229 "src/core/lib/surface/completion_queue.h",
230 "src/core/lib/surface/event_string.h",
231 "src/core/lib/surface/init.h",
232 "src/core/lib/surface/lame_client.h",
233 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700234 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700235 "src/core/lib/transport/connectivity_state.h",
236 "src/core/lib/transport/metadata.h",
237 "src/core/lib/transport/metadata_batch.h",
238 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -0400239 "src/core/lib/transport/timeout_encoding.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700240 "src/core/lib/transport/transport.h",
241 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700242 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700243 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
244 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
245 "src/core/ext/transport/chttp2/transport/frame.h",
246 "src/core/ext/transport/chttp2/transport/frame_data.h",
247 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
248 "src/core/ext/transport/chttp2/transport/frame_ping.h",
249 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
250 "src/core/ext/transport/chttp2/transport/frame_settings.h",
251 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
252 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
253 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
254 "src/core/ext/transport/chttp2/transport/hpack_table.h",
255 "src/core/ext/transport/chttp2/transport/http2_errors.h",
256 "src/core/ext/transport/chttp2/transport/huffsyms.h",
257 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
258 "src/core/ext/transport/chttp2/transport/internal.h",
259 "src/core/ext/transport/chttp2/transport/status_conversion.h",
260 "src/core/ext/transport/chttp2/transport/stream_map.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700261 "src/core/ext/transport/chttp2/transport/varint.h",
262 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700263 "src/core/lib/security/context/security_context.h",
264 "src/core/lib/security/credentials/composite/composite_credentials.h",
265 "src/core/lib/security/credentials/credentials.h",
266 "src/core/lib/security/credentials/fake/fake_credentials.h",
267 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
268 "src/core/lib/security/credentials/iam/iam_credentials.h",
269 "src/core/lib/security/credentials/jwt/json_token.h",
270 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
271 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
272 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
273 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
274 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
275 "src/core/lib/security/transport/auth_filters.h",
276 "src/core/lib/security/transport/handshake.h",
277 "src/core/lib/security/transport/secure_endpoint.h",
278 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -0700279 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700280 "src/core/lib/security/util/b64.h",
281 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700282 "src/core/lib/tsi/fake_transport_security.h",
283 "src/core/lib/tsi/ssl_transport_security.h",
284 "src/core/lib/tsi/ssl_types.h",
285 "src/core/lib/tsi/transport_security.h",
286 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700287 "src/core/ext/client_config/client_channel.h",
288 "src/core/ext/client_config/client_channel_factory.h",
289 "src/core/ext/client_config/client_config.h",
290 "src/core/ext/client_config/connector.h",
291 "src/core/ext/client_config/initial_connect_string.h",
292 "src/core/ext/client_config/lb_policy.h",
293 "src/core/ext/client_config/lb_policy_factory.h",
294 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700295 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700296 "src/core/ext/client_config/resolver.h",
297 "src/core/ext/client_config/resolver_factory.h",
298 "src/core/ext/client_config/resolver_registry.h",
299 "src/core/ext/client_config/subchannel.h",
300 "src/core/ext/client_config/subchannel_call_holder.h",
301 "src/core/ext/client_config/subchannel_index.h",
302 "src/core/ext/client_config/uri_parser.h",
David Garcia Quintasb2e986b2016-06-15 23:55:50 -0700303 "src/core/ext/lb_policy/grpclb/grpclb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700304 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700305 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700306 "src/core/ext/load_reporting/load_reporting.h",
307 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700308 "src/core/ext/census/aggregation.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700309 "src/core/ext/census/base_resources.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700310 "src/core/ext/census/census_interface.h",
311 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700312 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700313 "src/core/ext/census/grpc_filter.h",
314 "src/core/ext/census/mlog.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700315 "src/core/ext/census/resource.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700316 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700317 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700318 "src/core/lib/channel/channel_args.c",
319 "src/core/lib/channel/channel_stack.c",
320 "src/core/lib/channel/channel_stack_builder.c",
321 "src/core/lib/channel/compress_filter.c",
322 "src/core/lib/channel/connected_channel.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700323 "src/core/lib/channel/handshaker.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700324 "src/core/lib/channel/http_client_filter.c",
325 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -0700326 "src/core/lib/compression/compression.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700327 "src/core/lib/compression/message_compress.c",
328 "src/core/lib/debug/trace.c",
329 "src/core/lib/http/format_request.c",
330 "src/core/lib/http/httpcli.c",
331 "src/core/lib/http/parser.c",
332 "src/core/lib/iomgr/closure.c",
333 "src/core/lib/iomgr/endpoint.c",
334 "src/core/lib/iomgr/endpoint_pair_posix.c",
335 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -0700336 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700337 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700338 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700339 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700340 "src/core/lib/iomgr/ev_posix.c",
341 "src/core/lib/iomgr/exec_ctx.c",
342 "src/core/lib/iomgr/executor.c",
343 "src/core/lib/iomgr/iocp_windows.c",
344 "src/core/lib/iomgr/iomgr.c",
345 "src/core/lib/iomgr/iomgr_posix.c",
346 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -0700347 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700348 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700349 "src/core/lib/iomgr/polling_entity.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700350 "src/core/lib/iomgr/pollset_set_windows.c",
351 "src/core/lib/iomgr/pollset_windows.c",
352 "src/core/lib/iomgr/resolve_address_posix.c",
353 "src/core/lib/iomgr/resolve_address_windows.c",
354 "src/core/lib/iomgr/sockaddr_utils.c",
355 "src/core/lib/iomgr/socket_utils_common_posix.c",
356 "src/core/lib/iomgr/socket_utils_linux.c",
357 "src/core/lib/iomgr/socket_utils_posix.c",
358 "src/core/lib/iomgr/socket_windows.c",
359 "src/core/lib/iomgr/tcp_client_posix.c",
360 "src/core/lib/iomgr/tcp_client_windows.c",
361 "src/core/lib/iomgr/tcp_posix.c",
362 "src/core/lib/iomgr/tcp_server_posix.c",
363 "src/core/lib/iomgr/tcp_server_windows.c",
364 "src/core/lib/iomgr/tcp_windows.c",
365 "src/core/lib/iomgr/time_averaged_stats.c",
366 "src/core/lib/iomgr/timer.c",
367 "src/core/lib/iomgr/timer_heap.c",
368 "src/core/lib/iomgr/udp_server.c",
369 "src/core/lib/iomgr/unix_sockets_posix.c",
370 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
371 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
372 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
373 "src/core/lib/iomgr/wakeup_fd_pipe.c",
374 "src/core/lib/iomgr/wakeup_fd_posix.c",
375 "src/core/lib/iomgr/workqueue_posix.c",
376 "src/core/lib/iomgr/workqueue_windows.c",
377 "src/core/lib/json/json.c",
378 "src/core/lib/json/json_reader.c",
379 "src/core/lib/json/json_string.c",
380 "src/core/lib/json/json_writer.c",
381 "src/core/lib/surface/alarm.c",
382 "src/core/lib/surface/api_trace.c",
383 "src/core/lib/surface/byte_buffer.c",
384 "src/core/lib/surface/byte_buffer_reader.c",
385 "src/core/lib/surface/call.c",
386 "src/core/lib/surface/call_details.c",
387 "src/core/lib/surface/call_log_batch.c",
388 "src/core/lib/surface/channel.c",
389 "src/core/lib/surface/channel_init.c",
390 "src/core/lib/surface/channel_ping.c",
391 "src/core/lib/surface/channel_stack_type.c",
392 "src/core/lib/surface/completion_queue.c",
393 "src/core/lib/surface/event_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700394 "src/core/lib/surface/lame_client.c",
395 "src/core/lib/surface/metadata_array.c",
396 "src/core/lib/surface/server.c",
397 "src/core/lib/surface/validate_metadata.c",
398 "src/core/lib/surface/version.c",
399 "src/core/lib/transport/byte_stream.c",
400 "src/core/lib/transport/connectivity_state.c",
401 "src/core/lib/transport/metadata.c",
402 "src/core/lib/transport/metadata_batch.c",
403 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -0400404 "src/core/lib/transport/timeout_encoding.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700405 "src/core/lib/transport/transport.c",
406 "src/core/lib/transport/transport_op_string.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700407 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700408 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700409 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
410 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700411 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
412 "src/core/ext/transport/chttp2/transport/frame_data.c",
413 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
414 "src/core/ext/transport/chttp2/transport/frame_ping.c",
415 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
416 "src/core/ext/transport/chttp2/transport/frame_settings.c",
417 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
418 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
419 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
420 "src/core/ext/transport/chttp2/transport/hpack_table.c",
421 "src/core/ext/transport/chttp2/transport/huffsyms.c",
422 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
423 "src/core/ext/transport/chttp2/transport/parsing.c",
424 "src/core/ext/transport/chttp2/transport/status_conversion.c",
425 "src/core/ext/transport/chttp2/transport/stream_lists.c",
426 "src/core/ext/transport/chttp2/transport/stream_map.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700427 "src/core/ext/transport/chttp2/transport/varint.c",
428 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700429 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700430 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700431 "src/core/lib/security/context/security_context.c",
432 "src/core/lib/security/credentials/composite/composite_credentials.c",
433 "src/core/lib/security/credentials/credentials.c",
434 "src/core/lib/security/credentials/credentials_metadata.c",
435 "src/core/lib/security/credentials/fake/fake_credentials.c",
436 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -0700437 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700438 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
439 "src/core/lib/security/credentials/iam/iam_credentials.c",
440 "src/core/lib/security/credentials/jwt/json_token.c",
441 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
442 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
443 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
444 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
445 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
446 "src/core/lib/security/transport/client_auth_filter.c",
447 "src/core/lib/security/transport/handshake.c",
448 "src/core/lib/security/transport/secure_endpoint.c",
449 "src/core/lib/security/transport/security_connector.c",
450 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -0700451 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700452 "src/core/lib/security/util/b64.c",
453 "src/core/lib/security/util/json_util.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700454 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700455 "src/core/lib/tsi/fake_transport_security.c",
456 "src/core/lib/tsi/ssl_transport_security.c",
457 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700458 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
459 "src/core/ext/client_config/channel_connectivity.c",
460 "src/core/ext/client_config/client_channel.c",
461 "src/core/ext/client_config/client_channel_factory.c",
462 "src/core/ext/client_config/client_config.c",
463 "src/core/ext/client_config/client_config_plugin.c",
464 "src/core/ext/client_config/connector.c",
465 "src/core/ext/client_config/default_initial_connect_string.c",
466 "src/core/ext/client_config/initial_connect_string.c",
467 "src/core/ext/client_config/lb_policy.c",
468 "src/core/ext/client_config/lb_policy_factory.c",
469 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700470 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700471 "src/core/ext/client_config/resolver.c",
472 "src/core/ext/client_config/resolver_factory.c",
473 "src/core/ext/client_config/resolver_registry.c",
474 "src/core/ext/client_config/subchannel.c",
475 "src/core/ext/client_config/subchannel_call_holder.c",
476 "src/core/ext/client_config/subchannel_index.c",
477 "src/core/ext/client_config/uri_parser.c",
478 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -0700479 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700480 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700481 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700482 "src/core/ext/lb_policy/grpclb/grpclb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700483 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700484 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700485 "src/core/ext/lb_policy/pick_first/pick_first.c",
486 "src/core/ext/lb_policy/round_robin/round_robin.c",
487 "src/core/ext/resolver/dns/native/dns_resolver.c",
488 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700489 "src/core/ext/load_reporting/load_reporting.c",
490 "src/core/ext/load_reporting/load_reporting_filter.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700491 "src/core/ext/census/base_resources.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700492 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700493 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700494 "src/core/ext/census/grpc_context.c",
495 "src/core/ext/census/grpc_filter.c",
496 "src/core/ext/census/grpc_plugin.c",
497 "src/core/ext/census/initialize.c",
498 "src/core/ext/census/mlog.c",
499 "src/core/ext/census/operation.c",
500 "src/core/ext/census/placeholders.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700501 "src/core/ext/census/resource.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700502 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700503 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700504 ],
505 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700506 "include/grpc/byte_buffer.h",
507 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700508 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700509 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700510 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700511 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700512 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700513 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700514 "include/grpc/impl/codegen/compression_types.h",
515 "include/grpc/impl/codegen/connectivity_state.h",
516 "include/grpc/impl/codegen/grpc_types.h",
517 "include/grpc/impl/codegen/propagation_bits.h",
518 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700519 "include/grpc/impl/codegen/alloc.h",
520 "include/grpc/impl/codegen/atm.h",
521 "include/grpc/impl/codegen/atm_gcc_atomic.h",
522 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700523 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700524 "include/grpc/impl/codegen/log.h",
525 "include/grpc/impl/codegen/port_platform.h",
526 "include/grpc/impl/codegen/slice.h",
527 "include/grpc/impl/codegen/slice_buffer.h",
528 "include/grpc/impl/codegen/sync.h",
529 "include/grpc/impl/codegen/sync_generic.h",
530 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700531 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700532 "include/grpc/impl/codegen/time.h",
533 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700534 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700535 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700536 ],
537 includes = [
538 "include",
539 ".",
540 ],
541 deps = [
542 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700543 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800544 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700545 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700546 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800547 copts = [
548 "-std=gnu99",
549 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200550)
551
552
Rob Earhartb7b8d052016-03-29 11:35:29 -0700553
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700554cc_library(
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700555 name = "grpc_cronet",
556 srcs = [
557 "src/core/lib/channel/channel_args.h",
558 "src/core/lib/channel/channel_stack.h",
559 "src/core/lib/channel/channel_stack_builder.h",
560 "src/core/lib/channel/compress_filter.h",
561 "src/core/lib/channel/connected_channel.h",
562 "src/core/lib/channel/context.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700563 "src/core/lib/channel/handshaker.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700564 "src/core/lib/channel/http_client_filter.h",
565 "src/core/lib/channel/http_server_filter.h",
566 "src/core/lib/compression/algorithm_metadata.h",
567 "src/core/lib/compression/message_compress.h",
568 "src/core/lib/debug/trace.h",
569 "src/core/lib/http/format_request.h",
570 "src/core/lib/http/httpcli.h",
571 "src/core/lib/http/parser.h",
572 "src/core/lib/iomgr/closure.h",
573 "src/core/lib/iomgr/endpoint.h",
574 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700575 "src/core/lib/iomgr/error.h",
Sree Kuchibhotla492fd962016-06-10 09:03:34 -0700576 "src/core/lib/iomgr/ev_epoll_linux.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700577 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
578 "src/core/lib/iomgr/ev_poll_posix.h",
579 "src/core/lib/iomgr/ev_posix.h",
580 "src/core/lib/iomgr/exec_ctx.h",
581 "src/core/lib/iomgr/executor.h",
582 "src/core/lib/iomgr/iocp_windows.h",
583 "src/core/lib/iomgr/iomgr.h",
584 "src/core/lib/iomgr/iomgr_internal.h",
585 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700586 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700587 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700588 "src/core/lib/iomgr/polling_entity.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700589 "src/core/lib/iomgr/pollset.h",
590 "src/core/lib/iomgr/pollset_set.h",
591 "src/core/lib/iomgr/pollset_set_windows.h",
592 "src/core/lib/iomgr/pollset_windows.h",
593 "src/core/lib/iomgr/resolve_address.h",
594 "src/core/lib/iomgr/sockaddr.h",
595 "src/core/lib/iomgr/sockaddr_posix.h",
596 "src/core/lib/iomgr/sockaddr_utils.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700597 "src/core/lib/iomgr/sockaddr_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700598 "src/core/lib/iomgr/socket_utils_posix.h",
599 "src/core/lib/iomgr/socket_windows.h",
600 "src/core/lib/iomgr/tcp_client.h",
601 "src/core/lib/iomgr/tcp_posix.h",
602 "src/core/lib/iomgr/tcp_server.h",
603 "src/core/lib/iomgr/tcp_windows.h",
604 "src/core/lib/iomgr/time_averaged_stats.h",
605 "src/core/lib/iomgr/timer.h",
606 "src/core/lib/iomgr/timer_heap.h",
607 "src/core/lib/iomgr/udp_server.h",
608 "src/core/lib/iomgr/unix_sockets_posix.h",
609 "src/core/lib/iomgr/wakeup_fd_pipe.h",
610 "src/core/lib/iomgr/wakeup_fd_posix.h",
611 "src/core/lib/iomgr/workqueue.h",
612 "src/core/lib/iomgr/workqueue_posix.h",
613 "src/core/lib/iomgr/workqueue_windows.h",
614 "src/core/lib/json/json.h",
615 "src/core/lib/json/json_common.h",
616 "src/core/lib/json/json_reader.h",
617 "src/core/lib/json/json_writer.h",
618 "src/core/lib/surface/api_trace.h",
619 "src/core/lib/surface/call.h",
620 "src/core/lib/surface/call_test_only.h",
621 "src/core/lib/surface/channel.h",
622 "src/core/lib/surface/channel_init.h",
623 "src/core/lib/surface/channel_stack_type.h",
624 "src/core/lib/surface/completion_queue.h",
625 "src/core/lib/surface/event_string.h",
626 "src/core/lib/surface/init.h",
627 "src/core/lib/surface/lame_client.h",
628 "src/core/lib/surface/server.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700629 "src/core/lib/transport/byte_stream.h",
630 "src/core/lib/transport/connectivity_state.h",
631 "src/core/lib/transport/metadata.h",
632 "src/core/lib/transport/metadata_batch.h",
633 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -0400634 "src/core/lib/transport/timeout_encoding.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700635 "src/core/lib/transport/transport.h",
636 "src/core/lib/transport/transport_impl.h",
637 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700638 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700639 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
640 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
641 "src/core/ext/transport/chttp2/transport/frame.h",
642 "src/core/ext/transport/chttp2/transport/frame_data.h",
643 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
644 "src/core/ext/transport/chttp2/transport/frame_ping.h",
645 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
646 "src/core/ext/transport/chttp2/transport/frame_settings.h",
647 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
648 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
649 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
650 "src/core/ext/transport/chttp2/transport/hpack_table.h",
651 "src/core/ext/transport/chttp2/transport/http2_errors.h",
652 "src/core/ext/transport/chttp2/transport/huffsyms.h",
653 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
654 "src/core/ext/transport/chttp2/transport/internal.h",
655 "src/core/ext/transport/chttp2/transport/status_conversion.h",
656 "src/core/ext/transport/chttp2/transport/stream_map.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700657 "src/core/ext/transport/chttp2/transport/varint.h",
658 "src/core/ext/transport/chttp2/alpn/alpn.h",
659 "src/core/ext/client_config/client_channel.h",
660 "src/core/ext/client_config/client_channel_factory.h",
661 "src/core/ext/client_config/client_config.h",
662 "src/core/ext/client_config/connector.h",
663 "src/core/ext/client_config/initial_connect_string.h",
664 "src/core/ext/client_config/lb_policy.h",
665 "src/core/ext/client_config/lb_policy_factory.h",
666 "src/core/ext/client_config/lb_policy_registry.h",
667 "src/core/ext/client_config/parse_address.h",
668 "src/core/ext/client_config/resolver.h",
669 "src/core/ext/client_config/resolver_factory.h",
670 "src/core/ext/client_config/resolver_registry.h",
671 "src/core/ext/client_config/subchannel.h",
672 "src/core/ext/client_config/subchannel_call_holder.h",
673 "src/core/ext/client_config/subchannel_index.h",
674 "src/core/ext/client_config/uri_parser.h",
675 "src/core/lib/security/context/security_context.h",
676 "src/core/lib/security/credentials/composite/composite_credentials.h",
677 "src/core/lib/security/credentials/credentials.h",
678 "src/core/lib/security/credentials/fake/fake_credentials.h",
679 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
680 "src/core/lib/security/credentials/iam/iam_credentials.h",
681 "src/core/lib/security/credentials/jwt/json_token.h",
682 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
683 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
684 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
685 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
686 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
687 "src/core/lib/security/transport/auth_filters.h",
688 "src/core/lib/security/transport/handshake.h",
689 "src/core/lib/security/transport/secure_endpoint.h",
690 "src/core/lib/security/transport/security_connector.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700691 "src/core/lib/security/transport/tsi_error.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700692 "src/core/lib/security/util/b64.h",
693 "src/core/lib/security/util/json_util.h",
694 "src/core/lib/tsi/fake_transport_security.h",
695 "src/core/lib/tsi/ssl_transport_security.h",
696 "src/core/lib/tsi/ssl_types.h",
697 "src/core/lib/tsi/transport_security.h",
698 "src/core/lib/tsi/transport_security_interface.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700699 "src/core/lib/surface/init.c",
700 "src/core/lib/channel/channel_args.c",
701 "src/core/lib/channel/channel_stack.c",
702 "src/core/lib/channel/channel_stack_builder.c",
703 "src/core/lib/channel/compress_filter.c",
704 "src/core/lib/channel/connected_channel.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700705 "src/core/lib/channel/handshaker.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700706 "src/core/lib/channel/http_client_filter.c",
707 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintas37e516e2016-06-07 21:23:41 -0700708 "src/core/lib/compression/compression.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700709 "src/core/lib/compression/message_compress.c",
710 "src/core/lib/debug/trace.c",
711 "src/core/lib/http/format_request.c",
712 "src/core/lib/http/httpcli.c",
713 "src/core/lib/http/parser.c",
714 "src/core/lib/iomgr/closure.c",
715 "src/core/lib/iomgr/endpoint.c",
716 "src/core/lib/iomgr/endpoint_pair_posix.c",
717 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700718 "src/core/lib/iomgr/error.c",
Sree Kuchibhotla492fd962016-06-10 09:03:34 -0700719 "src/core/lib/iomgr/ev_epoll_linux.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700720 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
721 "src/core/lib/iomgr/ev_poll_posix.c",
722 "src/core/lib/iomgr/ev_posix.c",
723 "src/core/lib/iomgr/exec_ctx.c",
724 "src/core/lib/iomgr/executor.c",
725 "src/core/lib/iomgr/iocp_windows.c",
726 "src/core/lib/iomgr/iomgr.c",
727 "src/core/lib/iomgr/iomgr_posix.c",
728 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700729 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700730 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700731 "src/core/lib/iomgr/polling_entity.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700732 "src/core/lib/iomgr/pollset_set_windows.c",
733 "src/core/lib/iomgr/pollset_windows.c",
734 "src/core/lib/iomgr/resolve_address_posix.c",
735 "src/core/lib/iomgr/resolve_address_windows.c",
736 "src/core/lib/iomgr/sockaddr_utils.c",
737 "src/core/lib/iomgr/socket_utils_common_posix.c",
738 "src/core/lib/iomgr/socket_utils_linux.c",
739 "src/core/lib/iomgr/socket_utils_posix.c",
740 "src/core/lib/iomgr/socket_windows.c",
741 "src/core/lib/iomgr/tcp_client_posix.c",
742 "src/core/lib/iomgr/tcp_client_windows.c",
743 "src/core/lib/iomgr/tcp_posix.c",
744 "src/core/lib/iomgr/tcp_server_posix.c",
745 "src/core/lib/iomgr/tcp_server_windows.c",
746 "src/core/lib/iomgr/tcp_windows.c",
747 "src/core/lib/iomgr/time_averaged_stats.c",
748 "src/core/lib/iomgr/timer.c",
749 "src/core/lib/iomgr/timer_heap.c",
750 "src/core/lib/iomgr/udp_server.c",
751 "src/core/lib/iomgr/unix_sockets_posix.c",
752 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
753 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
754 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
755 "src/core/lib/iomgr/wakeup_fd_pipe.c",
756 "src/core/lib/iomgr/wakeup_fd_posix.c",
757 "src/core/lib/iomgr/workqueue_posix.c",
758 "src/core/lib/iomgr/workqueue_windows.c",
759 "src/core/lib/json/json.c",
760 "src/core/lib/json/json_reader.c",
761 "src/core/lib/json/json_string.c",
762 "src/core/lib/json/json_writer.c",
763 "src/core/lib/surface/alarm.c",
764 "src/core/lib/surface/api_trace.c",
765 "src/core/lib/surface/byte_buffer.c",
766 "src/core/lib/surface/byte_buffer_reader.c",
767 "src/core/lib/surface/call.c",
768 "src/core/lib/surface/call_details.c",
769 "src/core/lib/surface/call_log_batch.c",
770 "src/core/lib/surface/channel.c",
771 "src/core/lib/surface/channel_init.c",
772 "src/core/lib/surface/channel_ping.c",
773 "src/core/lib/surface/channel_stack_type.c",
774 "src/core/lib/surface/completion_queue.c",
775 "src/core/lib/surface/event_string.c",
776 "src/core/lib/surface/lame_client.c",
777 "src/core/lib/surface/metadata_array.c",
778 "src/core/lib/surface/server.c",
779 "src/core/lib/surface/validate_metadata.c",
780 "src/core/lib/surface/version.c",
781 "src/core/lib/transport/byte_stream.c",
782 "src/core/lib/transport/connectivity_state.c",
783 "src/core/lib/transport/metadata.c",
784 "src/core/lib/transport/metadata_batch.c",
785 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -0400786 "src/core/lib/transport/timeout_encoding.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700787 "src/core/lib/transport/transport.c",
788 "src/core/lib/transport/transport_op_string.c",
789 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
790 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
791 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700792 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700793 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700794 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
795 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
796 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
797 "src/core/ext/transport/chttp2/transport/frame_data.c",
798 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
799 "src/core/ext/transport/chttp2/transport/frame_ping.c",
800 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
801 "src/core/ext/transport/chttp2/transport/frame_settings.c",
802 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
803 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
804 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
805 "src/core/ext/transport/chttp2/transport/hpack_table.c",
806 "src/core/ext/transport/chttp2/transport/huffsyms.c",
807 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
808 "src/core/ext/transport/chttp2/transport/parsing.c",
809 "src/core/ext/transport/chttp2/transport/status_conversion.c",
810 "src/core/ext/transport/chttp2/transport/stream_lists.c",
811 "src/core/ext/transport/chttp2/transport/stream_map.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700812 "src/core/ext/transport/chttp2/transport/varint.c",
813 "src/core/ext/transport/chttp2/transport/writing.c",
814 "src/core/ext/transport/chttp2/alpn/alpn.c",
815 "src/core/ext/client_config/channel_connectivity.c",
816 "src/core/ext/client_config/client_channel.c",
817 "src/core/ext/client_config/client_channel_factory.c",
818 "src/core/ext/client_config/client_config.c",
819 "src/core/ext/client_config/client_config_plugin.c",
820 "src/core/ext/client_config/connector.c",
821 "src/core/ext/client_config/default_initial_connect_string.c",
822 "src/core/ext/client_config/initial_connect_string.c",
823 "src/core/ext/client_config/lb_policy.c",
824 "src/core/ext/client_config/lb_policy_factory.c",
825 "src/core/ext/client_config/lb_policy_registry.c",
826 "src/core/ext/client_config/parse_address.c",
827 "src/core/ext/client_config/resolver.c",
828 "src/core/ext/client_config/resolver_factory.c",
829 "src/core/ext/client_config/resolver_registry.c",
830 "src/core/ext/client_config/subchannel.c",
831 "src/core/ext/client_config/subchannel_call_holder.c",
832 "src/core/ext/client_config/subchannel_index.c",
833 "src/core/ext/client_config/uri_parser.c",
834 "src/core/lib/http/httpcli_security_connector.c",
835 "src/core/lib/security/context/security_context.c",
836 "src/core/lib/security/credentials/composite/composite_credentials.c",
837 "src/core/lib/security/credentials/credentials.c",
838 "src/core/lib/security/credentials/credentials_metadata.c",
839 "src/core/lib/security/credentials/fake/fake_credentials.c",
840 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700841 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700842 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
843 "src/core/lib/security/credentials/iam/iam_credentials.c",
844 "src/core/lib/security/credentials/jwt/json_token.c",
845 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
846 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
847 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
848 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
849 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
850 "src/core/lib/security/transport/client_auth_filter.c",
851 "src/core/lib/security/transport/handshake.c",
852 "src/core/lib/security/transport/secure_endpoint.c",
853 "src/core/lib/security/transport/security_connector.c",
854 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700855 "src/core/lib/security/transport/tsi_error.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700856 "src/core/lib/security/util/b64.c",
857 "src/core/lib/security/util/json_util.c",
858 "src/core/lib/surface/init_secure.c",
859 "src/core/lib/tsi/fake_transport_security.c",
860 "src/core/lib/tsi/ssl_transport_security.c",
861 "src/core/lib/tsi/transport_security.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700862 "src/core/plugin_registry/grpc_cronet_plugin_registry.c",
863 ],
864 hdrs = [
865 "include/grpc/byte_buffer.h",
866 "include/grpc/byte_buffer_reader.h",
867 "include/grpc/compression.h",
868 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700869 "include/grpc/grpc_posix.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700870 "include/grpc/status.h",
871 "include/grpc/impl/codegen/byte_buffer.h",
872 "include/grpc/impl/codegen/byte_buffer_reader.h",
873 "include/grpc/impl/codegen/compression_types.h",
874 "include/grpc/impl/codegen/connectivity_state.h",
875 "include/grpc/impl/codegen/grpc_types.h",
876 "include/grpc/impl/codegen/propagation_bits.h",
877 "include/grpc/impl/codegen/status.h",
878 "include/grpc/impl/codegen/alloc.h",
879 "include/grpc/impl/codegen/atm.h",
880 "include/grpc/impl/codegen/atm_gcc_atomic.h",
881 "include/grpc/impl/codegen/atm_gcc_sync.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700882 "include/grpc/impl/codegen/atm_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700883 "include/grpc/impl/codegen/log.h",
884 "include/grpc/impl/codegen/port_platform.h",
885 "include/grpc/impl/codegen/slice.h",
886 "include/grpc/impl/codegen/slice_buffer.h",
887 "include/grpc/impl/codegen/sync.h",
888 "include/grpc/impl/codegen/sync_generic.h",
889 "include/grpc/impl/codegen/sync_posix.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700890 "include/grpc/impl/codegen/sync_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700891 "include/grpc/impl/codegen/time.h",
892 "include/grpc/grpc_cronet.h",
893 "include/grpc/grpc_security.h",
894 "include/grpc/grpc_security_constants.h",
895 ],
896 includes = [
897 "include",
898 ".",
899 ],
900 deps = [
901 "//external:libssl",
902 ":gpr",
903 ],
904)
905
906
907
908cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700909 name = "grpc_unsecure",
910 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700911 "src/core/lib/channel/channel_args.h",
912 "src/core/lib/channel/channel_stack.h",
913 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700914 "src/core/lib/channel/compress_filter.h",
915 "src/core/lib/channel/connected_channel.h",
916 "src/core/lib/channel/context.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700917 "src/core/lib/channel/handshaker.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700918 "src/core/lib/channel/http_client_filter.h",
919 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700920 "src/core/lib/compression/algorithm_metadata.h",
921 "src/core/lib/compression/message_compress.h",
922 "src/core/lib/debug/trace.h",
923 "src/core/lib/http/format_request.h",
924 "src/core/lib/http/httpcli.h",
925 "src/core/lib/http/parser.h",
926 "src/core/lib/iomgr/closure.h",
927 "src/core/lib/iomgr/endpoint.h",
928 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700929 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700930 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700931 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700932 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700933 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700934 "src/core/lib/iomgr/exec_ctx.h",
935 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700936 "src/core/lib/iomgr/iocp_windows.h",
937 "src/core/lib/iomgr/iomgr.h",
938 "src/core/lib/iomgr/iomgr_internal.h",
939 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -0700940 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700941 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700942 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700943 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700944 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700945 "src/core/lib/iomgr/pollset_set_windows.h",
946 "src/core/lib/iomgr/pollset_windows.h",
947 "src/core/lib/iomgr/resolve_address.h",
948 "src/core/lib/iomgr/sockaddr.h",
949 "src/core/lib/iomgr/sockaddr_posix.h",
950 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700951 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700952 "src/core/lib/iomgr/socket_utils_posix.h",
953 "src/core/lib/iomgr/socket_windows.h",
954 "src/core/lib/iomgr/tcp_client.h",
955 "src/core/lib/iomgr/tcp_posix.h",
956 "src/core/lib/iomgr/tcp_server.h",
957 "src/core/lib/iomgr/tcp_windows.h",
958 "src/core/lib/iomgr/time_averaged_stats.h",
959 "src/core/lib/iomgr/timer.h",
960 "src/core/lib/iomgr/timer_heap.h",
961 "src/core/lib/iomgr/udp_server.h",
962 "src/core/lib/iomgr/unix_sockets_posix.h",
963 "src/core/lib/iomgr/wakeup_fd_pipe.h",
964 "src/core/lib/iomgr/wakeup_fd_posix.h",
965 "src/core/lib/iomgr/workqueue.h",
966 "src/core/lib/iomgr/workqueue_posix.h",
967 "src/core/lib/iomgr/workqueue_windows.h",
968 "src/core/lib/json/json.h",
969 "src/core/lib/json/json_common.h",
970 "src/core/lib/json/json_reader.h",
971 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700972 "src/core/lib/surface/api_trace.h",
973 "src/core/lib/surface/call.h",
974 "src/core/lib/surface/call_test_only.h",
975 "src/core/lib/surface/channel.h",
976 "src/core/lib/surface/channel_init.h",
977 "src/core/lib/surface/channel_stack_type.h",
978 "src/core/lib/surface/completion_queue.h",
979 "src/core/lib/surface/event_string.h",
980 "src/core/lib/surface/init.h",
981 "src/core/lib/surface/lame_client.h",
982 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700983 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700984 "src/core/lib/transport/connectivity_state.h",
985 "src/core/lib/transport/metadata.h",
986 "src/core/lib/transport/metadata_batch.h",
987 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -0400988 "src/core/lib/transport/timeout_encoding.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700989 "src/core/lib/transport/transport.h",
990 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700991 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700992 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
993 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
994 "src/core/ext/transport/chttp2/transport/frame.h",
995 "src/core/ext/transport/chttp2/transport/frame_data.h",
996 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
997 "src/core/ext/transport/chttp2/transport/frame_ping.h",
998 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
999 "src/core/ext/transport/chttp2/transport/frame_settings.h",
1000 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
1001 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
1002 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
1003 "src/core/ext/transport/chttp2/transport/hpack_table.h",
1004 "src/core/ext/transport/chttp2/transport/http2_errors.h",
1005 "src/core/ext/transport/chttp2/transport/huffsyms.h",
1006 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
1007 "src/core/ext/transport/chttp2/transport/internal.h",
1008 "src/core/ext/transport/chttp2/transport/status_conversion.h",
1009 "src/core/ext/transport/chttp2/transport/stream_map.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001010 "src/core/ext/transport/chttp2/transport/varint.h",
1011 "src/core/ext/transport/chttp2/alpn/alpn.h",
1012 "src/core/ext/client_config/client_channel.h",
1013 "src/core/ext/client_config/client_channel_factory.h",
1014 "src/core/ext/client_config/client_config.h",
1015 "src/core/ext/client_config/connector.h",
1016 "src/core/ext/client_config/initial_connect_string.h",
1017 "src/core/ext/client_config/lb_policy.h",
1018 "src/core/ext/client_config/lb_policy_factory.h",
1019 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001020 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001021 "src/core/ext/client_config/resolver.h",
1022 "src/core/ext/client_config/resolver_factory.h",
1023 "src/core/ext/client_config/resolver_registry.h",
1024 "src/core/ext/client_config/subchannel.h",
1025 "src/core/ext/client_config/subchannel_call_holder.h",
1026 "src/core/ext/client_config/subchannel_index.h",
1027 "src/core/ext/client_config/uri_parser.h",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001028 "src/core/ext/load_reporting/load_reporting.h",
1029 "src/core/ext/load_reporting/load_reporting_filter.h",
David Garcia Quintasb2e986b2016-06-15 23:55:50 -07001030 "src/core/ext/lb_policy/grpclb/grpclb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001031 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001032 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001033 "src/core/ext/census/aggregation.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001034 "src/core/ext/census/base_resources.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001035 "src/core/ext/census/census_interface.h",
1036 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001037 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001038 "src/core/ext/census/grpc_filter.h",
1039 "src/core/ext/census/mlog.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001040 "src/core/ext/census/resource.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001041 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001042 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001043 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001044 "src/core/lib/channel/channel_args.c",
1045 "src/core/lib/channel/channel_stack.c",
1046 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001047 "src/core/lib/channel/compress_filter.c",
1048 "src/core/lib/channel/connected_channel.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07001049 "src/core/lib/channel/handshaker.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001050 "src/core/lib/channel/http_client_filter.c",
1051 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001052 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001053 "src/core/lib/compression/message_compress.c",
1054 "src/core/lib/debug/trace.c",
1055 "src/core/lib/http/format_request.c",
1056 "src/core/lib/http/httpcli.c",
1057 "src/core/lib/http/parser.c",
1058 "src/core/lib/iomgr/closure.c",
1059 "src/core/lib/iomgr/endpoint.c",
1060 "src/core/lib/iomgr/endpoint_pair_posix.c",
1061 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07001062 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07001063 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001064 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001065 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001066 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001067 "src/core/lib/iomgr/exec_ctx.c",
1068 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001069 "src/core/lib/iomgr/iocp_windows.c",
1070 "src/core/lib/iomgr/iomgr.c",
1071 "src/core/lib/iomgr/iomgr_posix.c",
1072 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -07001073 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07001074 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001075 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001076 "src/core/lib/iomgr/pollset_set_windows.c",
1077 "src/core/lib/iomgr/pollset_windows.c",
1078 "src/core/lib/iomgr/resolve_address_posix.c",
1079 "src/core/lib/iomgr/resolve_address_windows.c",
1080 "src/core/lib/iomgr/sockaddr_utils.c",
1081 "src/core/lib/iomgr/socket_utils_common_posix.c",
1082 "src/core/lib/iomgr/socket_utils_linux.c",
1083 "src/core/lib/iomgr/socket_utils_posix.c",
1084 "src/core/lib/iomgr/socket_windows.c",
1085 "src/core/lib/iomgr/tcp_client_posix.c",
1086 "src/core/lib/iomgr/tcp_client_windows.c",
1087 "src/core/lib/iomgr/tcp_posix.c",
1088 "src/core/lib/iomgr/tcp_server_posix.c",
1089 "src/core/lib/iomgr/tcp_server_windows.c",
1090 "src/core/lib/iomgr/tcp_windows.c",
1091 "src/core/lib/iomgr/time_averaged_stats.c",
1092 "src/core/lib/iomgr/timer.c",
1093 "src/core/lib/iomgr/timer_heap.c",
1094 "src/core/lib/iomgr/udp_server.c",
1095 "src/core/lib/iomgr/unix_sockets_posix.c",
1096 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1097 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1098 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1099 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1100 "src/core/lib/iomgr/wakeup_fd_posix.c",
1101 "src/core/lib/iomgr/workqueue_posix.c",
1102 "src/core/lib/iomgr/workqueue_windows.c",
1103 "src/core/lib/json/json.c",
1104 "src/core/lib/json/json_reader.c",
1105 "src/core/lib/json/json_string.c",
1106 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001107 "src/core/lib/surface/alarm.c",
1108 "src/core/lib/surface/api_trace.c",
1109 "src/core/lib/surface/byte_buffer.c",
1110 "src/core/lib/surface/byte_buffer_reader.c",
1111 "src/core/lib/surface/call.c",
1112 "src/core/lib/surface/call_details.c",
1113 "src/core/lib/surface/call_log_batch.c",
1114 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001115 "src/core/lib/surface/channel_init.c",
1116 "src/core/lib/surface/channel_ping.c",
1117 "src/core/lib/surface/channel_stack_type.c",
1118 "src/core/lib/surface/completion_queue.c",
1119 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001120 "src/core/lib/surface/lame_client.c",
1121 "src/core/lib/surface/metadata_array.c",
1122 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001123 "src/core/lib/surface/validate_metadata.c",
1124 "src/core/lib/surface/version.c",
1125 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001126 "src/core/lib/transport/connectivity_state.c",
1127 "src/core/lib/transport/metadata.c",
1128 "src/core/lib/transport/metadata_batch.c",
1129 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -04001130 "src/core/lib/transport/timeout_encoding.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001131 "src/core/lib/transport/transport.c",
1132 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001133 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001134 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001135 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001136 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1137 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1138 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1139 "src/core/ext/transport/chttp2/transport/frame_data.c",
1140 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1141 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1142 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1143 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1144 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1145 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1146 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1147 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1148 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1149 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1150 "src/core/ext/transport/chttp2/transport/parsing.c",
1151 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1152 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1153 "src/core/ext/transport/chttp2/transport/stream_map.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001154 "src/core/ext/transport/chttp2/transport/varint.c",
1155 "src/core/ext/transport/chttp2/transport/writing.c",
1156 "src/core/ext/transport/chttp2/alpn/alpn.c",
1157 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001158 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001159 "src/core/ext/client_config/channel_connectivity.c",
1160 "src/core/ext/client_config/client_channel.c",
1161 "src/core/ext/client_config/client_channel_factory.c",
1162 "src/core/ext/client_config/client_config.c",
1163 "src/core/ext/client_config/client_config_plugin.c",
1164 "src/core/ext/client_config/connector.c",
1165 "src/core/ext/client_config/default_initial_connect_string.c",
1166 "src/core/ext/client_config/initial_connect_string.c",
1167 "src/core/ext/client_config/lb_policy.c",
1168 "src/core/ext/client_config/lb_policy_factory.c",
1169 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001170 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001171 "src/core/ext/client_config/resolver.c",
1172 "src/core/ext/client_config/resolver_factory.c",
1173 "src/core/ext/client_config/resolver_registry.c",
1174 "src/core/ext/client_config/subchannel.c",
1175 "src/core/ext/client_config/subchannel_call_holder.c",
1176 "src/core/ext/client_config/subchannel_index.c",
1177 "src/core/ext/client_config/uri_parser.c",
1178 "src/core/ext/resolver/dns/native/dns_resolver.c",
1179 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001180 "src/core/ext/load_reporting/load_reporting.c",
1181 "src/core/ext/load_reporting/load_reporting_filter.c",
David Garcia Quintas3fb8f732016-06-15 22:53:08 -07001182 "src/core/ext/lb_policy/grpclb/grpclb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001183 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001184 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001185 "src/core/ext/lb_policy/pick_first/pick_first.c",
1186 "src/core/ext/lb_policy/round_robin/round_robin.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001187 "src/core/ext/census/base_resources.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001188 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001189 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001190 "src/core/ext/census/grpc_context.c",
1191 "src/core/ext/census/grpc_filter.c",
1192 "src/core/ext/census/grpc_plugin.c",
1193 "src/core/ext/census/initialize.c",
1194 "src/core/ext/census/mlog.c",
1195 "src/core/ext/census/operation.c",
1196 "src/core/ext/census/placeholders.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001197 "src/core/ext/census/resource.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001198 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001199 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001200 ],
1201 hdrs = [
1202 "include/grpc/byte_buffer.h",
1203 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -07001204 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001205 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001206 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001207 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -08001208 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001209 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -08001210 "include/grpc/impl/codegen/compression_types.h",
1211 "include/grpc/impl/codegen/connectivity_state.h",
1212 "include/grpc/impl/codegen/grpc_types.h",
1213 "include/grpc/impl/codegen/propagation_bits.h",
1214 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001215 "include/grpc/impl/codegen/alloc.h",
1216 "include/grpc/impl/codegen/atm.h",
1217 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1218 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001219 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001220 "include/grpc/impl/codegen/log.h",
1221 "include/grpc/impl/codegen/port_platform.h",
1222 "include/grpc/impl/codegen/slice.h",
1223 "include/grpc/impl/codegen/slice_buffer.h",
1224 "include/grpc/impl/codegen/sync.h",
1225 "include/grpc/impl/codegen/sync_generic.h",
1226 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001227 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001228 "include/grpc/impl/codegen/time.h",
1229 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001230 ],
1231 includes = [
1232 "include",
1233 ".",
1234 ],
1235 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001236 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001237 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001238 ],
Rob Earhartaf379b22016-01-21 13:43:09 -08001239 copts = [
1240 "-std=gnu99",
1241 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001242)
1243
1244
Rob Earhartb7b8d052016-03-29 11:35:29 -07001245
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001246cc_library(
1247 name = "grpc++",
1248 srcs = [
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001249 "include/grpc++/impl/codegen/core_codegen.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001250 "src/cpp/client/secure_credentials.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001251 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001252 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001253 "src/cpp/client/create_channel_internal.h",
Mark D. Rothab950ee2016-06-29 14:51:53 -07001254 "src/cpp/common/channel_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001255 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001256 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001257 "src/cpp/client/secure_credentials.cc",
1258 "src/cpp/common/auth_property_iterator.cc",
1259 "src/cpp/common/secure_auth_context.cc",
1260 "src/cpp/common/secure_channel_arguments.cc",
1261 "src/cpp/common/secure_create_auth_context.cc",
1262 "src/cpp/server/secure_server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001263 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001264 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001265 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001266 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001267 "src/cpp/client/create_channel_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001268 "src/cpp/client/credentials.cc",
1269 "src/cpp/client/generic_stub.cc",
1270 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001271 "src/cpp/common/channel_arguments.cc",
Mark D. Rothec0bc8b2016-06-15 14:02:57 -07001272 "src/cpp/common/channel_filter.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001273 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001274 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001275 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001276 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001277 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001278 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001279 "src/cpp/server/insecure_server_credentials.cc",
1280 "src/cpp/server/server.cc",
1281 "src/cpp/server/server_builder.cc",
1282 "src/cpp/server/server_context.cc",
1283 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001284 "src/cpp/server/server_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001285 "src/cpp/util/byte_buffer.cc",
1286 "src/cpp/util/slice.cc",
1287 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001288 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001289 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001290 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001291 ],
1292 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001293 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001294 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001295 "include/grpc++/client_context.h",
1296 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001297 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001298 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001299 "include/grpc++/generic/async_generic_service.h",
1300 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001301 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001302 "include/grpc++/impl/call.h",
1303 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001304 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001305 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001306 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001307 "include/grpc++/impl/rpc_method.h",
1308 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001309 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001310 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001311 "include/grpc++/impl/server_builder_plugin.h",
1312 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001313 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001314 "include/grpc++/impl/sync.h",
1315 "include/grpc++/impl/sync_cxx11.h",
1316 "include/grpc++/impl/sync_no_cxx11.h",
1317 "include/grpc++/impl/thd.h",
1318 "include/grpc++/impl/thd_cxx11.h",
1319 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001320 "include/grpc++/security/auth_context.h",
1321 "include/grpc++/security/auth_metadata_processor.h",
1322 "include/grpc++/security/credentials.h",
1323 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001324 "include/grpc++/server.h",
1325 "include/grpc++/server_builder.h",
1326 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001327 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001328 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001329 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001330 "include/grpc++/support/byte_buffer.h",
1331 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001332 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001333 "include/grpc++/support/slice.h",
1334 "include/grpc++/support/status.h",
1335 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001336 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001337 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001338 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001339 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001340 "include/grpc++/impl/codegen/async_stream.h",
1341 "include/grpc++/impl/codegen/async_unary_call.h",
1342 "include/grpc++/impl/codegen/call.h",
1343 "include/grpc++/impl/codegen/call_hook.h",
1344 "include/grpc++/impl/codegen/channel_interface.h",
1345 "include/grpc++/impl/codegen/client_context.h",
1346 "include/grpc++/impl/codegen/client_unary_call.h",
1347 "include/grpc++/impl/codegen/completion_queue.h",
1348 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001349 "include/grpc++/impl/codegen/config.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001350 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001351 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001352 "include/grpc++/impl/codegen/grpc_library.h",
1353 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001354 "include/grpc++/impl/codegen/rpc_method.h",
1355 "include/grpc++/impl/codegen/rpc_service_method.h",
1356 "include/grpc++/impl/codegen/security/auth_context.h",
1357 "include/grpc++/impl/codegen/serialization_traits.h",
1358 "include/grpc++/impl/codegen/server_context.h",
1359 "include/grpc++/impl/codegen/server_interface.h",
1360 "include/grpc++/impl/codegen/service_type.h",
1361 "include/grpc++/impl/codegen/status.h",
1362 "include/grpc++/impl/codegen/status_code_enum.h",
1363 "include/grpc++/impl/codegen/string_ref.h",
1364 "include/grpc++/impl/codegen/stub_options.h",
1365 "include/grpc++/impl/codegen/sync.h",
1366 "include/grpc++/impl/codegen/sync_cxx11.h",
1367 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1368 "include/grpc++/impl/codegen/sync_stream.h",
1369 "include/grpc++/impl/codegen/time.h",
1370 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001371 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001372 "include/grpc/impl/codegen/compression_types.h",
1373 "include/grpc/impl/codegen/connectivity_state.h",
1374 "include/grpc/impl/codegen/grpc_types.h",
1375 "include/grpc/impl/codegen/propagation_bits.h",
1376 "include/grpc/impl/codegen/status.h",
1377 "include/grpc/impl/codegen/alloc.h",
1378 "include/grpc/impl/codegen/atm.h",
1379 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1380 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001381 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001382 "include/grpc/impl/codegen/log.h",
1383 "include/grpc/impl/codegen/port_platform.h",
1384 "include/grpc/impl/codegen/slice.h",
1385 "include/grpc/impl/codegen/slice_buffer.h",
1386 "include/grpc/impl/codegen/sync.h",
1387 "include/grpc/impl/codegen/sync_generic.h",
1388 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001389 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001390 "include/grpc/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001391 ],
1392 includes = [
1393 "include",
1394 ".",
1395 ],
1396 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001397 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001398 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001399 ":grpc",
1400 ],
1401)
1402
1403
Rob Earhartb7b8d052016-03-29 11:35:29 -07001404
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001405cc_library(
Yuchen Zengc84ed682016-05-04 16:30:11 -07001406 name = "grpc++_reflection",
1407 srcs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001408 "src/cpp/ext/proto_server_reflection.h",
1409 "src/cpp/ext/proto_server_reflection.cc",
1410 "src/cpp/ext/proto_server_reflection_plugin.cc",
1411 "src/cpp/ext/reflection.grpc.pb.cc",
1412 "src/cpp/ext/reflection.pb.cc",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001413 ],
1414 hdrs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001415 "include/grpc++/ext/proto_server_reflection_plugin.h",
1416 "include/grpc++/ext/reflection.grpc.pb.h",
1417 "include/grpc++/ext/reflection.pb.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001418 "include/grpc++/impl/codegen/proto_utils.h",
1419 "include/grpc++/impl/codegen/async_stream.h",
1420 "include/grpc++/impl/codegen/async_unary_call.h",
1421 "include/grpc++/impl/codegen/call.h",
1422 "include/grpc++/impl/codegen/call_hook.h",
1423 "include/grpc++/impl/codegen/channel_interface.h",
1424 "include/grpc++/impl/codegen/client_context.h",
1425 "include/grpc++/impl/codegen/client_unary_call.h",
1426 "include/grpc++/impl/codegen/completion_queue.h",
1427 "include/grpc++/impl/codegen/completion_queue_tag.h",
1428 "include/grpc++/impl/codegen/config.h",
1429 "include/grpc++/impl/codegen/core_codegen_interface.h",
1430 "include/grpc++/impl/codegen/create_auth_context.h",
1431 "include/grpc++/impl/codegen/grpc_library.h",
1432 "include/grpc++/impl/codegen/method_handler_impl.h",
1433 "include/grpc++/impl/codegen/rpc_method.h",
1434 "include/grpc++/impl/codegen/rpc_service_method.h",
1435 "include/grpc++/impl/codegen/security/auth_context.h",
1436 "include/grpc++/impl/codegen/serialization_traits.h",
1437 "include/grpc++/impl/codegen/server_context.h",
1438 "include/grpc++/impl/codegen/server_interface.h",
1439 "include/grpc++/impl/codegen/service_type.h",
1440 "include/grpc++/impl/codegen/status.h",
1441 "include/grpc++/impl/codegen/status_code_enum.h",
1442 "include/grpc++/impl/codegen/string_ref.h",
1443 "include/grpc++/impl/codegen/stub_options.h",
1444 "include/grpc++/impl/codegen/sync.h",
1445 "include/grpc++/impl/codegen/sync_cxx11.h",
1446 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1447 "include/grpc++/impl/codegen/sync_stream.h",
1448 "include/grpc++/impl/codegen/time.h",
1449 "include/grpc/impl/codegen/byte_buffer.h",
1450 "include/grpc/impl/codegen/byte_buffer_reader.h",
1451 "include/grpc/impl/codegen/compression_types.h",
1452 "include/grpc/impl/codegen/connectivity_state.h",
1453 "include/grpc/impl/codegen/grpc_types.h",
1454 "include/grpc/impl/codegen/propagation_bits.h",
1455 "include/grpc/impl/codegen/status.h",
1456 "include/grpc/impl/codegen/alloc.h",
1457 "include/grpc/impl/codegen/atm.h",
1458 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1459 "include/grpc/impl/codegen/atm_gcc_sync.h",
1460 "include/grpc/impl/codegen/atm_windows.h",
1461 "include/grpc/impl/codegen/log.h",
1462 "include/grpc/impl/codegen/port_platform.h",
1463 "include/grpc/impl/codegen/slice.h",
1464 "include/grpc/impl/codegen/slice_buffer.h",
1465 "include/grpc/impl/codegen/sync.h",
1466 "include/grpc/impl/codegen/sync_generic.h",
1467 "include/grpc/impl/codegen/sync_posix.h",
1468 "include/grpc/impl/codegen/sync_windows.h",
1469 "include/grpc/impl/codegen/time.h",
1470 "include/grpc++/impl/codegen/config_protobuf.h",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001471 ],
1472 includes = [
1473 "include",
1474 ".",
1475 ],
1476 deps = [
Yuchen Zengc6bf5f72016-06-07 14:41:01 -07001477 ":grpc++",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001478 ],
1479)
1480
1481
1482
1483cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001484 name = "grpc++_unsecure",
1485 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001486 "src/cpp/client/create_channel_internal.h",
Mark D. Rothab950ee2016-06-29 14:51:53 -07001487 "src/cpp/common/channel_filter.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001488 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001489 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001490 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001491 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001492 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001493 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001494 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001495 "src/cpp/client/create_channel_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001496 "src/cpp/client/credentials.cc",
1497 "src/cpp/client/generic_stub.cc",
1498 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001499 "src/cpp/common/channel_arguments.cc",
Mark D. Rothec0bc8b2016-06-15 14:02:57 -07001500 "src/cpp/common/channel_filter.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001501 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001502 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001503 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001504 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001505 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001506 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001507 "src/cpp/server/insecure_server_credentials.cc",
1508 "src/cpp/server/server.cc",
1509 "src/cpp/server/server_builder.cc",
1510 "src/cpp/server/server_context.cc",
1511 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001512 "src/cpp/server/server_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001513 "src/cpp/util/byte_buffer.cc",
1514 "src/cpp/util/slice.cc",
1515 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001516 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001517 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001518 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001519 ],
1520 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001521 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001522 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001523 "include/grpc++/client_context.h",
1524 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001525 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001526 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001527 "include/grpc++/generic/async_generic_service.h",
1528 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001529 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001530 "include/grpc++/impl/call.h",
1531 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001532 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001533 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001534 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001535 "include/grpc++/impl/rpc_method.h",
1536 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001537 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001538 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001539 "include/grpc++/impl/server_builder_plugin.h",
1540 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001541 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001542 "include/grpc++/impl/sync.h",
1543 "include/grpc++/impl/sync_cxx11.h",
1544 "include/grpc++/impl/sync_no_cxx11.h",
1545 "include/grpc++/impl/thd.h",
1546 "include/grpc++/impl/thd_cxx11.h",
1547 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001548 "include/grpc++/security/auth_context.h",
1549 "include/grpc++/security/auth_metadata_processor.h",
1550 "include/grpc++/security/credentials.h",
1551 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001552 "include/grpc++/server.h",
1553 "include/grpc++/server_builder.h",
1554 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001555 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001556 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001557 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001558 "include/grpc++/support/byte_buffer.h",
1559 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001560 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001561 "include/grpc++/support/slice.h",
1562 "include/grpc++/support/status.h",
1563 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001564 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001565 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001566 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001567 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001568 "include/grpc++/impl/codegen/async_stream.h",
1569 "include/grpc++/impl/codegen/async_unary_call.h",
1570 "include/grpc++/impl/codegen/call.h",
1571 "include/grpc++/impl/codegen/call_hook.h",
1572 "include/grpc++/impl/codegen/channel_interface.h",
1573 "include/grpc++/impl/codegen/client_context.h",
1574 "include/grpc++/impl/codegen/client_unary_call.h",
1575 "include/grpc++/impl/codegen/completion_queue.h",
1576 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001577 "include/grpc++/impl/codegen/config.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001578 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001579 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001580 "include/grpc++/impl/codegen/grpc_library.h",
1581 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001582 "include/grpc++/impl/codegen/rpc_method.h",
1583 "include/grpc++/impl/codegen/rpc_service_method.h",
1584 "include/grpc++/impl/codegen/security/auth_context.h",
1585 "include/grpc++/impl/codegen/serialization_traits.h",
1586 "include/grpc++/impl/codegen/server_context.h",
1587 "include/grpc++/impl/codegen/server_interface.h",
1588 "include/grpc++/impl/codegen/service_type.h",
1589 "include/grpc++/impl/codegen/status.h",
1590 "include/grpc++/impl/codegen/status_code_enum.h",
1591 "include/grpc++/impl/codegen/string_ref.h",
1592 "include/grpc++/impl/codegen/stub_options.h",
1593 "include/grpc++/impl/codegen/sync.h",
1594 "include/grpc++/impl/codegen/sync_cxx11.h",
1595 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1596 "include/grpc++/impl/codegen/sync_stream.h",
1597 "include/grpc++/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001598 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001599 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001600 "include/grpc/impl/codegen/compression_types.h",
1601 "include/grpc/impl/codegen/connectivity_state.h",
1602 "include/grpc/impl/codegen/grpc_types.h",
1603 "include/grpc/impl/codegen/propagation_bits.h",
1604 "include/grpc/impl/codegen/status.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001605 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001606 "include/grpc/impl/codegen/atm.h",
1607 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1608 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001609 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001610 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001611 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001612 "include/grpc/impl/codegen/slice.h",
1613 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001614 "include/grpc/impl/codegen/sync.h",
1615 "include/grpc/impl/codegen/sync_generic.h",
1616 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001617 "include/grpc/impl/codegen/sync_windows.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001618 "include/grpc/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001619 ],
1620 includes = [
1621 "include",
1622 ".",
1623 ],
1624 deps = [
1625 "//external:protobuf_clib",
1626 ":gpr",
1627 ":grpc_unsecure",
1628 ":grpc",
1629 ],
1630)
1631
1632
1633
1634cc_library(
1635 name = "grpc_plugin_support",
1636 srcs = [
1637 "src/compiler/config.h",
1638 "src/compiler/cpp_generator.h",
1639 "src/compiler/cpp_generator_helpers.h",
1640 "src/compiler/csharp_generator.h",
1641 "src/compiler/csharp_generator_helpers.h",
1642 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001643 "src/compiler/node_generator.h",
1644 "src/compiler/node_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001645 "src/compiler/objective_c_generator.h",
1646 "src/compiler/objective_c_generator_helpers.h",
1647 "src/compiler/python_generator.h",
1648 "src/compiler/ruby_generator.h",
1649 "src/compiler/ruby_generator_helpers-inl.h",
1650 "src/compiler/ruby_generator_map-inl.h",
1651 "src/compiler/ruby_generator_string-inl.h",
1652 "src/compiler/cpp_generator.cc",
1653 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001654 "src/compiler/node_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001655 "src/compiler/objective_c_generator.cc",
1656 "src/compiler/python_generator.cc",
1657 "src/compiler/ruby_generator.cc",
1658 ],
1659 hdrs = [
Craig Tiller03915e52016-04-07 09:15:10 -07001660 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001661 ],
1662 includes = [
1663 "include",
1664 ".",
1665 ],
1666 deps = [
1667 "//external:protobuf_compiler",
1668 ],
1669)
1670
1671
Rob Earhartb7b8d052016-03-29 11:35:29 -07001672
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001673cc_library(
1674 name = "grpc_csharp_ext",
1675 srcs = [
1676 "src/csharp/ext/grpc_csharp_ext.c",
1677 ],
1678 hdrs = [
1679 ],
1680 includes = [
1681 "include",
1682 ".",
1683 ],
1684 deps = [
Craig Tillerd1697d92016-04-05 16:05:46 -07001685 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001686 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001687 ],
1688)
1689
1690
1691
Rob Earhartb7b8d052016-03-29 11:35:29 -07001692
Jorge Canizales140bca82015-06-20 09:47:00 -07001693objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001694 name = "gpr_objc",
1695 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001696 "src/core/lib/profiling/basic_timers.c",
1697 "src/core/lib/profiling/stap_timers.c",
1698 "src/core/lib/support/alloc.c",
1699 "src/core/lib/support/avl.c",
1700 "src/core/lib/support/backoff.c",
1701 "src/core/lib/support/cmdline.c",
1702 "src/core/lib/support/cpu_iphone.c",
1703 "src/core/lib/support/cpu_linux.c",
1704 "src/core/lib/support/cpu_posix.c",
1705 "src/core/lib/support/cpu_windows.c",
1706 "src/core/lib/support/env_linux.c",
1707 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001708 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001709 "src/core/lib/support/histogram.c",
1710 "src/core/lib/support/host_port.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001711 "src/core/lib/support/log.c",
1712 "src/core/lib/support/log_android.c",
1713 "src/core/lib/support/log_linux.c",
1714 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001715 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001716 "src/core/lib/support/murmur_hash.c",
1717 "src/core/lib/support/slice.c",
1718 "src/core/lib/support/slice_buffer.c",
1719 "src/core/lib/support/stack_lockfree.c",
1720 "src/core/lib/support/string.c",
1721 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001722 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001723 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001724 "src/core/lib/support/subprocess_posix.c",
1725 "src/core/lib/support/subprocess_windows.c",
1726 "src/core/lib/support/sync.c",
1727 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001728 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001729 "src/core/lib/support/thd.c",
1730 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001731 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001732 "src/core/lib/support/time.c",
1733 "src/core/lib/support/time_posix.c",
1734 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001735 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001736 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001737 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001738 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001739 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001740 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001741 ],
1742 hdrs = [
1743 "include/grpc/support/alloc.h",
1744 "include/grpc/support/atm.h",
1745 "include/grpc/support/atm_gcc_atomic.h",
1746 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001747 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001748 "include/grpc/support/avl.h",
1749 "include/grpc/support/cmdline.h",
1750 "include/grpc/support/cpu.h",
1751 "include/grpc/support/histogram.h",
1752 "include/grpc/support/host_port.h",
1753 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001754 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001755 "include/grpc/support/port_platform.h",
1756 "include/grpc/support/slice.h",
1757 "include/grpc/support/slice_buffer.h",
1758 "include/grpc/support/string_util.h",
1759 "include/grpc/support/subprocess.h",
1760 "include/grpc/support/sync.h",
1761 "include/grpc/support/sync_generic.h",
1762 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001763 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001764 "include/grpc/support/thd.h",
1765 "include/grpc/support/time.h",
1766 "include/grpc/support/tls.h",
1767 "include/grpc/support/tls_gcc.h",
1768 "include/grpc/support/tls_msvc.h",
1769 "include/grpc/support/tls_pthread.h",
1770 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001771 "include/grpc/impl/codegen/alloc.h",
1772 "include/grpc/impl/codegen/atm.h",
1773 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1774 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001775 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001776 "include/grpc/impl/codegen/log.h",
1777 "include/grpc/impl/codegen/port_platform.h",
1778 "include/grpc/impl/codegen/slice.h",
1779 "include/grpc/impl/codegen/slice_buffer.h",
1780 "include/grpc/impl/codegen/sync.h",
1781 "include/grpc/impl/codegen/sync_generic.h",
1782 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001783 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001784 "include/grpc/impl/codegen/time.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001785 "src/core/lib/profiling/timers.h",
1786 "src/core/lib/support/backoff.h",
1787 "src/core/lib/support/block_annotate.h",
1788 "src/core/lib/support/env.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001789 "src/core/lib/support/murmur_hash.h",
1790 "src/core/lib/support/stack_lockfree.h",
1791 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001792 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001793 "src/core/lib/support/thd_internal.h",
1794 "src/core/lib/support/time_precise.h",
1795 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001796 ],
1797 includes = [
1798 "include",
1799 ".",
1800 ],
1801 deps = [
1802 ],
1803)
1804
1805
Rob Earhartb7b8d052016-03-29 11:35:29 -07001806
Craig Tillerda179ce2016-02-09 12:01:53 -08001807objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001808 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001809 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001810 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001811 "src/core/lib/channel/channel_args.c",
1812 "src/core/lib/channel/channel_stack.c",
1813 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001814 "src/core/lib/channel/compress_filter.c",
1815 "src/core/lib/channel/connected_channel.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07001816 "src/core/lib/channel/handshaker.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001817 "src/core/lib/channel/http_client_filter.c",
1818 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001819 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001820 "src/core/lib/compression/message_compress.c",
1821 "src/core/lib/debug/trace.c",
1822 "src/core/lib/http/format_request.c",
1823 "src/core/lib/http/httpcli.c",
1824 "src/core/lib/http/parser.c",
1825 "src/core/lib/iomgr/closure.c",
1826 "src/core/lib/iomgr/endpoint.c",
1827 "src/core/lib/iomgr/endpoint_pair_posix.c",
1828 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07001829 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07001830 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001831 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001832 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001833 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001834 "src/core/lib/iomgr/exec_ctx.c",
1835 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001836 "src/core/lib/iomgr/iocp_windows.c",
1837 "src/core/lib/iomgr/iomgr.c",
1838 "src/core/lib/iomgr/iomgr_posix.c",
1839 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -07001840 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07001841 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001842 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001843 "src/core/lib/iomgr/pollset_set_windows.c",
1844 "src/core/lib/iomgr/pollset_windows.c",
1845 "src/core/lib/iomgr/resolve_address_posix.c",
1846 "src/core/lib/iomgr/resolve_address_windows.c",
1847 "src/core/lib/iomgr/sockaddr_utils.c",
1848 "src/core/lib/iomgr/socket_utils_common_posix.c",
1849 "src/core/lib/iomgr/socket_utils_linux.c",
1850 "src/core/lib/iomgr/socket_utils_posix.c",
1851 "src/core/lib/iomgr/socket_windows.c",
1852 "src/core/lib/iomgr/tcp_client_posix.c",
1853 "src/core/lib/iomgr/tcp_client_windows.c",
1854 "src/core/lib/iomgr/tcp_posix.c",
1855 "src/core/lib/iomgr/tcp_server_posix.c",
1856 "src/core/lib/iomgr/tcp_server_windows.c",
1857 "src/core/lib/iomgr/tcp_windows.c",
1858 "src/core/lib/iomgr/time_averaged_stats.c",
1859 "src/core/lib/iomgr/timer.c",
1860 "src/core/lib/iomgr/timer_heap.c",
1861 "src/core/lib/iomgr/udp_server.c",
1862 "src/core/lib/iomgr/unix_sockets_posix.c",
1863 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1864 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1865 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1866 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1867 "src/core/lib/iomgr/wakeup_fd_posix.c",
1868 "src/core/lib/iomgr/workqueue_posix.c",
1869 "src/core/lib/iomgr/workqueue_windows.c",
1870 "src/core/lib/json/json.c",
1871 "src/core/lib/json/json_reader.c",
1872 "src/core/lib/json/json_string.c",
1873 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001874 "src/core/lib/surface/alarm.c",
1875 "src/core/lib/surface/api_trace.c",
1876 "src/core/lib/surface/byte_buffer.c",
1877 "src/core/lib/surface/byte_buffer_reader.c",
1878 "src/core/lib/surface/call.c",
1879 "src/core/lib/surface/call_details.c",
1880 "src/core/lib/surface/call_log_batch.c",
1881 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001882 "src/core/lib/surface/channel_init.c",
1883 "src/core/lib/surface/channel_ping.c",
1884 "src/core/lib/surface/channel_stack_type.c",
1885 "src/core/lib/surface/completion_queue.c",
1886 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001887 "src/core/lib/surface/lame_client.c",
1888 "src/core/lib/surface/metadata_array.c",
1889 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001890 "src/core/lib/surface/validate_metadata.c",
1891 "src/core/lib/surface/version.c",
1892 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001893 "src/core/lib/transport/connectivity_state.c",
1894 "src/core/lib/transport/metadata.c",
1895 "src/core/lib/transport/metadata_batch.c",
1896 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -04001897 "src/core/lib/transport/timeout_encoding.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001898 "src/core/lib/transport/transport.c",
1899 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001900 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001901 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001902 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1903 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1904 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1905 "src/core/ext/transport/chttp2/transport/frame_data.c",
1906 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1907 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1908 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1909 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1910 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1911 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1912 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1913 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1914 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1915 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1916 "src/core/ext/transport/chttp2/transport/parsing.c",
1917 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1918 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1919 "src/core/ext/transport/chttp2/transport/stream_map.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001920 "src/core/ext/transport/chttp2/transport/varint.c",
1921 "src/core/ext/transport/chttp2/transport/writing.c",
1922 "src/core/ext/transport/chttp2/alpn/alpn.c",
1923 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001924 "src/core/lib/security/context/security_context.c",
1925 "src/core/lib/security/credentials/composite/composite_credentials.c",
1926 "src/core/lib/security/credentials/credentials.c",
1927 "src/core/lib/security/credentials/credentials_metadata.c",
1928 "src/core/lib/security/credentials/fake/fake_credentials.c",
1929 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001930 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001931 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
1932 "src/core/lib/security/credentials/iam/iam_credentials.c",
1933 "src/core/lib/security/credentials/jwt/json_token.c",
1934 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
1935 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
1936 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
1937 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
1938 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
1939 "src/core/lib/security/transport/client_auth_filter.c",
1940 "src/core/lib/security/transport/handshake.c",
1941 "src/core/lib/security/transport/secure_endpoint.c",
1942 "src/core/lib/security/transport/security_connector.c",
1943 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -07001944 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001945 "src/core/lib/security/util/b64.c",
1946 "src/core/lib/security/util/json_util.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001947 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001948 "src/core/lib/tsi/fake_transport_security.c",
1949 "src/core/lib/tsi/ssl_transport_security.c",
1950 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001951 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
1952 "src/core/ext/client_config/channel_connectivity.c",
1953 "src/core/ext/client_config/client_channel.c",
1954 "src/core/ext/client_config/client_channel_factory.c",
1955 "src/core/ext/client_config/client_config.c",
1956 "src/core/ext/client_config/client_config_plugin.c",
1957 "src/core/ext/client_config/connector.c",
1958 "src/core/ext/client_config/default_initial_connect_string.c",
1959 "src/core/ext/client_config/initial_connect_string.c",
1960 "src/core/ext/client_config/lb_policy.c",
1961 "src/core/ext/client_config/lb_policy_factory.c",
1962 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001963 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001964 "src/core/ext/client_config/resolver.c",
1965 "src/core/ext/client_config/resolver_factory.c",
1966 "src/core/ext/client_config/resolver_registry.c",
1967 "src/core/ext/client_config/subchannel.c",
1968 "src/core/ext/client_config/subchannel_call_holder.c",
1969 "src/core/ext/client_config/subchannel_index.c",
1970 "src/core/ext/client_config/uri_parser.c",
1971 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001972 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001973 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001974 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
David Garcia Quintas3fb8f732016-06-15 22:53:08 -07001975 "src/core/ext/lb_policy/grpclb/grpclb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001976 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001977 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001978 "src/core/ext/lb_policy/pick_first/pick_first.c",
1979 "src/core/ext/lb_policy/round_robin/round_robin.c",
1980 "src/core/ext/resolver/dns/native/dns_resolver.c",
1981 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07001982 "src/core/ext/load_reporting/load_reporting.c",
1983 "src/core/ext/load_reporting/load_reporting_filter.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001984 "src/core/ext/census/base_resources.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001985 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001986 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001987 "src/core/ext/census/grpc_context.c",
1988 "src/core/ext/census/grpc_filter.c",
1989 "src/core/ext/census/grpc_plugin.c",
1990 "src/core/ext/census/initialize.c",
1991 "src/core/ext/census/mlog.c",
1992 "src/core/ext/census/operation.c",
1993 "src/core/ext/census/placeholders.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001994 "src/core/ext/census/resource.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001995 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001996 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001997 ],
1998 hdrs = [
1999 "include/grpc/byte_buffer.h",
2000 "include/grpc/byte_buffer_reader.h",
2001 "include/grpc/compression.h",
2002 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07002003 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002004 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002005 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07002006 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002007 "include/grpc/impl/codegen/compression_types.h",
2008 "include/grpc/impl/codegen/connectivity_state.h",
2009 "include/grpc/impl/codegen/grpc_types.h",
2010 "include/grpc/impl/codegen/propagation_bits.h",
2011 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002012 "include/grpc/impl/codegen/alloc.h",
2013 "include/grpc/impl/codegen/atm.h",
2014 "include/grpc/impl/codegen/atm_gcc_atomic.h",
2015 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002016 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002017 "include/grpc/impl/codegen/log.h",
2018 "include/grpc/impl/codegen/port_platform.h",
2019 "include/grpc/impl/codegen/slice.h",
2020 "include/grpc/impl/codegen/slice_buffer.h",
2021 "include/grpc/impl/codegen/sync.h",
2022 "include/grpc/impl/codegen/sync_generic.h",
2023 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002024 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002025 "include/grpc/impl/codegen/time.h",
2026 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -07002027 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002028 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002029 "src/core/lib/channel/channel_args.h",
2030 "src/core/lib/channel/channel_stack.h",
2031 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002032 "src/core/lib/channel/compress_filter.h",
2033 "src/core/lib/channel/connected_channel.h",
2034 "src/core/lib/channel/context.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07002035 "src/core/lib/channel/handshaker.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002036 "src/core/lib/channel/http_client_filter.h",
2037 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002038 "src/core/lib/compression/algorithm_metadata.h",
2039 "src/core/lib/compression/message_compress.h",
2040 "src/core/lib/debug/trace.h",
2041 "src/core/lib/http/format_request.h",
2042 "src/core/lib/http/httpcli.h",
2043 "src/core/lib/http/parser.h",
2044 "src/core/lib/iomgr/closure.h",
2045 "src/core/lib/iomgr/endpoint.h",
2046 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -07002047 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07002048 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002049 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07002050 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002051 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002052 "src/core/lib/iomgr/exec_ctx.h",
2053 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002054 "src/core/lib/iomgr/iocp_windows.h",
2055 "src/core/lib/iomgr/iomgr.h",
2056 "src/core/lib/iomgr/iomgr_internal.h",
2057 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -07002058 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07002059 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07002060 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002061 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002062 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002063 "src/core/lib/iomgr/pollset_set_windows.h",
2064 "src/core/lib/iomgr/pollset_windows.h",
2065 "src/core/lib/iomgr/resolve_address.h",
2066 "src/core/lib/iomgr/sockaddr.h",
2067 "src/core/lib/iomgr/sockaddr_posix.h",
2068 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002069 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002070 "src/core/lib/iomgr/socket_utils_posix.h",
2071 "src/core/lib/iomgr/socket_windows.h",
2072 "src/core/lib/iomgr/tcp_client.h",
2073 "src/core/lib/iomgr/tcp_posix.h",
2074 "src/core/lib/iomgr/tcp_server.h",
2075 "src/core/lib/iomgr/tcp_windows.h",
2076 "src/core/lib/iomgr/time_averaged_stats.h",
2077 "src/core/lib/iomgr/timer.h",
2078 "src/core/lib/iomgr/timer_heap.h",
2079 "src/core/lib/iomgr/udp_server.h",
2080 "src/core/lib/iomgr/unix_sockets_posix.h",
2081 "src/core/lib/iomgr/wakeup_fd_pipe.h",
2082 "src/core/lib/iomgr/wakeup_fd_posix.h",
2083 "src/core/lib/iomgr/workqueue.h",
2084 "src/core/lib/iomgr/workqueue_posix.h",
2085 "src/core/lib/iomgr/workqueue_windows.h",
2086 "src/core/lib/json/json.h",
2087 "src/core/lib/json/json_common.h",
2088 "src/core/lib/json/json_reader.h",
2089 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002090 "src/core/lib/surface/api_trace.h",
2091 "src/core/lib/surface/call.h",
2092 "src/core/lib/surface/call_test_only.h",
2093 "src/core/lib/surface/channel.h",
2094 "src/core/lib/surface/channel_init.h",
2095 "src/core/lib/surface/channel_stack_type.h",
2096 "src/core/lib/surface/completion_queue.h",
2097 "src/core/lib/surface/event_string.h",
2098 "src/core/lib/surface/init.h",
2099 "src/core/lib/surface/lame_client.h",
2100 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002101 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002102 "src/core/lib/transport/connectivity_state.h",
2103 "src/core/lib/transport/metadata.h",
2104 "src/core/lib/transport/metadata_batch.h",
2105 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -04002106 "src/core/lib/transport/timeout_encoding.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002107 "src/core/lib/transport/transport.h",
2108 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -07002109 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002110 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
2111 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
2112 "src/core/ext/transport/chttp2/transport/frame.h",
2113 "src/core/ext/transport/chttp2/transport/frame_data.h",
2114 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
2115 "src/core/ext/transport/chttp2/transport/frame_ping.h",
2116 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
2117 "src/core/ext/transport/chttp2/transport/frame_settings.h",
2118 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
2119 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
2120 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
2121 "src/core/ext/transport/chttp2/transport/hpack_table.h",
2122 "src/core/ext/transport/chttp2/transport/http2_errors.h",
2123 "src/core/ext/transport/chttp2/transport/huffsyms.h",
2124 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
2125 "src/core/ext/transport/chttp2/transport/internal.h",
2126 "src/core/ext/transport/chttp2/transport/status_conversion.h",
2127 "src/core/ext/transport/chttp2/transport/stream_map.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002128 "src/core/ext/transport/chttp2/transport/varint.h",
2129 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002130 "src/core/lib/security/context/security_context.h",
2131 "src/core/lib/security/credentials/composite/composite_credentials.h",
2132 "src/core/lib/security/credentials/credentials.h",
2133 "src/core/lib/security/credentials/fake/fake_credentials.h",
2134 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
2135 "src/core/lib/security/credentials/iam/iam_credentials.h",
2136 "src/core/lib/security/credentials/jwt/json_token.h",
2137 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
2138 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
2139 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
2140 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
2141 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
2142 "src/core/lib/security/transport/auth_filters.h",
2143 "src/core/lib/security/transport/handshake.h",
2144 "src/core/lib/security/transport/secure_endpoint.h",
2145 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -07002146 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002147 "src/core/lib/security/util/b64.h",
2148 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002149 "src/core/lib/tsi/fake_transport_security.h",
2150 "src/core/lib/tsi/ssl_transport_security.h",
2151 "src/core/lib/tsi/ssl_types.h",
2152 "src/core/lib/tsi/transport_security.h",
2153 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002154 "src/core/ext/client_config/client_channel.h",
2155 "src/core/ext/client_config/client_channel_factory.h",
2156 "src/core/ext/client_config/client_config.h",
2157 "src/core/ext/client_config/connector.h",
2158 "src/core/ext/client_config/initial_connect_string.h",
2159 "src/core/ext/client_config/lb_policy.h",
2160 "src/core/ext/client_config/lb_policy_factory.h",
2161 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07002162 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002163 "src/core/ext/client_config/resolver.h",
2164 "src/core/ext/client_config/resolver_factory.h",
2165 "src/core/ext/client_config/resolver_registry.h",
2166 "src/core/ext/client_config/subchannel.h",
2167 "src/core/ext/client_config/subchannel_call_holder.h",
2168 "src/core/ext/client_config/subchannel_index.h",
2169 "src/core/ext/client_config/uri_parser.h",
David Garcia Quintasb2e986b2016-06-15 23:55:50 -07002170 "src/core/ext/lb_policy/grpclb/grpclb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002171 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002172 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07002173 "src/core/ext/load_reporting/load_reporting.h",
2174 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002175 "src/core/ext/census/aggregation.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07002176 "src/core/ext/census/base_resources.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002177 "src/core/ext/census/census_interface.h",
2178 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07002179 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002180 "src/core/ext/census/grpc_filter.h",
2181 "src/core/ext/census/mlog.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07002182 "src/core/ext/census/resource.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002183 "src/core/ext/census/rpc_metric_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002184 ],
2185 includes = [
2186 "include",
2187 ".",
2188 ],
2189 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08002190 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07002191 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07002192 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07002193 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07002194 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07002195)
2196
2197
2198
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002199cc_binary(
2200 name = "grpc_cpp_plugin",
2201 srcs = [
2202 "src/compiler/cpp_plugin.cc",
2203 ],
2204 deps = [
2205 "//external:protobuf_compiler",
2206 ":grpc_plugin_support",
2207 ],
2208)
2209
2210
2211cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07002212 name = "grpc_csharp_plugin",
2213 srcs = [
2214 "src/compiler/csharp_plugin.cc",
2215 ],
2216 deps = [
2217 "//external:protobuf_compiler",
2218 ":grpc_plugin_support",
2219 ],
2220)
2221
2222
2223cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08002224 name = "grpc_node_plugin",
2225 srcs = [
2226 "src/compiler/node_plugin.cc",
2227 ],
2228 deps = [
2229 "//external:protobuf_compiler",
2230 ":grpc_plugin_support",
2231 ],
2232)
2233
2234
2235cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002236 name = "grpc_objective_c_plugin",
2237 srcs = [
2238 "src/compiler/objective_c_plugin.cc",
2239 ],
2240 deps = [
2241 "//external:protobuf_compiler",
2242 ":grpc_plugin_support",
2243 ],
2244)
2245
2246
2247cc_binary(
2248 name = "grpc_python_plugin",
2249 srcs = [
2250 "src/compiler/python_plugin.cc",
2251 ],
2252 deps = [
2253 "//external:protobuf_compiler",
2254 ":grpc_plugin_support",
2255 ],
2256)
2257
2258
2259cc_binary(
2260 name = "grpc_ruby_plugin",
2261 srcs = [
2262 "src/compiler/ruby_plugin.cc",
2263 ],
2264 deps = [
2265 "//external:protobuf_compiler",
2266 ":grpc_plugin_support",
2267 ],
2268)
2269
2270
2271
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02002272
2273
Jorge Canizales140bca82015-06-20 09:47:00 -07002274
Jorge Canizales91e67a22015-06-24 13:50:04 -07002275
2276
Jorge Canizales44dc4232015-06-19 16:30:31 -07002277objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07002278
Jorge Canizales44dc4232015-06-19 16:30:31 -07002279rx_library_path = objc_path + "/RxLibrary"
2280
2281objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002282 name = "rx_library",
2283 hdrs = glob([
2284 rx_library_path + "/*.h",
2285 rx_library_path + "/transformations/*.h",
2286 ]),
2287 srcs = glob([
2288 rx_library_path + "/*.m",
2289 rx_library_path + "/transformations/*.m",
2290 ]),
2291 includes = [objc_path],
2292 deps = [
2293 ":rx_library_private",
2294 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002295)
2296
2297objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002298 name = "rx_library_private",
2299 hdrs = glob([rx_library_path + "/private/*.h"]),
2300 srcs = glob([rx_library_path + "/private/*.m"]),
2301 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002302)
Jorge Canizales866255e2015-06-20 18:58:38 -07002303
2304objc_client_path = objc_path + "/GRPCClient"
2305
2306objc_library(
2307 name = "grpc_client",
2308 hdrs = glob([
2309 objc_client_path + "/*.h",
2310 objc_client_path + "/private/*.h",
2311 ]),
2312 srcs = glob([
2313 objc_client_path + "/*.m",
2314 objc_client_path + "/private/*.m",
2315 ]),
2316 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002317 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07002318 deps = [
2319 ":grpc_objc",
2320 ":rx_library",
2321 ],
2322)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002323
2324objc_bundle_library(
2325 # The choice of name is signicant here, since it determines the bundle name.
2326 name = "gRPCCertificates",
2327 resources = ["etc/roots.pem"],
2328)
Jorge Canizales50f19822015-06-28 23:48:30 -07002329
2330proto_objc_rpc_path = objc_path + "/ProtoRPC"
2331
2332objc_library(
2333 name = "proto_objc_rpc",
2334 hdrs = glob([
2335 proto_objc_rpc_path + "/*.h",
2336 ]),
2337 srcs = glob([
2338 proto_objc_rpc_path + "/*.m",
2339 ]),
2340 includes = [objc_path],
2341 deps = [
2342 ":grpc_client",
2343 ":rx_library",
2344 "//external:protobuf_objc",
2345 ],
2346)