blob: 33323be229d120026e636810caab3f2183f17121 [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",
168 "src/core/lib/channel/http_client_filter.h",
169 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700170 "src/core/lib/compression/algorithm_metadata.h",
171 "src/core/lib/compression/message_compress.h",
172 "src/core/lib/debug/trace.h",
173 "src/core/lib/http/format_request.h",
174 "src/core/lib/http/httpcli.h",
175 "src/core/lib/http/parser.h",
176 "src/core/lib/iomgr/closure.h",
177 "src/core/lib/iomgr/endpoint.h",
178 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700179 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700180 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller69f3e2b2016-05-31 13:45:24 -0700181 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700182 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700183 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700184 "src/core/lib/iomgr/exec_ctx.h",
185 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700186 "src/core/lib/iomgr/iocp_windows.h",
187 "src/core/lib/iomgr/iomgr.h",
188 "src/core/lib/iomgr/iomgr_internal.h",
189 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -0700190 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700191 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700192 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700193 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700194 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700195 "src/core/lib/iomgr/pollset_set_windows.h",
196 "src/core/lib/iomgr/pollset_windows.h",
197 "src/core/lib/iomgr/resolve_address.h",
198 "src/core/lib/iomgr/sockaddr.h",
199 "src/core/lib/iomgr/sockaddr_posix.h",
200 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700201 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700202 "src/core/lib/iomgr/socket_utils_posix.h",
203 "src/core/lib/iomgr/socket_windows.h",
204 "src/core/lib/iomgr/tcp_client.h",
205 "src/core/lib/iomgr/tcp_posix.h",
206 "src/core/lib/iomgr/tcp_server.h",
207 "src/core/lib/iomgr/tcp_windows.h",
208 "src/core/lib/iomgr/time_averaged_stats.h",
209 "src/core/lib/iomgr/timer.h",
210 "src/core/lib/iomgr/timer_heap.h",
211 "src/core/lib/iomgr/udp_server.h",
212 "src/core/lib/iomgr/unix_sockets_posix.h",
213 "src/core/lib/iomgr/wakeup_fd_pipe.h",
214 "src/core/lib/iomgr/wakeup_fd_posix.h",
215 "src/core/lib/iomgr/workqueue.h",
216 "src/core/lib/iomgr/workqueue_posix.h",
217 "src/core/lib/iomgr/workqueue_windows.h",
218 "src/core/lib/json/json.h",
219 "src/core/lib/json/json_common.h",
220 "src/core/lib/json/json_reader.h",
221 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700222 "src/core/lib/surface/api_trace.h",
223 "src/core/lib/surface/call.h",
224 "src/core/lib/surface/call_test_only.h",
225 "src/core/lib/surface/channel.h",
226 "src/core/lib/surface/channel_init.h",
227 "src/core/lib/surface/channel_stack_type.h",
228 "src/core/lib/surface/completion_queue.h",
229 "src/core/lib/surface/event_string.h",
230 "src/core/lib/surface/init.h",
231 "src/core/lib/surface/lame_client.h",
232 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700233 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700234 "src/core/lib/transport/connectivity_state.h",
235 "src/core/lib/transport/metadata.h",
236 "src/core/lib/transport/metadata_batch.h",
237 "src/core/lib/transport/static_metadata.h",
238 "src/core/lib/transport/transport.h",
239 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700240 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700241 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
242 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
243 "src/core/ext/transport/chttp2/transport/frame.h",
244 "src/core/ext/transport/chttp2/transport/frame_data.h",
245 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
246 "src/core/ext/transport/chttp2/transport/frame_ping.h",
247 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
248 "src/core/ext/transport/chttp2/transport/frame_settings.h",
249 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
250 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
251 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
252 "src/core/ext/transport/chttp2/transport/hpack_table.h",
253 "src/core/ext/transport/chttp2/transport/http2_errors.h",
254 "src/core/ext/transport/chttp2/transport/huffsyms.h",
255 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
256 "src/core/ext/transport/chttp2/transport/internal.h",
257 "src/core/ext/transport/chttp2/transport/status_conversion.h",
258 "src/core/ext/transport/chttp2/transport/stream_map.h",
259 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
260 "src/core/ext/transport/chttp2/transport/varint.h",
261 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700262 "src/core/lib/security/context/security_context.h",
263 "src/core/lib/security/credentials/composite/composite_credentials.h",
264 "src/core/lib/security/credentials/credentials.h",
265 "src/core/lib/security/credentials/fake/fake_credentials.h",
266 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
267 "src/core/lib/security/credentials/iam/iam_credentials.h",
268 "src/core/lib/security/credentials/jwt/json_token.h",
269 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
270 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
271 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
272 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
273 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
274 "src/core/lib/security/transport/auth_filters.h",
275 "src/core/lib/security/transport/handshake.h",
276 "src/core/lib/security/transport/secure_endpoint.h",
277 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -0700278 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700279 "src/core/lib/security/util/b64.h",
280 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700281 "src/core/lib/tsi/fake_transport_security.h",
282 "src/core/lib/tsi/ssl_transport_security.h",
283 "src/core/lib/tsi/ssl_types.h",
284 "src/core/lib/tsi/transport_security.h",
285 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700286 "src/core/ext/client_config/client_channel.h",
287 "src/core/ext/client_config/client_channel_factory.h",
288 "src/core/ext/client_config/client_config.h",
289 "src/core/ext/client_config/connector.h",
290 "src/core/ext/client_config/initial_connect_string.h",
291 "src/core/ext/client_config/lb_policy.h",
292 "src/core/ext/client_config/lb_policy_factory.h",
293 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700294 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700295 "src/core/ext/client_config/resolver.h",
296 "src/core/ext/client_config/resolver_factory.h",
297 "src/core/ext/client_config/resolver_registry.h",
298 "src/core/ext/client_config/subchannel.h",
299 "src/core/ext/client_config/subchannel_call_holder.h",
300 "src/core/ext/client_config/subchannel_index.h",
301 "src/core/ext/client_config/uri_parser.h",
302 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700303 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700304 "src/core/ext/load_reporting/load_reporting.h",
305 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700306 "src/core/ext/census/aggregation.h",
307 "src/core/ext/census/census_interface.h",
308 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700309 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700310 "src/core/ext/census/grpc_filter.h",
311 "src/core/ext/census/mlog.h",
312 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700313 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700314 "src/core/lib/channel/channel_args.c",
315 "src/core/lib/channel/channel_stack.c",
316 "src/core/lib/channel/channel_stack_builder.c",
317 "src/core/lib/channel/compress_filter.c",
318 "src/core/lib/channel/connected_channel.c",
319 "src/core/lib/channel/http_client_filter.c",
320 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -0700321 "src/core/lib/compression/compression.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700322 "src/core/lib/compression/message_compress.c",
323 "src/core/lib/debug/trace.c",
324 "src/core/lib/http/format_request.c",
325 "src/core/lib/http/httpcli.c",
326 "src/core/lib/http/parser.c",
327 "src/core/lib/iomgr/closure.c",
328 "src/core/lib/iomgr/endpoint.c",
329 "src/core/lib/iomgr/endpoint_pair_posix.c",
330 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -0700331 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700332 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller69f3e2b2016-05-31 13:45:24 -0700333 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700334 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700335 "src/core/lib/iomgr/ev_posix.c",
336 "src/core/lib/iomgr/exec_ctx.c",
337 "src/core/lib/iomgr/executor.c",
338 "src/core/lib/iomgr/iocp_windows.c",
339 "src/core/lib/iomgr/iomgr.c",
340 "src/core/lib/iomgr/iomgr_posix.c",
341 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -0700342 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700343 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700344 "src/core/lib/iomgr/polling_entity.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700345 "src/core/lib/iomgr/pollset_set_windows.c",
346 "src/core/lib/iomgr/pollset_windows.c",
347 "src/core/lib/iomgr/resolve_address_posix.c",
348 "src/core/lib/iomgr/resolve_address_windows.c",
349 "src/core/lib/iomgr/sockaddr_utils.c",
350 "src/core/lib/iomgr/socket_utils_common_posix.c",
351 "src/core/lib/iomgr/socket_utils_linux.c",
352 "src/core/lib/iomgr/socket_utils_posix.c",
353 "src/core/lib/iomgr/socket_windows.c",
354 "src/core/lib/iomgr/tcp_client_posix.c",
355 "src/core/lib/iomgr/tcp_client_windows.c",
356 "src/core/lib/iomgr/tcp_posix.c",
357 "src/core/lib/iomgr/tcp_server_posix.c",
358 "src/core/lib/iomgr/tcp_server_windows.c",
359 "src/core/lib/iomgr/tcp_windows.c",
360 "src/core/lib/iomgr/time_averaged_stats.c",
361 "src/core/lib/iomgr/timer.c",
362 "src/core/lib/iomgr/timer_heap.c",
363 "src/core/lib/iomgr/udp_server.c",
364 "src/core/lib/iomgr/unix_sockets_posix.c",
365 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
366 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
367 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
368 "src/core/lib/iomgr/wakeup_fd_pipe.c",
369 "src/core/lib/iomgr/wakeup_fd_posix.c",
370 "src/core/lib/iomgr/workqueue_posix.c",
371 "src/core/lib/iomgr/workqueue_windows.c",
372 "src/core/lib/json/json.c",
373 "src/core/lib/json/json_reader.c",
374 "src/core/lib/json/json_string.c",
375 "src/core/lib/json/json_writer.c",
376 "src/core/lib/surface/alarm.c",
377 "src/core/lib/surface/api_trace.c",
378 "src/core/lib/surface/byte_buffer.c",
379 "src/core/lib/surface/byte_buffer_reader.c",
380 "src/core/lib/surface/call.c",
381 "src/core/lib/surface/call_details.c",
382 "src/core/lib/surface/call_log_batch.c",
383 "src/core/lib/surface/channel.c",
384 "src/core/lib/surface/channel_init.c",
385 "src/core/lib/surface/channel_ping.c",
386 "src/core/lib/surface/channel_stack_type.c",
387 "src/core/lib/surface/completion_queue.c",
388 "src/core/lib/surface/event_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700389 "src/core/lib/surface/lame_client.c",
390 "src/core/lib/surface/metadata_array.c",
391 "src/core/lib/surface/server.c",
392 "src/core/lib/surface/validate_metadata.c",
393 "src/core/lib/surface/version.c",
394 "src/core/lib/transport/byte_stream.c",
395 "src/core/lib/transport/connectivity_state.c",
396 "src/core/lib/transport/metadata.c",
397 "src/core/lib/transport/metadata_batch.c",
398 "src/core/lib/transport/static_metadata.c",
399 "src/core/lib/transport/transport.c",
400 "src/core/lib/transport/transport_op_string.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700401 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700402 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700403 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
404 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700405 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
406 "src/core/ext/transport/chttp2/transport/frame_data.c",
407 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
408 "src/core/ext/transport/chttp2/transport/frame_ping.c",
409 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
410 "src/core/ext/transport/chttp2/transport/frame_settings.c",
411 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
412 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
413 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
414 "src/core/ext/transport/chttp2/transport/hpack_table.c",
415 "src/core/ext/transport/chttp2/transport/huffsyms.c",
416 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
417 "src/core/ext/transport/chttp2/transport/parsing.c",
418 "src/core/ext/transport/chttp2/transport/status_conversion.c",
419 "src/core/ext/transport/chttp2/transport/stream_lists.c",
420 "src/core/ext/transport/chttp2/transport/stream_map.c",
421 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
422 "src/core/ext/transport/chttp2/transport/varint.c",
423 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700424 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700425 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700426 "src/core/lib/security/context/security_context.c",
427 "src/core/lib/security/credentials/composite/composite_credentials.c",
428 "src/core/lib/security/credentials/credentials.c",
429 "src/core/lib/security/credentials/credentials_metadata.c",
430 "src/core/lib/security/credentials/fake/fake_credentials.c",
431 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -0700432 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700433 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
434 "src/core/lib/security/credentials/iam/iam_credentials.c",
435 "src/core/lib/security/credentials/jwt/json_token.c",
436 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
437 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
438 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
439 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
440 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
441 "src/core/lib/security/transport/client_auth_filter.c",
442 "src/core/lib/security/transport/handshake.c",
443 "src/core/lib/security/transport/secure_endpoint.c",
444 "src/core/lib/security/transport/security_connector.c",
445 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -0700446 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700447 "src/core/lib/security/util/b64.c",
448 "src/core/lib/security/util/json_util.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700449 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700450 "src/core/lib/tsi/fake_transport_security.c",
451 "src/core/lib/tsi/ssl_transport_security.c",
452 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700453 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
454 "src/core/ext/client_config/channel_connectivity.c",
455 "src/core/ext/client_config/client_channel.c",
456 "src/core/ext/client_config/client_channel_factory.c",
457 "src/core/ext/client_config/client_config.c",
458 "src/core/ext/client_config/client_config_plugin.c",
459 "src/core/ext/client_config/connector.c",
460 "src/core/ext/client_config/default_initial_connect_string.c",
461 "src/core/ext/client_config/initial_connect_string.c",
462 "src/core/ext/client_config/lb_policy.c",
463 "src/core/ext/client_config/lb_policy_factory.c",
464 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700465 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700466 "src/core/ext/client_config/resolver.c",
467 "src/core/ext/client_config/resolver_factory.c",
468 "src/core/ext/client_config/resolver_registry.c",
469 "src/core/ext/client_config/subchannel.c",
470 "src/core/ext/client_config/subchannel_call_holder.c",
471 "src/core/ext/client_config/subchannel_index.c",
472 "src/core/ext/client_config/uri_parser.c",
473 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -0700474 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700475 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700476 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700477 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700478 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700479 "src/core/ext/lb_policy/pick_first/pick_first.c",
480 "src/core/ext/lb_policy/round_robin/round_robin.c",
481 "src/core/ext/resolver/dns/native/dns_resolver.c",
482 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700483 "src/core/ext/load_reporting/load_reporting.c",
484 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700485 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700486 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700487 "src/core/ext/census/grpc_context.c",
488 "src/core/ext/census/grpc_filter.c",
489 "src/core/ext/census/grpc_plugin.c",
490 "src/core/ext/census/initialize.c",
491 "src/core/ext/census/mlog.c",
492 "src/core/ext/census/operation.c",
493 "src/core/ext/census/placeholders.c",
494 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700495 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700496 ],
497 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700498 "include/grpc/byte_buffer.h",
499 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700500 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700501 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700502 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700503 "include/grpc/status.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700504 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700505 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700506 "include/grpc/impl/codegen/compression_types.h",
507 "include/grpc/impl/codegen/connectivity_state.h",
508 "include/grpc/impl/codegen/grpc_types.h",
509 "include/grpc/impl/codegen/propagation_bits.h",
510 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700511 "include/grpc/impl/codegen/alloc.h",
512 "include/grpc/impl/codegen/atm.h",
513 "include/grpc/impl/codegen/atm_gcc_atomic.h",
514 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700515 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700516 "include/grpc/impl/codegen/log.h",
517 "include/grpc/impl/codegen/port_platform.h",
518 "include/grpc/impl/codegen/slice.h",
519 "include/grpc/impl/codegen/slice_buffer.h",
520 "include/grpc/impl/codegen/sync.h",
521 "include/grpc/impl/codegen/sync_generic.h",
522 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700523 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700524 "include/grpc/impl/codegen/time.h",
525 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700526 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700527 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700528 ],
529 includes = [
530 "include",
531 ".",
532 ],
533 deps = [
534 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700535 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800536 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700537 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700538 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800539 copts = [
540 "-std=gnu99",
541 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200542)
543
544
Rob Earhartb7b8d052016-03-29 11:35:29 -0700545
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700546cc_library(
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700547 name = "grpc_cronet",
548 srcs = [
549 "src/core/lib/channel/channel_args.h",
550 "src/core/lib/channel/channel_stack.h",
551 "src/core/lib/channel/channel_stack_builder.h",
552 "src/core/lib/channel/compress_filter.h",
553 "src/core/lib/channel/connected_channel.h",
554 "src/core/lib/channel/context.h",
555 "src/core/lib/channel/http_client_filter.h",
556 "src/core/lib/channel/http_server_filter.h",
557 "src/core/lib/compression/algorithm_metadata.h",
558 "src/core/lib/compression/message_compress.h",
559 "src/core/lib/debug/trace.h",
560 "src/core/lib/http/format_request.h",
561 "src/core/lib/http/httpcli.h",
562 "src/core/lib/http/parser.h",
563 "src/core/lib/iomgr/closure.h",
564 "src/core/lib/iomgr/endpoint.h",
565 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700566 "src/core/lib/iomgr/error.h",
Sree Kuchibhotla492fd962016-06-10 09:03:34 -0700567 "src/core/lib/iomgr/ev_epoll_linux.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700568 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
569 "src/core/lib/iomgr/ev_poll_posix.h",
570 "src/core/lib/iomgr/ev_posix.h",
571 "src/core/lib/iomgr/exec_ctx.h",
572 "src/core/lib/iomgr/executor.h",
573 "src/core/lib/iomgr/iocp_windows.h",
574 "src/core/lib/iomgr/iomgr.h",
575 "src/core/lib/iomgr/iomgr_internal.h",
576 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700577 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700578 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700579 "src/core/lib/iomgr/polling_entity.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700580 "src/core/lib/iomgr/pollset.h",
581 "src/core/lib/iomgr/pollset_set.h",
582 "src/core/lib/iomgr/pollset_set_windows.h",
583 "src/core/lib/iomgr/pollset_windows.h",
584 "src/core/lib/iomgr/resolve_address.h",
585 "src/core/lib/iomgr/sockaddr.h",
586 "src/core/lib/iomgr/sockaddr_posix.h",
587 "src/core/lib/iomgr/sockaddr_utils.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700588 "src/core/lib/iomgr/sockaddr_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700589 "src/core/lib/iomgr/socket_utils_posix.h",
590 "src/core/lib/iomgr/socket_windows.h",
591 "src/core/lib/iomgr/tcp_client.h",
592 "src/core/lib/iomgr/tcp_posix.h",
593 "src/core/lib/iomgr/tcp_server.h",
594 "src/core/lib/iomgr/tcp_windows.h",
595 "src/core/lib/iomgr/time_averaged_stats.h",
596 "src/core/lib/iomgr/timer.h",
597 "src/core/lib/iomgr/timer_heap.h",
598 "src/core/lib/iomgr/udp_server.h",
599 "src/core/lib/iomgr/unix_sockets_posix.h",
600 "src/core/lib/iomgr/wakeup_fd_pipe.h",
601 "src/core/lib/iomgr/wakeup_fd_posix.h",
602 "src/core/lib/iomgr/workqueue.h",
603 "src/core/lib/iomgr/workqueue_posix.h",
604 "src/core/lib/iomgr/workqueue_windows.h",
605 "src/core/lib/json/json.h",
606 "src/core/lib/json/json_common.h",
607 "src/core/lib/json/json_reader.h",
608 "src/core/lib/json/json_writer.h",
609 "src/core/lib/surface/api_trace.h",
610 "src/core/lib/surface/call.h",
611 "src/core/lib/surface/call_test_only.h",
612 "src/core/lib/surface/channel.h",
613 "src/core/lib/surface/channel_init.h",
614 "src/core/lib/surface/channel_stack_type.h",
615 "src/core/lib/surface/completion_queue.h",
616 "src/core/lib/surface/event_string.h",
617 "src/core/lib/surface/init.h",
618 "src/core/lib/surface/lame_client.h",
619 "src/core/lib/surface/server.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700620 "src/core/lib/transport/byte_stream.h",
621 "src/core/lib/transport/connectivity_state.h",
622 "src/core/lib/transport/metadata.h",
623 "src/core/lib/transport/metadata_batch.h",
624 "src/core/lib/transport/static_metadata.h",
625 "src/core/lib/transport/transport.h",
626 "src/core/lib/transport/transport_impl.h",
627 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700628 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700629 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
630 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
631 "src/core/ext/transport/chttp2/transport/frame.h",
632 "src/core/ext/transport/chttp2/transport/frame_data.h",
633 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
634 "src/core/ext/transport/chttp2/transport/frame_ping.h",
635 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
636 "src/core/ext/transport/chttp2/transport/frame_settings.h",
637 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
638 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
639 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
640 "src/core/ext/transport/chttp2/transport/hpack_table.h",
641 "src/core/ext/transport/chttp2/transport/http2_errors.h",
642 "src/core/ext/transport/chttp2/transport/huffsyms.h",
643 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
644 "src/core/ext/transport/chttp2/transport/internal.h",
645 "src/core/ext/transport/chttp2/transport/status_conversion.h",
646 "src/core/ext/transport/chttp2/transport/stream_map.h",
647 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
648 "src/core/ext/transport/chttp2/transport/varint.h",
649 "src/core/ext/transport/chttp2/alpn/alpn.h",
650 "src/core/ext/client_config/client_channel.h",
651 "src/core/ext/client_config/client_channel_factory.h",
652 "src/core/ext/client_config/client_config.h",
653 "src/core/ext/client_config/connector.h",
654 "src/core/ext/client_config/initial_connect_string.h",
655 "src/core/ext/client_config/lb_policy.h",
656 "src/core/ext/client_config/lb_policy_factory.h",
657 "src/core/ext/client_config/lb_policy_registry.h",
658 "src/core/ext/client_config/parse_address.h",
659 "src/core/ext/client_config/resolver.h",
660 "src/core/ext/client_config/resolver_factory.h",
661 "src/core/ext/client_config/resolver_registry.h",
662 "src/core/ext/client_config/subchannel.h",
663 "src/core/ext/client_config/subchannel_call_holder.h",
664 "src/core/ext/client_config/subchannel_index.h",
665 "src/core/ext/client_config/uri_parser.h",
666 "src/core/lib/security/context/security_context.h",
667 "src/core/lib/security/credentials/composite/composite_credentials.h",
668 "src/core/lib/security/credentials/credentials.h",
669 "src/core/lib/security/credentials/fake/fake_credentials.h",
670 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
671 "src/core/lib/security/credentials/iam/iam_credentials.h",
672 "src/core/lib/security/credentials/jwt/json_token.h",
673 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
674 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
675 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
676 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
677 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
678 "src/core/lib/security/transport/auth_filters.h",
679 "src/core/lib/security/transport/handshake.h",
680 "src/core/lib/security/transport/secure_endpoint.h",
681 "src/core/lib/security/transport/security_connector.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700682 "src/core/lib/security/transport/tsi_error.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700683 "src/core/lib/security/util/b64.h",
684 "src/core/lib/security/util/json_util.h",
685 "src/core/lib/tsi/fake_transport_security.h",
686 "src/core/lib/tsi/ssl_transport_security.h",
687 "src/core/lib/tsi/ssl_types.h",
688 "src/core/lib/tsi/transport_security.h",
689 "src/core/lib/tsi/transport_security_interface.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700690 "src/core/lib/surface/init.c",
691 "src/core/lib/channel/channel_args.c",
692 "src/core/lib/channel/channel_stack.c",
693 "src/core/lib/channel/channel_stack_builder.c",
694 "src/core/lib/channel/compress_filter.c",
695 "src/core/lib/channel/connected_channel.c",
696 "src/core/lib/channel/http_client_filter.c",
697 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintas37e516e2016-06-07 21:23:41 -0700698 "src/core/lib/compression/compression.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700699 "src/core/lib/compression/message_compress.c",
700 "src/core/lib/debug/trace.c",
701 "src/core/lib/http/format_request.c",
702 "src/core/lib/http/httpcli.c",
703 "src/core/lib/http/parser.c",
704 "src/core/lib/iomgr/closure.c",
705 "src/core/lib/iomgr/endpoint.c",
706 "src/core/lib/iomgr/endpoint_pair_posix.c",
707 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700708 "src/core/lib/iomgr/error.c",
Sree Kuchibhotla492fd962016-06-10 09:03:34 -0700709 "src/core/lib/iomgr/ev_epoll_linux.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700710 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
711 "src/core/lib/iomgr/ev_poll_posix.c",
712 "src/core/lib/iomgr/ev_posix.c",
713 "src/core/lib/iomgr/exec_ctx.c",
714 "src/core/lib/iomgr/executor.c",
715 "src/core/lib/iomgr/iocp_windows.c",
716 "src/core/lib/iomgr/iomgr.c",
717 "src/core/lib/iomgr/iomgr_posix.c",
718 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700719 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700720 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700721 "src/core/lib/iomgr/polling_entity.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700722 "src/core/lib/iomgr/pollset_set_windows.c",
723 "src/core/lib/iomgr/pollset_windows.c",
724 "src/core/lib/iomgr/resolve_address_posix.c",
725 "src/core/lib/iomgr/resolve_address_windows.c",
726 "src/core/lib/iomgr/sockaddr_utils.c",
727 "src/core/lib/iomgr/socket_utils_common_posix.c",
728 "src/core/lib/iomgr/socket_utils_linux.c",
729 "src/core/lib/iomgr/socket_utils_posix.c",
730 "src/core/lib/iomgr/socket_windows.c",
731 "src/core/lib/iomgr/tcp_client_posix.c",
732 "src/core/lib/iomgr/tcp_client_windows.c",
733 "src/core/lib/iomgr/tcp_posix.c",
734 "src/core/lib/iomgr/tcp_server_posix.c",
735 "src/core/lib/iomgr/tcp_server_windows.c",
736 "src/core/lib/iomgr/tcp_windows.c",
737 "src/core/lib/iomgr/time_averaged_stats.c",
738 "src/core/lib/iomgr/timer.c",
739 "src/core/lib/iomgr/timer_heap.c",
740 "src/core/lib/iomgr/udp_server.c",
741 "src/core/lib/iomgr/unix_sockets_posix.c",
742 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
743 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
744 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
745 "src/core/lib/iomgr/wakeup_fd_pipe.c",
746 "src/core/lib/iomgr/wakeup_fd_posix.c",
747 "src/core/lib/iomgr/workqueue_posix.c",
748 "src/core/lib/iomgr/workqueue_windows.c",
749 "src/core/lib/json/json.c",
750 "src/core/lib/json/json_reader.c",
751 "src/core/lib/json/json_string.c",
752 "src/core/lib/json/json_writer.c",
753 "src/core/lib/surface/alarm.c",
754 "src/core/lib/surface/api_trace.c",
755 "src/core/lib/surface/byte_buffer.c",
756 "src/core/lib/surface/byte_buffer_reader.c",
757 "src/core/lib/surface/call.c",
758 "src/core/lib/surface/call_details.c",
759 "src/core/lib/surface/call_log_batch.c",
760 "src/core/lib/surface/channel.c",
761 "src/core/lib/surface/channel_init.c",
762 "src/core/lib/surface/channel_ping.c",
763 "src/core/lib/surface/channel_stack_type.c",
764 "src/core/lib/surface/completion_queue.c",
765 "src/core/lib/surface/event_string.c",
766 "src/core/lib/surface/lame_client.c",
767 "src/core/lib/surface/metadata_array.c",
768 "src/core/lib/surface/server.c",
769 "src/core/lib/surface/validate_metadata.c",
770 "src/core/lib/surface/version.c",
771 "src/core/lib/transport/byte_stream.c",
772 "src/core/lib/transport/connectivity_state.c",
773 "src/core/lib/transport/metadata.c",
774 "src/core/lib/transport/metadata_batch.c",
775 "src/core/lib/transport/static_metadata.c",
776 "src/core/lib/transport/transport.c",
777 "src/core/lib/transport/transport_op_string.c",
778 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
779 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
780 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700781 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700782 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700783 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
784 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
785 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
786 "src/core/ext/transport/chttp2/transport/frame_data.c",
787 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
788 "src/core/ext/transport/chttp2/transport/frame_ping.c",
789 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
790 "src/core/ext/transport/chttp2/transport/frame_settings.c",
791 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
792 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
793 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
794 "src/core/ext/transport/chttp2/transport/hpack_table.c",
795 "src/core/ext/transport/chttp2/transport/huffsyms.c",
796 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
797 "src/core/ext/transport/chttp2/transport/parsing.c",
798 "src/core/ext/transport/chttp2/transport/status_conversion.c",
799 "src/core/ext/transport/chttp2/transport/stream_lists.c",
800 "src/core/ext/transport/chttp2/transport/stream_map.c",
801 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
802 "src/core/ext/transport/chttp2/transport/varint.c",
803 "src/core/ext/transport/chttp2/transport/writing.c",
804 "src/core/ext/transport/chttp2/alpn/alpn.c",
805 "src/core/ext/client_config/channel_connectivity.c",
806 "src/core/ext/client_config/client_channel.c",
807 "src/core/ext/client_config/client_channel_factory.c",
808 "src/core/ext/client_config/client_config.c",
809 "src/core/ext/client_config/client_config_plugin.c",
810 "src/core/ext/client_config/connector.c",
811 "src/core/ext/client_config/default_initial_connect_string.c",
812 "src/core/ext/client_config/initial_connect_string.c",
813 "src/core/ext/client_config/lb_policy.c",
814 "src/core/ext/client_config/lb_policy_factory.c",
815 "src/core/ext/client_config/lb_policy_registry.c",
816 "src/core/ext/client_config/parse_address.c",
817 "src/core/ext/client_config/resolver.c",
818 "src/core/ext/client_config/resolver_factory.c",
819 "src/core/ext/client_config/resolver_registry.c",
820 "src/core/ext/client_config/subchannel.c",
821 "src/core/ext/client_config/subchannel_call_holder.c",
822 "src/core/ext/client_config/subchannel_index.c",
823 "src/core/ext/client_config/uri_parser.c",
824 "src/core/lib/http/httpcli_security_connector.c",
825 "src/core/lib/security/context/security_context.c",
826 "src/core/lib/security/credentials/composite/composite_credentials.c",
827 "src/core/lib/security/credentials/credentials.c",
828 "src/core/lib/security/credentials/credentials_metadata.c",
829 "src/core/lib/security/credentials/fake/fake_credentials.c",
830 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700831 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700832 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
833 "src/core/lib/security/credentials/iam/iam_credentials.c",
834 "src/core/lib/security/credentials/jwt/json_token.c",
835 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
836 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
837 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
838 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
839 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
840 "src/core/lib/security/transport/client_auth_filter.c",
841 "src/core/lib/security/transport/handshake.c",
842 "src/core/lib/security/transport/secure_endpoint.c",
843 "src/core/lib/security/transport/security_connector.c",
844 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700845 "src/core/lib/security/transport/tsi_error.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700846 "src/core/lib/security/util/b64.c",
847 "src/core/lib/security/util/json_util.c",
848 "src/core/lib/surface/init_secure.c",
849 "src/core/lib/tsi/fake_transport_security.c",
850 "src/core/lib/tsi/ssl_transport_security.c",
851 "src/core/lib/tsi/transport_security.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700852 "src/core/plugin_registry/grpc_cronet_plugin_registry.c",
853 ],
854 hdrs = [
855 "include/grpc/byte_buffer.h",
856 "include/grpc/byte_buffer_reader.h",
857 "include/grpc/compression.h",
858 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700859 "include/grpc/grpc_posix.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700860 "include/grpc/status.h",
861 "include/grpc/impl/codegen/byte_buffer.h",
862 "include/grpc/impl/codegen/byte_buffer_reader.h",
863 "include/grpc/impl/codegen/compression_types.h",
864 "include/grpc/impl/codegen/connectivity_state.h",
865 "include/grpc/impl/codegen/grpc_types.h",
866 "include/grpc/impl/codegen/propagation_bits.h",
867 "include/grpc/impl/codegen/status.h",
868 "include/grpc/impl/codegen/alloc.h",
869 "include/grpc/impl/codegen/atm.h",
870 "include/grpc/impl/codegen/atm_gcc_atomic.h",
871 "include/grpc/impl/codegen/atm_gcc_sync.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700872 "include/grpc/impl/codegen/atm_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700873 "include/grpc/impl/codegen/log.h",
874 "include/grpc/impl/codegen/port_platform.h",
875 "include/grpc/impl/codegen/slice.h",
876 "include/grpc/impl/codegen/slice_buffer.h",
877 "include/grpc/impl/codegen/sync.h",
878 "include/grpc/impl/codegen/sync_generic.h",
879 "include/grpc/impl/codegen/sync_posix.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700880 "include/grpc/impl/codegen/sync_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700881 "include/grpc/impl/codegen/time.h",
882 "include/grpc/grpc_cronet.h",
883 "include/grpc/grpc_security.h",
884 "include/grpc/grpc_security_constants.h",
885 ],
886 includes = [
887 "include",
888 ".",
889 ],
890 deps = [
891 "//external:libssl",
892 ":gpr",
893 ],
894)
895
896
897
898cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700899 name = "grpc_unsecure",
900 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700901 "src/core/lib/channel/channel_args.h",
902 "src/core/lib/channel/channel_stack.h",
903 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700904 "src/core/lib/channel/compress_filter.h",
905 "src/core/lib/channel/connected_channel.h",
906 "src/core/lib/channel/context.h",
907 "src/core/lib/channel/http_client_filter.h",
908 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700909 "src/core/lib/compression/algorithm_metadata.h",
910 "src/core/lib/compression/message_compress.h",
911 "src/core/lib/debug/trace.h",
912 "src/core/lib/http/format_request.h",
913 "src/core/lib/http/httpcli.h",
914 "src/core/lib/http/parser.h",
915 "src/core/lib/iomgr/closure.h",
916 "src/core/lib/iomgr/endpoint.h",
917 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700918 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700919 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller69f3e2b2016-05-31 13:45:24 -0700920 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700921 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700922 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700923 "src/core/lib/iomgr/exec_ctx.h",
924 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700925 "src/core/lib/iomgr/iocp_windows.h",
926 "src/core/lib/iomgr/iomgr.h",
927 "src/core/lib/iomgr/iomgr_internal.h",
928 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -0700929 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700930 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700931 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700932 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700933 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700934 "src/core/lib/iomgr/pollset_set_windows.h",
935 "src/core/lib/iomgr/pollset_windows.h",
936 "src/core/lib/iomgr/resolve_address.h",
937 "src/core/lib/iomgr/sockaddr.h",
938 "src/core/lib/iomgr/sockaddr_posix.h",
939 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700940 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700941 "src/core/lib/iomgr/socket_utils_posix.h",
942 "src/core/lib/iomgr/socket_windows.h",
943 "src/core/lib/iomgr/tcp_client.h",
944 "src/core/lib/iomgr/tcp_posix.h",
945 "src/core/lib/iomgr/tcp_server.h",
946 "src/core/lib/iomgr/tcp_windows.h",
947 "src/core/lib/iomgr/time_averaged_stats.h",
948 "src/core/lib/iomgr/timer.h",
949 "src/core/lib/iomgr/timer_heap.h",
950 "src/core/lib/iomgr/udp_server.h",
951 "src/core/lib/iomgr/unix_sockets_posix.h",
952 "src/core/lib/iomgr/wakeup_fd_pipe.h",
953 "src/core/lib/iomgr/wakeup_fd_posix.h",
954 "src/core/lib/iomgr/workqueue.h",
955 "src/core/lib/iomgr/workqueue_posix.h",
956 "src/core/lib/iomgr/workqueue_windows.h",
957 "src/core/lib/json/json.h",
958 "src/core/lib/json/json_common.h",
959 "src/core/lib/json/json_reader.h",
960 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700961 "src/core/lib/surface/api_trace.h",
962 "src/core/lib/surface/call.h",
963 "src/core/lib/surface/call_test_only.h",
964 "src/core/lib/surface/channel.h",
965 "src/core/lib/surface/channel_init.h",
966 "src/core/lib/surface/channel_stack_type.h",
967 "src/core/lib/surface/completion_queue.h",
968 "src/core/lib/surface/event_string.h",
969 "src/core/lib/surface/init.h",
970 "src/core/lib/surface/lame_client.h",
971 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700972 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700973 "src/core/lib/transport/connectivity_state.h",
974 "src/core/lib/transport/metadata.h",
975 "src/core/lib/transport/metadata_batch.h",
976 "src/core/lib/transport/static_metadata.h",
977 "src/core/lib/transport/transport.h",
978 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700979 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700980 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
981 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
982 "src/core/ext/transport/chttp2/transport/frame.h",
983 "src/core/ext/transport/chttp2/transport/frame_data.h",
984 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
985 "src/core/ext/transport/chttp2/transport/frame_ping.h",
986 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
987 "src/core/ext/transport/chttp2/transport/frame_settings.h",
988 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
989 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
990 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
991 "src/core/ext/transport/chttp2/transport/hpack_table.h",
992 "src/core/ext/transport/chttp2/transport/http2_errors.h",
993 "src/core/ext/transport/chttp2/transport/huffsyms.h",
994 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
995 "src/core/ext/transport/chttp2/transport/internal.h",
996 "src/core/ext/transport/chttp2/transport/status_conversion.h",
997 "src/core/ext/transport/chttp2/transport/stream_map.h",
998 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
999 "src/core/ext/transport/chttp2/transport/varint.h",
1000 "src/core/ext/transport/chttp2/alpn/alpn.h",
1001 "src/core/ext/client_config/client_channel.h",
1002 "src/core/ext/client_config/client_channel_factory.h",
1003 "src/core/ext/client_config/client_config.h",
1004 "src/core/ext/client_config/connector.h",
1005 "src/core/ext/client_config/initial_connect_string.h",
1006 "src/core/ext/client_config/lb_policy.h",
1007 "src/core/ext/client_config/lb_policy_factory.h",
1008 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001009 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001010 "src/core/ext/client_config/resolver.h",
1011 "src/core/ext/client_config/resolver_factory.h",
1012 "src/core/ext/client_config/resolver_registry.h",
1013 "src/core/ext/client_config/subchannel.h",
1014 "src/core/ext/client_config/subchannel_call_holder.h",
1015 "src/core/ext/client_config/subchannel_index.h",
1016 "src/core/ext/client_config/uri_parser.h",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001017 "src/core/ext/load_reporting/load_reporting.h",
1018 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001019 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001020 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001021 "src/core/ext/census/aggregation.h",
1022 "src/core/ext/census/census_interface.h",
1023 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001024 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001025 "src/core/ext/census/grpc_filter.h",
1026 "src/core/ext/census/mlog.h",
1027 "src/core/ext/census/rpc_metric_id.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001028 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001029 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001030 "src/core/lib/channel/channel_args.c",
1031 "src/core/lib/channel/channel_stack.c",
1032 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001033 "src/core/lib/channel/compress_filter.c",
1034 "src/core/lib/channel/connected_channel.c",
1035 "src/core/lib/channel/http_client_filter.c",
1036 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001037 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001038 "src/core/lib/compression/message_compress.c",
1039 "src/core/lib/debug/trace.c",
1040 "src/core/lib/http/format_request.c",
1041 "src/core/lib/http/httpcli.c",
1042 "src/core/lib/http/parser.c",
1043 "src/core/lib/iomgr/closure.c",
1044 "src/core/lib/iomgr/endpoint.c",
1045 "src/core/lib/iomgr/endpoint_pair_posix.c",
1046 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07001047 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07001048 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller69f3e2b2016-05-31 13:45:24 -07001049 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001050 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001051 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001052 "src/core/lib/iomgr/exec_ctx.c",
1053 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001054 "src/core/lib/iomgr/iocp_windows.c",
1055 "src/core/lib/iomgr/iomgr.c",
1056 "src/core/lib/iomgr/iomgr_posix.c",
1057 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -07001058 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07001059 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001060 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001061 "src/core/lib/iomgr/pollset_set_windows.c",
1062 "src/core/lib/iomgr/pollset_windows.c",
1063 "src/core/lib/iomgr/resolve_address_posix.c",
1064 "src/core/lib/iomgr/resolve_address_windows.c",
1065 "src/core/lib/iomgr/sockaddr_utils.c",
1066 "src/core/lib/iomgr/socket_utils_common_posix.c",
1067 "src/core/lib/iomgr/socket_utils_linux.c",
1068 "src/core/lib/iomgr/socket_utils_posix.c",
1069 "src/core/lib/iomgr/socket_windows.c",
1070 "src/core/lib/iomgr/tcp_client_posix.c",
1071 "src/core/lib/iomgr/tcp_client_windows.c",
1072 "src/core/lib/iomgr/tcp_posix.c",
1073 "src/core/lib/iomgr/tcp_server_posix.c",
1074 "src/core/lib/iomgr/tcp_server_windows.c",
1075 "src/core/lib/iomgr/tcp_windows.c",
1076 "src/core/lib/iomgr/time_averaged_stats.c",
1077 "src/core/lib/iomgr/timer.c",
1078 "src/core/lib/iomgr/timer_heap.c",
1079 "src/core/lib/iomgr/udp_server.c",
1080 "src/core/lib/iomgr/unix_sockets_posix.c",
1081 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1082 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1083 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1084 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1085 "src/core/lib/iomgr/wakeup_fd_posix.c",
1086 "src/core/lib/iomgr/workqueue_posix.c",
1087 "src/core/lib/iomgr/workqueue_windows.c",
1088 "src/core/lib/json/json.c",
1089 "src/core/lib/json/json_reader.c",
1090 "src/core/lib/json/json_string.c",
1091 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001092 "src/core/lib/surface/alarm.c",
1093 "src/core/lib/surface/api_trace.c",
1094 "src/core/lib/surface/byte_buffer.c",
1095 "src/core/lib/surface/byte_buffer_reader.c",
1096 "src/core/lib/surface/call.c",
1097 "src/core/lib/surface/call_details.c",
1098 "src/core/lib/surface/call_log_batch.c",
1099 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001100 "src/core/lib/surface/channel_init.c",
1101 "src/core/lib/surface/channel_ping.c",
1102 "src/core/lib/surface/channel_stack_type.c",
1103 "src/core/lib/surface/completion_queue.c",
1104 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001105 "src/core/lib/surface/lame_client.c",
1106 "src/core/lib/surface/metadata_array.c",
1107 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001108 "src/core/lib/surface/validate_metadata.c",
1109 "src/core/lib/surface/version.c",
1110 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001111 "src/core/lib/transport/connectivity_state.c",
1112 "src/core/lib/transport/metadata.c",
1113 "src/core/lib/transport/metadata_batch.c",
1114 "src/core/lib/transport/static_metadata.c",
1115 "src/core/lib/transport/transport.c",
1116 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001117 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001118 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001119 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001120 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1121 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1122 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1123 "src/core/ext/transport/chttp2/transport/frame_data.c",
1124 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1125 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1126 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1127 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1128 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1129 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1130 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1131 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1132 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1133 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1134 "src/core/ext/transport/chttp2/transport/parsing.c",
1135 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1136 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1137 "src/core/ext/transport/chttp2/transport/stream_map.c",
1138 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1139 "src/core/ext/transport/chttp2/transport/varint.c",
1140 "src/core/ext/transport/chttp2/transport/writing.c",
1141 "src/core/ext/transport/chttp2/alpn/alpn.c",
1142 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001143 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001144 "src/core/ext/client_config/channel_connectivity.c",
1145 "src/core/ext/client_config/client_channel.c",
1146 "src/core/ext/client_config/client_channel_factory.c",
1147 "src/core/ext/client_config/client_config.c",
1148 "src/core/ext/client_config/client_config_plugin.c",
1149 "src/core/ext/client_config/connector.c",
1150 "src/core/ext/client_config/default_initial_connect_string.c",
1151 "src/core/ext/client_config/initial_connect_string.c",
1152 "src/core/ext/client_config/lb_policy.c",
1153 "src/core/ext/client_config/lb_policy_factory.c",
1154 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001155 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001156 "src/core/ext/client_config/resolver.c",
1157 "src/core/ext/client_config/resolver_factory.c",
1158 "src/core/ext/client_config/resolver_registry.c",
1159 "src/core/ext/client_config/subchannel.c",
1160 "src/core/ext/client_config/subchannel_call_holder.c",
1161 "src/core/ext/client_config/subchannel_index.c",
1162 "src/core/ext/client_config/uri_parser.c",
1163 "src/core/ext/resolver/dns/native/dns_resolver.c",
1164 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001165 "src/core/ext/load_reporting/load_reporting.c",
1166 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001167 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001168 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001169 "src/core/ext/lb_policy/pick_first/pick_first.c",
1170 "src/core/ext/lb_policy/round_robin/round_robin.c",
1171 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001172 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001173 "src/core/ext/census/grpc_context.c",
1174 "src/core/ext/census/grpc_filter.c",
1175 "src/core/ext/census/grpc_plugin.c",
1176 "src/core/ext/census/initialize.c",
1177 "src/core/ext/census/mlog.c",
1178 "src/core/ext/census/operation.c",
1179 "src/core/ext/census/placeholders.c",
1180 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001181 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001182 ],
1183 hdrs = [
1184 "include/grpc/byte_buffer.h",
1185 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -07001186 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001187 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001188 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001189 "include/grpc/status.h",
Craig Tillerad095982016-02-09 12:45:04 -08001190 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001191 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -08001192 "include/grpc/impl/codegen/compression_types.h",
1193 "include/grpc/impl/codegen/connectivity_state.h",
1194 "include/grpc/impl/codegen/grpc_types.h",
1195 "include/grpc/impl/codegen/propagation_bits.h",
1196 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001197 "include/grpc/impl/codegen/alloc.h",
1198 "include/grpc/impl/codegen/atm.h",
1199 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1200 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001201 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001202 "include/grpc/impl/codegen/log.h",
1203 "include/grpc/impl/codegen/port_platform.h",
1204 "include/grpc/impl/codegen/slice.h",
1205 "include/grpc/impl/codegen/slice_buffer.h",
1206 "include/grpc/impl/codegen/sync.h",
1207 "include/grpc/impl/codegen/sync_generic.h",
1208 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001209 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001210 "include/grpc/impl/codegen/time.h",
1211 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001212 ],
1213 includes = [
1214 "include",
1215 ".",
1216 ],
1217 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001218 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001219 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001220 ],
Rob Earhartaf379b22016-01-21 13:43:09 -08001221 copts = [
1222 "-std=gnu99",
1223 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001224)
1225
1226
Rob Earhartb7b8d052016-03-29 11:35:29 -07001227
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001228cc_library(
1229 name = "grpc++",
1230 srcs = [
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001231 "include/grpc++/impl/codegen/core_codegen.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001232 "src/cpp/client/secure_credentials.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001233 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001234 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001235 "src/cpp/client/create_channel_internal.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001236 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001237 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001238 "src/cpp/client/secure_credentials.cc",
1239 "src/cpp/common/auth_property_iterator.cc",
1240 "src/cpp/common/secure_auth_context.cc",
1241 "src/cpp/common/secure_channel_arguments.cc",
1242 "src/cpp/common/secure_create_auth_context.cc",
1243 "src/cpp/server/secure_server_credentials.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001244 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001245 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001246 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001247 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001248 "src/cpp/client/create_channel_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001249 "src/cpp/client/credentials.cc",
1250 "src/cpp/client/generic_stub.cc",
1251 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001252 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001253 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001254 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001255 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001256 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001257 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001258 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001259 "src/cpp/server/insecure_server_credentials.cc",
1260 "src/cpp/server/server.cc",
1261 "src/cpp/server/server_builder.cc",
1262 "src/cpp/server/server_context.cc",
1263 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001264 "src/cpp/server/server_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001265 "src/cpp/util/byte_buffer.cc",
1266 "src/cpp/util/slice.cc",
1267 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001268 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001269 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001270 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001271 ],
1272 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001273 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001274 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001275 "include/grpc++/client_context.h",
1276 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001277 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001278 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001279 "include/grpc++/generic/async_generic_service.h",
1280 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001281 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001282 "include/grpc++/impl/call.h",
1283 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001284 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001285 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001286 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001287 "include/grpc++/impl/rpc_method.h",
1288 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001289 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001290 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001291 "include/grpc++/impl/server_builder_plugin.h",
1292 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001293 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001294 "include/grpc++/impl/sync.h",
1295 "include/grpc++/impl/sync_cxx11.h",
1296 "include/grpc++/impl/sync_no_cxx11.h",
1297 "include/grpc++/impl/thd.h",
1298 "include/grpc++/impl/thd_cxx11.h",
1299 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001300 "include/grpc++/security/auth_context.h",
1301 "include/grpc++/security/auth_metadata_processor.h",
1302 "include/grpc++/security/credentials.h",
1303 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001304 "include/grpc++/server.h",
1305 "include/grpc++/server_builder.h",
1306 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001307 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001308 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001309 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001310 "include/grpc++/support/byte_buffer.h",
1311 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001312 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001313 "include/grpc++/support/slice.h",
1314 "include/grpc++/support/status.h",
1315 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001316 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001317 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001318 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001319 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001320 "include/grpc++/impl/codegen/async_stream.h",
1321 "include/grpc++/impl/codegen/async_unary_call.h",
1322 "include/grpc++/impl/codegen/call.h",
1323 "include/grpc++/impl/codegen/call_hook.h",
1324 "include/grpc++/impl/codegen/channel_interface.h",
1325 "include/grpc++/impl/codegen/client_context.h",
1326 "include/grpc++/impl/codegen/client_unary_call.h",
1327 "include/grpc++/impl/codegen/completion_queue.h",
1328 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001329 "include/grpc++/impl/codegen/config.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001330 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001331 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001332 "include/grpc++/impl/codegen/grpc_library.h",
1333 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001334 "include/grpc++/impl/codegen/rpc_method.h",
1335 "include/grpc++/impl/codegen/rpc_service_method.h",
1336 "include/grpc++/impl/codegen/security/auth_context.h",
1337 "include/grpc++/impl/codegen/serialization_traits.h",
1338 "include/grpc++/impl/codegen/server_context.h",
1339 "include/grpc++/impl/codegen/server_interface.h",
1340 "include/grpc++/impl/codegen/service_type.h",
1341 "include/grpc++/impl/codegen/status.h",
1342 "include/grpc++/impl/codegen/status_code_enum.h",
1343 "include/grpc++/impl/codegen/string_ref.h",
1344 "include/grpc++/impl/codegen/stub_options.h",
1345 "include/grpc++/impl/codegen/sync.h",
1346 "include/grpc++/impl/codegen/sync_cxx11.h",
1347 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1348 "include/grpc++/impl/codegen/sync_stream.h",
1349 "include/grpc++/impl/codegen/time.h",
1350 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001351 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001352 "include/grpc/impl/codegen/compression_types.h",
1353 "include/grpc/impl/codegen/connectivity_state.h",
1354 "include/grpc/impl/codegen/grpc_types.h",
1355 "include/grpc/impl/codegen/propagation_bits.h",
1356 "include/grpc/impl/codegen/status.h",
1357 "include/grpc/impl/codegen/alloc.h",
1358 "include/grpc/impl/codegen/atm.h",
1359 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1360 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001361 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001362 "include/grpc/impl/codegen/log.h",
1363 "include/grpc/impl/codegen/port_platform.h",
1364 "include/grpc/impl/codegen/slice.h",
1365 "include/grpc/impl/codegen/slice_buffer.h",
1366 "include/grpc/impl/codegen/sync.h",
1367 "include/grpc/impl/codegen/sync_generic.h",
1368 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001369 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001370 "include/grpc/impl/codegen/time.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001371 ],
1372 includes = [
1373 "include",
1374 ".",
1375 ],
1376 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001377 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001378 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001379 ":grpc",
1380 ],
1381)
1382
1383
Rob Earhartb7b8d052016-03-29 11:35:29 -07001384
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001385cc_library(
Yuchen Zengc84ed682016-05-04 16:30:11 -07001386 name = "grpc++_reflection",
1387 srcs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001388 "src/cpp/ext/proto_server_reflection.h",
1389 "src/cpp/ext/proto_server_reflection.cc",
1390 "src/cpp/ext/proto_server_reflection_plugin.cc",
1391 "src/cpp/ext/reflection.grpc.pb.cc",
1392 "src/cpp/ext/reflection.pb.cc",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001393 ],
1394 hdrs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001395 "include/grpc++/ext/proto_server_reflection_plugin.h",
1396 "include/grpc++/ext/reflection.grpc.pb.h",
1397 "include/grpc++/ext/reflection.pb.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001398 "include/grpc++/impl/codegen/proto_utils.h",
1399 "include/grpc++/impl/codegen/async_stream.h",
1400 "include/grpc++/impl/codegen/async_unary_call.h",
1401 "include/grpc++/impl/codegen/call.h",
1402 "include/grpc++/impl/codegen/call_hook.h",
1403 "include/grpc++/impl/codegen/channel_interface.h",
1404 "include/grpc++/impl/codegen/client_context.h",
1405 "include/grpc++/impl/codegen/client_unary_call.h",
1406 "include/grpc++/impl/codegen/completion_queue.h",
1407 "include/grpc++/impl/codegen/completion_queue_tag.h",
1408 "include/grpc++/impl/codegen/config.h",
1409 "include/grpc++/impl/codegen/core_codegen_interface.h",
1410 "include/grpc++/impl/codegen/create_auth_context.h",
1411 "include/grpc++/impl/codegen/grpc_library.h",
1412 "include/grpc++/impl/codegen/method_handler_impl.h",
1413 "include/grpc++/impl/codegen/rpc_method.h",
1414 "include/grpc++/impl/codegen/rpc_service_method.h",
1415 "include/grpc++/impl/codegen/security/auth_context.h",
1416 "include/grpc++/impl/codegen/serialization_traits.h",
1417 "include/grpc++/impl/codegen/server_context.h",
1418 "include/grpc++/impl/codegen/server_interface.h",
1419 "include/grpc++/impl/codegen/service_type.h",
1420 "include/grpc++/impl/codegen/status.h",
1421 "include/grpc++/impl/codegen/status_code_enum.h",
1422 "include/grpc++/impl/codegen/string_ref.h",
1423 "include/grpc++/impl/codegen/stub_options.h",
1424 "include/grpc++/impl/codegen/sync.h",
1425 "include/grpc++/impl/codegen/sync_cxx11.h",
1426 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1427 "include/grpc++/impl/codegen/sync_stream.h",
1428 "include/grpc++/impl/codegen/time.h",
1429 "include/grpc/impl/codegen/byte_buffer.h",
1430 "include/grpc/impl/codegen/byte_buffer_reader.h",
1431 "include/grpc/impl/codegen/compression_types.h",
1432 "include/grpc/impl/codegen/connectivity_state.h",
1433 "include/grpc/impl/codegen/grpc_types.h",
1434 "include/grpc/impl/codegen/propagation_bits.h",
1435 "include/grpc/impl/codegen/status.h",
1436 "include/grpc/impl/codegen/alloc.h",
1437 "include/grpc/impl/codegen/atm.h",
1438 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1439 "include/grpc/impl/codegen/atm_gcc_sync.h",
1440 "include/grpc/impl/codegen/atm_windows.h",
1441 "include/grpc/impl/codegen/log.h",
1442 "include/grpc/impl/codegen/port_platform.h",
1443 "include/grpc/impl/codegen/slice.h",
1444 "include/grpc/impl/codegen/slice_buffer.h",
1445 "include/grpc/impl/codegen/sync.h",
1446 "include/grpc/impl/codegen/sync_generic.h",
1447 "include/grpc/impl/codegen/sync_posix.h",
1448 "include/grpc/impl/codegen/sync_windows.h",
1449 "include/grpc/impl/codegen/time.h",
1450 "include/grpc++/impl/codegen/config_protobuf.h",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001451 ],
1452 includes = [
1453 "include",
1454 ".",
1455 ],
1456 deps = [
Yuchen Zengc6bf5f72016-06-07 14:41:01 -07001457 ":grpc++",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001458 ],
1459)
1460
1461
1462
1463cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001464 name = "grpc++_unsecure",
1465 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001466 "src/cpp/client/create_channel_internal.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001467 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001468 "src/cpp/server/thread_pool_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001469 "src/cpp/common/insecure_create_auth_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001470 "src/cpp/client/channel.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001471 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001472 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001473 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001474 "src/cpp/client/create_channel_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001475 "src/cpp/client/credentials.cc",
1476 "src/cpp/client/generic_stub.cc",
1477 "src/cpp/client/insecure_credentials.cc",
yang-g52705592015-11-25 11:45:33 -08001478 "src/cpp/common/channel_arguments.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001479 "src/cpp/common/completion_queue.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001480 "src/cpp/common/core_codegen.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001481 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001482 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001483 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001484 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001485 "src/cpp/server/insecure_server_credentials.cc",
1486 "src/cpp/server/server.cc",
1487 "src/cpp/server/server_builder.cc",
1488 "src/cpp/server/server_context.cc",
1489 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001490 "src/cpp/server/server_posix.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001491 "src/cpp/util/byte_buffer.cc",
1492 "src/cpp/util/slice.cc",
1493 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001494 "src/cpp/util/string_ref.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001495 "src/cpp/util/time.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001496 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001497 ],
1498 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001499 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001500 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001501 "include/grpc++/client_context.h",
1502 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001503 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001504 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001505 "include/grpc++/generic/async_generic_service.h",
1506 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001507 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001508 "include/grpc++/impl/call.h",
1509 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001510 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001511 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001512 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001513 "include/grpc++/impl/rpc_method.h",
1514 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001515 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001516 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001517 "include/grpc++/impl/server_builder_plugin.h",
1518 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001519 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001520 "include/grpc++/impl/sync.h",
1521 "include/grpc++/impl/sync_cxx11.h",
1522 "include/grpc++/impl/sync_no_cxx11.h",
1523 "include/grpc++/impl/thd.h",
1524 "include/grpc++/impl/thd_cxx11.h",
1525 "include/grpc++/impl/thd_no_cxx11.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001526 "include/grpc++/security/auth_context.h",
1527 "include/grpc++/security/auth_metadata_processor.h",
1528 "include/grpc++/security/credentials.h",
1529 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001530 "include/grpc++/server.h",
1531 "include/grpc++/server_builder.h",
1532 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001533 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001534 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001535 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001536 "include/grpc++/support/byte_buffer.h",
1537 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001538 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001539 "include/grpc++/support/slice.h",
1540 "include/grpc++/support/status.h",
1541 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001542 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001543 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001544 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001545 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001546 "include/grpc++/impl/codegen/async_stream.h",
1547 "include/grpc++/impl/codegen/async_unary_call.h",
1548 "include/grpc++/impl/codegen/call.h",
1549 "include/grpc++/impl/codegen/call_hook.h",
1550 "include/grpc++/impl/codegen/channel_interface.h",
1551 "include/grpc++/impl/codegen/client_context.h",
1552 "include/grpc++/impl/codegen/client_unary_call.h",
1553 "include/grpc++/impl/codegen/completion_queue.h",
1554 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001555 "include/grpc++/impl/codegen/config.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001556 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001557 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001558 "include/grpc++/impl/codegen/grpc_library.h",
1559 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001560 "include/grpc++/impl/codegen/rpc_method.h",
1561 "include/grpc++/impl/codegen/rpc_service_method.h",
1562 "include/grpc++/impl/codegen/security/auth_context.h",
1563 "include/grpc++/impl/codegen/serialization_traits.h",
1564 "include/grpc++/impl/codegen/server_context.h",
1565 "include/grpc++/impl/codegen/server_interface.h",
1566 "include/grpc++/impl/codegen/service_type.h",
1567 "include/grpc++/impl/codegen/status.h",
1568 "include/grpc++/impl/codegen/status_code_enum.h",
1569 "include/grpc++/impl/codegen/string_ref.h",
1570 "include/grpc++/impl/codegen/stub_options.h",
1571 "include/grpc++/impl/codegen/sync.h",
1572 "include/grpc++/impl/codegen/sync_cxx11.h",
1573 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1574 "include/grpc++/impl/codegen/sync_stream.h",
1575 "include/grpc++/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001576 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001577 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001578 "include/grpc/impl/codegen/compression_types.h",
1579 "include/grpc/impl/codegen/connectivity_state.h",
1580 "include/grpc/impl/codegen/grpc_types.h",
1581 "include/grpc/impl/codegen/propagation_bits.h",
1582 "include/grpc/impl/codegen/status.h",
David Garcia Quintasb523c732016-01-25 18:22:28 -08001583 "include/grpc/impl/codegen/alloc.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001584 "include/grpc/impl/codegen/atm.h",
1585 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1586 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001587 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001588 "include/grpc/impl/codegen/log.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001589 "include/grpc/impl/codegen/port_platform.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001590 "include/grpc/impl/codegen/slice.h",
1591 "include/grpc/impl/codegen/slice_buffer.h",
David Garcia Quintas2425bbb2016-01-25 17:32:48 -08001592 "include/grpc/impl/codegen/sync.h",
1593 "include/grpc/impl/codegen/sync_generic.h",
1594 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001595 "include/grpc/impl/codegen/sync_windows.h",
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001596 "include/grpc/impl/codegen/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001597 ],
1598 includes = [
1599 "include",
1600 ".",
1601 ],
1602 deps = [
1603 "//external:protobuf_clib",
1604 ":gpr",
1605 ":grpc_unsecure",
Yuchen Zengf0ec5b62016-07-08 13:40:40 -07001606 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001607 ],
1608)
1609
1610
1611
1612cc_library(
1613 name = "grpc_plugin_support",
1614 srcs = [
1615 "src/compiler/config.h",
1616 "src/compiler/cpp_generator.h",
1617 "src/compiler/cpp_generator_helpers.h",
1618 "src/compiler/csharp_generator.h",
1619 "src/compiler/csharp_generator_helpers.h",
1620 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001621 "src/compiler/node_generator.h",
1622 "src/compiler/node_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001623 "src/compiler/objective_c_generator.h",
1624 "src/compiler/objective_c_generator_helpers.h",
1625 "src/compiler/python_generator.h",
1626 "src/compiler/ruby_generator.h",
1627 "src/compiler/ruby_generator_helpers-inl.h",
1628 "src/compiler/ruby_generator_map-inl.h",
1629 "src/compiler/ruby_generator_string-inl.h",
1630 "src/compiler/cpp_generator.cc",
1631 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001632 "src/compiler/node_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001633 "src/compiler/objective_c_generator.cc",
1634 "src/compiler/python_generator.cc",
1635 "src/compiler/ruby_generator.cc",
1636 ],
1637 hdrs = [
Craig Tiller03915e52016-04-07 09:15:10 -07001638 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001639 ],
1640 includes = [
1641 "include",
1642 ".",
1643 ],
1644 deps = [
1645 "//external:protobuf_compiler",
1646 ],
1647)
1648
1649
Rob Earhartb7b8d052016-03-29 11:35:29 -07001650
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001651cc_library(
1652 name = "grpc_csharp_ext",
1653 srcs = [
1654 "src/csharp/ext/grpc_csharp_ext.c",
1655 ],
1656 hdrs = [
1657 ],
1658 includes = [
1659 "include",
1660 ".",
1661 ],
1662 deps = [
Craig Tillerd1697d92016-04-05 16:05:46 -07001663 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001664 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001665 ],
1666)
1667
1668
1669
Rob Earhartb7b8d052016-03-29 11:35:29 -07001670
Jorge Canizales140bca82015-06-20 09:47:00 -07001671objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001672 name = "gpr_objc",
1673 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001674 "src/core/lib/profiling/basic_timers.c",
1675 "src/core/lib/profiling/stap_timers.c",
1676 "src/core/lib/support/alloc.c",
1677 "src/core/lib/support/avl.c",
1678 "src/core/lib/support/backoff.c",
1679 "src/core/lib/support/cmdline.c",
1680 "src/core/lib/support/cpu_iphone.c",
1681 "src/core/lib/support/cpu_linux.c",
1682 "src/core/lib/support/cpu_posix.c",
1683 "src/core/lib/support/cpu_windows.c",
1684 "src/core/lib/support/env_linux.c",
1685 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001686 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001687 "src/core/lib/support/histogram.c",
1688 "src/core/lib/support/host_port.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001689 "src/core/lib/support/log.c",
1690 "src/core/lib/support/log_android.c",
1691 "src/core/lib/support/log_linux.c",
1692 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001693 "src/core/lib/support/log_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001694 "src/core/lib/support/murmur_hash.c",
1695 "src/core/lib/support/slice.c",
1696 "src/core/lib/support/slice_buffer.c",
1697 "src/core/lib/support/stack_lockfree.c",
1698 "src/core/lib/support/string.c",
1699 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001700 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001701 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001702 "src/core/lib/support/subprocess_posix.c",
1703 "src/core/lib/support/subprocess_windows.c",
1704 "src/core/lib/support/sync.c",
1705 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001706 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001707 "src/core/lib/support/thd.c",
1708 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001709 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001710 "src/core/lib/support/time.c",
1711 "src/core/lib/support/time_posix.c",
1712 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001713 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001714 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001715 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001716 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001717 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001718 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001719 ],
1720 hdrs = [
1721 "include/grpc/support/alloc.h",
1722 "include/grpc/support/atm.h",
1723 "include/grpc/support/atm_gcc_atomic.h",
1724 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001725 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001726 "include/grpc/support/avl.h",
1727 "include/grpc/support/cmdline.h",
1728 "include/grpc/support/cpu.h",
1729 "include/grpc/support/histogram.h",
1730 "include/grpc/support/host_port.h",
1731 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001732 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001733 "include/grpc/support/port_platform.h",
1734 "include/grpc/support/slice.h",
1735 "include/grpc/support/slice_buffer.h",
1736 "include/grpc/support/string_util.h",
1737 "include/grpc/support/subprocess.h",
1738 "include/grpc/support/sync.h",
1739 "include/grpc/support/sync_generic.h",
1740 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001741 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001742 "include/grpc/support/thd.h",
1743 "include/grpc/support/time.h",
1744 "include/grpc/support/tls.h",
1745 "include/grpc/support/tls_gcc.h",
1746 "include/grpc/support/tls_msvc.h",
1747 "include/grpc/support/tls_pthread.h",
1748 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001749 "include/grpc/impl/codegen/alloc.h",
1750 "include/grpc/impl/codegen/atm.h",
1751 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1752 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001753 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001754 "include/grpc/impl/codegen/log.h",
1755 "include/grpc/impl/codegen/port_platform.h",
1756 "include/grpc/impl/codegen/slice.h",
1757 "include/grpc/impl/codegen/slice_buffer.h",
1758 "include/grpc/impl/codegen/sync.h",
1759 "include/grpc/impl/codegen/sync_generic.h",
1760 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001761 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001762 "include/grpc/impl/codegen/time.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001763 "src/core/lib/profiling/timers.h",
1764 "src/core/lib/support/backoff.h",
1765 "src/core/lib/support/block_annotate.h",
1766 "src/core/lib/support/env.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001767 "src/core/lib/support/murmur_hash.h",
1768 "src/core/lib/support/stack_lockfree.h",
1769 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001770 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001771 "src/core/lib/support/thd_internal.h",
1772 "src/core/lib/support/time_precise.h",
1773 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08001774 ],
1775 includes = [
1776 "include",
1777 ".",
1778 ],
1779 deps = [
1780 ],
1781)
1782
1783
Rob Earhartb7b8d052016-03-29 11:35:29 -07001784
Craig Tillerda179ce2016-02-09 12:01:53 -08001785objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07001786 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07001787 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001788 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001789 "src/core/lib/channel/channel_args.c",
1790 "src/core/lib/channel/channel_stack.c",
1791 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001792 "src/core/lib/channel/compress_filter.c",
1793 "src/core/lib/channel/connected_channel.c",
1794 "src/core/lib/channel/http_client_filter.c",
1795 "src/core/lib/channel/http_server_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001796 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001797 "src/core/lib/compression/message_compress.c",
1798 "src/core/lib/debug/trace.c",
1799 "src/core/lib/http/format_request.c",
1800 "src/core/lib/http/httpcli.c",
1801 "src/core/lib/http/parser.c",
1802 "src/core/lib/iomgr/closure.c",
1803 "src/core/lib/iomgr/endpoint.c",
1804 "src/core/lib/iomgr/endpoint_pair_posix.c",
1805 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07001806 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07001807 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller69f3e2b2016-05-31 13:45:24 -07001808 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001809 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001810 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001811 "src/core/lib/iomgr/exec_ctx.c",
1812 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001813 "src/core/lib/iomgr/iocp_windows.c",
1814 "src/core/lib/iomgr/iomgr.c",
1815 "src/core/lib/iomgr/iomgr_posix.c",
1816 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -07001817 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07001818 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001819 "src/core/lib/iomgr/polling_entity.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001820 "src/core/lib/iomgr/pollset_set_windows.c",
1821 "src/core/lib/iomgr/pollset_windows.c",
1822 "src/core/lib/iomgr/resolve_address_posix.c",
1823 "src/core/lib/iomgr/resolve_address_windows.c",
1824 "src/core/lib/iomgr/sockaddr_utils.c",
1825 "src/core/lib/iomgr/socket_utils_common_posix.c",
1826 "src/core/lib/iomgr/socket_utils_linux.c",
1827 "src/core/lib/iomgr/socket_utils_posix.c",
1828 "src/core/lib/iomgr/socket_windows.c",
1829 "src/core/lib/iomgr/tcp_client_posix.c",
1830 "src/core/lib/iomgr/tcp_client_windows.c",
1831 "src/core/lib/iomgr/tcp_posix.c",
1832 "src/core/lib/iomgr/tcp_server_posix.c",
1833 "src/core/lib/iomgr/tcp_server_windows.c",
1834 "src/core/lib/iomgr/tcp_windows.c",
1835 "src/core/lib/iomgr/time_averaged_stats.c",
1836 "src/core/lib/iomgr/timer.c",
1837 "src/core/lib/iomgr/timer_heap.c",
1838 "src/core/lib/iomgr/udp_server.c",
1839 "src/core/lib/iomgr/unix_sockets_posix.c",
1840 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
1841 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1842 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1843 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1844 "src/core/lib/iomgr/wakeup_fd_posix.c",
1845 "src/core/lib/iomgr/workqueue_posix.c",
1846 "src/core/lib/iomgr/workqueue_windows.c",
1847 "src/core/lib/json/json.c",
1848 "src/core/lib/json/json_reader.c",
1849 "src/core/lib/json/json_string.c",
1850 "src/core/lib/json/json_writer.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001851 "src/core/lib/surface/alarm.c",
1852 "src/core/lib/surface/api_trace.c",
1853 "src/core/lib/surface/byte_buffer.c",
1854 "src/core/lib/surface/byte_buffer_reader.c",
1855 "src/core/lib/surface/call.c",
1856 "src/core/lib/surface/call_details.c",
1857 "src/core/lib/surface/call_log_batch.c",
1858 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001859 "src/core/lib/surface/channel_init.c",
1860 "src/core/lib/surface/channel_ping.c",
1861 "src/core/lib/surface/channel_stack_type.c",
1862 "src/core/lib/surface/completion_queue.c",
1863 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001864 "src/core/lib/surface/lame_client.c",
1865 "src/core/lib/surface/metadata_array.c",
1866 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001867 "src/core/lib/surface/validate_metadata.c",
1868 "src/core/lib/surface/version.c",
1869 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001870 "src/core/lib/transport/connectivity_state.c",
1871 "src/core/lib/transport/metadata.c",
1872 "src/core/lib/transport/metadata_batch.c",
1873 "src/core/lib/transport/static_metadata.c",
1874 "src/core/lib/transport/transport.c",
1875 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001876 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001877 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001878 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1879 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1880 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1881 "src/core/ext/transport/chttp2/transport/frame_data.c",
1882 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1883 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1884 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1885 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1886 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1887 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1888 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1889 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1890 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1891 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1892 "src/core/ext/transport/chttp2/transport/parsing.c",
1893 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1894 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1895 "src/core/ext/transport/chttp2/transport/stream_map.c",
1896 "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
1897 "src/core/ext/transport/chttp2/transport/varint.c",
1898 "src/core/ext/transport/chttp2/transport/writing.c",
1899 "src/core/ext/transport/chttp2/alpn/alpn.c",
1900 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001901 "src/core/lib/security/context/security_context.c",
1902 "src/core/lib/security/credentials/composite/composite_credentials.c",
1903 "src/core/lib/security/credentials/credentials.c",
1904 "src/core/lib/security/credentials/credentials_metadata.c",
1905 "src/core/lib/security/credentials/fake/fake_credentials.c",
1906 "src/core/lib/security/credentials/google_default/credentials_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001907 "src/core/lib/security/credentials/google_default/credentials_windows.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001908 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
1909 "src/core/lib/security/credentials/iam/iam_credentials.c",
1910 "src/core/lib/security/credentials/jwt/json_token.c",
1911 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
1912 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
1913 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
1914 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
1915 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
1916 "src/core/lib/security/transport/client_auth_filter.c",
1917 "src/core/lib/security/transport/handshake.c",
1918 "src/core/lib/security/transport/secure_endpoint.c",
1919 "src/core/lib/security/transport/security_connector.c",
1920 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -07001921 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07001922 "src/core/lib/security/util/b64.c",
1923 "src/core/lib/security/util/json_util.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001924 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001925 "src/core/lib/tsi/fake_transport_security.c",
1926 "src/core/lib/tsi/ssl_transport_security.c",
1927 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001928 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
1929 "src/core/ext/client_config/channel_connectivity.c",
1930 "src/core/ext/client_config/client_channel.c",
1931 "src/core/ext/client_config/client_channel_factory.c",
1932 "src/core/ext/client_config/client_config.c",
1933 "src/core/ext/client_config/client_config_plugin.c",
1934 "src/core/ext/client_config/connector.c",
1935 "src/core/ext/client_config/default_initial_connect_string.c",
1936 "src/core/ext/client_config/initial_connect_string.c",
1937 "src/core/ext/client_config/lb_policy.c",
1938 "src/core/ext/client_config/lb_policy_factory.c",
1939 "src/core/ext/client_config/lb_policy_registry.c",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07001940 "src/core/ext/client_config/parse_address.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001941 "src/core/ext/client_config/resolver.c",
1942 "src/core/ext/client_config/resolver_factory.c",
1943 "src/core/ext/client_config/resolver_registry.c",
1944 "src/core/ext/client_config/subchannel.c",
1945 "src/core/ext/client_config/subchannel_call_holder.c",
1946 "src/core/ext/client_config/subchannel_index.c",
1947 "src/core/ext/client_config/uri_parser.c",
1948 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001949 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001950 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001951 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001952 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001953 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001954 "src/core/ext/lb_policy/pick_first/pick_first.c",
1955 "src/core/ext/lb_policy/round_robin/round_robin.c",
1956 "src/core/ext/resolver/dns/native/dns_resolver.c",
1957 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07001958 "src/core/ext/load_reporting/load_reporting.c",
1959 "src/core/ext/load_reporting/load_reporting_filter.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001960 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001961 "src/core/ext/census/gen/census.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001962 "src/core/ext/census/grpc_context.c",
1963 "src/core/ext/census/grpc_filter.c",
1964 "src/core/ext/census/grpc_plugin.c",
1965 "src/core/ext/census/initialize.c",
1966 "src/core/ext/census/mlog.c",
1967 "src/core/ext/census/operation.c",
1968 "src/core/ext/census/placeholders.c",
1969 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001970 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07001971 ],
1972 hdrs = [
1973 "include/grpc/byte_buffer.h",
1974 "include/grpc/byte_buffer_reader.h",
1975 "include/grpc/compression.h",
1976 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001977 "include/grpc/grpc_posix.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001978 "include/grpc/status.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001979 "include/grpc/impl/codegen/byte_buffer.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001980 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07001981 "include/grpc/impl/codegen/compression_types.h",
1982 "include/grpc/impl/codegen/connectivity_state.h",
1983 "include/grpc/impl/codegen/grpc_types.h",
1984 "include/grpc/impl/codegen/propagation_bits.h",
1985 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001986 "include/grpc/impl/codegen/alloc.h",
1987 "include/grpc/impl/codegen/atm.h",
1988 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1989 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001990 "include/grpc/impl/codegen/atm_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001991 "include/grpc/impl/codegen/log.h",
1992 "include/grpc/impl/codegen/port_platform.h",
1993 "include/grpc/impl/codegen/slice.h",
1994 "include/grpc/impl/codegen/slice_buffer.h",
1995 "include/grpc/impl/codegen/sync.h",
1996 "include/grpc/impl/codegen/sync_generic.h",
1997 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001998 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001999 "include/grpc/impl/codegen/time.h",
2000 "include/grpc/grpc_security.h",
Deepak Lukosedba4c5f2016-03-25 12:54:25 -07002001 "include/grpc/grpc_security_constants.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002002 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002003 "src/core/lib/channel/channel_args.h",
2004 "src/core/lib/channel/channel_stack.h",
2005 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002006 "src/core/lib/channel/compress_filter.h",
2007 "src/core/lib/channel/connected_channel.h",
2008 "src/core/lib/channel/context.h",
2009 "src/core/lib/channel/http_client_filter.h",
2010 "src/core/lib/channel/http_server_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002011 "src/core/lib/compression/algorithm_metadata.h",
2012 "src/core/lib/compression/message_compress.h",
2013 "src/core/lib/debug/trace.h",
2014 "src/core/lib/http/format_request.h",
2015 "src/core/lib/http/httpcli.h",
2016 "src/core/lib/http/parser.h",
2017 "src/core/lib/iomgr/closure.h",
2018 "src/core/lib/iomgr/endpoint.h",
2019 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -07002020 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07002021 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller69f3e2b2016-05-31 13:45:24 -07002022 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07002023 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002024 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002025 "src/core/lib/iomgr/exec_ctx.h",
2026 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002027 "src/core/lib/iomgr/iocp_windows.h",
2028 "src/core/lib/iomgr/iomgr.h",
2029 "src/core/lib/iomgr/iomgr_internal.h",
2030 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -07002031 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07002032 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07002033 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002034 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002035 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002036 "src/core/lib/iomgr/pollset_set_windows.h",
2037 "src/core/lib/iomgr/pollset_windows.h",
2038 "src/core/lib/iomgr/resolve_address.h",
2039 "src/core/lib/iomgr/sockaddr.h",
2040 "src/core/lib/iomgr/sockaddr_posix.h",
2041 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002042 "src/core/lib/iomgr/sockaddr_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002043 "src/core/lib/iomgr/socket_utils_posix.h",
2044 "src/core/lib/iomgr/socket_windows.h",
2045 "src/core/lib/iomgr/tcp_client.h",
2046 "src/core/lib/iomgr/tcp_posix.h",
2047 "src/core/lib/iomgr/tcp_server.h",
2048 "src/core/lib/iomgr/tcp_windows.h",
2049 "src/core/lib/iomgr/time_averaged_stats.h",
2050 "src/core/lib/iomgr/timer.h",
2051 "src/core/lib/iomgr/timer_heap.h",
2052 "src/core/lib/iomgr/udp_server.h",
2053 "src/core/lib/iomgr/unix_sockets_posix.h",
2054 "src/core/lib/iomgr/wakeup_fd_pipe.h",
2055 "src/core/lib/iomgr/wakeup_fd_posix.h",
2056 "src/core/lib/iomgr/workqueue.h",
2057 "src/core/lib/iomgr/workqueue_posix.h",
2058 "src/core/lib/iomgr/workqueue_windows.h",
2059 "src/core/lib/json/json.h",
2060 "src/core/lib/json/json_common.h",
2061 "src/core/lib/json/json_reader.h",
2062 "src/core/lib/json/json_writer.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002063 "src/core/lib/surface/api_trace.h",
2064 "src/core/lib/surface/call.h",
2065 "src/core/lib/surface/call_test_only.h",
2066 "src/core/lib/surface/channel.h",
2067 "src/core/lib/surface/channel_init.h",
2068 "src/core/lib/surface/channel_stack_type.h",
2069 "src/core/lib/surface/completion_queue.h",
2070 "src/core/lib/surface/event_string.h",
2071 "src/core/lib/surface/init.h",
2072 "src/core/lib/surface/lame_client.h",
2073 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002074 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002075 "src/core/lib/transport/connectivity_state.h",
2076 "src/core/lib/transport/metadata.h",
2077 "src/core/lib/transport/metadata_batch.h",
2078 "src/core/lib/transport/static_metadata.h",
2079 "src/core/lib/transport/transport.h",
2080 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -07002081 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002082 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
2083 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
2084 "src/core/ext/transport/chttp2/transport/frame.h",
2085 "src/core/ext/transport/chttp2/transport/frame_data.h",
2086 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
2087 "src/core/ext/transport/chttp2/transport/frame_ping.h",
2088 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
2089 "src/core/ext/transport/chttp2/transport/frame_settings.h",
2090 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
2091 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
2092 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
2093 "src/core/ext/transport/chttp2/transport/hpack_table.h",
2094 "src/core/ext/transport/chttp2/transport/http2_errors.h",
2095 "src/core/ext/transport/chttp2/transport/huffsyms.h",
2096 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
2097 "src/core/ext/transport/chttp2/transport/internal.h",
2098 "src/core/ext/transport/chttp2/transport/status_conversion.h",
2099 "src/core/ext/transport/chttp2/transport/stream_map.h",
2100 "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
2101 "src/core/ext/transport/chttp2/transport/varint.h",
2102 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002103 "src/core/lib/security/context/security_context.h",
2104 "src/core/lib/security/credentials/composite/composite_credentials.h",
2105 "src/core/lib/security/credentials/credentials.h",
2106 "src/core/lib/security/credentials/fake/fake_credentials.h",
2107 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
2108 "src/core/lib/security/credentials/iam/iam_credentials.h",
2109 "src/core/lib/security/credentials/jwt/json_token.h",
2110 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
2111 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
2112 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
2113 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
2114 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
2115 "src/core/lib/security/transport/auth_filters.h",
2116 "src/core/lib/security/transport/handshake.h",
2117 "src/core/lib/security/transport/secure_endpoint.h",
2118 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -07002119 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002120 "src/core/lib/security/util/b64.h",
2121 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002122 "src/core/lib/tsi/fake_transport_security.h",
2123 "src/core/lib/tsi/ssl_transport_security.h",
2124 "src/core/lib/tsi/ssl_types.h",
2125 "src/core/lib/tsi/transport_security.h",
2126 "src/core/lib/tsi/transport_security_interface.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002127 "src/core/ext/client_config/client_channel.h",
2128 "src/core/ext/client_config/client_channel_factory.h",
2129 "src/core/ext/client_config/client_config.h",
2130 "src/core/ext/client_config/connector.h",
2131 "src/core/ext/client_config/initial_connect_string.h",
2132 "src/core/ext/client_config/lb_policy.h",
2133 "src/core/ext/client_config/lb_policy_factory.h",
2134 "src/core/ext/client_config/lb_policy_registry.h",
David Garcia Quintas9885bff2016-04-07 17:31:29 -07002135 "src/core/ext/client_config/parse_address.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002136 "src/core/ext/client_config/resolver.h",
2137 "src/core/ext/client_config/resolver_factory.h",
2138 "src/core/ext/client_config/resolver_registry.h",
2139 "src/core/ext/client_config/subchannel.h",
2140 "src/core/ext/client_config/subchannel_call_holder.h",
2141 "src/core/ext/client_config/subchannel_index.h",
2142 "src/core/ext/client_config/uri_parser.h",
2143 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002144 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07002145 "src/core/ext/load_reporting/load_reporting.h",
2146 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002147 "src/core/ext/census/aggregation.h",
2148 "src/core/ext/census/census_interface.h",
2149 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07002150 "src/core/ext/census/gen/census.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002151 "src/core/ext/census/grpc_filter.h",
2152 "src/core/ext/census/mlog.h",
2153 "src/core/ext/census/rpc_metric_id.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002154 ],
2155 includes = [
2156 "include",
2157 ".",
2158 ],
2159 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08002160 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07002161 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07002162 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07002163 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07002164 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07002165)
2166
2167
2168
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002169cc_binary(
2170 name = "grpc_cpp_plugin",
2171 srcs = [
2172 "src/compiler/cpp_plugin.cc",
2173 ],
2174 deps = [
2175 "//external:protobuf_compiler",
2176 ":grpc_plugin_support",
2177 ],
2178)
2179
2180
2181cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07002182 name = "grpc_csharp_plugin",
2183 srcs = [
2184 "src/compiler/csharp_plugin.cc",
2185 ],
2186 deps = [
2187 "//external:protobuf_compiler",
2188 ":grpc_plugin_support",
2189 ],
2190)
2191
2192
2193cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08002194 name = "grpc_node_plugin",
2195 srcs = [
2196 "src/compiler/node_plugin.cc",
2197 ],
2198 deps = [
2199 "//external:protobuf_compiler",
2200 ":grpc_plugin_support",
2201 ],
2202)
2203
2204
2205cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002206 name = "grpc_objective_c_plugin",
2207 srcs = [
2208 "src/compiler/objective_c_plugin.cc",
2209 ],
2210 deps = [
2211 "//external:protobuf_compiler",
2212 ":grpc_plugin_support",
2213 ],
2214)
2215
2216
2217cc_binary(
2218 name = "grpc_python_plugin",
2219 srcs = [
2220 "src/compiler/python_plugin.cc",
2221 ],
2222 deps = [
2223 "//external:protobuf_compiler",
2224 ":grpc_plugin_support",
2225 ],
2226)
2227
2228
2229cc_binary(
2230 name = "grpc_ruby_plugin",
2231 srcs = [
2232 "src/compiler/ruby_plugin.cc",
2233 ],
2234 deps = [
2235 "//external:protobuf_compiler",
2236 ":grpc_plugin_support",
2237 ],
2238)
2239
2240
2241
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02002242
2243
Jorge Canizales140bca82015-06-20 09:47:00 -07002244
Jorge Canizales91e67a22015-06-24 13:50:04 -07002245
2246
Jorge Canizales44dc4232015-06-19 16:30:31 -07002247objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07002248
Jorge Canizales44dc4232015-06-19 16:30:31 -07002249rx_library_path = objc_path + "/RxLibrary"
2250
2251objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002252 name = "rx_library",
2253 hdrs = glob([
2254 rx_library_path + "/*.h",
2255 rx_library_path + "/transformations/*.h",
2256 ]),
2257 srcs = glob([
2258 rx_library_path + "/*.m",
2259 rx_library_path + "/transformations/*.m",
2260 ]),
2261 includes = [objc_path],
2262 deps = [
2263 ":rx_library_private",
2264 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002265)
2266
2267objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002268 name = "rx_library_private",
2269 hdrs = glob([rx_library_path + "/private/*.h"]),
2270 srcs = glob([rx_library_path + "/private/*.m"]),
2271 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002272)
Jorge Canizales866255e2015-06-20 18:58:38 -07002273
2274objc_client_path = objc_path + "/GRPCClient"
2275
2276objc_library(
2277 name = "grpc_client",
2278 hdrs = glob([
2279 objc_client_path + "/*.h",
2280 objc_client_path + "/private/*.h",
2281 ]),
2282 srcs = glob([
2283 objc_client_path + "/*.m",
2284 objc_client_path + "/private/*.m",
2285 ]),
2286 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002287 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07002288 deps = [
2289 ":grpc_objc",
2290 ":rx_library",
2291 ],
2292)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002293
2294objc_bundle_library(
2295 # The choice of name is signicant here, since it determines the bundle name.
2296 name = "gRPCCertificates",
2297 resources = ["etc/roots.pem"],
2298)
Jorge Canizales50f19822015-06-28 23:48:30 -07002299
2300proto_objc_rpc_path = objc_path + "/ProtoRPC"
2301
2302objc_library(
2303 name = "proto_objc_rpc",
2304 hdrs = glob([
2305 proto_objc_rpc_path + "/*.h",
2306 ]),
2307 srcs = glob([
2308 proto_objc_rpc_path + "/*.m",
2309 ]),
2310 includes = [objc_path],
2311 deps = [
2312 ":grpc_client",
2313 ":rx_library",
2314 "//external:protobuf_objc",
2315 ],
2316)