blob: ccff9c05c65cc1a0b6577e5007efc070ec7b17e3 [file] [log] [blame]
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +02001# GRPC Bazel BUILD file.
2# This currently builds C and C++ code.
3
4# Copyright 2015, Google Inc.
5# All rights reserved.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions are
9# met:
10#
11# * Redistributions of source code must retain the above copyright
12# notice, this list of conditions and the following disclaimer.
13# * Redistributions in binary form must reproduce the above
14# copyright notice, this list of conditions and the following disclaimer
15# in the documentation and/or other materials provided with the
16# distribution.
17# * Neither the name of Google Inc. nor the names of its
18# contributors may be used to endorse or promote products derived from
19# this software without specific prior written permission.
20#
21# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32
33licenses(["notice"]) # 3-clause BSD
34
35
36
37cc_library(
38 name = "gpr",
39 srcs = [
40 "src/core/support/env.h",
41 "src/core/support/file.h",
42 "src/core/support/murmur_hash.h",
43 "src/core/support/string.h",
44 "src/core/support/string_win32.h",
45 "src/core/support/thd_internal.h",
46 "src/core/support/alloc.c",
47 "src/core/support/cancellable.c",
48 "src/core/support/cmdline.c",
49 "src/core/support/cpu_iphone.c",
50 "src/core/support/cpu_linux.c",
51 "src/core/support/cpu_posix.c",
52 "src/core/support/cpu_windows.c",
53 "src/core/support/env_linux.c",
54 "src/core/support/env_posix.c",
55 "src/core/support/env_win32.c",
56 "src/core/support/file.c",
57 "src/core/support/file_posix.c",
58 "src/core/support/file_win32.c",
59 "src/core/support/histogram.c",
60 "src/core/support/host_port.c",
61 "src/core/support/log.c",
62 "src/core/support/log_android.c",
63 "src/core/support/log_linux.c",
64 "src/core/support/log_posix.c",
65 "src/core/support/log_win32.c",
66 "src/core/support/murmur_hash.c",
67 "src/core/support/slice.c",
68 "src/core/support/slice_buffer.c",
69 "src/core/support/string.c",
70 "src/core/support/string_posix.c",
71 "src/core/support/string_win32.c",
72 "src/core/support/sync.c",
73 "src/core/support/sync_posix.c",
74 "src/core/support/sync_win32.c",
Nicolas Noble91647cc2015-04-03 13:32:47 -070075 "src/core/support/thd.c",
Nicolas "Pixel" Noblef6edf682015-03-31 05:17:34 +020076 "src/core/support/thd_posix.c",
77 "src/core/support/thd_win32.c",
78 "src/core/support/time.c",
79 "src/core/support/time_posix.c",
80 "src/core/support/time_win32.c",
81 ],
82 hdrs = [
83 "include/grpc/support/alloc.h",
84 "include/grpc/support/atm.h",
85 "include/grpc/support/atm_gcc_atomic.h",
86 "include/grpc/support/atm_gcc_sync.h",
87 "include/grpc/support/atm_win32.h",
88 "include/grpc/support/cancellable_platform.h",
89 "include/grpc/support/cmdline.h",
90 "include/grpc/support/cpu.h",
91 "include/grpc/support/histogram.h",
92 "include/grpc/support/host_port.h",
93 "include/grpc/support/log.h",
94 "include/grpc/support/log_win32.h",
95 "include/grpc/support/port_platform.h",
96 "include/grpc/support/slice.h",
97 "include/grpc/support/slice_buffer.h",
98 "include/grpc/support/sync.h",
99 "include/grpc/support/sync_generic.h",
100 "include/grpc/support/sync_posix.h",
101 "include/grpc/support/sync_win32.h",
102 "include/grpc/support/thd.h",
103 "include/grpc/support/time.h",
104 "include/grpc/support/useful.h",
105 ],
106 includes = [
107 "include",
108 ".",
109 ],
110 deps = [
111 ],
112)
113
114
115
116
117cc_library(
118 name = "grpc",
119 srcs = [
120 "src/core/httpcli/format_request.h",
121 "src/core/httpcli/httpcli.h",
122 "src/core/httpcli/httpcli_security_context.h",
123 "src/core/httpcli/parser.h",
124 "src/core/security/auth.h",
125 "src/core/security/base64.h",
126 "src/core/security/credentials.h",
127 "src/core/security/json_token.h",
128 "src/core/security/secure_endpoint.h",
129 "src/core/security/secure_transport_setup.h",
130 "src/core/security/security_context.h",
131 "src/core/tsi/fake_transport_security.h",
132 "src/core/tsi/ssl_transport_security.h",
133 "src/core/tsi/transport_security.h",
134 "src/core/tsi/transport_security_interface.h",
135 "src/core/channel/census_filter.h",
136 "src/core/channel/channel_args.h",
137 "src/core/channel/channel_stack.h",
138 "src/core/channel/child_channel.h",
139 "src/core/channel/client_channel.h",
140 "src/core/channel/client_setup.h",
141 "src/core/channel/connected_channel.h",
142 "src/core/channel/http_client_filter.h",
143 "src/core/channel/http_filter.h",
144 "src/core/channel/http_server_filter.h",
145 "src/core/channel/metadata_buffer.h",
146 "src/core/channel/noop_filter.h",
147 "src/core/compression/algorithm.h",
148 "src/core/compression/message_compress.h",
149 "src/core/debug/trace.h",
150 "src/core/iomgr/alarm.h",
151 "src/core/iomgr/alarm_heap.h",
152 "src/core/iomgr/alarm_internal.h",
153 "src/core/iomgr/endpoint.h",
154 "src/core/iomgr/endpoint_pair.h",
155 "src/core/iomgr/fd_posix.h",
156 "src/core/iomgr/iocp_windows.h",
157 "src/core/iomgr/iomgr.h",
158 "src/core/iomgr/iomgr_internal.h",
159 "src/core/iomgr/iomgr_posix.h",
160 "src/core/iomgr/pollset.h",
161 "src/core/iomgr/pollset_kick.h",
162 "src/core/iomgr/pollset_kick_posix.h",
163 "src/core/iomgr/pollset_kick_windows.h",
164 "src/core/iomgr/pollset_posix.h",
165 "src/core/iomgr/pollset_windows.h",
166 "src/core/iomgr/resolve_address.h",
167 "src/core/iomgr/sockaddr.h",
168 "src/core/iomgr/sockaddr_posix.h",
169 "src/core/iomgr/sockaddr_utils.h",
170 "src/core/iomgr/sockaddr_win32.h",
171 "src/core/iomgr/socket_utils_posix.h",
172 "src/core/iomgr/socket_windows.h",
173 "src/core/iomgr/tcp_client.h",
174 "src/core/iomgr/tcp_posix.h",
175 "src/core/iomgr/tcp_server.h",
176 "src/core/iomgr/tcp_windows.h",
177 "src/core/iomgr/time_averaged_stats.h",
178 "src/core/iomgr/wakeup_fd_pipe.h",
179 "src/core/iomgr/wakeup_fd_posix.h",
180 "src/core/json/json.h",
181 "src/core/json/json_common.h",
182 "src/core/json/json_reader.h",
183 "src/core/json/json_writer.h",
184 "src/core/statistics/census_interface.h",
185 "src/core/statistics/census_log.h",
186 "src/core/statistics/census_rpc_stats.h",
187 "src/core/statistics/census_tracing.h",
188 "src/core/statistics/hash_table.h",
189 "src/core/statistics/window_stats.h",
190 "src/core/surface/byte_buffer_queue.h",
191 "src/core/surface/call.h",
192 "src/core/surface/channel.h",
193 "src/core/surface/client.h",
194 "src/core/surface/completion_queue.h",
195 "src/core/surface/event_string.h",
196 "src/core/surface/init.h",
197 "src/core/surface/server.h",
198 "src/core/surface/surface_trace.h",
199 "src/core/transport/chttp2/alpn.h",
200 "src/core/transport/chttp2/bin_encoder.h",
201 "src/core/transport/chttp2/frame.h",
202 "src/core/transport/chttp2/frame_data.h",
203 "src/core/transport/chttp2/frame_goaway.h",
204 "src/core/transport/chttp2/frame_ping.h",
205 "src/core/transport/chttp2/frame_rst_stream.h",
206 "src/core/transport/chttp2/frame_settings.h",
207 "src/core/transport/chttp2/frame_window_update.h",
208 "src/core/transport/chttp2/hpack_parser.h",
209 "src/core/transport/chttp2/hpack_table.h",
210 "src/core/transport/chttp2/http2_errors.h",
211 "src/core/transport/chttp2/huffsyms.h",
212 "src/core/transport/chttp2/status_conversion.h",
213 "src/core/transport/chttp2/stream_encoder.h",
214 "src/core/transport/chttp2/stream_map.h",
215 "src/core/transport/chttp2/timeout_encoding.h",
216 "src/core/transport/chttp2/varint.h",
217 "src/core/transport/chttp2_transport.h",
218 "src/core/transport/metadata.h",
219 "src/core/transport/stream_op.h",
220 "src/core/transport/transport.h",
221 "src/core/transport/transport_impl.h",
222 "src/core/httpcli/format_request.c",
223 "src/core/httpcli/httpcli.c",
224 "src/core/httpcli/httpcli_security_context.c",
225 "src/core/httpcli/parser.c",
226 "src/core/security/auth.c",
227 "src/core/security/base64.c",
228 "src/core/security/credentials.c",
229 "src/core/security/credentials_posix.c",
230 "src/core/security/credentials_win32.c",
231 "src/core/security/factories.c",
232 "src/core/security/google_default_credentials.c",
233 "src/core/security/json_token.c",
234 "src/core/security/secure_endpoint.c",
235 "src/core/security/secure_transport_setup.c",
236 "src/core/security/security_context.c",
237 "src/core/security/server_secure_chttp2.c",
238 "src/core/surface/init_secure.c",
239 "src/core/surface/secure_channel_create.c",
240 "src/core/tsi/fake_transport_security.c",
241 "src/core/tsi/ssl_transport_security.c",
242 "src/core/tsi/transport_security.c",
243 "src/core/channel/call_op_string.c",
244 "src/core/channel/census_filter.c",
245 "src/core/channel/channel_args.c",
246 "src/core/channel/channel_stack.c",
247 "src/core/channel/child_channel.c",
248 "src/core/channel/client_channel.c",
249 "src/core/channel/client_setup.c",
250 "src/core/channel/connected_channel.c",
251 "src/core/channel/http_client_filter.c",
252 "src/core/channel/http_filter.c",
253 "src/core/channel/http_server_filter.c",
254 "src/core/channel/metadata_buffer.c",
255 "src/core/channel/noop_filter.c",
256 "src/core/compression/algorithm.c",
257 "src/core/compression/message_compress.c",
258 "src/core/debug/trace.c",
259 "src/core/iomgr/alarm.c",
260 "src/core/iomgr/alarm_heap.c",
261 "src/core/iomgr/endpoint.c",
262 "src/core/iomgr/endpoint_pair_posix.c",
263 "src/core/iomgr/fd_posix.c",
264 "src/core/iomgr/iocp_windows.c",
265 "src/core/iomgr/iomgr.c",
266 "src/core/iomgr/iomgr_posix.c",
267 "src/core/iomgr/iomgr_windows.c",
268 "src/core/iomgr/pollset_kick.c",
269 "src/core/iomgr/pollset_multipoller_with_epoll.c",
270 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
271 "src/core/iomgr/pollset_posix.c",
272 "src/core/iomgr/pollset_windows.c",
273 "src/core/iomgr/resolve_address_posix.c",
274 "src/core/iomgr/resolve_address_windows.c",
275 "src/core/iomgr/sockaddr_utils.c",
276 "src/core/iomgr/socket_utils_common_posix.c",
277 "src/core/iomgr/socket_utils_linux.c",
278 "src/core/iomgr/socket_utils_posix.c",
279 "src/core/iomgr/socket_windows.c",
280 "src/core/iomgr/tcp_client_posix.c",
281 "src/core/iomgr/tcp_client_windows.c",
282 "src/core/iomgr/tcp_posix.c",
283 "src/core/iomgr/tcp_server_posix.c",
284 "src/core/iomgr/tcp_server_windows.c",
285 "src/core/iomgr/tcp_windows.c",
286 "src/core/iomgr/time_averaged_stats.c",
287 "src/core/iomgr/wakeup_fd_eventfd.c",
288 "src/core/iomgr/wakeup_fd_nospecial.c",
289 "src/core/iomgr/wakeup_fd_pipe.c",
290 "src/core/iomgr/wakeup_fd_posix.c",
291 "src/core/json/json.c",
292 "src/core/json/json_reader.c",
293 "src/core/json/json_string.c",
294 "src/core/json/json_writer.c",
295 "src/core/statistics/census_init.c",
296 "src/core/statistics/census_log.c",
297 "src/core/statistics/census_rpc_stats.c",
298 "src/core/statistics/census_tracing.c",
299 "src/core/statistics/hash_table.c",
300 "src/core/statistics/window_stats.c",
301 "src/core/surface/byte_buffer.c",
302 "src/core/surface/byte_buffer_queue.c",
303 "src/core/surface/byte_buffer_reader.c",
304 "src/core/surface/call.c",
305 "src/core/surface/call_details.c",
306 "src/core/surface/call_log_batch.c",
307 "src/core/surface/channel.c",
308 "src/core/surface/channel_create.c",
309 "src/core/surface/client.c",
310 "src/core/surface/completion_queue.c",
311 "src/core/surface/event_string.c",
312 "src/core/surface/init.c",
313 "src/core/surface/lame_client.c",
314 "src/core/surface/metadata_array.c",
315 "src/core/surface/server.c",
316 "src/core/surface/server_chttp2.c",
317 "src/core/surface/server_create.c",
318 "src/core/surface/surface_trace.c",
319 "src/core/transport/chttp2/alpn.c",
320 "src/core/transport/chttp2/bin_encoder.c",
321 "src/core/transport/chttp2/frame_data.c",
322 "src/core/transport/chttp2/frame_goaway.c",
323 "src/core/transport/chttp2/frame_ping.c",
324 "src/core/transport/chttp2/frame_rst_stream.c",
325 "src/core/transport/chttp2/frame_settings.c",
326 "src/core/transport/chttp2/frame_window_update.c",
327 "src/core/transport/chttp2/hpack_parser.c",
328 "src/core/transport/chttp2/hpack_table.c",
329 "src/core/transport/chttp2/huffsyms.c",
330 "src/core/transport/chttp2/status_conversion.c",
331 "src/core/transport/chttp2/stream_encoder.c",
332 "src/core/transport/chttp2/stream_map.c",
333 "src/core/transport/chttp2/timeout_encoding.c",
334 "src/core/transport/chttp2/varint.c",
335 "src/core/transport/chttp2_transport.c",
336 "src/core/transport/metadata.c",
337 "src/core/transport/stream_op.c",
338 "src/core/transport/transport.c",
339 ],
340 hdrs = [
341 "include/grpc/grpc_security.h",
342 "include/grpc/byte_buffer.h",
343 "include/grpc/byte_buffer_reader.h",
344 "include/grpc/grpc.h",
345 "include/grpc/grpc_http.h",
346 "include/grpc/status.h",
347 ],
348 includes = [
349 "include",
350 ".",
351 ],
352 deps = [
353 ":gpr",
354 ],
355)
356
357
358
359
360cc_library(
361 name = "grpc_unsecure",
362 srcs = [
363 "src/core/channel/census_filter.h",
364 "src/core/channel/channel_args.h",
365 "src/core/channel/channel_stack.h",
366 "src/core/channel/child_channel.h",
367 "src/core/channel/client_channel.h",
368 "src/core/channel/client_setup.h",
369 "src/core/channel/connected_channel.h",
370 "src/core/channel/http_client_filter.h",
371 "src/core/channel/http_filter.h",
372 "src/core/channel/http_server_filter.h",
373 "src/core/channel/metadata_buffer.h",
374 "src/core/channel/noop_filter.h",
375 "src/core/compression/algorithm.h",
376 "src/core/compression/message_compress.h",
377 "src/core/debug/trace.h",
378 "src/core/iomgr/alarm.h",
379 "src/core/iomgr/alarm_heap.h",
380 "src/core/iomgr/alarm_internal.h",
381 "src/core/iomgr/endpoint.h",
382 "src/core/iomgr/endpoint_pair.h",
383 "src/core/iomgr/fd_posix.h",
384 "src/core/iomgr/iocp_windows.h",
385 "src/core/iomgr/iomgr.h",
386 "src/core/iomgr/iomgr_internal.h",
387 "src/core/iomgr/iomgr_posix.h",
388 "src/core/iomgr/pollset.h",
389 "src/core/iomgr/pollset_kick.h",
390 "src/core/iomgr/pollset_kick_posix.h",
391 "src/core/iomgr/pollset_kick_windows.h",
392 "src/core/iomgr/pollset_posix.h",
393 "src/core/iomgr/pollset_windows.h",
394 "src/core/iomgr/resolve_address.h",
395 "src/core/iomgr/sockaddr.h",
396 "src/core/iomgr/sockaddr_posix.h",
397 "src/core/iomgr/sockaddr_utils.h",
398 "src/core/iomgr/sockaddr_win32.h",
399 "src/core/iomgr/socket_utils_posix.h",
400 "src/core/iomgr/socket_windows.h",
401 "src/core/iomgr/tcp_client.h",
402 "src/core/iomgr/tcp_posix.h",
403 "src/core/iomgr/tcp_server.h",
404 "src/core/iomgr/tcp_windows.h",
405 "src/core/iomgr/time_averaged_stats.h",
406 "src/core/iomgr/wakeup_fd_pipe.h",
407 "src/core/iomgr/wakeup_fd_posix.h",
408 "src/core/json/json.h",
409 "src/core/json/json_common.h",
410 "src/core/json/json_reader.h",
411 "src/core/json/json_writer.h",
412 "src/core/statistics/census_interface.h",
413 "src/core/statistics/census_log.h",
414 "src/core/statistics/census_rpc_stats.h",
415 "src/core/statistics/census_tracing.h",
416 "src/core/statistics/hash_table.h",
417 "src/core/statistics/window_stats.h",
418 "src/core/surface/byte_buffer_queue.h",
419 "src/core/surface/call.h",
420 "src/core/surface/channel.h",
421 "src/core/surface/client.h",
422 "src/core/surface/completion_queue.h",
423 "src/core/surface/event_string.h",
424 "src/core/surface/init.h",
425 "src/core/surface/server.h",
426 "src/core/surface/surface_trace.h",
427 "src/core/transport/chttp2/alpn.h",
428 "src/core/transport/chttp2/bin_encoder.h",
429 "src/core/transport/chttp2/frame.h",
430 "src/core/transport/chttp2/frame_data.h",
431 "src/core/transport/chttp2/frame_goaway.h",
432 "src/core/transport/chttp2/frame_ping.h",
433 "src/core/transport/chttp2/frame_rst_stream.h",
434 "src/core/transport/chttp2/frame_settings.h",
435 "src/core/transport/chttp2/frame_window_update.h",
436 "src/core/transport/chttp2/hpack_parser.h",
437 "src/core/transport/chttp2/hpack_table.h",
438 "src/core/transport/chttp2/http2_errors.h",
439 "src/core/transport/chttp2/huffsyms.h",
440 "src/core/transport/chttp2/status_conversion.h",
441 "src/core/transport/chttp2/stream_encoder.h",
442 "src/core/transport/chttp2/stream_map.h",
443 "src/core/transport/chttp2/timeout_encoding.h",
444 "src/core/transport/chttp2/varint.h",
445 "src/core/transport/chttp2_transport.h",
446 "src/core/transport/metadata.h",
447 "src/core/transport/stream_op.h",
448 "src/core/transport/transport.h",
449 "src/core/transport/transport_impl.h",
450 "src/core/surface/init_unsecure.c",
451 "src/core/channel/call_op_string.c",
452 "src/core/channel/census_filter.c",
453 "src/core/channel/channel_args.c",
454 "src/core/channel/channel_stack.c",
455 "src/core/channel/child_channel.c",
456 "src/core/channel/client_channel.c",
457 "src/core/channel/client_setup.c",
458 "src/core/channel/connected_channel.c",
459 "src/core/channel/http_client_filter.c",
460 "src/core/channel/http_filter.c",
461 "src/core/channel/http_server_filter.c",
462 "src/core/channel/metadata_buffer.c",
463 "src/core/channel/noop_filter.c",
464 "src/core/compression/algorithm.c",
465 "src/core/compression/message_compress.c",
466 "src/core/debug/trace.c",
467 "src/core/iomgr/alarm.c",
468 "src/core/iomgr/alarm_heap.c",
469 "src/core/iomgr/endpoint.c",
470 "src/core/iomgr/endpoint_pair_posix.c",
471 "src/core/iomgr/fd_posix.c",
472 "src/core/iomgr/iocp_windows.c",
473 "src/core/iomgr/iomgr.c",
474 "src/core/iomgr/iomgr_posix.c",
475 "src/core/iomgr/iomgr_windows.c",
476 "src/core/iomgr/pollset_kick.c",
477 "src/core/iomgr/pollset_multipoller_with_epoll.c",
478 "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
479 "src/core/iomgr/pollset_posix.c",
480 "src/core/iomgr/pollset_windows.c",
481 "src/core/iomgr/resolve_address_posix.c",
482 "src/core/iomgr/resolve_address_windows.c",
483 "src/core/iomgr/sockaddr_utils.c",
484 "src/core/iomgr/socket_utils_common_posix.c",
485 "src/core/iomgr/socket_utils_linux.c",
486 "src/core/iomgr/socket_utils_posix.c",
487 "src/core/iomgr/socket_windows.c",
488 "src/core/iomgr/tcp_client_posix.c",
489 "src/core/iomgr/tcp_client_windows.c",
490 "src/core/iomgr/tcp_posix.c",
491 "src/core/iomgr/tcp_server_posix.c",
492 "src/core/iomgr/tcp_server_windows.c",
493 "src/core/iomgr/tcp_windows.c",
494 "src/core/iomgr/time_averaged_stats.c",
495 "src/core/iomgr/wakeup_fd_eventfd.c",
496 "src/core/iomgr/wakeup_fd_nospecial.c",
497 "src/core/iomgr/wakeup_fd_pipe.c",
498 "src/core/iomgr/wakeup_fd_posix.c",
499 "src/core/json/json.c",
500 "src/core/json/json_reader.c",
501 "src/core/json/json_string.c",
502 "src/core/json/json_writer.c",
503 "src/core/statistics/census_init.c",
504 "src/core/statistics/census_log.c",
505 "src/core/statistics/census_rpc_stats.c",
506 "src/core/statistics/census_tracing.c",
507 "src/core/statistics/hash_table.c",
508 "src/core/statistics/window_stats.c",
509 "src/core/surface/byte_buffer.c",
510 "src/core/surface/byte_buffer_queue.c",
511 "src/core/surface/byte_buffer_reader.c",
512 "src/core/surface/call.c",
513 "src/core/surface/call_details.c",
514 "src/core/surface/call_log_batch.c",
515 "src/core/surface/channel.c",
516 "src/core/surface/channel_create.c",
517 "src/core/surface/client.c",
518 "src/core/surface/completion_queue.c",
519 "src/core/surface/event_string.c",
520 "src/core/surface/init.c",
521 "src/core/surface/lame_client.c",
522 "src/core/surface/metadata_array.c",
523 "src/core/surface/server.c",
524 "src/core/surface/server_chttp2.c",
525 "src/core/surface/server_create.c",
526 "src/core/surface/surface_trace.c",
527 "src/core/transport/chttp2/alpn.c",
528 "src/core/transport/chttp2/bin_encoder.c",
529 "src/core/transport/chttp2/frame_data.c",
530 "src/core/transport/chttp2/frame_goaway.c",
531 "src/core/transport/chttp2/frame_ping.c",
532 "src/core/transport/chttp2/frame_rst_stream.c",
533 "src/core/transport/chttp2/frame_settings.c",
534 "src/core/transport/chttp2/frame_window_update.c",
535 "src/core/transport/chttp2/hpack_parser.c",
536 "src/core/transport/chttp2/hpack_table.c",
537 "src/core/transport/chttp2/huffsyms.c",
538 "src/core/transport/chttp2/status_conversion.c",
539 "src/core/transport/chttp2/stream_encoder.c",
540 "src/core/transport/chttp2/stream_map.c",
541 "src/core/transport/chttp2/timeout_encoding.c",
542 "src/core/transport/chttp2/varint.c",
543 "src/core/transport/chttp2_transport.c",
544 "src/core/transport/metadata.c",
545 "src/core/transport/stream_op.c",
546 "src/core/transport/transport.c",
547 ],
548 hdrs = [
549 "include/grpc/byte_buffer.h",
550 "include/grpc/byte_buffer_reader.h",
551 "include/grpc/grpc.h",
552 "include/grpc/grpc_http.h",
553 "include/grpc/status.h",
554 ],
555 includes = [
556 "include",
557 ".",
558 ],
559 deps = [
560 ":gpr",
561 ],
562)
563
564
565
566