blob: 7cc44ea3bed57d0f4b2a34abd40ab1080e05419c [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
Piotr Sikora12e26a72016-08-04 15:32:10 -070039exports_files(["LICENSE"])
40
Ming Zhao3c0ba0c2015-04-10 12:05:22 -070041package(default_visibility = ["//visibility:public"])
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020042
43
44
45
Rob Earhartb7b8d052016-03-29 11:35:29 -070046
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020047cc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -080048 name = "gpr",
49 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -070050 "src/core/lib/profiling/timers.h",
51 "src/core/lib/support/backoff.h",
52 "src/core/lib/support/block_annotate.h",
53 "src/core/lib/support/env.h",
Craig Tiller57726ca2016-09-12 11:59:45 -070054 "src/core/lib/support/mpscq.h",
Craig Tillerf23078c2016-03-25 17:07:29 -070055 "src/core/lib/support/murmur_hash.h",
56 "src/core/lib/support/stack_lockfree.h",
57 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070058 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -070059 "src/core/lib/support/thd_internal.h",
60 "src/core/lib/support/time_precise.h",
61 "src/core/lib/support/tmpfile.h",
62 "src/core/lib/profiling/basic_timers.c",
63 "src/core/lib/profiling/stap_timers.c",
64 "src/core/lib/support/alloc.c",
65 "src/core/lib/support/avl.c",
66 "src/core/lib/support/backoff.c",
67 "src/core/lib/support/cmdline.c",
68 "src/core/lib/support/cpu_iphone.c",
69 "src/core/lib/support/cpu_linux.c",
70 "src/core/lib/support/cpu_posix.c",
71 "src/core/lib/support/cpu_windows.c",
72 "src/core/lib/support/env_linux.c",
73 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070074 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070075 "src/core/lib/support/histogram.c",
76 "src/core/lib/support/host_port.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070077 "src/core/lib/support/log.c",
78 "src/core/lib/support/log_android.c",
79 "src/core/lib/support/log_linux.c",
80 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070081 "src/core/lib/support/log_windows.c",
Craig Tiller57726ca2016-09-12 11:59:45 -070082 "src/core/lib/support/mpscq.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070083 "src/core/lib/support/murmur_hash.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070084 "src/core/lib/support/stack_lockfree.c",
85 "src/core/lib/support/string.c",
86 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -070087 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070088 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070089 "src/core/lib/support/subprocess_posix.c",
90 "src/core/lib/support/subprocess_windows.c",
91 "src/core/lib/support/sync.c",
92 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070093 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070094 "src/core/lib/support/thd.c",
95 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -070096 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -070097 "src/core/lib/support/time.c",
98 "src/core/lib/support/time_posix.c",
99 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700100 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700101 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200102 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700103 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700104 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700105 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -0800106 ],
107 hdrs = [
108 "include/grpc/support/alloc.h",
109 "include/grpc/support/atm.h",
110 "include/grpc/support/atm_gcc_atomic.h",
111 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700112 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800113 "include/grpc/support/avl.h",
114 "include/grpc/support/cmdline.h",
115 "include/grpc/support/cpu.h",
116 "include/grpc/support/histogram.h",
117 "include/grpc/support/host_port.h",
118 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700119 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800120 "include/grpc/support/port_platform.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800121 "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/atm.h",
135 "include/grpc/impl/codegen/atm_gcc_atomic.h",
136 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700137 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700138 "include/grpc/impl/codegen/gpr_types.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700139 "include/grpc/impl/codegen/port_platform.h",
140 "include/grpc/impl/codegen/slice.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700141 "include/grpc/impl/codegen/sync.h",
142 "include/grpc/impl/codegen/sync_generic.h",
143 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700144 "include/grpc/impl/codegen/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -0800145 ],
146 includes = [
147 "include",
148 ".",
149 ],
150 deps = [
151 ],
152)
153
154
Rob Earhartb7b8d052016-03-29 11:35:29 -0700155
Craig Tillerda179ce2016-02-09 12:01:53 -0800156cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700157 name = "grpc",
158 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700159 "src/core/lib/channel/channel_args.h",
160 "src/core/lib/channel/channel_stack.h",
161 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700162 "src/core/lib/channel/compress_filter.h",
163 "src/core/lib/channel/connected_channel.h",
164 "src/core/lib/channel/context.h",
Mark D. Roth14c072c2016-08-26 08:31:34 -0700165 "src/core/lib/channel/deadline_filter.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700166 "src/core/lib/channel/handshaker.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700167 "src/core/lib/channel/http_client_filter.h",
168 "src/core/lib/channel/http_server_filter.h",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700169 "src/core/lib/channel/message_size_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",
Craig Tiller57726ca2016-09-12 11:59:45 -0700177 "src/core/lib/iomgr/combiner.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700178 "src/core/lib/iomgr/endpoint.h",
179 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700180 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700181 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700182 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700183 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -0700184 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700185 "src/core/lib/iomgr/exec_ctx.h",
186 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700187 "src/core/lib/iomgr/iocp_windows.h",
188 "src/core/lib/iomgr/iomgr.h",
189 "src/core/lib/iomgr/iomgr_internal.h",
190 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -0700191 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700192 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700193 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700194 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700195 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700196 "src/core/lib/iomgr/pollset_set_windows.h",
murgatroid999030c812016-09-16 13:25:08 -0700197 "src/core/lib/iomgr/pollset_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700198 "src/core/lib/iomgr/pollset_windows.h",
murgatroid9954070892016-08-08 17:01:18 -0700199 "src/core/lib/iomgr/port.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700200 "src/core/lib/iomgr/resolve_address.h",
Craig Tiller20afa3d2016-10-17 14:52:14 -0700201 "src/core/lib/iomgr/resource_quota.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700202 "src/core/lib/iomgr/sockaddr.h",
203 "src/core/lib/iomgr/sockaddr_posix.h",
204 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700205 "src/core/lib/iomgr/sockaddr_windows.h",
murgatroid9979b32272016-08-08 13:38:30 -0700206 "src/core/lib/iomgr/socket_utils.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700207 "src/core/lib/iomgr/socket_utils_posix.h",
208 "src/core/lib/iomgr/socket_windows.h",
209 "src/core/lib/iomgr/tcp_client.h",
Craig Tiller86958762016-09-23 12:05:34 -0700210 "src/core/lib/iomgr/tcp_client_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700211 "src/core/lib/iomgr/tcp_posix.h",
212 "src/core/lib/iomgr/tcp_server.h",
murgatroid999030c812016-09-16 13:25:08 -0700213 "src/core/lib/iomgr/tcp_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700214 "src/core/lib/iomgr/tcp_windows.h",
215 "src/core/lib/iomgr/time_averaged_stats.h",
216 "src/core/lib/iomgr/timer.h",
murgatroid999030c812016-09-16 13:25:08 -0700217 "src/core/lib/iomgr/timer_generic.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700218 "src/core/lib/iomgr/timer_heap.h",
murgatroid999030c812016-09-16 13:25:08 -0700219 "src/core/lib/iomgr/timer_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700220 "src/core/lib/iomgr/udp_server.h",
221 "src/core/lib/iomgr/unix_sockets_posix.h",
kpayson64d195cf52016-10-09 18:04:00 -0700222 "src/core/lib/iomgr/wakeup_fd_cv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700223 "src/core/lib/iomgr/wakeup_fd_pipe.h",
224 "src/core/lib/iomgr/wakeup_fd_posix.h",
225 "src/core/lib/iomgr/workqueue.h",
murgatroid999030c812016-09-16 13:25:08 -0700226 "src/core/lib/iomgr/workqueue_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700227 "src/core/lib/iomgr/workqueue_windows.h",
228 "src/core/lib/json/json.h",
229 "src/core/lib/json/json_common.h",
230 "src/core/lib/json/json_reader.h",
231 "src/core/lib/json/json_writer.h",
Craig Tillerc3350542016-10-26 16:19:01 -0700232 "src/core/lib/slice/percent_encoding.h",
233 "src/core/lib/slice/slice_string_helpers.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700234 "src/core/lib/surface/api_trace.h",
235 "src/core/lib/surface/call.h",
236 "src/core/lib/surface/call_test_only.h",
237 "src/core/lib/surface/channel.h",
238 "src/core/lib/surface/channel_init.h",
239 "src/core/lib/surface/channel_stack_type.h",
240 "src/core/lib/surface/completion_queue.h",
241 "src/core/lib/surface/event_string.h",
242 "src/core/lib/surface/init.h",
243 "src/core/lib/surface/lame_client.h",
244 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700245 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700246 "src/core/lib/transport/connectivity_state.h",
Mark D. Roth6a721b52016-10-14 12:43:34 -0700247 "src/core/lib/transport/mdstr_hash_table.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700248 "src/core/lib/transport/metadata.h",
249 "src/core/lib/transport/metadata_batch.h",
Mark D. Rothbfe56802016-10-26 12:45:20 -0700250 "src/core/lib/transport/method_config.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700251 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -0400252 "src/core/lib/transport/timeout_encoding.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700253 "src/core/lib/transport/transport.h",
254 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700255 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700256 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
257 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
258 "src/core/ext/transport/chttp2/transport/frame.h",
259 "src/core/ext/transport/chttp2/transport/frame_data.h",
260 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
261 "src/core/ext/transport/chttp2/transport/frame_ping.h",
262 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
263 "src/core/ext/transport/chttp2/transport/frame_settings.h",
264 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
265 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
266 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
267 "src/core/ext/transport/chttp2/transport/hpack_table.h",
268 "src/core/ext/transport/chttp2/transport/http2_errors.h",
269 "src/core/ext/transport/chttp2/transport/huffsyms.h",
270 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
271 "src/core/ext/transport/chttp2/transport/internal.h",
272 "src/core/ext/transport/chttp2/transport/status_conversion.h",
273 "src/core/ext/transport/chttp2/transport/stream_map.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700274 "src/core/ext/transport/chttp2/transport/varint.h",
275 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700276 "src/core/lib/security/context/security_context.h",
277 "src/core/lib/security/credentials/composite/composite_credentials.h",
278 "src/core/lib/security/credentials/credentials.h",
279 "src/core/lib/security/credentials/fake/fake_credentials.h",
280 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
281 "src/core/lib/security/credentials/iam/iam_credentials.h",
282 "src/core/lib/security/credentials/jwt/json_token.h",
283 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
284 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
285 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
286 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
287 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
288 "src/core/lib/security/transport/auth_filters.h",
289 "src/core/lib/security/transport/handshake.h",
290 "src/core/lib/security/transport/secure_endpoint.h",
291 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -0700292 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700293 "src/core/lib/security/util/b64.h",
294 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700295 "src/core/lib/tsi/fake_transport_security.h",
296 "src/core/lib/tsi/ssl_transport_security.h",
297 "src/core/lib/tsi/ssl_types.h",
298 "src/core/lib/tsi/transport_security.h",
299 "src/core/lib/tsi/transport_security_interface.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700300 "src/core/ext/client_channel/client_channel.h",
301 "src/core/ext/client_channel/client_channel_factory.h",
302 "src/core/ext/client_channel/connector.h",
Mark D. Roth15195742016-10-07 09:02:28 -0700303 "src/core/ext/client_channel/http_connect_handshaker.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700304 "src/core/ext/client_channel/initial_connect_string.h",
305 "src/core/ext/client_channel/lb_policy.h",
306 "src/core/ext/client_channel/lb_policy_factory.h",
307 "src/core/ext/client_channel/lb_policy_registry.h",
308 "src/core/ext/client_channel/parse_address.h",
309 "src/core/ext/client_channel/resolver.h",
310 "src/core/ext/client_channel/resolver_factory.h",
311 "src/core/ext/client_channel/resolver_registry.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700312 "src/core/ext/client_channel/subchannel.h",
313 "src/core/ext/client_channel/subchannel_index.h",
314 "src/core/ext/client_channel/uri_parser.h",
David Garcia Quintasb2e986b2016-06-15 23:55:50 -0700315 "src/core/ext/lb_policy/grpclb/grpclb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700316 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700317 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700318 "src/core/ext/load_reporting/load_reporting.h",
319 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700320 "src/core/ext/census/aggregation.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700321 "src/core/ext/census/base_resources.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700322 "src/core/ext/census/census_interface.h",
323 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700324 "src/core/ext/census/gen/census.pb.h",
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700325 "src/core/ext/census/gen/trace_context.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700326 "src/core/ext/census/grpc_filter.h",
327 "src/core/ext/census/mlog.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700328 "src/core/ext/census/resource.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700329 "src/core/ext/census/rpc_metric_id.h",
Vizerai12d1fc62016-09-09 14:22:19 -0700330 "src/core/ext/census/trace_context.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700331 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700332 "src/core/lib/channel/channel_args.c",
333 "src/core/lib/channel/channel_stack.c",
334 "src/core/lib/channel/channel_stack_builder.c",
335 "src/core/lib/channel/compress_filter.c",
336 "src/core/lib/channel/connected_channel.c",
Mark D. Roth14c072c2016-08-26 08:31:34 -0700337 "src/core/lib/channel/deadline_filter.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700338 "src/core/lib/channel/handshaker.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700339 "src/core/lib/channel/http_client_filter.c",
340 "src/core/lib/channel/http_server_filter.c",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700341 "src/core/lib/channel/message_size_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -0700342 "src/core/lib/compression/compression.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700343 "src/core/lib/compression/message_compress.c",
344 "src/core/lib/debug/trace.c",
345 "src/core/lib/http/format_request.c",
346 "src/core/lib/http/httpcli.c",
347 "src/core/lib/http/parser.c",
348 "src/core/lib/iomgr/closure.c",
Craig Tiller57726ca2016-09-12 11:59:45 -0700349 "src/core/lib/iomgr/combiner.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700350 "src/core/lib/iomgr/endpoint.c",
351 "src/core/lib/iomgr/endpoint_pair_posix.c",
murgatroid99c36f6ea2016-10-03 09:24:09 -0700352 "src/core/lib/iomgr/endpoint_pair_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700353 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -0700354 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -0700355 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700356 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700357 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700358 "src/core/lib/iomgr/ev_posix.c",
359 "src/core/lib/iomgr/exec_ctx.c",
360 "src/core/lib/iomgr/executor.c",
361 "src/core/lib/iomgr/iocp_windows.c",
362 "src/core/lib/iomgr/iomgr.c",
363 "src/core/lib/iomgr/iomgr_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700364 "src/core/lib/iomgr/iomgr_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700365 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -0700366 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700367 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -0700368 "src/core/lib/iomgr/polling_entity.c",
murgatroid999030c812016-09-16 13:25:08 -0700369 "src/core/lib/iomgr/pollset_set_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700370 "src/core/lib/iomgr/pollset_set_windows.c",
murgatroid999030c812016-09-16 13:25:08 -0700371 "src/core/lib/iomgr/pollset_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700372 "src/core/lib/iomgr/pollset_windows.c",
373 "src/core/lib/iomgr/resolve_address_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700374 "src/core/lib/iomgr/resolve_address_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700375 "src/core/lib/iomgr/resolve_address_windows.c",
Craig Tiller20afa3d2016-10-17 14:52:14 -0700376 "src/core/lib/iomgr/resource_quota.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700377 "src/core/lib/iomgr/sockaddr_utils.c",
378 "src/core/lib/iomgr/socket_utils_common_posix.c",
379 "src/core/lib/iomgr/socket_utils_linux.c",
380 "src/core/lib/iomgr/socket_utils_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700381 "src/core/lib/iomgr/socket_utils_uv.c",
murgatroid9979b32272016-08-08 13:38:30 -0700382 "src/core/lib/iomgr/socket_utils_windows.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700383 "src/core/lib/iomgr/socket_windows.c",
384 "src/core/lib/iomgr/tcp_client_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700385 "src/core/lib/iomgr/tcp_client_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700386 "src/core/lib/iomgr/tcp_client_windows.c",
387 "src/core/lib/iomgr/tcp_posix.c",
388 "src/core/lib/iomgr/tcp_server_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700389 "src/core/lib/iomgr/tcp_server_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700390 "src/core/lib/iomgr/tcp_server_windows.c",
murgatroid999030c812016-09-16 13:25:08 -0700391 "src/core/lib/iomgr/tcp_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700392 "src/core/lib/iomgr/tcp_windows.c",
393 "src/core/lib/iomgr/time_averaged_stats.c",
murgatroid999030c812016-09-16 13:25:08 -0700394 "src/core/lib/iomgr/timer_generic.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700395 "src/core/lib/iomgr/timer_heap.c",
murgatroid999030c812016-09-16 13:25:08 -0700396 "src/core/lib/iomgr/timer_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700397 "src/core/lib/iomgr/udp_server.c",
398 "src/core/lib/iomgr/unix_sockets_posix.c",
399 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
kpayson64d195cf52016-10-09 18:04:00 -0700400 "src/core/lib/iomgr/wakeup_fd_cv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700401 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
402 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
403 "src/core/lib/iomgr/wakeup_fd_pipe.c",
404 "src/core/lib/iomgr/wakeup_fd_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700405 "src/core/lib/iomgr/workqueue_uv.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700406 "src/core/lib/iomgr/workqueue_windows.c",
407 "src/core/lib/json/json.c",
408 "src/core/lib/json/json_reader.c",
409 "src/core/lib/json/json_string.c",
410 "src/core/lib/json/json_writer.c",
Craig Tillerc3350542016-10-26 16:19:01 -0700411 "src/core/lib/slice/percent_encoding.c",
412 "src/core/lib/slice/slice.c",
413 "src/core/lib/slice/slice_buffer.c",
414 "src/core/lib/slice/slice_string_helpers.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700415 "src/core/lib/surface/alarm.c",
416 "src/core/lib/surface/api_trace.c",
417 "src/core/lib/surface/byte_buffer.c",
418 "src/core/lib/surface/byte_buffer_reader.c",
419 "src/core/lib/surface/call.c",
420 "src/core/lib/surface/call_details.c",
421 "src/core/lib/surface/call_log_batch.c",
422 "src/core/lib/surface/channel.c",
423 "src/core/lib/surface/channel_init.c",
424 "src/core/lib/surface/channel_ping.c",
425 "src/core/lib/surface/channel_stack_type.c",
426 "src/core/lib/surface/completion_queue.c",
427 "src/core/lib/surface/event_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700428 "src/core/lib/surface/lame_client.c",
429 "src/core/lib/surface/metadata_array.c",
430 "src/core/lib/surface/server.c",
431 "src/core/lib/surface/validate_metadata.c",
432 "src/core/lib/surface/version.c",
433 "src/core/lib/transport/byte_stream.c",
434 "src/core/lib/transport/connectivity_state.c",
Mark D. Roth6a721b52016-10-14 12:43:34 -0700435 "src/core/lib/transport/mdstr_hash_table.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700436 "src/core/lib/transport/metadata.c",
437 "src/core/lib/transport/metadata_batch.c",
Mark D. Rothbfe56802016-10-26 12:45:20 -0700438 "src/core/lib/transport/method_config.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700439 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -0400440 "src/core/lib/transport/timeout_encoding.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700441 "src/core/lib/transport/transport.c",
442 "src/core/lib/transport/transport_op_string.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700443 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -0700444 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tillerf82ddc42016-04-05 17:15:07 -0700445 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
446 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700447 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
448 "src/core/ext/transport/chttp2/transport/frame_data.c",
449 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
450 "src/core/ext/transport/chttp2/transport/frame_ping.c",
451 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
452 "src/core/ext/transport/chttp2/transport/frame_settings.c",
453 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
454 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
455 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
456 "src/core/ext/transport/chttp2/transport/hpack_table.c",
457 "src/core/ext/transport/chttp2/transport/huffsyms.c",
458 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
459 "src/core/ext/transport/chttp2/transport/parsing.c",
460 "src/core/ext/transport/chttp2/transport/status_conversion.c",
461 "src/core/ext/transport/chttp2/transport/stream_lists.c",
462 "src/core/ext/transport/chttp2/transport/stream_map.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700463 "src/core/ext/transport/chttp2/transport/varint.c",
464 "src/core/ext/transport/chttp2/transport/writing.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700465 "src/core/ext/transport/chttp2/alpn/alpn.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700466 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700467 "src/core/lib/security/context/security_context.c",
468 "src/core/lib/security/credentials/composite/composite_credentials.c",
469 "src/core/lib/security/credentials/credentials.c",
470 "src/core/lib/security/credentials/credentials_metadata.c",
471 "src/core/lib/security/credentials/fake/fake_credentials.c",
murgatroid997c205902016-08-09 10:07:42 -0700472 "src/core/lib/security/credentials/google_default/credentials_generic.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700473 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
474 "src/core/lib/security/credentials/iam/iam_credentials.c",
475 "src/core/lib/security/credentials/jwt/json_token.c",
476 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
477 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
478 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
479 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
480 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
481 "src/core/lib/security/transport/client_auth_filter.c",
482 "src/core/lib/security/transport/handshake.c",
483 "src/core/lib/security/transport/secure_endpoint.c",
484 "src/core/lib/security/transport/security_connector.c",
485 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -0700486 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700487 "src/core/lib/security/util/b64.c",
488 "src/core/lib/security/util/json_util.c",
Craig Tiller44cc10b2016-03-28 10:45:29 -0700489 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -0700490 "src/core/lib/tsi/fake_transport_security.c",
491 "src/core/lib/tsi/ssl_transport_security.c",
492 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700493 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700494 "src/core/ext/client_channel/channel_connectivity.c",
495 "src/core/ext/client_channel/client_channel.c",
496 "src/core/ext/client_channel/client_channel_factory.c",
497 "src/core/ext/client_channel/client_channel_plugin.c",
498 "src/core/ext/client_channel/connector.c",
499 "src/core/ext/client_channel/default_initial_connect_string.c",
Mark D. Roth15195742016-10-07 09:02:28 -0700500 "src/core/ext/client_channel/http_connect_handshaker.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700501 "src/core/ext/client_channel/initial_connect_string.c",
502 "src/core/ext/client_channel/lb_policy.c",
503 "src/core/ext/client_channel/lb_policy_factory.c",
504 "src/core/ext/client_channel/lb_policy_registry.c",
505 "src/core/ext/client_channel/parse_address.c",
506 "src/core/ext/client_channel/resolver.c",
507 "src/core/ext/client_channel/resolver_factory.c",
508 "src/core/ext/client_channel/resolver_registry.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700509 "src/core/ext/client_channel/subchannel.c",
510 "src/core/ext/client_channel/subchannel_index.c",
511 "src/core/ext/client_channel/uri_parser.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700512 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -0700513 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700514 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700515 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
David Garcia Quintas3fb8f732016-06-15 22:53:08 -0700516 "src/core/ext/lb_policy/grpclb/grpclb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700517 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700518 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700519 "src/core/ext/lb_policy/pick_first/pick_first.c",
520 "src/core/ext/lb_policy/round_robin/round_robin.c",
521 "src/core/ext/resolver/dns/native/dns_resolver.c",
522 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -0700523 "src/core/ext/load_reporting/load_reporting.c",
524 "src/core/ext/load_reporting/load_reporting_filter.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700525 "src/core/ext/census/base_resources.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700526 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -0700527 "src/core/ext/census/gen/census.pb.c",
Alistair Veitcha0c69f92016-08-31 12:01:27 -0700528 "src/core/ext/census/gen/trace_context.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700529 "src/core/ext/census/grpc_context.c",
530 "src/core/ext/census/grpc_filter.c",
531 "src/core/ext/census/grpc_plugin.c",
532 "src/core/ext/census/initialize.c",
533 "src/core/ext/census/mlog.c",
534 "src/core/ext/census/operation.c",
535 "src/core/ext/census/placeholders.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -0700536 "src/core/ext/census/resource.c",
Vizerai12d1fc62016-09-09 14:22:19 -0700537 "src/core/ext/census/trace_context.c",
Craig Tiller03915e52016-04-07 09:15:10 -0700538 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -0700539 "src/core/plugin_registry/grpc_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700540 ],
541 hdrs = [
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700542 "include/grpc/byte_buffer.h",
543 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -0700544 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700545 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700546 "include/grpc/grpc_posix.h",
Nicolas "Pixel" Noblea469e5d2016-08-16 22:09:27 +0200547 "include/grpc/grpc_security_constants.h",
Craig Tillerc3350542016-10-26 16:19:01 -0700548 "include/grpc/slice.h",
549 "include/grpc/slice_buffer.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700550 "include/grpc/status.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700551 "include/grpc/impl/codegen/byte_buffer_reader.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700552 "include/grpc/impl/codegen/compression_types.h",
553 "include/grpc/impl/codegen/connectivity_state.h",
554 "include/grpc/impl/codegen/grpc_types.h",
555 "include/grpc/impl/codegen/propagation_bits.h",
556 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700557 "include/grpc/impl/codegen/atm.h",
558 "include/grpc/impl/codegen/atm_gcc_atomic.h",
559 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700560 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700561 "include/grpc/impl/codegen/gpr_types.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700562 "include/grpc/impl/codegen/port_platform.h",
563 "include/grpc/impl/codegen/slice.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700564 "include/grpc/impl/codegen/sync.h",
565 "include/grpc/impl/codegen/sync_generic.h",
566 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -0700567 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -0700568 "include/grpc/grpc_security.h",
569 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700570 ],
571 includes = [
572 "include",
573 ".",
574 ],
575 deps = [
576 "//external:libssl",
Ming Zhaof2f24e22015-08-13 12:38:35 -0700577 "//external:zlib",
Craig Tillerda179ce2016-02-09 12:01:53 -0800578 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -0700579 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700580 ],
Rob Earhartaf379b22016-01-21 13:43:09 -0800581 copts = [
582 "-std=gnu99",
583 ],
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +0200584)
585
586
Rob Earhartb7b8d052016-03-29 11:35:29 -0700587
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700588cc_library(
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700589 name = "grpc_cronet",
590 srcs = [
591 "src/core/lib/channel/channel_args.h",
592 "src/core/lib/channel/channel_stack.h",
593 "src/core/lib/channel/channel_stack_builder.h",
594 "src/core/lib/channel/compress_filter.h",
595 "src/core/lib/channel/connected_channel.h",
596 "src/core/lib/channel/context.h",
Mark D. Roth14c072c2016-08-26 08:31:34 -0700597 "src/core/lib/channel/deadline_filter.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700598 "src/core/lib/channel/handshaker.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700599 "src/core/lib/channel/http_client_filter.h",
600 "src/core/lib/channel/http_server_filter.h",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700601 "src/core/lib/channel/message_size_filter.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700602 "src/core/lib/compression/algorithm_metadata.h",
603 "src/core/lib/compression/message_compress.h",
604 "src/core/lib/debug/trace.h",
605 "src/core/lib/http/format_request.h",
606 "src/core/lib/http/httpcli.h",
607 "src/core/lib/http/parser.h",
608 "src/core/lib/iomgr/closure.h",
Craig Tiller57726ca2016-09-12 11:59:45 -0700609 "src/core/lib/iomgr/combiner.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700610 "src/core/lib/iomgr/endpoint.h",
611 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700612 "src/core/lib/iomgr/error.h",
Sree Kuchibhotla492fd962016-06-10 09:03:34 -0700613 "src/core/lib/iomgr/ev_epoll_linux.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700614 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
615 "src/core/lib/iomgr/ev_poll_posix.h",
616 "src/core/lib/iomgr/ev_posix.h",
617 "src/core/lib/iomgr/exec_ctx.h",
618 "src/core/lib/iomgr/executor.h",
619 "src/core/lib/iomgr/iocp_windows.h",
620 "src/core/lib/iomgr/iomgr.h",
621 "src/core/lib/iomgr/iomgr_internal.h",
622 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700623 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700624 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700625 "src/core/lib/iomgr/polling_entity.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700626 "src/core/lib/iomgr/pollset.h",
627 "src/core/lib/iomgr/pollset_set.h",
628 "src/core/lib/iomgr/pollset_set_windows.h",
murgatroid999030c812016-09-16 13:25:08 -0700629 "src/core/lib/iomgr/pollset_uv.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700630 "src/core/lib/iomgr/pollset_windows.h",
murgatroid9954070892016-08-08 17:01:18 -0700631 "src/core/lib/iomgr/port.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700632 "src/core/lib/iomgr/resolve_address.h",
Craig Tiller20afa3d2016-10-17 14:52:14 -0700633 "src/core/lib/iomgr/resource_quota.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700634 "src/core/lib/iomgr/sockaddr.h",
635 "src/core/lib/iomgr/sockaddr_posix.h",
636 "src/core/lib/iomgr/sockaddr_utils.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700637 "src/core/lib/iomgr/sockaddr_windows.h",
murgatroid9979b32272016-08-08 13:38:30 -0700638 "src/core/lib/iomgr/socket_utils.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700639 "src/core/lib/iomgr/socket_utils_posix.h",
640 "src/core/lib/iomgr/socket_windows.h",
641 "src/core/lib/iomgr/tcp_client.h",
Craig Tiller86958762016-09-23 12:05:34 -0700642 "src/core/lib/iomgr/tcp_client_posix.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700643 "src/core/lib/iomgr/tcp_posix.h",
644 "src/core/lib/iomgr/tcp_server.h",
murgatroid999030c812016-09-16 13:25:08 -0700645 "src/core/lib/iomgr/tcp_uv.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700646 "src/core/lib/iomgr/tcp_windows.h",
647 "src/core/lib/iomgr/time_averaged_stats.h",
648 "src/core/lib/iomgr/timer.h",
murgatroid999030c812016-09-16 13:25:08 -0700649 "src/core/lib/iomgr/timer_generic.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700650 "src/core/lib/iomgr/timer_heap.h",
murgatroid999030c812016-09-16 13:25:08 -0700651 "src/core/lib/iomgr/timer_uv.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700652 "src/core/lib/iomgr/udp_server.h",
653 "src/core/lib/iomgr/unix_sockets_posix.h",
kpayson64d195cf52016-10-09 18:04:00 -0700654 "src/core/lib/iomgr/wakeup_fd_cv.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700655 "src/core/lib/iomgr/wakeup_fd_pipe.h",
656 "src/core/lib/iomgr/wakeup_fd_posix.h",
657 "src/core/lib/iomgr/workqueue.h",
murgatroid999030c812016-09-16 13:25:08 -0700658 "src/core/lib/iomgr/workqueue_uv.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700659 "src/core/lib/iomgr/workqueue_windows.h",
660 "src/core/lib/json/json.h",
661 "src/core/lib/json/json_common.h",
662 "src/core/lib/json/json_reader.h",
663 "src/core/lib/json/json_writer.h",
Craig Tillerc3350542016-10-26 16:19:01 -0700664 "src/core/lib/slice/percent_encoding.h",
665 "src/core/lib/slice/slice_string_helpers.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700666 "src/core/lib/surface/api_trace.h",
667 "src/core/lib/surface/call.h",
668 "src/core/lib/surface/call_test_only.h",
669 "src/core/lib/surface/channel.h",
670 "src/core/lib/surface/channel_init.h",
671 "src/core/lib/surface/channel_stack_type.h",
672 "src/core/lib/surface/completion_queue.h",
673 "src/core/lib/surface/event_string.h",
674 "src/core/lib/surface/init.h",
675 "src/core/lib/surface/lame_client.h",
676 "src/core/lib/surface/server.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700677 "src/core/lib/transport/byte_stream.h",
678 "src/core/lib/transport/connectivity_state.h",
Mark D. Roth6a721b52016-10-14 12:43:34 -0700679 "src/core/lib/transport/mdstr_hash_table.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700680 "src/core/lib/transport/metadata.h",
681 "src/core/lib/transport/metadata_batch.h",
Mark D. Rothbfe56802016-10-26 12:45:20 -0700682 "src/core/lib/transport/method_config.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700683 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -0400684 "src/core/lib/transport/timeout_encoding.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700685 "src/core/lib/transport/transport.h",
686 "src/core/lib/transport/transport_impl.h",
687 "third_party/objective_c/Cronet/cronet_c_for_grpc.h",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700688 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700689 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
690 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
691 "src/core/ext/transport/chttp2/transport/frame.h",
692 "src/core/ext/transport/chttp2/transport/frame_data.h",
693 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
694 "src/core/ext/transport/chttp2/transport/frame_ping.h",
695 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
696 "src/core/ext/transport/chttp2/transport/frame_settings.h",
697 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
698 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
699 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
700 "src/core/ext/transport/chttp2/transport/hpack_table.h",
701 "src/core/ext/transport/chttp2/transport/http2_errors.h",
702 "src/core/ext/transport/chttp2/transport/huffsyms.h",
703 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
704 "src/core/ext/transport/chttp2/transport/internal.h",
705 "src/core/ext/transport/chttp2/transport/status_conversion.h",
706 "src/core/ext/transport/chttp2/transport/stream_map.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700707 "src/core/ext/transport/chttp2/transport/varint.h",
708 "src/core/ext/transport/chttp2/alpn/alpn.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700709 "src/core/ext/client_channel/client_channel.h",
710 "src/core/ext/client_channel/client_channel_factory.h",
711 "src/core/ext/client_channel/connector.h",
Mark D. Roth15195742016-10-07 09:02:28 -0700712 "src/core/ext/client_channel/http_connect_handshaker.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700713 "src/core/ext/client_channel/initial_connect_string.h",
714 "src/core/ext/client_channel/lb_policy.h",
715 "src/core/ext/client_channel/lb_policy_factory.h",
716 "src/core/ext/client_channel/lb_policy_registry.h",
717 "src/core/ext/client_channel/parse_address.h",
718 "src/core/ext/client_channel/resolver.h",
719 "src/core/ext/client_channel/resolver_factory.h",
720 "src/core/ext/client_channel/resolver_registry.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700721 "src/core/ext/client_channel/subchannel.h",
722 "src/core/ext/client_channel/subchannel_index.h",
723 "src/core/ext/client_channel/uri_parser.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700724 "src/core/lib/security/context/security_context.h",
725 "src/core/lib/security/credentials/composite/composite_credentials.h",
726 "src/core/lib/security/credentials/credentials.h",
727 "src/core/lib/security/credentials/fake/fake_credentials.h",
728 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
729 "src/core/lib/security/credentials/iam/iam_credentials.h",
730 "src/core/lib/security/credentials/jwt/json_token.h",
731 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
732 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
733 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
734 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
735 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
736 "src/core/lib/security/transport/auth_filters.h",
737 "src/core/lib/security/transport/handshake.h",
738 "src/core/lib/security/transport/secure_endpoint.h",
739 "src/core/lib/security/transport/security_connector.h",
Craig Tiller2888bd52016-06-07 11:00:42 -0700740 "src/core/lib/security/transport/tsi_error.h",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700741 "src/core/lib/security/util/b64.h",
742 "src/core/lib/security/util/json_util.h",
743 "src/core/lib/tsi/fake_transport_security.h",
744 "src/core/lib/tsi/ssl_transport_security.h",
745 "src/core/lib/tsi/ssl_types.h",
746 "src/core/lib/tsi/transport_security.h",
747 "src/core/lib/tsi/transport_security_interface.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700748 "src/core/lib/surface/init.c",
749 "src/core/lib/channel/channel_args.c",
750 "src/core/lib/channel/channel_stack.c",
751 "src/core/lib/channel/channel_stack_builder.c",
752 "src/core/lib/channel/compress_filter.c",
753 "src/core/lib/channel/connected_channel.c",
Mark D. Roth14c072c2016-08-26 08:31:34 -0700754 "src/core/lib/channel/deadline_filter.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700755 "src/core/lib/channel/handshaker.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700756 "src/core/lib/channel/http_client_filter.c",
757 "src/core/lib/channel/http_server_filter.c",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700758 "src/core/lib/channel/message_size_filter.c",
David Garcia Quintas37e516e2016-06-07 21:23:41 -0700759 "src/core/lib/compression/compression.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700760 "src/core/lib/compression/message_compress.c",
761 "src/core/lib/debug/trace.c",
762 "src/core/lib/http/format_request.c",
763 "src/core/lib/http/httpcli.c",
764 "src/core/lib/http/parser.c",
765 "src/core/lib/iomgr/closure.c",
Craig Tiller57726ca2016-09-12 11:59:45 -0700766 "src/core/lib/iomgr/combiner.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700767 "src/core/lib/iomgr/endpoint.c",
768 "src/core/lib/iomgr/endpoint_pair_posix.c",
murgatroid99c36f6ea2016-10-03 09:24:09 -0700769 "src/core/lib/iomgr/endpoint_pair_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700770 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700771 "src/core/lib/iomgr/error.c",
Sree Kuchibhotla492fd962016-06-10 09:03:34 -0700772 "src/core/lib/iomgr/ev_epoll_linux.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700773 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
774 "src/core/lib/iomgr/ev_poll_posix.c",
775 "src/core/lib/iomgr/ev_posix.c",
776 "src/core/lib/iomgr/exec_ctx.c",
777 "src/core/lib/iomgr/executor.c",
778 "src/core/lib/iomgr/iocp_windows.c",
779 "src/core/lib/iomgr/iomgr.c",
780 "src/core/lib/iomgr/iomgr_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700781 "src/core/lib/iomgr/iomgr_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700782 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700783 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -0700784 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas4461da72016-06-06 16:45:01 -0700785 "src/core/lib/iomgr/polling_entity.c",
murgatroid999030c812016-09-16 13:25:08 -0700786 "src/core/lib/iomgr/pollset_set_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700787 "src/core/lib/iomgr/pollset_set_windows.c",
murgatroid999030c812016-09-16 13:25:08 -0700788 "src/core/lib/iomgr/pollset_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700789 "src/core/lib/iomgr/pollset_windows.c",
790 "src/core/lib/iomgr/resolve_address_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700791 "src/core/lib/iomgr/resolve_address_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700792 "src/core/lib/iomgr/resolve_address_windows.c",
Craig Tiller20afa3d2016-10-17 14:52:14 -0700793 "src/core/lib/iomgr/resource_quota.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700794 "src/core/lib/iomgr/sockaddr_utils.c",
795 "src/core/lib/iomgr/socket_utils_common_posix.c",
796 "src/core/lib/iomgr/socket_utils_linux.c",
797 "src/core/lib/iomgr/socket_utils_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700798 "src/core/lib/iomgr/socket_utils_uv.c",
murgatroid9979b32272016-08-08 13:38:30 -0700799 "src/core/lib/iomgr/socket_utils_windows.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700800 "src/core/lib/iomgr/socket_windows.c",
801 "src/core/lib/iomgr/tcp_client_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700802 "src/core/lib/iomgr/tcp_client_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700803 "src/core/lib/iomgr/tcp_client_windows.c",
804 "src/core/lib/iomgr/tcp_posix.c",
805 "src/core/lib/iomgr/tcp_server_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700806 "src/core/lib/iomgr/tcp_server_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700807 "src/core/lib/iomgr/tcp_server_windows.c",
murgatroid999030c812016-09-16 13:25:08 -0700808 "src/core/lib/iomgr/tcp_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700809 "src/core/lib/iomgr/tcp_windows.c",
810 "src/core/lib/iomgr/time_averaged_stats.c",
murgatroid999030c812016-09-16 13:25:08 -0700811 "src/core/lib/iomgr/timer_generic.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700812 "src/core/lib/iomgr/timer_heap.c",
murgatroid999030c812016-09-16 13:25:08 -0700813 "src/core/lib/iomgr/timer_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700814 "src/core/lib/iomgr/udp_server.c",
815 "src/core/lib/iomgr/unix_sockets_posix.c",
816 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
kpayson64d195cf52016-10-09 18:04:00 -0700817 "src/core/lib/iomgr/wakeup_fd_cv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700818 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
819 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
820 "src/core/lib/iomgr/wakeup_fd_pipe.c",
821 "src/core/lib/iomgr/wakeup_fd_posix.c",
murgatroid999030c812016-09-16 13:25:08 -0700822 "src/core/lib/iomgr/workqueue_uv.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700823 "src/core/lib/iomgr/workqueue_windows.c",
824 "src/core/lib/json/json.c",
825 "src/core/lib/json/json_reader.c",
826 "src/core/lib/json/json_string.c",
827 "src/core/lib/json/json_writer.c",
Craig Tillerc3350542016-10-26 16:19:01 -0700828 "src/core/lib/slice/percent_encoding.c",
829 "src/core/lib/slice/slice.c",
830 "src/core/lib/slice/slice_buffer.c",
831 "src/core/lib/slice/slice_string_helpers.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700832 "src/core/lib/surface/alarm.c",
833 "src/core/lib/surface/api_trace.c",
834 "src/core/lib/surface/byte_buffer.c",
835 "src/core/lib/surface/byte_buffer_reader.c",
836 "src/core/lib/surface/call.c",
837 "src/core/lib/surface/call_details.c",
838 "src/core/lib/surface/call_log_batch.c",
839 "src/core/lib/surface/channel.c",
840 "src/core/lib/surface/channel_init.c",
841 "src/core/lib/surface/channel_ping.c",
842 "src/core/lib/surface/channel_stack_type.c",
843 "src/core/lib/surface/completion_queue.c",
844 "src/core/lib/surface/event_string.c",
845 "src/core/lib/surface/lame_client.c",
846 "src/core/lib/surface/metadata_array.c",
847 "src/core/lib/surface/server.c",
848 "src/core/lib/surface/validate_metadata.c",
849 "src/core/lib/surface/version.c",
850 "src/core/lib/transport/byte_stream.c",
851 "src/core/lib/transport/connectivity_state.c",
Mark D. Roth6a721b52016-10-14 12:43:34 -0700852 "src/core/lib/transport/mdstr_hash_table.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700853 "src/core/lib/transport/metadata.c",
854 "src/core/lib/transport/metadata_batch.c",
Mark D. Rothbfe56802016-10-26 12:45:20 -0700855 "src/core/lib/transport/method_config.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700856 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -0400857 "src/core/lib/transport/timeout_encoding.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700858 "src/core/lib/transport/transport.c",
859 "src/core/lib/transport/transport_op_string.c",
860 "src/core/ext/transport/cronet/client/secure/cronet_channel_create.c",
861 "src/core/ext/transport/cronet/transport/cronet_api_dummy.c",
862 "src/core/ext/transport/cronet/transport/cronet_transport.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700863 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
Yuchen Zeng0a0c1b02016-06-08 17:52:05 -0700864 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700865 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
866 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
867 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
868 "src/core/ext/transport/chttp2/transport/frame_data.c",
869 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
870 "src/core/ext/transport/chttp2/transport/frame_ping.c",
871 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
872 "src/core/ext/transport/chttp2/transport/frame_settings.c",
873 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
874 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
875 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
876 "src/core/ext/transport/chttp2/transport/hpack_table.c",
877 "src/core/ext/transport/chttp2/transport/huffsyms.c",
878 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
879 "src/core/ext/transport/chttp2/transport/parsing.c",
880 "src/core/ext/transport/chttp2/transport/status_conversion.c",
881 "src/core/ext/transport/chttp2/transport/stream_lists.c",
882 "src/core/ext/transport/chttp2/transport/stream_map.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700883 "src/core/ext/transport/chttp2/transport/varint.c",
884 "src/core/ext/transport/chttp2/transport/writing.c",
885 "src/core/ext/transport/chttp2/alpn/alpn.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700886 "src/core/ext/client_channel/channel_connectivity.c",
887 "src/core/ext/client_channel/client_channel.c",
888 "src/core/ext/client_channel/client_channel_factory.c",
889 "src/core/ext/client_channel/client_channel_plugin.c",
890 "src/core/ext/client_channel/connector.c",
891 "src/core/ext/client_channel/default_initial_connect_string.c",
Mark D. Roth15195742016-10-07 09:02:28 -0700892 "src/core/ext/client_channel/http_connect_handshaker.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700893 "src/core/ext/client_channel/initial_connect_string.c",
894 "src/core/ext/client_channel/lb_policy.c",
895 "src/core/ext/client_channel/lb_policy_factory.c",
896 "src/core/ext/client_channel/lb_policy_registry.c",
897 "src/core/ext/client_channel/parse_address.c",
898 "src/core/ext/client_channel/resolver.c",
899 "src/core/ext/client_channel/resolver_factory.c",
900 "src/core/ext/client_channel/resolver_registry.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -0700901 "src/core/ext/client_channel/subchannel.c",
902 "src/core/ext/client_channel/subchannel_index.c",
903 "src/core/ext/client_channel/uri_parser.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700904 "src/core/lib/http/httpcli_security_connector.c",
905 "src/core/lib/security/context/security_context.c",
906 "src/core/lib/security/credentials/composite/composite_credentials.c",
907 "src/core/lib/security/credentials/credentials.c",
908 "src/core/lib/security/credentials/credentials_metadata.c",
909 "src/core/lib/security/credentials/fake/fake_credentials.c",
murgatroid997c205902016-08-09 10:07:42 -0700910 "src/core/lib/security/credentials/google_default/credentials_generic.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700911 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
912 "src/core/lib/security/credentials/iam/iam_credentials.c",
913 "src/core/lib/security/credentials/jwt/json_token.c",
914 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
915 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
916 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
917 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
918 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
919 "src/core/lib/security/transport/client_auth_filter.c",
920 "src/core/lib/security/transport/handshake.c",
921 "src/core/lib/security/transport/secure_endpoint.c",
922 "src/core/lib/security/transport/security_connector.c",
923 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tiller2888bd52016-06-07 11:00:42 -0700924 "src/core/lib/security/transport/tsi_error.c",
Makarand Dharmapurikareaf54262016-06-01 18:32:42 -0700925 "src/core/lib/security/util/b64.c",
926 "src/core/lib/security/util/json_util.c",
927 "src/core/lib/surface/init_secure.c",
928 "src/core/lib/tsi/fake_transport_security.c",
929 "src/core/lib/tsi/ssl_transport_security.c",
930 "src/core/lib/tsi/transport_security.c",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700931 "src/core/plugin_registry/grpc_cronet_plugin_registry.c",
932 ],
933 hdrs = [
934 "include/grpc/byte_buffer.h",
935 "include/grpc/byte_buffer_reader.h",
936 "include/grpc/compression.h",
937 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -0700938 "include/grpc/grpc_posix.h",
Nicolas "Pixel" Noblea469e5d2016-08-16 22:09:27 +0200939 "include/grpc/grpc_security_constants.h",
Craig Tillerc3350542016-10-26 16:19:01 -0700940 "include/grpc/slice.h",
941 "include/grpc/slice_buffer.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700942 "include/grpc/status.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700943 "include/grpc/impl/codegen/byte_buffer_reader.h",
944 "include/grpc/impl/codegen/compression_types.h",
945 "include/grpc/impl/codegen/connectivity_state.h",
946 "include/grpc/impl/codegen/grpc_types.h",
947 "include/grpc/impl/codegen/propagation_bits.h",
948 "include/grpc/impl/codegen/status.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700949 "include/grpc/impl/codegen/atm.h",
950 "include/grpc/impl/codegen/atm_gcc_atomic.h",
951 "include/grpc/impl/codegen/atm_gcc_sync.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700952 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -0700953 "include/grpc/impl/codegen/gpr_types.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700954 "include/grpc/impl/codegen/port_platform.h",
955 "include/grpc/impl/codegen/slice.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700956 "include/grpc/impl/codegen/sync.h",
957 "include/grpc/impl/codegen/sync_generic.h",
958 "include/grpc/impl/codegen/sync_posix.h",
Jan Tattermusch2f7f8562016-06-06 13:34:56 -0700959 "include/grpc/impl/codegen/sync_windows.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700960 "include/grpc/grpc_cronet.h",
961 "include/grpc/grpc_security.h",
Makarand Dharmapurikar38d80552016-06-01 15:02:04 -0700962 ],
963 includes = [
964 "include",
965 ".",
966 ],
967 deps = [
968 "//external:libssl",
969 ":gpr",
970 ],
971)
972
973
974
975cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -0700976 name = "grpc_unsecure",
977 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -0700978 "src/core/lib/channel/channel_args.h",
979 "src/core/lib/channel/channel_stack.h",
980 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700981 "src/core/lib/channel/compress_filter.h",
982 "src/core/lib/channel/connected_channel.h",
983 "src/core/lib/channel/context.h",
Mark D. Roth14c072c2016-08-26 08:31:34 -0700984 "src/core/lib/channel/deadline_filter.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -0700985 "src/core/lib/channel/handshaker.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700986 "src/core/lib/channel/http_client_filter.h",
987 "src/core/lib/channel/http_server_filter.h",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -0700988 "src/core/lib/channel/message_size_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700989 "src/core/lib/compression/algorithm_metadata.h",
990 "src/core/lib/compression/message_compress.h",
991 "src/core/lib/debug/trace.h",
992 "src/core/lib/http/format_request.h",
993 "src/core/lib/http/httpcli.h",
994 "src/core/lib/http/parser.h",
995 "src/core/lib/iomgr/closure.h",
Craig Tiller57726ca2016-09-12 11:59:45 -0700996 "src/core/lib/iomgr/combiner.h",
Craig Tillerf23078c2016-03-25 17:07:29 -0700997 "src/core/lib/iomgr/endpoint.h",
998 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -0700999 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07001000 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller8a034482016-03-28 16:09:04 -07001001 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001002 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -07001003 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001004 "src/core/lib/iomgr/exec_ctx.h",
1005 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001006 "src/core/lib/iomgr/iocp_windows.h",
1007 "src/core/lib/iomgr/iomgr.h",
1008 "src/core/lib/iomgr/iomgr_internal.h",
1009 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -07001010 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07001011 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001012 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001013 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001014 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001015 "src/core/lib/iomgr/pollset_set_windows.h",
murgatroid999030c812016-09-16 13:25:08 -07001016 "src/core/lib/iomgr/pollset_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001017 "src/core/lib/iomgr/pollset_windows.h",
murgatroid9954070892016-08-08 17:01:18 -07001018 "src/core/lib/iomgr/port.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001019 "src/core/lib/iomgr/resolve_address.h",
Craig Tiller20afa3d2016-10-17 14:52:14 -07001020 "src/core/lib/iomgr/resource_quota.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001021 "src/core/lib/iomgr/sockaddr.h",
1022 "src/core/lib/iomgr/sockaddr_posix.h",
1023 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001024 "src/core/lib/iomgr/sockaddr_windows.h",
murgatroid9979b32272016-08-08 13:38:30 -07001025 "src/core/lib/iomgr/socket_utils.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001026 "src/core/lib/iomgr/socket_utils_posix.h",
1027 "src/core/lib/iomgr/socket_windows.h",
1028 "src/core/lib/iomgr/tcp_client.h",
Craig Tiller86958762016-09-23 12:05:34 -07001029 "src/core/lib/iomgr/tcp_client_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001030 "src/core/lib/iomgr/tcp_posix.h",
1031 "src/core/lib/iomgr/tcp_server.h",
murgatroid999030c812016-09-16 13:25:08 -07001032 "src/core/lib/iomgr/tcp_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001033 "src/core/lib/iomgr/tcp_windows.h",
1034 "src/core/lib/iomgr/time_averaged_stats.h",
1035 "src/core/lib/iomgr/timer.h",
murgatroid999030c812016-09-16 13:25:08 -07001036 "src/core/lib/iomgr/timer_generic.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001037 "src/core/lib/iomgr/timer_heap.h",
murgatroid999030c812016-09-16 13:25:08 -07001038 "src/core/lib/iomgr/timer_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001039 "src/core/lib/iomgr/udp_server.h",
1040 "src/core/lib/iomgr/unix_sockets_posix.h",
kpayson64d195cf52016-10-09 18:04:00 -07001041 "src/core/lib/iomgr/wakeup_fd_cv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001042 "src/core/lib/iomgr/wakeup_fd_pipe.h",
1043 "src/core/lib/iomgr/wakeup_fd_posix.h",
1044 "src/core/lib/iomgr/workqueue.h",
murgatroid999030c812016-09-16 13:25:08 -07001045 "src/core/lib/iomgr/workqueue_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001046 "src/core/lib/iomgr/workqueue_windows.h",
1047 "src/core/lib/json/json.h",
1048 "src/core/lib/json/json_common.h",
1049 "src/core/lib/json/json_reader.h",
1050 "src/core/lib/json/json_writer.h",
Craig Tillerc3350542016-10-26 16:19:01 -07001051 "src/core/lib/slice/percent_encoding.h",
1052 "src/core/lib/slice/slice_string_helpers.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001053 "src/core/lib/surface/api_trace.h",
1054 "src/core/lib/surface/call.h",
1055 "src/core/lib/surface/call_test_only.h",
1056 "src/core/lib/surface/channel.h",
1057 "src/core/lib/surface/channel_init.h",
1058 "src/core/lib/surface/channel_stack_type.h",
1059 "src/core/lib/surface/completion_queue.h",
1060 "src/core/lib/surface/event_string.h",
1061 "src/core/lib/surface/init.h",
1062 "src/core/lib/surface/lame_client.h",
1063 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001064 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001065 "src/core/lib/transport/connectivity_state.h",
Mark D. Roth6a721b52016-10-14 12:43:34 -07001066 "src/core/lib/transport/mdstr_hash_table.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001067 "src/core/lib/transport/metadata.h",
1068 "src/core/lib/transport/metadata_batch.h",
Mark D. Rothbfe56802016-10-26 12:45:20 -07001069 "src/core/lib/transport/method_config.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001070 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -04001071 "src/core/lib/transport/timeout_encoding.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07001072 "src/core/lib/transport/transport.h",
1073 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001074 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001075 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
1076 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
1077 "src/core/ext/transport/chttp2/transport/frame.h",
1078 "src/core/ext/transport/chttp2/transport/frame_data.h",
1079 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
1080 "src/core/ext/transport/chttp2/transport/frame_ping.h",
1081 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
1082 "src/core/ext/transport/chttp2/transport/frame_settings.h",
1083 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
1084 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
1085 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
1086 "src/core/ext/transport/chttp2/transport/hpack_table.h",
1087 "src/core/ext/transport/chttp2/transport/http2_errors.h",
1088 "src/core/ext/transport/chttp2/transport/huffsyms.h",
1089 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
1090 "src/core/ext/transport/chttp2/transport/internal.h",
1091 "src/core/ext/transport/chttp2/transport/status_conversion.h",
1092 "src/core/ext/transport/chttp2/transport/stream_map.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001093 "src/core/ext/transport/chttp2/transport/varint.h",
1094 "src/core/ext/transport/chttp2/alpn/alpn.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -07001095 "src/core/ext/client_channel/client_channel.h",
1096 "src/core/ext/client_channel/client_channel_factory.h",
1097 "src/core/ext/client_channel/connector.h",
Mark D. Roth15195742016-10-07 09:02:28 -07001098 "src/core/ext/client_channel/http_connect_handshaker.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -07001099 "src/core/ext/client_channel/initial_connect_string.h",
1100 "src/core/ext/client_channel/lb_policy.h",
1101 "src/core/ext/client_channel/lb_policy_factory.h",
1102 "src/core/ext/client_channel/lb_policy_registry.h",
1103 "src/core/ext/client_channel/parse_address.h",
1104 "src/core/ext/client_channel/resolver.h",
1105 "src/core/ext/client_channel/resolver_factory.h",
1106 "src/core/ext/client_channel/resolver_registry.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -07001107 "src/core/ext/client_channel/subchannel.h",
1108 "src/core/ext/client_channel/subchannel_index.h",
1109 "src/core/ext/client_channel/uri_parser.h",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001110 "src/core/ext/load_reporting/load_reporting.h",
1111 "src/core/ext/load_reporting/load_reporting_filter.h",
David Garcia Quintasb2e986b2016-06-15 23:55:50 -07001112 "src/core/ext/lb_policy/grpclb/grpclb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001113 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001114 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001115 "src/core/ext/census/aggregation.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001116 "src/core/ext/census/base_resources.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001117 "src/core/ext/census/census_interface.h",
1118 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001119 "src/core/ext/census/gen/census.pb.h",
Alistair Veitcha0c69f92016-08-31 12:01:27 -07001120 "src/core/ext/census/gen/trace_context.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001121 "src/core/ext/census/grpc_filter.h",
1122 "src/core/ext/census/mlog.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001123 "src/core/ext/census/resource.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001124 "src/core/ext/census/rpc_metric_id.h",
Vizerai12d1fc62016-09-09 14:22:19 -07001125 "src/core/ext/census/trace_context.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001126 "src/core/lib/surface/init.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001127 "src/core/lib/surface/init_unsecure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001128 "src/core/lib/channel/channel_args.c",
1129 "src/core/lib/channel/channel_stack.c",
1130 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001131 "src/core/lib/channel/compress_filter.c",
1132 "src/core/lib/channel/connected_channel.c",
Mark D. Roth14c072c2016-08-26 08:31:34 -07001133 "src/core/lib/channel/deadline_filter.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07001134 "src/core/lib/channel/handshaker.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001135 "src/core/lib/channel/http_client_filter.c",
1136 "src/core/lib/channel/http_server_filter.c",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -07001137 "src/core/lib/channel/message_size_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07001138 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001139 "src/core/lib/compression/message_compress.c",
1140 "src/core/lib/debug/trace.c",
1141 "src/core/lib/http/format_request.c",
1142 "src/core/lib/http/httpcli.c",
1143 "src/core/lib/http/parser.c",
1144 "src/core/lib/iomgr/closure.c",
Craig Tiller57726ca2016-09-12 11:59:45 -07001145 "src/core/lib/iomgr/combiner.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001146 "src/core/lib/iomgr/endpoint.c",
1147 "src/core/lib/iomgr/endpoint_pair_posix.c",
murgatroid99c36f6ea2016-10-03 09:24:09 -07001148 "src/core/lib/iomgr/endpoint_pair_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001149 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07001150 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07001151 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001152 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07001153 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07001154 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001155 "src/core/lib/iomgr/exec_ctx.c",
1156 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001157 "src/core/lib/iomgr/iocp_windows.c",
1158 "src/core/lib/iomgr/iomgr.c",
1159 "src/core/lib/iomgr/iomgr_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07001160 "src/core/lib/iomgr/iomgr_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001161 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -07001162 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07001163 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07001164 "src/core/lib/iomgr/polling_entity.c",
murgatroid999030c812016-09-16 13:25:08 -07001165 "src/core/lib/iomgr/pollset_set_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001166 "src/core/lib/iomgr/pollset_set_windows.c",
murgatroid999030c812016-09-16 13:25:08 -07001167 "src/core/lib/iomgr/pollset_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001168 "src/core/lib/iomgr/pollset_windows.c",
1169 "src/core/lib/iomgr/resolve_address_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07001170 "src/core/lib/iomgr/resolve_address_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001171 "src/core/lib/iomgr/resolve_address_windows.c",
Craig Tiller20afa3d2016-10-17 14:52:14 -07001172 "src/core/lib/iomgr/resource_quota.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001173 "src/core/lib/iomgr/sockaddr_utils.c",
1174 "src/core/lib/iomgr/socket_utils_common_posix.c",
1175 "src/core/lib/iomgr/socket_utils_linux.c",
1176 "src/core/lib/iomgr/socket_utils_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07001177 "src/core/lib/iomgr/socket_utils_uv.c",
murgatroid9979b32272016-08-08 13:38:30 -07001178 "src/core/lib/iomgr/socket_utils_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001179 "src/core/lib/iomgr/socket_windows.c",
1180 "src/core/lib/iomgr/tcp_client_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07001181 "src/core/lib/iomgr/tcp_client_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001182 "src/core/lib/iomgr/tcp_client_windows.c",
1183 "src/core/lib/iomgr/tcp_posix.c",
1184 "src/core/lib/iomgr/tcp_server_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07001185 "src/core/lib/iomgr/tcp_server_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001186 "src/core/lib/iomgr/tcp_server_windows.c",
murgatroid999030c812016-09-16 13:25:08 -07001187 "src/core/lib/iomgr/tcp_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001188 "src/core/lib/iomgr/tcp_windows.c",
1189 "src/core/lib/iomgr/time_averaged_stats.c",
murgatroid999030c812016-09-16 13:25:08 -07001190 "src/core/lib/iomgr/timer_generic.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001191 "src/core/lib/iomgr/timer_heap.c",
murgatroid999030c812016-09-16 13:25:08 -07001192 "src/core/lib/iomgr/timer_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001193 "src/core/lib/iomgr/udp_server.c",
1194 "src/core/lib/iomgr/unix_sockets_posix.c",
1195 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
kpayson64d195cf52016-10-09 18:04:00 -07001196 "src/core/lib/iomgr/wakeup_fd_cv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001197 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
1198 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
1199 "src/core/lib/iomgr/wakeup_fd_pipe.c",
1200 "src/core/lib/iomgr/wakeup_fd_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07001201 "src/core/lib/iomgr/workqueue_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001202 "src/core/lib/iomgr/workqueue_windows.c",
1203 "src/core/lib/json/json.c",
1204 "src/core/lib/json/json_reader.c",
1205 "src/core/lib/json/json_string.c",
1206 "src/core/lib/json/json_writer.c",
Craig Tillerc3350542016-10-26 16:19:01 -07001207 "src/core/lib/slice/percent_encoding.c",
1208 "src/core/lib/slice/slice.c",
1209 "src/core/lib/slice/slice_buffer.c",
1210 "src/core/lib/slice/slice_string_helpers.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001211 "src/core/lib/surface/alarm.c",
1212 "src/core/lib/surface/api_trace.c",
1213 "src/core/lib/surface/byte_buffer.c",
1214 "src/core/lib/surface/byte_buffer_reader.c",
1215 "src/core/lib/surface/call.c",
1216 "src/core/lib/surface/call_details.c",
1217 "src/core/lib/surface/call_log_batch.c",
1218 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001219 "src/core/lib/surface/channel_init.c",
1220 "src/core/lib/surface/channel_ping.c",
1221 "src/core/lib/surface/channel_stack_type.c",
1222 "src/core/lib/surface/completion_queue.c",
1223 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001224 "src/core/lib/surface/lame_client.c",
1225 "src/core/lib/surface/metadata_array.c",
1226 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001227 "src/core/lib/surface/validate_metadata.c",
1228 "src/core/lib/surface/version.c",
1229 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001230 "src/core/lib/transport/connectivity_state.c",
Mark D. Roth6a721b52016-10-14 12:43:34 -07001231 "src/core/lib/transport/mdstr_hash_table.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001232 "src/core/lib/transport/metadata.c",
1233 "src/core/lib/transport/metadata_batch.c",
Mark D. Rothbfe56802016-10-26 12:45:20 -07001234 "src/core/lib/transport/method_config.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001235 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -04001236 "src/core/lib/transport/timeout_encoding.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001237 "src/core/lib/transport/transport.c",
1238 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001239 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07001240 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07001241 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001242 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
1243 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
1244 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
1245 "src/core/ext/transport/chttp2/transport/frame_data.c",
1246 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
1247 "src/core/ext/transport/chttp2/transport/frame_ping.c",
1248 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
1249 "src/core/ext/transport/chttp2/transport/frame_settings.c",
1250 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
1251 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
1252 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
1253 "src/core/ext/transport/chttp2/transport/hpack_table.c",
1254 "src/core/ext/transport/chttp2/transport/huffsyms.c",
1255 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
1256 "src/core/ext/transport/chttp2/transport/parsing.c",
1257 "src/core/ext/transport/chttp2/transport/status_conversion.c",
1258 "src/core/ext/transport/chttp2/transport/stream_lists.c",
1259 "src/core/ext/transport/chttp2/transport/stream_map.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001260 "src/core/ext/transport/chttp2/transport/varint.c",
1261 "src/core/ext/transport/chttp2/transport/writing.c",
1262 "src/core/ext/transport/chttp2/alpn/alpn.c",
1263 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001264 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -07001265 "src/core/ext/client_channel/channel_connectivity.c",
1266 "src/core/ext/client_channel/client_channel.c",
1267 "src/core/ext/client_channel/client_channel_factory.c",
1268 "src/core/ext/client_channel/client_channel_plugin.c",
1269 "src/core/ext/client_channel/connector.c",
1270 "src/core/ext/client_channel/default_initial_connect_string.c",
Mark D. Roth15195742016-10-07 09:02:28 -07001271 "src/core/ext/client_channel/http_connect_handshaker.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -07001272 "src/core/ext/client_channel/initial_connect_string.c",
1273 "src/core/ext/client_channel/lb_policy.c",
1274 "src/core/ext/client_channel/lb_policy_factory.c",
1275 "src/core/ext/client_channel/lb_policy_registry.c",
1276 "src/core/ext/client_channel/parse_address.c",
1277 "src/core/ext/client_channel/resolver.c",
1278 "src/core/ext/client_channel/resolver_factory.c",
1279 "src/core/ext/client_channel/resolver_registry.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -07001280 "src/core/ext/client_channel/subchannel.c",
1281 "src/core/ext/client_channel/subchannel_index.c",
1282 "src/core/ext/client_channel/uri_parser.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001283 "src/core/ext/resolver/dns/native/dns_resolver.c",
1284 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintas4bb11ac2016-05-02 09:20:21 -07001285 "src/core/ext/load_reporting/load_reporting.c",
1286 "src/core/ext/load_reporting/load_reporting_filter.c",
David Garcia Quintas3fb8f732016-06-15 22:53:08 -07001287 "src/core/ext/lb_policy/grpclb/grpclb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001288 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07001289 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001290 "src/core/ext/lb_policy/pick_first/pick_first.c",
1291 "src/core/ext/lb_policy/round_robin/round_robin.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001292 "src/core/ext/census/base_resources.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001293 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07001294 "src/core/ext/census/gen/census.pb.c",
Alistair Veitcha0c69f92016-08-31 12:01:27 -07001295 "src/core/ext/census/gen/trace_context.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001296 "src/core/ext/census/grpc_context.c",
1297 "src/core/ext/census/grpc_filter.c",
1298 "src/core/ext/census/grpc_plugin.c",
1299 "src/core/ext/census/initialize.c",
1300 "src/core/ext/census/mlog.c",
1301 "src/core/ext/census/operation.c",
1302 "src/core/ext/census/placeholders.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07001303 "src/core/ext/census/resource.c",
Vizerai12d1fc62016-09-09 14:22:19 -07001304 "src/core/ext/census/trace_context.c",
Craig Tiller03915e52016-04-07 09:15:10 -07001305 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07001306 "src/core/plugin_registry/grpc_unsecure_plugin_registry.c",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001307 ],
1308 hdrs = [
1309 "include/grpc/byte_buffer.h",
1310 "include/grpc/byte_buffer_reader.h",
David Garcia Quintas59f905d2015-06-08 16:31:19 -07001311 "include/grpc/compression.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001312 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07001313 "include/grpc/grpc_posix.h",
Nicolas "Pixel" Noblea469e5d2016-08-16 22:09:27 +02001314 "include/grpc/grpc_security_constants.h",
Craig Tillerc3350542016-10-26 16:19:01 -07001315 "include/grpc/slice.h",
1316 "include/grpc/slice_buffer.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001317 "include/grpc/status.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07001318 "include/grpc/impl/codegen/byte_buffer_reader.h",
Craig Tillerad095982016-02-09 12:45:04 -08001319 "include/grpc/impl/codegen/compression_types.h",
1320 "include/grpc/impl/codegen/connectivity_state.h",
1321 "include/grpc/impl/codegen/grpc_types.h",
1322 "include/grpc/impl/codegen/propagation_bits.h",
1323 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001324 "include/grpc/impl/codegen/atm.h",
1325 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1326 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001327 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -07001328 "include/grpc/impl/codegen/gpr_types.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001329 "include/grpc/impl/codegen/port_platform.h",
1330 "include/grpc/impl/codegen/slice.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001331 "include/grpc/impl/codegen/sync.h",
1332 "include/grpc/impl/codegen/sync_generic.h",
1333 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001334 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001335 "include/grpc/census.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001336 ],
1337 includes = [
1338 "include",
1339 ".",
1340 ],
1341 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08001342 ":gpr",
Rob Earhartb7b8d052016-03-29 11:35:29 -07001343 "//external:nanopb",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001344 ],
Rob Earhartaf379b22016-01-21 13:43:09 -08001345 copts = [
1346 "-std=gnu99",
1347 ],
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001348)
1349
1350
Rob Earhartb7b8d052016-03-29 11:35:29 -07001351
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001352cc_library(
1353 name = "grpc++",
1354 srcs = [
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001355 "include/grpc++/impl/codegen/core_codegen.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001356 "src/cpp/client/secure_credentials.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001357 "src/cpp/common/secure_auth_context.h",
Craig Tiller44cc10b2016-03-28 10:45:29 -07001358 "src/cpp/server/secure_server_credentials.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001359 "src/cpp/client/create_channel_internal.h",
Mark D. Rothab950ee2016-06-29 14:51:53 -07001360 "src/cpp/common/channel_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001361 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001362 "src/cpp/server/thread_pool_interface.h",
murgatroid991ca0f3e2016-08-26 14:58:49 -07001363 "src/cpp/client/insecure_credentials.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001364 "src/cpp/client/secure_credentials.cc",
1365 "src/cpp/common/auth_property_iterator.cc",
1366 "src/cpp/common/secure_auth_context.cc",
1367 "src/cpp/common/secure_channel_arguments.cc",
1368 "src/cpp/common/secure_create_auth_context.cc",
murgatroid991ca0f3e2016-08-26 14:58:49 -07001369 "src/cpp/server/insecure_server_credentials.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001370 "src/cpp/server/secure_server_credentials.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001371 "src/cpp/client/channel_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001372 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001373 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001374 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001375 "src/cpp/client/create_channel_posix.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001376 "src/cpp/client/credentials_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001377 "src/cpp/client/generic_stub.cc",
yang-g52705592015-11-25 11:45:33 -08001378 "src/cpp/common/channel_arguments.cc",
Mark D. Rothec0bc8b2016-06-15 14:02:57 -07001379 "src/cpp/common/channel_filter.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001380 "src/cpp/common/completion_queue_cc.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001381 "src/cpp/common/core_codegen.cc",
Craig Tiller20afa3d2016-10-17 14:52:14 -07001382 "src/cpp/common/resource_quota_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001383 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001384 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001385 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001386 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001387 "src/cpp/server/server_builder.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001388 "src/cpp/server/server_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001389 "src/cpp/server/server_context.cc",
1390 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001391 "src/cpp/server/server_posix.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001392 "src/cpp/util/byte_buffer_cc.cc",
1393 "src/cpp/util/slice_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001394 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001395 "src/cpp/util/string_ref.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001396 "src/cpp/util/time_cc.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001397 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001398 ],
1399 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001400 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001401 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001402 "include/grpc++/client_context.h",
1403 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001404 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001405 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001406 "include/grpc++/generic/async_generic_service.h",
1407 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001408 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001409 "include/grpc++/impl/call.h",
1410 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001411 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001412 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001413 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001414 "include/grpc++/impl/rpc_method.h",
1415 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001416 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001417 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001418 "include/grpc++/impl/server_builder_plugin.h",
1419 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001420 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001421 "include/grpc++/impl/sync.h",
1422 "include/grpc++/impl/sync_cxx11.h",
1423 "include/grpc++/impl/sync_no_cxx11.h",
1424 "include/grpc++/impl/thd.h",
1425 "include/grpc++/impl/thd_cxx11.h",
1426 "include/grpc++/impl/thd_no_cxx11.h",
Craig Tiller20afa3d2016-10-17 14:52:14 -07001427 "include/grpc++/resource_quota.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001428 "include/grpc++/security/auth_context.h",
1429 "include/grpc++/security/auth_metadata_processor.h",
1430 "include/grpc++/security/credentials.h",
1431 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001432 "include/grpc++/server.h",
1433 "include/grpc++/server_builder.h",
1434 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001435 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001436 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001437 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001438 "include/grpc++/support/byte_buffer.h",
1439 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001440 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001441 "include/grpc++/support/slice.h",
1442 "include/grpc++/support/status.h",
1443 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001444 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001445 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001446 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001447 "include/grpc++/support/time.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001448 "include/grpc++/impl/codegen/async_stream.h",
1449 "include/grpc++/impl/codegen/async_unary_call.h",
1450 "include/grpc++/impl/codegen/call.h",
1451 "include/grpc++/impl/codegen/call_hook.h",
1452 "include/grpc++/impl/codegen/channel_interface.h",
1453 "include/grpc++/impl/codegen/client_context.h",
1454 "include/grpc++/impl/codegen/client_unary_call.h",
1455 "include/grpc++/impl/codegen/completion_queue.h",
1456 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001457 "include/grpc++/impl/codegen/config.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001458 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001459 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001460 "include/grpc++/impl/codegen/grpc_library.h",
1461 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001462 "include/grpc++/impl/codegen/rpc_method.h",
1463 "include/grpc++/impl/codegen/rpc_service_method.h",
1464 "include/grpc++/impl/codegen/security/auth_context.h",
1465 "include/grpc++/impl/codegen/serialization_traits.h",
1466 "include/grpc++/impl/codegen/server_context.h",
1467 "include/grpc++/impl/codegen/server_interface.h",
1468 "include/grpc++/impl/codegen/service_type.h",
1469 "include/grpc++/impl/codegen/status.h",
1470 "include/grpc++/impl/codegen/status_code_enum.h",
yang-gd5581492016-09-06 14:05:53 -07001471 "include/grpc++/impl/codegen/status_helper.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001472 "include/grpc++/impl/codegen/string_ref.h",
1473 "include/grpc++/impl/codegen/stub_options.h",
1474 "include/grpc++/impl/codegen/sync.h",
1475 "include/grpc++/impl/codegen/sync_cxx11.h",
1476 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1477 "include/grpc++/impl/codegen/sync_stream.h",
1478 "include/grpc++/impl/codegen/time.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001479 "include/grpc/impl/codegen/byte_buffer_reader.h",
1480 "include/grpc/impl/codegen/compression_types.h",
1481 "include/grpc/impl/codegen/connectivity_state.h",
1482 "include/grpc/impl/codegen/grpc_types.h",
1483 "include/grpc/impl/codegen/propagation_bits.h",
1484 "include/grpc/impl/codegen/status.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001485 "include/grpc/impl/codegen/atm.h",
1486 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1487 "include/grpc/impl/codegen/atm_gcc_sync.h",
1488 "include/grpc/impl/codegen/atm_windows.h",
Nicolas "Pixel" Noble87a10812016-09-29 01:31:54 +02001489 "include/grpc/impl/codegen/gpr_types.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001490 "include/grpc/impl/codegen/port_platform.h",
1491 "include/grpc/impl/codegen/slice.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001492 "include/grpc/impl/codegen/sync.h",
1493 "include/grpc/impl/codegen/sync_generic.h",
1494 "include/grpc/impl/codegen/sync_posix.h",
1495 "include/grpc/impl/codegen/sync_windows.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001496 ],
1497 includes = [
1498 "include",
1499 ".",
1500 ],
1501 deps = [
Craig Tiller02a7bed2015-08-31 15:54:05 -07001502 "//external:libssl",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001503 "//external:protobuf_clib",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001504 ":grpc",
1505 ],
1506)
1507
1508
Rob Earhartb7b8d052016-03-29 11:35:29 -07001509
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001510cc_library(
Garrett Casto931a26b2016-10-04 09:18:29 -07001511 name = "grpc++_cronet",
1512 srcs = [
1513 "src/cpp/client/create_channel_internal.h",
1514 "src/cpp/common/channel_filter.h",
1515 "src/cpp/server/dynamic_thread_pool.h",
1516 "src/cpp/server/thread_pool_interface.h",
1517 "src/cpp/client/cronet_credentials.cc",
1518 "src/cpp/client/insecure_credentials.cc",
1519 "src/cpp/common/insecure_create_auth_context.cc",
1520 "src/cpp/server/insecure_server_credentials.cc",
1521 "src/cpp/client/channel_cc.cc",
1522 "src/cpp/client/client_context.cc",
1523 "src/cpp/client/create_channel.cc",
1524 "src/cpp/client/create_channel_internal.cc",
1525 "src/cpp/client/create_channel_posix.cc",
1526 "src/cpp/client/credentials_cc.cc",
1527 "src/cpp/client/generic_stub.cc",
1528 "src/cpp/common/channel_arguments.cc",
1529 "src/cpp/common/channel_filter.cc",
1530 "src/cpp/common/completion_queue_cc.cc",
1531 "src/cpp/common/core_codegen.cc",
Craig Tiller3d357d92016-10-26 20:52:03 -07001532 "src/cpp/common/resource_quota_cc.cc",
Garrett Casto931a26b2016-10-04 09:18:29 -07001533 "src/cpp/common/rpc_method.cc",
1534 "src/cpp/server/async_generic_service.cc",
1535 "src/cpp/server/create_default_thread_pool.cc",
1536 "src/cpp/server/dynamic_thread_pool.cc",
1537 "src/cpp/server/server_builder.cc",
1538 "src/cpp/server/server_cc.cc",
1539 "src/cpp/server/server_context.cc",
1540 "src/cpp/server/server_credentials.cc",
1541 "src/cpp/server/server_posix.cc",
1542 "src/cpp/util/byte_buffer_cc.cc",
1543 "src/cpp/util/slice_cc.cc",
1544 "src/cpp/util/status.cc",
1545 "src/cpp/util/string_ref.cc",
1546 "src/cpp/util/time_cc.cc",
1547 "src/cpp/codegen/codegen_init.cc",
1548 ],
1549 hdrs = [
1550 "include/grpc++/alarm.h",
1551 "include/grpc++/channel.h",
1552 "include/grpc++/client_context.h",
1553 "include/grpc++/completion_queue.h",
1554 "include/grpc++/create_channel.h",
1555 "include/grpc++/create_channel_posix.h",
1556 "include/grpc++/generic/async_generic_service.h",
1557 "include/grpc++/generic/generic_stub.h",
1558 "include/grpc++/grpc++.h",
1559 "include/grpc++/impl/call.h",
1560 "include/grpc++/impl/client_unary_call.h",
1561 "include/grpc++/impl/codegen/core_codegen.h",
1562 "include/grpc++/impl/grpc_library.h",
1563 "include/grpc++/impl/method_handler_impl.h",
1564 "include/grpc++/impl/rpc_method.h",
1565 "include/grpc++/impl/rpc_service_method.h",
1566 "include/grpc++/impl/serialization_traits.h",
1567 "include/grpc++/impl/server_builder_option.h",
1568 "include/grpc++/impl/server_builder_plugin.h",
1569 "include/grpc++/impl/server_initializer.h",
1570 "include/grpc++/impl/service_type.h",
1571 "include/grpc++/impl/sync.h",
1572 "include/grpc++/impl/sync_cxx11.h",
1573 "include/grpc++/impl/sync_no_cxx11.h",
1574 "include/grpc++/impl/thd.h",
1575 "include/grpc++/impl/thd_cxx11.h",
1576 "include/grpc++/impl/thd_no_cxx11.h",
Craig Tiller3d357d92016-10-26 20:52:03 -07001577 "include/grpc++/resource_quota.h",
Garrett Casto931a26b2016-10-04 09:18:29 -07001578 "include/grpc++/security/auth_context.h",
1579 "include/grpc++/security/auth_metadata_processor.h",
1580 "include/grpc++/security/credentials.h",
1581 "include/grpc++/security/server_credentials.h",
1582 "include/grpc++/server.h",
1583 "include/grpc++/server_builder.h",
1584 "include/grpc++/server_context.h",
1585 "include/grpc++/server_posix.h",
1586 "include/grpc++/support/async_stream.h",
1587 "include/grpc++/support/async_unary_call.h",
1588 "include/grpc++/support/byte_buffer.h",
1589 "include/grpc++/support/channel_arguments.h",
1590 "include/grpc++/support/config.h",
1591 "include/grpc++/support/slice.h",
1592 "include/grpc++/support/status.h",
1593 "include/grpc++/support/status_code_enum.h",
1594 "include/grpc++/support/string_ref.h",
1595 "include/grpc++/support/stub_options.h",
1596 "include/grpc++/support/sync_stream.h",
1597 "include/grpc++/support/time.h",
1598 "include/grpc++/impl/codegen/async_stream.h",
1599 "include/grpc++/impl/codegen/async_unary_call.h",
1600 "include/grpc++/impl/codegen/call.h",
1601 "include/grpc++/impl/codegen/call_hook.h",
1602 "include/grpc++/impl/codegen/channel_interface.h",
1603 "include/grpc++/impl/codegen/client_context.h",
1604 "include/grpc++/impl/codegen/client_unary_call.h",
1605 "include/grpc++/impl/codegen/completion_queue.h",
1606 "include/grpc++/impl/codegen/completion_queue_tag.h",
1607 "include/grpc++/impl/codegen/config.h",
1608 "include/grpc++/impl/codegen/core_codegen_interface.h",
1609 "include/grpc++/impl/codegen/create_auth_context.h",
1610 "include/grpc++/impl/codegen/grpc_library.h",
1611 "include/grpc++/impl/codegen/method_handler_impl.h",
1612 "include/grpc++/impl/codegen/rpc_method.h",
1613 "include/grpc++/impl/codegen/rpc_service_method.h",
1614 "include/grpc++/impl/codegen/security/auth_context.h",
1615 "include/grpc++/impl/codegen/serialization_traits.h",
1616 "include/grpc++/impl/codegen/server_context.h",
1617 "include/grpc++/impl/codegen/server_interface.h",
1618 "include/grpc++/impl/codegen/service_type.h",
1619 "include/grpc++/impl/codegen/status.h",
1620 "include/grpc++/impl/codegen/status_code_enum.h",
1621 "include/grpc++/impl/codegen/status_helper.h",
1622 "include/grpc++/impl/codegen/string_ref.h",
1623 "include/grpc++/impl/codegen/stub_options.h",
1624 "include/grpc++/impl/codegen/sync.h",
1625 "include/grpc++/impl/codegen/sync_cxx11.h",
1626 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1627 "include/grpc++/impl/codegen/sync_stream.h",
1628 "include/grpc++/impl/codegen/time.h",
1629 "include/grpc/impl/codegen/byte_buffer_reader.h",
1630 "include/grpc/impl/codegen/compression_types.h",
1631 "include/grpc/impl/codegen/connectivity_state.h",
1632 "include/grpc/impl/codegen/grpc_types.h",
1633 "include/grpc/impl/codegen/propagation_bits.h",
1634 "include/grpc/impl/codegen/status.h",
1635 "include/grpc/impl/codegen/atm.h",
1636 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1637 "include/grpc/impl/codegen/atm_gcc_sync.h",
1638 "include/grpc/impl/codegen/atm_windows.h",
1639 "include/grpc/impl/codegen/gpr_types.h",
1640 "include/grpc/impl/codegen/port_platform.h",
1641 "include/grpc/impl/codegen/slice.h",
1642 "include/grpc/impl/codegen/sync.h",
1643 "include/grpc/impl/codegen/sync_generic.h",
1644 "include/grpc/impl/codegen/sync_posix.h",
1645 "include/grpc/impl/codegen/sync_windows.h",
1646 ],
1647 includes = [
1648 "include",
1649 ".",
1650 ],
1651 deps = [
1652 "//external:libssl",
1653 ":gpr",
1654 ":grpc_cronet",
1655 ],
1656)
1657
1658
1659
1660cc_library(
Yuchen Zengc84ed682016-05-04 16:30:11 -07001661 name = "grpc++_reflection",
1662 srcs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001663 "src/cpp/ext/proto_server_reflection.h",
1664 "src/cpp/ext/proto_server_reflection.cc",
1665 "src/cpp/ext/proto_server_reflection_plugin.cc",
1666 "src/cpp/ext/reflection.grpc.pb.cc",
1667 "src/cpp/ext/reflection.pb.cc",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001668 ],
1669 hdrs = [
Yuchen Zeng0601df32016-06-06 13:08:06 -07001670 "include/grpc++/ext/proto_server_reflection_plugin.h",
1671 "include/grpc++/ext/reflection.grpc.pb.h",
1672 "include/grpc++/ext/reflection.pb.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001673 "include/grpc++/impl/codegen/proto_utils.h",
1674 "include/grpc++/impl/codegen/async_stream.h",
1675 "include/grpc++/impl/codegen/async_unary_call.h",
1676 "include/grpc++/impl/codegen/call.h",
1677 "include/grpc++/impl/codegen/call_hook.h",
1678 "include/grpc++/impl/codegen/channel_interface.h",
1679 "include/grpc++/impl/codegen/client_context.h",
1680 "include/grpc++/impl/codegen/client_unary_call.h",
1681 "include/grpc++/impl/codegen/completion_queue.h",
1682 "include/grpc++/impl/codegen/completion_queue_tag.h",
1683 "include/grpc++/impl/codegen/config.h",
1684 "include/grpc++/impl/codegen/core_codegen_interface.h",
1685 "include/grpc++/impl/codegen/create_auth_context.h",
1686 "include/grpc++/impl/codegen/grpc_library.h",
1687 "include/grpc++/impl/codegen/method_handler_impl.h",
1688 "include/grpc++/impl/codegen/rpc_method.h",
1689 "include/grpc++/impl/codegen/rpc_service_method.h",
1690 "include/grpc++/impl/codegen/security/auth_context.h",
1691 "include/grpc++/impl/codegen/serialization_traits.h",
1692 "include/grpc++/impl/codegen/server_context.h",
1693 "include/grpc++/impl/codegen/server_interface.h",
1694 "include/grpc++/impl/codegen/service_type.h",
1695 "include/grpc++/impl/codegen/status.h",
1696 "include/grpc++/impl/codegen/status_code_enum.h",
yang-gd5581492016-09-06 14:05:53 -07001697 "include/grpc++/impl/codegen/status_helper.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001698 "include/grpc++/impl/codegen/string_ref.h",
1699 "include/grpc++/impl/codegen/stub_options.h",
1700 "include/grpc++/impl/codegen/sync.h",
1701 "include/grpc++/impl/codegen/sync_cxx11.h",
1702 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1703 "include/grpc++/impl/codegen/sync_stream.h",
1704 "include/grpc++/impl/codegen/time.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001705 "include/grpc/impl/codegen/byte_buffer_reader.h",
1706 "include/grpc/impl/codegen/compression_types.h",
1707 "include/grpc/impl/codegen/connectivity_state.h",
1708 "include/grpc/impl/codegen/grpc_types.h",
1709 "include/grpc/impl/codegen/propagation_bits.h",
1710 "include/grpc/impl/codegen/status.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001711 "include/grpc/impl/codegen/atm.h",
1712 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1713 "include/grpc/impl/codegen/atm_gcc_sync.h",
1714 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -07001715 "include/grpc/impl/codegen/gpr_types.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001716 "include/grpc/impl/codegen/port_platform.h",
1717 "include/grpc/impl/codegen/slice.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001718 "include/grpc/impl/codegen/sync.h",
1719 "include/grpc/impl/codegen/sync_generic.h",
1720 "include/grpc/impl/codegen/sync_posix.h",
1721 "include/grpc/impl/codegen/sync_windows.h",
Yuchen Zengeb25a072016-06-08 10:59:48 -07001722 "include/grpc++/impl/codegen/config_protobuf.h",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001723 ],
1724 includes = [
1725 "include",
1726 ".",
1727 ],
1728 deps = [
Yuchen Zengc6bf5f72016-06-07 14:41:01 -07001729 ":grpc++",
Yuchen Zengc84ed682016-05-04 16:30:11 -07001730 ],
1731)
1732
1733
1734
1735cc_library(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001736 name = "grpc++_unsecure",
1737 srcs = [
yang-gc317f072015-08-20 12:18:08 -07001738 "src/cpp/client/create_channel_internal.h",
Mark D. Rothab950ee2016-06-29 14:51:53 -07001739 "src/cpp/common/channel_filter.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001740 "src/cpp/server/dynamic_thread_pool.h",
Vijay Paie8a7e302015-08-24 10:52:33 -07001741 "src/cpp/server/thread_pool_interface.h",
murgatroid991ca0f3e2016-08-26 14:58:49 -07001742 "src/cpp/client/insecure_credentials.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001743 "src/cpp/common/insecure_create_auth_context.cc",
murgatroid991ca0f3e2016-08-26 14:58:49 -07001744 "src/cpp/server/insecure_server_credentials.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001745 "src/cpp/client/channel_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001746 "src/cpp/client/client_context.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001747 "src/cpp/client/create_channel.cc",
yang-gc317f072015-08-20 12:18:08 -07001748 "src/cpp/client/create_channel_internal.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001749 "src/cpp/client/create_channel_posix.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001750 "src/cpp/client/credentials_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001751 "src/cpp/client/generic_stub.cc",
yang-g52705592015-11-25 11:45:33 -08001752 "src/cpp/common/channel_arguments.cc",
Mark D. Rothec0bc8b2016-06-15 14:02:57 -07001753 "src/cpp/common/channel_filter.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001754 "src/cpp/common/completion_queue_cc.cc",
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +01001755 "src/cpp/common/core_codegen.cc",
Craig Tiller20afa3d2016-10-17 14:52:14 -07001756 "src/cpp/common/resource_quota_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001757 "src/cpp/common/rpc_method.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001758 "src/cpp/server/async_generic_service.cc",
Yang Gao6f4fb3b2015-06-03 12:56:19 -07001759 "src/cpp/server/create_default_thread_pool.cc",
vjpaib28456b2015-07-23 14:17:10 -07001760 "src/cpp/server/dynamic_thread_pool.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001761 "src/cpp/server/server_builder.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001762 "src/cpp/server/server_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001763 "src/cpp/server/server_context.cc",
1764 "src/cpp/server/server_credentials.cc",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001765 "src/cpp/server/server_posix.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001766 "src/cpp/util/byte_buffer_cc.cc",
1767 "src/cpp/util/slice_cc.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001768 "src/cpp/util/status.cc",
Julien Boeuf8fd915a2015-08-19 21:18:14 -07001769 "src/cpp/util/string_ref.cc",
Craig Tiller102fa962016-08-22 13:56:36 -07001770 "src/cpp/util/time_cc.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001771 "src/cpp/codegen/codegen_init.cc",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001772 ],
1773 hdrs = [
vjpaif9f61cf2016-02-10 20:51:53 -08001774 "include/grpc++/alarm.h",
yang-g8c2be9f2015-08-19 16:28:09 -07001775 "include/grpc++/channel.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001776 "include/grpc++/client_context.h",
1777 "include/grpc++/completion_queue.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001778 "include/grpc++/create_channel.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001779 "include/grpc++/create_channel_posix.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001780 "include/grpc++/generic/async_generic_service.h",
1781 "include/grpc++/generic/generic_stub.h",
Craig Tillerd136a5c2015-09-11 12:23:32 -07001782 "include/grpc++/grpc++.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001783 "include/grpc++/impl/call.h",
1784 "include/grpc++/impl/client_unary_call.h",
David Garcia Quintasa20a2ad2016-05-19 10:53:44 -07001785 "include/grpc++/impl/codegen/core_codegen.h",
Yang Gao96de4842015-04-24 13:13:12 -07001786 "include/grpc++/impl/grpc_library.h",
yang-g77c63332016-01-14 16:09:04 -08001787 "include/grpc++/impl/method_handler_impl.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001788 "include/grpc++/impl/rpc_method.h",
1789 "include/grpc++/impl/rpc_service_method.h",
Craig Tiller6ef7f312015-06-05 10:15:10 -07001790 "include/grpc++/impl/serialization_traits.h",
yang-ga23f17b2015-11-25 10:21:05 -08001791 "include/grpc++/impl/server_builder_option.h",
Yuchen Zenga42ec212016-04-29 13:03:06 -07001792 "include/grpc++/impl/server_builder_plugin.h",
1793 "include/grpc++/impl/server_initializer.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001794 "include/grpc++/impl/service_type.h",
Nicolas "Pixel" Nobleb7c20352015-04-11 01:27:32 +02001795 "include/grpc++/impl/sync.h",
1796 "include/grpc++/impl/sync_cxx11.h",
1797 "include/grpc++/impl/sync_no_cxx11.h",
1798 "include/grpc++/impl/thd.h",
1799 "include/grpc++/impl/thd_cxx11.h",
1800 "include/grpc++/impl/thd_no_cxx11.h",
Craig Tiller20afa3d2016-10-17 14:52:14 -07001801 "include/grpc++/resource_quota.h",
Julien Boeuf0d471922015-08-30 22:18:50 -07001802 "include/grpc++/security/auth_context.h",
1803 "include/grpc++/security/auth_metadata_processor.h",
1804 "include/grpc++/security/credentials.h",
1805 "include/grpc++/security/server_credentials.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001806 "include/grpc++/server.h",
1807 "include/grpc++/server_builder.h",
1808 "include/grpc++/server_context.h",
Adam Michalikb97e2d12016-06-02 12:12:55 -07001809 "include/grpc++/server_posix.h",
yang-g9fb35a52015-08-21 15:49:35 -07001810 "include/grpc++/support/async_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001811 "include/grpc++/support/async_unary_call.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001812 "include/grpc++/support/byte_buffer.h",
1813 "include/grpc++/support/channel_arguments.h",
yang-g17487f92016-06-03 15:21:15 -07001814 "include/grpc++/support/config.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001815 "include/grpc++/support/slice.h",
1816 "include/grpc++/support/status.h",
1817 "include/grpc++/support/status_code_enum.h",
Julien Boeuf0382bfa2015-08-24 23:55:43 -07001818 "include/grpc++/support/string_ref.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001819 "include/grpc++/support/stub_options.h",
yang-g9fb35a52015-08-21 15:49:35 -07001820 "include/grpc++/support/sync_stream.h",
yang-g9e2f90c2015-08-21 15:35:03 -07001821 "include/grpc++/support/time.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001822 "include/grpc++/impl/codegen/async_stream.h",
1823 "include/grpc++/impl/codegen/async_unary_call.h",
1824 "include/grpc++/impl/codegen/call.h",
1825 "include/grpc++/impl/codegen/call_hook.h",
1826 "include/grpc++/impl/codegen/channel_interface.h",
1827 "include/grpc++/impl/codegen/client_context.h",
1828 "include/grpc++/impl/codegen/client_unary_call.h",
1829 "include/grpc++/impl/codegen/completion_queue.h",
1830 "include/grpc++/impl/codegen/completion_queue_tag.h",
yang-g17487f92016-06-03 15:21:15 -07001831 "include/grpc++/impl/codegen/config.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001832 "include/grpc++/impl/codegen/core_codegen_interface.h",
Craig Tiller3ab2fe02016-04-11 20:11:18 -07001833 "include/grpc++/impl/codegen/create_auth_context.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001834 "include/grpc++/impl/codegen/grpc_library.h",
1835 "include/grpc++/impl/codegen/method_handler_impl.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001836 "include/grpc++/impl/codegen/rpc_method.h",
1837 "include/grpc++/impl/codegen/rpc_service_method.h",
1838 "include/grpc++/impl/codegen/security/auth_context.h",
1839 "include/grpc++/impl/codegen/serialization_traits.h",
1840 "include/grpc++/impl/codegen/server_context.h",
1841 "include/grpc++/impl/codegen/server_interface.h",
1842 "include/grpc++/impl/codegen/service_type.h",
1843 "include/grpc++/impl/codegen/status.h",
1844 "include/grpc++/impl/codegen/status_code_enum.h",
yang-gd5581492016-09-06 14:05:53 -07001845 "include/grpc++/impl/codegen/status_helper.h",
Craig Tiller03d8f2f2016-04-07 08:02:16 -07001846 "include/grpc++/impl/codegen/string_ref.h",
1847 "include/grpc++/impl/codegen/stub_options.h",
1848 "include/grpc++/impl/codegen/sync.h",
1849 "include/grpc++/impl/codegen/sync_cxx11.h",
1850 "include/grpc++/impl/codegen/sync_no_cxx11.h",
1851 "include/grpc++/impl/codegen/sync_stream.h",
1852 "include/grpc++/impl/codegen/time.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001853 "include/grpc/impl/codegen/byte_buffer_reader.h",
1854 "include/grpc/impl/codegen/compression_types.h",
1855 "include/grpc/impl/codegen/connectivity_state.h",
1856 "include/grpc/impl/codegen/grpc_types.h",
1857 "include/grpc/impl/codegen/propagation_bits.h",
1858 "include/grpc/impl/codegen/status.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001859 "include/grpc/impl/codegen/atm.h",
1860 "include/grpc/impl/codegen/atm_gcc_atomic.h",
1861 "include/grpc/impl/codegen/atm_gcc_sync.h",
1862 "include/grpc/impl/codegen/atm_windows.h",
Nicolas "Pixel" Noble87a10812016-09-29 01:31:54 +02001863 "include/grpc/impl/codegen/gpr_types.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001864 "include/grpc/impl/codegen/port_platform.h",
1865 "include/grpc/impl/codegen/slice.h",
Nicolas "Pixel" Noble880b4572016-09-19 20:24:05 +02001866 "include/grpc/impl/codegen/sync.h",
1867 "include/grpc/impl/codegen/sync_generic.h",
1868 "include/grpc/impl/codegen/sync_posix.h",
1869 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001870 ],
1871 includes = [
1872 "include",
1873 ".",
1874 ],
1875 deps = [
1876 "//external:protobuf_clib",
1877 ":gpr",
1878 ":grpc_unsecure",
Craig Tiller03915e52016-04-07 09:15:10 -07001879 ],
1880)
1881
1882
1883
1884cc_library(
1885 name = "grpc_plugin_support",
1886 srcs = [
1887 "src/compiler/config.h",
1888 "src/compiler/cpp_generator.h",
1889 "src/compiler/cpp_generator_helpers.h",
1890 "src/compiler/csharp_generator.h",
1891 "src/compiler/csharp_generator_helpers.h",
1892 "src/compiler/generator_helpers.h",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001893 "src/compiler/node_generator.h",
1894 "src/compiler/node_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001895 "src/compiler/objective_c_generator.h",
1896 "src/compiler/objective_c_generator_helpers.h",
Stanley Cheung857a1302016-09-29 17:26:29 -07001897 "src/compiler/php_generator.h",
1898 "src/compiler/php_generator_helpers.h",
Craig Tiller03915e52016-04-07 09:15:10 -07001899 "src/compiler/python_generator.h",
1900 "src/compiler/ruby_generator.h",
1901 "src/compiler/ruby_generator_helpers-inl.h",
1902 "src/compiler/ruby_generator_map-inl.h",
1903 "src/compiler/ruby_generator_string-inl.h",
1904 "src/compiler/cpp_generator.cc",
1905 "src/compiler/csharp_generator.cc",
murgatroid99d2ee81f2016-02-26 11:10:33 -08001906 "src/compiler/node_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001907 "src/compiler/objective_c_generator.cc",
Stanley Cheung857a1302016-09-29 17:26:29 -07001908 "src/compiler/php_generator.cc",
Craig Tiller03915e52016-04-07 09:15:10 -07001909 "src/compiler/python_generator.cc",
1910 "src/compiler/ruby_generator.cc",
1911 ],
1912 hdrs = [
Craig Tiller03915e52016-04-07 09:15:10 -07001913 "include/grpc++/impl/codegen/config_protobuf.h",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001914 ],
1915 includes = [
1916 "include",
1917 ".",
1918 ],
1919 deps = [
1920 "//external:protobuf_compiler",
1921 ],
1922)
1923
1924
Rob Earhartb7b8d052016-03-29 11:35:29 -07001925
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001926cc_library(
1927 name = "grpc_csharp_ext",
1928 srcs = [
1929 "src/csharp/ext/grpc_csharp_ext.c",
1930 ],
1931 hdrs = [
1932 ],
1933 includes = [
1934 "include",
1935 ".",
1936 ],
1937 deps = [
Craig Tillerd1697d92016-04-05 16:05:46 -07001938 ":grpc",
Craig Tiller03915e52016-04-07 09:15:10 -07001939 ":gpr",
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07001940 ],
1941)
1942
1943
1944
Rob Earhartb7b8d052016-03-29 11:35:29 -07001945
Jorge Canizales140bca82015-06-20 09:47:00 -07001946objc_library(
Craig Tillerda179ce2016-02-09 12:01:53 -08001947 name = "gpr_objc",
1948 srcs = [
Craig Tillerf23078c2016-03-25 17:07:29 -07001949 "src/core/lib/profiling/basic_timers.c",
1950 "src/core/lib/profiling/stap_timers.c",
1951 "src/core/lib/support/alloc.c",
1952 "src/core/lib/support/avl.c",
1953 "src/core/lib/support/backoff.c",
1954 "src/core/lib/support/cmdline.c",
1955 "src/core/lib/support/cpu_iphone.c",
1956 "src/core/lib/support/cpu_linux.c",
1957 "src/core/lib/support/cpu_posix.c",
1958 "src/core/lib/support/cpu_windows.c",
1959 "src/core/lib/support/env_linux.c",
1960 "src/core/lib/support/env_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001961 "src/core/lib/support/env_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001962 "src/core/lib/support/histogram.c",
1963 "src/core/lib/support/host_port.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001964 "src/core/lib/support/log.c",
1965 "src/core/lib/support/log_android.c",
1966 "src/core/lib/support/log_linux.c",
1967 "src/core/lib/support/log_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001968 "src/core/lib/support/log_windows.c",
Craig Tiller57726ca2016-09-12 11:59:45 -07001969 "src/core/lib/support/mpscq.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001970 "src/core/lib/support/murmur_hash.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001971 "src/core/lib/support/stack_lockfree.c",
1972 "src/core/lib/support/string.c",
1973 "src/core/lib/support/string_posix.c",
Yuchen Zeng4594bd92016-05-31 14:06:01 -07001974 "src/core/lib/support/string_util_windows.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001975 "src/core/lib/support/string_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001976 "src/core/lib/support/subprocess_posix.c",
1977 "src/core/lib/support/subprocess_windows.c",
1978 "src/core/lib/support/sync.c",
1979 "src/core/lib/support/sync_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001980 "src/core/lib/support/sync_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001981 "src/core/lib/support/thd.c",
1982 "src/core/lib/support/thd_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001983 "src/core/lib/support/thd_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001984 "src/core/lib/support/time.c",
1985 "src/core/lib/support/time_posix.c",
1986 "src/core/lib/support/time_precise.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001987 "src/core/lib/support/time_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001988 "src/core/lib/support/tls_pthread.c",
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +02001989 "src/core/lib/support/tmpfile_msys.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001990 "src/core/lib/support/tmpfile_posix.c",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001991 "src/core/lib/support/tmpfile_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07001992 "src/core/lib/support/wrap_memcpy.c",
Craig Tillerda179ce2016-02-09 12:01:53 -08001993 ],
1994 hdrs = [
1995 "include/grpc/support/alloc.h",
1996 "include/grpc/support/atm.h",
1997 "include/grpc/support/atm_gcc_atomic.h",
1998 "include/grpc/support/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07001999 "include/grpc/support/atm_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08002000 "include/grpc/support/avl.h",
2001 "include/grpc/support/cmdline.h",
2002 "include/grpc/support/cpu.h",
2003 "include/grpc/support/histogram.h",
2004 "include/grpc/support/host_port.h",
2005 "include/grpc/support/log.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002006 "include/grpc/support/log_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08002007 "include/grpc/support/port_platform.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08002008 "include/grpc/support/string_util.h",
2009 "include/grpc/support/subprocess.h",
2010 "include/grpc/support/sync.h",
2011 "include/grpc/support/sync_generic.h",
2012 "include/grpc/support/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002013 "include/grpc/support/sync_windows.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08002014 "include/grpc/support/thd.h",
2015 "include/grpc/support/time.h",
2016 "include/grpc/support/tls.h",
2017 "include/grpc/support/tls_gcc.h",
2018 "include/grpc/support/tls_msvc.h",
2019 "include/grpc/support/tls_pthread.h",
2020 "include/grpc/support/useful.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002021 "include/grpc/impl/codegen/atm.h",
2022 "include/grpc/impl/codegen/atm_gcc_atomic.h",
2023 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002024 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -07002025 "include/grpc/impl/codegen/gpr_types.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002026 "include/grpc/impl/codegen/port_platform.h",
2027 "include/grpc/impl/codegen/slice.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002028 "include/grpc/impl/codegen/sync.h",
2029 "include/grpc/impl/codegen/sync_generic.h",
2030 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002031 "include/grpc/impl/codegen/sync_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002032 "src/core/lib/profiling/timers.h",
2033 "src/core/lib/support/backoff.h",
2034 "src/core/lib/support/block_annotate.h",
2035 "src/core/lib/support/env.h",
Craig Tiller57726ca2016-09-12 11:59:45 -07002036 "src/core/lib/support/mpscq.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002037 "src/core/lib/support/murmur_hash.h",
2038 "src/core/lib/support/stack_lockfree.h",
2039 "src/core/lib/support/string.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002040 "src/core/lib/support/string_windows.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002041 "src/core/lib/support/thd_internal.h",
2042 "src/core/lib/support/time_precise.h",
2043 "src/core/lib/support/tmpfile.h",
Craig Tillerda179ce2016-02-09 12:01:53 -08002044 ],
2045 includes = [
2046 "include",
2047 ".",
2048 ],
2049 deps = [
2050 ],
2051)
2052
2053
Rob Earhartb7b8d052016-03-29 11:35:29 -07002054
Craig Tillerda179ce2016-02-09 12:01:53 -08002055objc_library(
Jorge Canizales7b1a0ca2015-06-26 21:49:42 -07002056 name = "grpc_objc",
Jorge Canizales140bca82015-06-20 09:47:00 -07002057 srcs = [
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002058 "src/core/lib/surface/init.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002059 "src/core/lib/channel/channel_args.c",
2060 "src/core/lib/channel/channel_stack.c",
2061 "src/core/lib/channel/channel_stack_builder.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002062 "src/core/lib/channel/compress_filter.c",
2063 "src/core/lib/channel/connected_channel.c",
Mark D. Roth14c072c2016-08-26 08:31:34 -07002064 "src/core/lib/channel/deadline_filter.c",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07002065 "src/core/lib/channel/handshaker.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002066 "src/core/lib/channel/http_client_filter.c",
2067 "src/core/lib/channel/http_server_filter.c",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -07002068 "src/core/lib/channel/message_size_filter.c",
David Garcia Quintasac094472016-05-18 20:25:57 -07002069 "src/core/lib/compression/compression.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002070 "src/core/lib/compression/message_compress.c",
2071 "src/core/lib/debug/trace.c",
2072 "src/core/lib/http/format_request.c",
2073 "src/core/lib/http/httpcli.c",
2074 "src/core/lib/http/parser.c",
2075 "src/core/lib/iomgr/closure.c",
Craig Tiller57726ca2016-09-12 11:59:45 -07002076 "src/core/lib/iomgr/combiner.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002077 "src/core/lib/iomgr/endpoint.c",
2078 "src/core/lib/iomgr/endpoint_pair_posix.c",
murgatroid99c36f6ea2016-10-03 09:24:09 -07002079 "src/core/lib/iomgr/endpoint_pair_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002080 "src/core/lib/iomgr/endpoint_pair_windows.c",
Craig Tiller27f59af2016-04-28 14:19:48 -07002081 "src/core/lib/iomgr/error.c",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07002082 "src/core/lib/iomgr/ev_epoll_linux.c",
Craig Tiller8a034482016-03-28 16:09:04 -07002083 "src/core/lib/iomgr/ev_poll_and_epoll_posix.c",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07002084 "src/core/lib/iomgr/ev_poll_posix.c",
Craig Tiller8a034482016-03-28 16:09:04 -07002085 "src/core/lib/iomgr/ev_posix.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002086 "src/core/lib/iomgr/exec_ctx.c",
2087 "src/core/lib/iomgr/executor.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002088 "src/core/lib/iomgr/iocp_windows.c",
2089 "src/core/lib/iomgr/iomgr.c",
2090 "src/core/lib/iomgr/iomgr_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07002091 "src/core/lib/iomgr/iomgr_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002092 "src/core/lib/iomgr/iomgr_windows.c",
Craig Tiller85178862016-05-18 16:09:16 -07002093 "src/core/lib/iomgr/load_file.c",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07002094 "src/core/lib/iomgr/network_status_tracker.c",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07002095 "src/core/lib/iomgr/polling_entity.c",
murgatroid999030c812016-09-16 13:25:08 -07002096 "src/core/lib/iomgr/pollset_set_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002097 "src/core/lib/iomgr/pollset_set_windows.c",
murgatroid999030c812016-09-16 13:25:08 -07002098 "src/core/lib/iomgr/pollset_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002099 "src/core/lib/iomgr/pollset_windows.c",
2100 "src/core/lib/iomgr/resolve_address_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07002101 "src/core/lib/iomgr/resolve_address_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002102 "src/core/lib/iomgr/resolve_address_windows.c",
Craig Tiller20afa3d2016-10-17 14:52:14 -07002103 "src/core/lib/iomgr/resource_quota.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002104 "src/core/lib/iomgr/sockaddr_utils.c",
2105 "src/core/lib/iomgr/socket_utils_common_posix.c",
2106 "src/core/lib/iomgr/socket_utils_linux.c",
2107 "src/core/lib/iomgr/socket_utils_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07002108 "src/core/lib/iomgr/socket_utils_uv.c",
murgatroid9979b32272016-08-08 13:38:30 -07002109 "src/core/lib/iomgr/socket_utils_windows.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002110 "src/core/lib/iomgr/socket_windows.c",
2111 "src/core/lib/iomgr/tcp_client_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07002112 "src/core/lib/iomgr/tcp_client_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002113 "src/core/lib/iomgr/tcp_client_windows.c",
2114 "src/core/lib/iomgr/tcp_posix.c",
2115 "src/core/lib/iomgr/tcp_server_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07002116 "src/core/lib/iomgr/tcp_server_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002117 "src/core/lib/iomgr/tcp_server_windows.c",
murgatroid999030c812016-09-16 13:25:08 -07002118 "src/core/lib/iomgr/tcp_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002119 "src/core/lib/iomgr/tcp_windows.c",
2120 "src/core/lib/iomgr/time_averaged_stats.c",
murgatroid999030c812016-09-16 13:25:08 -07002121 "src/core/lib/iomgr/timer_generic.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002122 "src/core/lib/iomgr/timer_heap.c",
murgatroid999030c812016-09-16 13:25:08 -07002123 "src/core/lib/iomgr/timer_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002124 "src/core/lib/iomgr/udp_server.c",
2125 "src/core/lib/iomgr/unix_sockets_posix.c",
2126 "src/core/lib/iomgr/unix_sockets_posix_noop.c",
kpayson64d195cf52016-10-09 18:04:00 -07002127 "src/core/lib/iomgr/wakeup_fd_cv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002128 "src/core/lib/iomgr/wakeup_fd_eventfd.c",
2129 "src/core/lib/iomgr/wakeup_fd_nospecial.c",
2130 "src/core/lib/iomgr/wakeup_fd_pipe.c",
2131 "src/core/lib/iomgr/wakeup_fd_posix.c",
murgatroid999030c812016-09-16 13:25:08 -07002132 "src/core/lib/iomgr/workqueue_uv.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002133 "src/core/lib/iomgr/workqueue_windows.c",
2134 "src/core/lib/json/json.c",
2135 "src/core/lib/json/json_reader.c",
2136 "src/core/lib/json/json_string.c",
2137 "src/core/lib/json/json_writer.c",
Craig Tillerc3350542016-10-26 16:19:01 -07002138 "src/core/lib/slice/percent_encoding.c",
2139 "src/core/lib/slice/slice.c",
2140 "src/core/lib/slice/slice_buffer.c",
2141 "src/core/lib/slice/slice_string_helpers.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002142 "src/core/lib/surface/alarm.c",
2143 "src/core/lib/surface/api_trace.c",
2144 "src/core/lib/surface/byte_buffer.c",
2145 "src/core/lib/surface/byte_buffer_reader.c",
2146 "src/core/lib/surface/call.c",
2147 "src/core/lib/surface/call_details.c",
2148 "src/core/lib/surface/call_log_batch.c",
2149 "src/core/lib/surface/channel.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002150 "src/core/lib/surface/channel_init.c",
2151 "src/core/lib/surface/channel_ping.c",
2152 "src/core/lib/surface/channel_stack_type.c",
2153 "src/core/lib/surface/completion_queue.c",
2154 "src/core/lib/surface/event_string.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002155 "src/core/lib/surface/lame_client.c",
2156 "src/core/lib/surface/metadata_array.c",
2157 "src/core/lib/surface/server.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002158 "src/core/lib/surface/validate_metadata.c",
2159 "src/core/lib/surface/version.c",
2160 "src/core/lib/transport/byte_stream.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002161 "src/core/lib/transport/connectivity_state.c",
Mark D. Roth6a721b52016-10-14 12:43:34 -07002162 "src/core/lib/transport/mdstr_hash_table.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002163 "src/core/lib/transport/metadata.c",
2164 "src/core/lib/transport/metadata_batch.c",
Mark D. Rothbfe56802016-10-26 12:45:20 -07002165 "src/core/lib/transport/method_config.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002166 "src/core/lib/transport/static_metadata.c",
Robbie Shade710d2422016-07-13 15:15:38 -04002167 "src/core/lib/transport/timeout_encoding.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002168 "src/core/lib/transport/transport.c",
2169 "src/core/lib/transport/transport_op_string.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002170 "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
Yuchen Zengd982bba2016-05-12 18:53:52 -07002171 "src/core/ext/transport/chttp2/transport/bin_decoder.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002172 "src/core/ext/transport/chttp2/transport/bin_encoder.c",
2173 "src/core/ext/transport/chttp2/transport/chttp2_plugin.c",
2174 "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
2175 "src/core/ext/transport/chttp2/transport/frame_data.c",
2176 "src/core/ext/transport/chttp2/transport/frame_goaway.c",
2177 "src/core/ext/transport/chttp2/transport/frame_ping.c",
2178 "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
2179 "src/core/ext/transport/chttp2/transport/frame_settings.c",
2180 "src/core/ext/transport/chttp2/transport/frame_window_update.c",
2181 "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
2182 "src/core/ext/transport/chttp2/transport/hpack_parser.c",
2183 "src/core/ext/transport/chttp2/transport/hpack_table.c",
2184 "src/core/ext/transport/chttp2/transport/huffsyms.c",
2185 "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
2186 "src/core/ext/transport/chttp2/transport/parsing.c",
2187 "src/core/ext/transport/chttp2/transport/status_conversion.c",
2188 "src/core/ext/transport/chttp2/transport/stream_lists.c",
2189 "src/core/ext/transport/chttp2/transport/stream_map.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002190 "src/core/ext/transport/chttp2/transport/varint.c",
2191 "src/core/ext/transport/chttp2/transport/writing.c",
2192 "src/core/ext/transport/chttp2/alpn/alpn.c",
2193 "src/core/lib/http/httpcli_security_connector.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002194 "src/core/lib/security/context/security_context.c",
2195 "src/core/lib/security/credentials/composite/composite_credentials.c",
2196 "src/core/lib/security/credentials/credentials.c",
2197 "src/core/lib/security/credentials/credentials_metadata.c",
2198 "src/core/lib/security/credentials/fake/fake_credentials.c",
murgatroid997c205902016-08-09 10:07:42 -07002199 "src/core/lib/security/credentials/google_default/credentials_generic.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002200 "src/core/lib/security/credentials/google_default/google_default_credentials.c",
2201 "src/core/lib/security/credentials/iam/iam_credentials.c",
2202 "src/core/lib/security/credentials/jwt/json_token.c",
2203 "src/core/lib/security/credentials/jwt/jwt_credentials.c",
2204 "src/core/lib/security/credentials/jwt/jwt_verifier.c",
2205 "src/core/lib/security/credentials/oauth2/oauth2_credentials.c",
2206 "src/core/lib/security/credentials/plugin/plugin_credentials.c",
2207 "src/core/lib/security/credentials/ssl/ssl_credentials.c",
2208 "src/core/lib/security/transport/client_auth_filter.c",
2209 "src/core/lib/security/transport/handshake.c",
2210 "src/core/lib/security/transport/secure_endpoint.c",
2211 "src/core/lib/security/transport/security_connector.c",
2212 "src/core/lib/security/transport/server_auth_filter.c",
Craig Tillerddad9782016-05-05 17:11:31 -07002213 "src/core/lib/security/transport/tsi_error.c",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002214 "src/core/lib/security/util/b64.c",
2215 "src/core/lib/security/util/json_util.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002216 "src/core/lib/surface/init_secure.c",
Craig Tillerf23078c2016-03-25 17:07:29 -07002217 "src/core/lib/tsi/fake_transport_security.c",
2218 "src/core/lib/tsi/ssl_transport_security.c",
2219 "src/core/lib/tsi/transport_security.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002220 "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -07002221 "src/core/ext/client_channel/channel_connectivity.c",
2222 "src/core/ext/client_channel/client_channel.c",
2223 "src/core/ext/client_channel/client_channel_factory.c",
2224 "src/core/ext/client_channel/client_channel_plugin.c",
2225 "src/core/ext/client_channel/connector.c",
2226 "src/core/ext/client_channel/default_initial_connect_string.c",
Mark D. Roth15195742016-10-07 09:02:28 -07002227 "src/core/ext/client_channel/http_connect_handshaker.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -07002228 "src/core/ext/client_channel/initial_connect_string.c",
2229 "src/core/ext/client_channel/lb_policy.c",
2230 "src/core/ext/client_channel/lb_policy_factory.c",
2231 "src/core/ext/client_channel/lb_policy_registry.c",
2232 "src/core/ext/client_channel/parse_address.c",
2233 "src/core/ext/client_channel/resolver.c",
2234 "src/core/ext/client_channel/resolver_factory.c",
2235 "src/core/ext/client_channel/resolver_registry.c",
Mark D. Roth2137cd82016-09-14 09:04:00 -07002236 "src/core/ext/client_channel/subchannel.c",
2237 "src/core/ext/client_channel/subchannel_index.c",
2238 "src/core/ext/client_channel/uri_parser.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002239 "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
Adam Michalikbf10c822016-05-20 16:13:32 -07002240 "src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002241 "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
Adam Michalik321b1fb2016-05-16 15:42:36 -07002242 "src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c",
David Garcia Quintas3fb8f732016-06-15 22:53:08 -07002243 "src/core/ext/lb_policy/grpclb/grpclb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002244 "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002245 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002246 "src/core/ext/lb_policy/pick_first/pick_first.c",
2247 "src/core/ext/lb_policy/round_robin/round_robin.c",
2248 "src/core/ext/resolver/dns/native/dns_resolver.c",
2249 "src/core/ext/resolver/sockaddr/sockaddr_resolver.c",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07002250 "src/core/ext/load_reporting/load_reporting.c",
2251 "src/core/ext/load_reporting/load_reporting_filter.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07002252 "src/core/ext/census/base_resources.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002253 "src/core/ext/census/context.c",
Alistair Veitch30fe6322016-05-23 10:11:28 -07002254 "src/core/ext/census/gen/census.pb.c",
Alistair Veitcha0c69f92016-08-31 12:01:27 -07002255 "src/core/ext/census/gen/trace_context.pb.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002256 "src/core/ext/census/grpc_context.c",
2257 "src/core/ext/census/grpc_filter.c",
2258 "src/core/ext/census/grpc_plugin.c",
2259 "src/core/ext/census/initialize.c",
2260 "src/core/ext/census/mlog.c",
2261 "src/core/ext/census/operation.c",
2262 "src/core/ext/census/placeholders.c",
Alistair Veitch4aaba752016-06-02 17:11:46 -07002263 "src/core/ext/census/resource.c",
Vizerai12d1fc62016-09-09 14:22:19 -07002264 "src/core/ext/census/trace_context.c",
Craig Tiller03915e52016-04-07 09:15:10 -07002265 "src/core/ext/census/tracing.c",
Craig Tillerfb433852016-03-29 08:51:07 -07002266 "src/core/plugin_registry/grpc_plugin_registry.c",
Jorge Canizales140bca82015-06-20 09:47:00 -07002267 ],
2268 hdrs = [
2269 "include/grpc/byte_buffer.h",
2270 "include/grpc/byte_buffer_reader.h",
2271 "include/grpc/compression.h",
2272 "include/grpc/grpc.h",
Adam Michalik321b1fb2016-05-16 15:42:36 -07002273 "include/grpc/grpc_posix.h",
Nicolas "Pixel" Noblea469e5d2016-08-16 22:09:27 +02002274 "include/grpc/grpc_security_constants.h",
Craig Tillerc3350542016-10-26 16:19:01 -07002275 "include/grpc/slice.h",
2276 "include/grpc/slice_buffer.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002277 "include/grpc/status.h",
David Garcia Quintas1b2db632016-04-27 15:06:54 -07002278 "include/grpc/impl/codegen/byte_buffer_reader.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002279 "include/grpc/impl/codegen/compression_types.h",
2280 "include/grpc/impl/codegen/connectivity_state.h",
2281 "include/grpc/impl/codegen/grpc_types.h",
2282 "include/grpc/impl/codegen/propagation_bits.h",
2283 "include/grpc/impl/codegen/status.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002284 "include/grpc/impl/codegen/atm.h",
2285 "include/grpc/impl/codegen/atm_gcc_atomic.h",
2286 "include/grpc/impl/codegen/atm_gcc_sync.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002287 "include/grpc/impl/codegen/atm_windows.h",
David Garcia Quintas8c5424f2016-08-01 22:49:00 -07002288 "include/grpc/impl/codegen/gpr_types.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002289 "include/grpc/impl/codegen/port_platform.h",
2290 "include/grpc/impl/codegen/slice.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002291 "include/grpc/impl/codegen/sync.h",
2292 "include/grpc/impl/codegen/sync_generic.h",
2293 "include/grpc/impl/codegen/sync_posix.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002294 "include/grpc/impl/codegen/sync_windows.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002295 "include/grpc/grpc_security.h",
2296 "include/grpc/census.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002297 "src/core/lib/channel/channel_args.h",
2298 "src/core/lib/channel/channel_stack.h",
2299 "src/core/lib/channel/channel_stack_builder.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002300 "src/core/lib/channel/compress_filter.h",
2301 "src/core/lib/channel/connected_channel.h",
2302 "src/core/lib/channel/context.h",
Mark D. Roth14c072c2016-08-26 08:31:34 -07002303 "src/core/lib/channel/deadline_filter.h",
Mark D. Rothdfbdefe2016-07-14 09:18:22 -07002304 "src/core/lib/channel/handshaker.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002305 "src/core/lib/channel/http_client_filter.h",
2306 "src/core/lib/channel/http_server_filter.h",
Mark D. Rothaf00d8b2016-08-23 12:48:16 -07002307 "src/core/lib/channel/message_size_filter.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002308 "src/core/lib/compression/algorithm_metadata.h",
2309 "src/core/lib/compression/message_compress.h",
2310 "src/core/lib/debug/trace.h",
2311 "src/core/lib/http/format_request.h",
2312 "src/core/lib/http/httpcli.h",
2313 "src/core/lib/http/parser.h",
2314 "src/core/lib/iomgr/closure.h",
Craig Tiller57726ca2016-09-12 11:59:45 -07002315 "src/core/lib/iomgr/combiner.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002316 "src/core/lib/iomgr/endpoint.h",
2317 "src/core/lib/iomgr/endpoint_pair.h",
Craig Tiller27f59af2016-04-28 14:19:48 -07002318 "src/core/lib/iomgr/error.h",
Sree Kuchibhotlaf448c342016-05-19 10:51:24 -07002319 "src/core/lib/iomgr/ev_epoll_linux.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002320 "src/core/lib/iomgr/ev_poll_and_epoll_posix.h",
Craig Tillerd9a60bb2016-03-28 23:13:19 -07002321 "src/core/lib/iomgr/ev_poll_posix.h",
Craig Tiller8a034482016-03-28 16:09:04 -07002322 "src/core/lib/iomgr/ev_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002323 "src/core/lib/iomgr/exec_ctx.h",
2324 "src/core/lib/iomgr/executor.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002325 "src/core/lib/iomgr/iocp_windows.h",
2326 "src/core/lib/iomgr/iomgr.h",
2327 "src/core/lib/iomgr/iomgr_internal.h",
2328 "src/core/lib/iomgr/iomgr_posix.h",
Craig Tiller85178862016-05-18 16:09:16 -07002329 "src/core/lib/iomgr/load_file.h",
Makarand Dharmapurikar0579cfc2016-06-20 15:45:24 -07002330 "src/core/lib/iomgr/network_status_tracker.h",
David Garcia Quintas2a50dfe2016-05-31 15:09:12 -07002331 "src/core/lib/iomgr/polling_entity.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002332 "src/core/lib/iomgr/pollset.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002333 "src/core/lib/iomgr/pollset_set.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002334 "src/core/lib/iomgr/pollset_set_windows.h",
murgatroid999030c812016-09-16 13:25:08 -07002335 "src/core/lib/iomgr/pollset_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002336 "src/core/lib/iomgr/pollset_windows.h",
murgatroid9954070892016-08-08 17:01:18 -07002337 "src/core/lib/iomgr/port.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002338 "src/core/lib/iomgr/resolve_address.h",
Craig Tiller20afa3d2016-10-17 14:52:14 -07002339 "src/core/lib/iomgr/resource_quota.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002340 "src/core/lib/iomgr/sockaddr.h",
2341 "src/core/lib/iomgr/sockaddr_posix.h",
2342 "src/core/lib/iomgr/sockaddr_utils.h",
Yuchen Zeng12dfdc32016-04-26 22:05:41 -07002343 "src/core/lib/iomgr/sockaddr_windows.h",
murgatroid9979b32272016-08-08 13:38:30 -07002344 "src/core/lib/iomgr/socket_utils.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002345 "src/core/lib/iomgr/socket_utils_posix.h",
2346 "src/core/lib/iomgr/socket_windows.h",
2347 "src/core/lib/iomgr/tcp_client.h",
Craig Tiller86958762016-09-23 12:05:34 -07002348 "src/core/lib/iomgr/tcp_client_posix.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002349 "src/core/lib/iomgr/tcp_posix.h",
2350 "src/core/lib/iomgr/tcp_server.h",
murgatroid999030c812016-09-16 13:25:08 -07002351 "src/core/lib/iomgr/tcp_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002352 "src/core/lib/iomgr/tcp_windows.h",
2353 "src/core/lib/iomgr/time_averaged_stats.h",
2354 "src/core/lib/iomgr/timer.h",
murgatroid999030c812016-09-16 13:25:08 -07002355 "src/core/lib/iomgr/timer_generic.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002356 "src/core/lib/iomgr/timer_heap.h",
murgatroid999030c812016-09-16 13:25:08 -07002357 "src/core/lib/iomgr/timer_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002358 "src/core/lib/iomgr/udp_server.h",
2359 "src/core/lib/iomgr/unix_sockets_posix.h",
kpayson64d195cf52016-10-09 18:04:00 -07002360 "src/core/lib/iomgr/wakeup_fd_cv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002361 "src/core/lib/iomgr/wakeup_fd_pipe.h",
2362 "src/core/lib/iomgr/wakeup_fd_posix.h",
2363 "src/core/lib/iomgr/workqueue.h",
murgatroid999030c812016-09-16 13:25:08 -07002364 "src/core/lib/iomgr/workqueue_uv.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002365 "src/core/lib/iomgr/workqueue_windows.h",
2366 "src/core/lib/json/json.h",
2367 "src/core/lib/json/json_common.h",
2368 "src/core/lib/json/json_reader.h",
2369 "src/core/lib/json/json_writer.h",
Craig Tillerc3350542016-10-26 16:19:01 -07002370 "src/core/lib/slice/percent_encoding.h",
2371 "src/core/lib/slice/slice_string_helpers.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002372 "src/core/lib/surface/api_trace.h",
2373 "src/core/lib/surface/call.h",
2374 "src/core/lib/surface/call_test_only.h",
2375 "src/core/lib/surface/channel.h",
2376 "src/core/lib/surface/channel_init.h",
2377 "src/core/lib/surface/channel_stack_type.h",
2378 "src/core/lib/surface/completion_queue.h",
2379 "src/core/lib/surface/event_string.h",
2380 "src/core/lib/surface/init.h",
2381 "src/core/lib/surface/lame_client.h",
2382 "src/core/lib/surface/server.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002383 "src/core/lib/transport/byte_stream.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002384 "src/core/lib/transport/connectivity_state.h",
Mark D. Roth6a721b52016-10-14 12:43:34 -07002385 "src/core/lib/transport/mdstr_hash_table.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002386 "src/core/lib/transport/metadata.h",
2387 "src/core/lib/transport/metadata_batch.h",
Mark D. Rothbfe56802016-10-26 12:45:20 -07002388 "src/core/lib/transport/method_config.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002389 "src/core/lib/transport/static_metadata.h",
Robbie Shade710d2422016-07-13 15:15:38 -04002390 "src/core/lib/transport/timeout_encoding.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002391 "src/core/lib/transport/transport.h",
2392 "src/core/lib/transport/transport_impl.h",
Yuchen Zengd982bba2016-05-12 18:53:52 -07002393 "src/core/ext/transport/chttp2/transport/bin_decoder.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002394 "src/core/ext/transport/chttp2/transport/bin_encoder.h",
2395 "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
2396 "src/core/ext/transport/chttp2/transport/frame.h",
2397 "src/core/ext/transport/chttp2/transport/frame_data.h",
2398 "src/core/ext/transport/chttp2/transport/frame_goaway.h",
2399 "src/core/ext/transport/chttp2/transport/frame_ping.h",
2400 "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
2401 "src/core/ext/transport/chttp2/transport/frame_settings.h",
2402 "src/core/ext/transport/chttp2/transport/frame_window_update.h",
2403 "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
2404 "src/core/ext/transport/chttp2/transport/hpack_parser.h",
2405 "src/core/ext/transport/chttp2/transport/hpack_table.h",
2406 "src/core/ext/transport/chttp2/transport/http2_errors.h",
2407 "src/core/ext/transport/chttp2/transport/huffsyms.h",
2408 "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
2409 "src/core/ext/transport/chttp2/transport/internal.h",
2410 "src/core/ext/transport/chttp2/transport/status_conversion.h",
2411 "src/core/ext/transport/chttp2/transport/stream_map.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002412 "src/core/ext/transport/chttp2/transport/varint.h",
2413 "src/core/ext/transport/chttp2/alpn/alpn.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002414 "src/core/lib/security/context/security_context.h",
2415 "src/core/lib/security/credentials/composite/composite_credentials.h",
2416 "src/core/lib/security/credentials/credentials.h",
2417 "src/core/lib/security/credentials/fake/fake_credentials.h",
2418 "src/core/lib/security/credentials/google_default/google_default_credentials.h",
2419 "src/core/lib/security/credentials/iam/iam_credentials.h",
2420 "src/core/lib/security/credentials/jwt/json_token.h",
2421 "src/core/lib/security/credentials/jwt/jwt_credentials.h",
2422 "src/core/lib/security/credentials/jwt/jwt_verifier.h",
2423 "src/core/lib/security/credentials/oauth2/oauth2_credentials.h",
2424 "src/core/lib/security/credentials/plugin/plugin_credentials.h",
2425 "src/core/lib/security/credentials/ssl/ssl_credentials.h",
2426 "src/core/lib/security/transport/auth_filters.h",
2427 "src/core/lib/security/transport/handshake.h",
2428 "src/core/lib/security/transport/secure_endpoint.h",
2429 "src/core/lib/security/transport/security_connector.h",
Craig Tillerddad9782016-05-05 17:11:31 -07002430 "src/core/lib/security/transport/tsi_error.h",
Julien Boeuf8ca294e2016-05-02 14:56:30 -07002431 "src/core/lib/security/util/b64.h",
2432 "src/core/lib/security/util/json_util.h",
Craig Tillerf23078c2016-03-25 17:07:29 -07002433 "src/core/lib/tsi/fake_transport_security.h",
2434 "src/core/lib/tsi/ssl_transport_security.h",
2435 "src/core/lib/tsi/ssl_types.h",
2436 "src/core/lib/tsi/transport_security.h",
2437 "src/core/lib/tsi/transport_security_interface.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -07002438 "src/core/ext/client_channel/client_channel.h",
2439 "src/core/ext/client_channel/client_channel_factory.h",
2440 "src/core/ext/client_channel/connector.h",
Mark D. Roth15195742016-10-07 09:02:28 -07002441 "src/core/ext/client_channel/http_connect_handshaker.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -07002442 "src/core/ext/client_channel/initial_connect_string.h",
2443 "src/core/ext/client_channel/lb_policy.h",
2444 "src/core/ext/client_channel/lb_policy_factory.h",
2445 "src/core/ext/client_channel/lb_policy_registry.h",
2446 "src/core/ext/client_channel/parse_address.h",
2447 "src/core/ext/client_channel/resolver.h",
2448 "src/core/ext/client_channel/resolver_factory.h",
2449 "src/core/ext/client_channel/resolver_registry.h",
Mark D. Roth2137cd82016-09-14 09:04:00 -07002450 "src/core/ext/client_channel/subchannel.h",
2451 "src/core/ext/client_channel/subchannel_index.h",
2452 "src/core/ext/client_channel/uri_parser.h",
David Garcia Quintasb2e986b2016-06-15 23:55:50 -07002453 "src/core/ext/lb_policy/grpclb/grpclb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002454 "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002455 "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h",
David Garcia Quintasb41363e2016-04-29 00:41:21 -07002456 "src/core/ext/load_reporting/load_reporting.h",
2457 "src/core/ext/load_reporting/load_reporting_filter.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002458 "src/core/ext/census/aggregation.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07002459 "src/core/ext/census/base_resources.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002460 "src/core/ext/census/census_interface.h",
2461 "src/core/ext/census/census_rpc_stats.h",
Alistair Veitch30fe6322016-05-23 10:11:28 -07002462 "src/core/ext/census/gen/census.pb.h",
Alistair Veitcha0c69f92016-08-31 12:01:27 -07002463 "src/core/ext/census/gen/trace_context.pb.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002464 "src/core/ext/census/grpc_filter.h",
2465 "src/core/ext/census/mlog.h",
Alistair Veitch4aaba752016-06-02 17:11:46 -07002466 "src/core/ext/census/resource.h",
Craig Tiller03915e52016-04-07 09:15:10 -07002467 "src/core/ext/census/rpc_metric_id.h",
Vizerai12d1fc62016-09-09 14:22:19 -07002468 "src/core/ext/census/trace_context.h",
Jorge Canizales140bca82015-06-20 09:47:00 -07002469 ],
2470 includes = [
2471 "include",
2472 ".",
2473 ],
2474 deps = [
Craig Tillerda179ce2016-02-09 12:01:53 -08002475 ":gpr_objc",
Jorge Canizales4dc4e3d2015-06-26 22:12:02 -07002476 "//external:libssl_objc",
Rob Earhartb7b8d052016-03-29 11:35:29 -07002477 "//external:nanopb",
Jorge Canizales140bca82015-06-20 09:47:00 -07002478 ],
Jorge Canizales8c1fd042015-06-22 19:11:36 -07002479 sdk_dylibs = ["libz"],
Jorge Canizales140bca82015-06-20 09:47:00 -07002480)
2481
2482
2483
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002484cc_binary(
2485 name = "grpc_cpp_plugin",
2486 srcs = [
2487 "src/compiler/cpp_plugin.cc",
2488 ],
2489 deps = [
2490 "//external:protobuf_compiler",
2491 ":grpc_plugin_support",
2492 ],
2493)
2494
2495
2496cc_binary(
Jan Tattermusch2d924952015-05-06 10:23:17 -07002497 name = "grpc_csharp_plugin",
2498 srcs = [
2499 "src/compiler/csharp_plugin.cc",
2500 ],
2501 deps = [
2502 "//external:protobuf_compiler",
2503 ":grpc_plugin_support",
2504 ],
2505)
2506
2507
2508cc_binary(
murgatroid99d2ee81f2016-02-26 11:10:33 -08002509 name = "grpc_node_plugin",
2510 srcs = [
2511 "src/compiler/node_plugin.cc",
2512 ],
2513 deps = [
2514 "//external:protobuf_compiler",
2515 ":grpc_plugin_support",
2516 ],
2517)
2518
2519
2520cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002521 name = "grpc_objective_c_plugin",
2522 srcs = [
2523 "src/compiler/objective_c_plugin.cc",
2524 ],
2525 deps = [
2526 "//external:protobuf_compiler",
2527 ":grpc_plugin_support",
2528 ],
2529)
2530
2531
2532cc_binary(
Stanley Cheung857a1302016-09-29 17:26:29 -07002533 name = "grpc_php_plugin",
2534 srcs = [
2535 "src/compiler/php_plugin.cc",
2536 ],
2537 deps = [
2538 "//external:protobuf_compiler",
2539 ":grpc_plugin_support",
2540 ],
2541)
2542
2543
2544cc_binary(
Ming Zhao3c0ba0c2015-04-10 12:05:22 -07002545 name = "grpc_python_plugin",
2546 srcs = [
2547 "src/compiler/python_plugin.cc",
2548 ],
2549 deps = [
2550 "//external:protobuf_compiler",
2551 ":grpc_plugin_support",
2552 ],
2553)
2554
2555
2556cc_binary(
2557 name = "grpc_ruby_plugin",
2558 srcs = [
2559 "src/compiler/ruby_plugin.cc",
2560 ],
2561 deps = [
2562 "//external:protobuf_compiler",
2563 ":grpc_plugin_support",
2564 ],
2565)
2566
2567
2568
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02002569
2570
Jorge Canizales140bca82015-06-20 09:47:00 -07002571
Jorge Canizales91e67a22015-06-24 13:50:04 -07002572
2573
Jorge Canizales44dc4232015-06-19 16:30:31 -07002574objc_path = "src/objective-c"
Jorge Canizales140bca82015-06-20 09:47:00 -07002575
Jorge Canizales44dc4232015-06-19 16:30:31 -07002576rx_library_path = objc_path + "/RxLibrary"
2577
2578objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002579 name = "rx_library",
2580 hdrs = glob([
2581 rx_library_path + "/*.h",
2582 rx_library_path + "/transformations/*.h",
2583 ]),
2584 srcs = glob([
2585 rx_library_path + "/*.m",
2586 rx_library_path + "/transformations/*.m",
2587 ]),
2588 includes = [objc_path],
2589 deps = [
2590 ":rx_library_private",
2591 ],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002592)
2593
2594objc_library(
Jorge Canizalesbba80762015-06-26 23:25:48 -07002595 name = "rx_library_private",
2596 hdrs = glob([rx_library_path + "/private/*.h"]),
2597 srcs = glob([rx_library_path + "/private/*.m"]),
2598 visibility = ["//visibility:private"],
Jorge Canizales44dc4232015-06-19 16:30:31 -07002599)
Jorge Canizales866255e2015-06-20 18:58:38 -07002600
2601objc_client_path = objc_path + "/GRPCClient"
2602
2603objc_library(
2604 name = "grpc_client",
2605 hdrs = glob([
2606 objc_client_path + "/*.h",
2607 objc_client_path + "/private/*.h",
2608 ]),
2609 srcs = glob([
2610 objc_client_path + "/*.m",
2611 objc_client_path + "/private/*.m",
2612 ]),
2613 includes = [objc_path],
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002614 bundles = [":gRPCCertificates"],
Jorge Canizales866255e2015-06-20 18:58:38 -07002615 deps = [
2616 ":grpc_objc",
2617 ":rx_library",
2618 ],
2619)
Jorge Canizalesbb54ae82015-06-28 06:50:58 -07002620
2621objc_bundle_library(
2622 # The choice of name is signicant here, since it determines the bundle name.
2623 name = "gRPCCertificates",
2624 resources = ["etc/roots.pem"],
2625)
Jorge Canizales50f19822015-06-28 23:48:30 -07002626
2627proto_objc_rpc_path = objc_path + "/ProtoRPC"
2628
2629objc_library(
2630 name = "proto_objc_rpc",
2631 hdrs = glob([
2632 proto_objc_rpc_path + "/*.h",
2633 ]),
2634 srcs = glob([
2635 proto_objc_rpc_path + "/*.m",
2636 ]),
2637 includes = [objc_path],
2638 deps = [
2639 ":grpc_client",
2640 ":rx_library",
2641 "//external:protobuf_objc",
2642 ],
2643)