BUILD 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147
  1. # GRPC Bazel BUILD file.
  2. # This currently builds C and C++ code.
  3. # This file has been automatically generated from a template file.
  4. # Please look at the templates directory instead.
  5. # This file can be regenerated from the template by running
  6. # tools/buildgen/generate_projects.sh
  7. # Copyright 2015, Google Inc.
  8. # All rights reserved.
  9. #
  10. # Redistribution and use in source and binary forms, with or without
  11. # modification, are permitted provided that the following conditions are
  12. # met:
  13. #
  14. # * Redistributions of source code must retain the above copyright
  15. # notice, this list of conditions and the following disclaimer.
  16. # * Redistributions in binary form must reproduce the above
  17. # copyright notice, this list of conditions and the following disclaimer
  18. # in the documentation and/or other materials provided with the
  19. # distribution.
  20. # * Neither the name of Google Inc. nor the names of its
  21. # contributors may be used to endorse or promote products derived from
  22. # this software without specific prior written permission.
  23. #
  24. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  25. # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  26. # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  27. # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  28. # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  29. # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  30. # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  31. # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  32. # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  33. # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  34. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  35. licenses(["notice"]) # 3-clause BSD
  36. package(default_visibility = ["//visibility:public"])
  37. cc_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/subprocess_posix.c",
  73. "src/core/support/sync.c",
  74. "src/core/support/sync_posix.c",
  75. "src/core/support/sync_win32.c",
  76. "src/core/support/thd.c",
  77. "src/core/support/thd_posix.c",
  78. "src/core/support/thd_win32.c",
  79. "src/core/support/time.c",
  80. "src/core/support/time_posix.c",
  81. "src/core/support/time_win32.c",
  82. "src/core/support/tls_pthread.c",
  83. ],
  84. hdrs = [
  85. "include/grpc/support/alloc.h",
  86. "include/grpc/support/atm.h",
  87. "include/grpc/support/atm_gcc_atomic.h",
  88. "include/grpc/support/atm_gcc_sync.h",
  89. "include/grpc/support/atm_win32.h",
  90. "include/grpc/support/cancellable_platform.h",
  91. "include/grpc/support/cmdline.h",
  92. "include/grpc/support/cpu.h",
  93. "include/grpc/support/histogram.h",
  94. "include/grpc/support/host_port.h",
  95. "include/grpc/support/log.h",
  96. "include/grpc/support/log_win32.h",
  97. "include/grpc/support/port_platform.h",
  98. "include/grpc/support/slice.h",
  99. "include/grpc/support/slice_buffer.h",
  100. "include/grpc/support/string_util.h",
  101. "include/grpc/support/subprocess.h",
  102. "include/grpc/support/sync.h",
  103. "include/grpc/support/sync_generic.h",
  104. "include/grpc/support/sync_posix.h",
  105. "include/grpc/support/sync_win32.h",
  106. "include/grpc/support/thd.h",
  107. "include/grpc/support/time.h",
  108. "include/grpc/support/tls.h",
  109. "include/grpc/support/tls_gcc.h",
  110. "include/grpc/support/tls_msvc.h",
  111. "include/grpc/support/tls_pthread.h",
  112. "include/grpc/support/useful.h",
  113. ],
  114. includes = [
  115. "include",
  116. ".",
  117. ],
  118. deps = [
  119. ],
  120. )
  121. cc_library(
  122. name = "grpc",
  123. srcs = [
  124. "src/core/httpcli/format_request.h",
  125. "src/core/httpcli/httpcli.h",
  126. "src/core/httpcli/httpcli_security_connector.h",
  127. "src/core/httpcli/parser.h",
  128. "src/core/security/auth_filters.h",
  129. "src/core/security/base64.h",
  130. "src/core/security/credentials.h",
  131. "src/core/security/json_token.h",
  132. "src/core/security/secure_endpoint.h",
  133. "src/core/security/secure_transport_setup.h",
  134. "src/core/security/security_connector.h",
  135. "src/core/security/security_context.h",
  136. "src/core/tsi/fake_transport_security.h",
  137. "src/core/tsi/ssl_transport_security.h",
  138. "src/core/tsi/transport_security.h",
  139. "src/core/tsi/transport_security_interface.h",
  140. "src/core/census/grpc_context.h",
  141. "src/core/channel/census_filter.h",
  142. "src/core/channel/channel_args.h",
  143. "src/core/channel/channel_stack.h",
  144. "src/core/channel/child_channel.h",
  145. "src/core/channel/client_channel.h",
  146. "src/core/channel/client_setup.h",
  147. "src/core/channel/connected_channel.h",
  148. "src/core/channel/context.h",
  149. "src/core/channel/http_client_filter.h",
  150. "src/core/channel/http_server_filter.h",
  151. "src/core/channel/noop_filter.h",
  152. "src/core/compression/message_compress.h",
  153. "src/core/debug/trace.h",
  154. "src/core/iomgr/alarm.h",
  155. "src/core/iomgr/alarm_heap.h",
  156. "src/core/iomgr/alarm_internal.h",
  157. "src/core/iomgr/endpoint.h",
  158. "src/core/iomgr/endpoint_pair.h",
  159. "src/core/iomgr/fd_posix.h",
  160. "src/core/iomgr/iocp_windows.h",
  161. "src/core/iomgr/iomgr.h",
  162. "src/core/iomgr/iomgr_internal.h",
  163. "src/core/iomgr/iomgr_posix.h",
  164. "src/core/iomgr/pollset.h",
  165. "src/core/iomgr/pollset_kick_posix.h",
  166. "src/core/iomgr/pollset_posix.h",
  167. "src/core/iomgr/pollset_set.h",
  168. "src/core/iomgr/pollset_set_posix.h",
  169. "src/core/iomgr/pollset_set_windows.h",
  170. "src/core/iomgr/pollset_windows.h",
  171. "src/core/iomgr/resolve_address.h",
  172. "src/core/iomgr/sockaddr.h",
  173. "src/core/iomgr/sockaddr_posix.h",
  174. "src/core/iomgr/sockaddr_utils.h",
  175. "src/core/iomgr/sockaddr_win32.h",
  176. "src/core/iomgr/socket_utils_posix.h",
  177. "src/core/iomgr/socket_windows.h",
  178. "src/core/iomgr/tcp_client.h",
  179. "src/core/iomgr/tcp_posix.h",
  180. "src/core/iomgr/tcp_server.h",
  181. "src/core/iomgr/tcp_windows.h",
  182. "src/core/iomgr/time_averaged_stats.h",
  183. "src/core/iomgr/wakeup_fd_pipe.h",
  184. "src/core/iomgr/wakeup_fd_posix.h",
  185. "src/core/json/json.h",
  186. "src/core/json/json_common.h",
  187. "src/core/json/json_reader.h",
  188. "src/core/json/json_writer.h",
  189. "src/core/profiling/timers.h",
  190. "src/core/profiling/timers_preciseclock.h",
  191. "src/core/surface/byte_buffer_queue.h",
  192. "src/core/surface/call.h",
  193. "src/core/surface/channel.h",
  194. "src/core/surface/client.h",
  195. "src/core/surface/completion_queue.h",
  196. "src/core/surface/event_string.h",
  197. "src/core/surface/init.h",
  198. "src/core/surface/server.h",
  199. "src/core/surface/surface_trace.h",
  200. "src/core/transport/chttp2/alpn.h",
  201. "src/core/transport/chttp2/bin_encoder.h",
  202. "src/core/transport/chttp2/frame.h",
  203. "src/core/transport/chttp2/frame_data.h",
  204. "src/core/transport/chttp2/frame_goaway.h",
  205. "src/core/transport/chttp2/frame_ping.h",
  206. "src/core/transport/chttp2/frame_rst_stream.h",
  207. "src/core/transport/chttp2/frame_settings.h",
  208. "src/core/transport/chttp2/frame_window_update.h",
  209. "src/core/transport/chttp2/hpack_parser.h",
  210. "src/core/transport/chttp2/hpack_table.h",
  211. "src/core/transport/chttp2/http2_errors.h",
  212. "src/core/transport/chttp2/huffsyms.h",
  213. "src/core/transport/chttp2/status_conversion.h",
  214. "src/core/transport/chttp2/stream_encoder.h",
  215. "src/core/transport/chttp2/stream_map.h",
  216. "src/core/transport/chttp2/timeout_encoding.h",
  217. "src/core/transport/chttp2/varint.h",
  218. "src/core/transport/chttp2_transport.h",
  219. "src/core/transport/metadata.h",
  220. "src/core/transport/stream_op.h",
  221. "src/core/transport/transport.h",
  222. "src/core/transport/transport_impl.h",
  223. "src/core/census/context.h",
  224. "src/core/httpcli/format_request.c",
  225. "src/core/httpcli/httpcli.c",
  226. "src/core/httpcli/httpcli_security_connector.c",
  227. "src/core/httpcli/parser.c",
  228. "src/core/security/base64.c",
  229. "src/core/security/client_auth_filter.c",
  230. "src/core/security/credentials.c",
  231. "src/core/security/credentials_metadata.c",
  232. "src/core/security/credentials_posix.c",
  233. "src/core/security/credentials_win32.c",
  234. "src/core/security/google_default_credentials.c",
  235. "src/core/security/json_token.c",
  236. "src/core/security/secure_endpoint.c",
  237. "src/core/security/secure_transport_setup.c",
  238. "src/core/security/security_connector.c",
  239. "src/core/security/security_context.c",
  240. "src/core/security/server_auth_filter.c",
  241. "src/core/security/server_secure_chttp2.c",
  242. "src/core/surface/init_secure.c",
  243. "src/core/surface/secure_channel_create.c",
  244. "src/core/tsi/fake_transport_security.c",
  245. "src/core/tsi/ssl_transport_security.c",
  246. "src/core/tsi/transport_security.c",
  247. "src/core/census/grpc_context.c",
  248. "src/core/channel/channel_args.c",
  249. "src/core/channel/channel_stack.c",
  250. "src/core/channel/child_channel.c",
  251. "src/core/channel/client_channel.c",
  252. "src/core/channel/client_setup.c",
  253. "src/core/channel/connected_channel.c",
  254. "src/core/channel/http_client_filter.c",
  255. "src/core/channel/http_server_filter.c",
  256. "src/core/channel/noop_filter.c",
  257. "src/core/compression/algorithm.c",
  258. "src/core/compression/message_compress.c",
  259. "src/core/debug/trace.c",
  260. "src/core/iomgr/alarm.c",
  261. "src/core/iomgr/alarm_heap.c",
  262. "src/core/iomgr/endpoint.c",
  263. "src/core/iomgr/endpoint_pair_posix.c",
  264. "src/core/iomgr/endpoint_pair_windows.c",
  265. "src/core/iomgr/fd_posix.c",
  266. "src/core/iomgr/iocp_windows.c",
  267. "src/core/iomgr/iomgr.c",
  268. "src/core/iomgr/iomgr_posix.c",
  269. "src/core/iomgr/iomgr_windows.c",
  270. "src/core/iomgr/pollset_kick_posix.c",
  271. "src/core/iomgr/pollset_multipoller_with_epoll.c",
  272. "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
  273. "src/core/iomgr/pollset_posix.c",
  274. "src/core/iomgr/pollset_set_posix.c",
  275. "src/core/iomgr/pollset_set_windows.c",
  276. "src/core/iomgr/pollset_windows.c",
  277. "src/core/iomgr/resolve_address_posix.c",
  278. "src/core/iomgr/resolve_address_windows.c",
  279. "src/core/iomgr/sockaddr_utils.c",
  280. "src/core/iomgr/socket_utils_common_posix.c",
  281. "src/core/iomgr/socket_utils_linux.c",
  282. "src/core/iomgr/socket_utils_posix.c",
  283. "src/core/iomgr/socket_windows.c",
  284. "src/core/iomgr/tcp_client_posix.c",
  285. "src/core/iomgr/tcp_client_windows.c",
  286. "src/core/iomgr/tcp_posix.c",
  287. "src/core/iomgr/tcp_server_posix.c",
  288. "src/core/iomgr/tcp_server_windows.c",
  289. "src/core/iomgr/tcp_windows.c",
  290. "src/core/iomgr/time_averaged_stats.c",
  291. "src/core/iomgr/wakeup_fd_eventfd.c",
  292. "src/core/iomgr/wakeup_fd_nospecial.c",
  293. "src/core/iomgr/wakeup_fd_pipe.c",
  294. "src/core/iomgr/wakeup_fd_posix.c",
  295. "src/core/json/json.c",
  296. "src/core/json/json_reader.c",
  297. "src/core/json/json_string.c",
  298. "src/core/json/json_writer.c",
  299. "src/core/profiling/basic_timers.c",
  300. "src/core/profiling/stap_timers.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. "src/core/transport/transport_op_string.c",
  340. "src/core/census/context.c",
  341. "src/core/census/initialize.c",
  342. ],
  343. hdrs = [
  344. "include/grpc/grpc_security.h",
  345. "include/grpc/byte_buffer.h",
  346. "include/grpc/byte_buffer_reader.h",
  347. "include/grpc/compression.h",
  348. "include/grpc/grpc.h",
  349. "include/grpc/status.h",
  350. "include/grpc/census.h",
  351. ],
  352. includes = [
  353. "include",
  354. ".",
  355. ],
  356. deps = [
  357. "//external:libssl",
  358. ":gpr",
  359. ],
  360. )
  361. cc_library(
  362. name = "grpc_unsecure",
  363. srcs = [
  364. "src/core/census/grpc_context.h",
  365. "src/core/channel/census_filter.h",
  366. "src/core/channel/channel_args.h",
  367. "src/core/channel/channel_stack.h",
  368. "src/core/channel/child_channel.h",
  369. "src/core/channel/client_channel.h",
  370. "src/core/channel/client_setup.h",
  371. "src/core/channel/connected_channel.h",
  372. "src/core/channel/context.h",
  373. "src/core/channel/http_client_filter.h",
  374. "src/core/channel/http_server_filter.h",
  375. "src/core/channel/noop_filter.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_posix.h",
  390. "src/core/iomgr/pollset_posix.h",
  391. "src/core/iomgr/pollset_set.h",
  392. "src/core/iomgr/pollset_set_posix.h",
  393. "src/core/iomgr/pollset_set_windows.h",
  394. "src/core/iomgr/pollset_windows.h",
  395. "src/core/iomgr/resolve_address.h",
  396. "src/core/iomgr/sockaddr.h",
  397. "src/core/iomgr/sockaddr_posix.h",
  398. "src/core/iomgr/sockaddr_utils.h",
  399. "src/core/iomgr/sockaddr_win32.h",
  400. "src/core/iomgr/socket_utils_posix.h",
  401. "src/core/iomgr/socket_windows.h",
  402. "src/core/iomgr/tcp_client.h",
  403. "src/core/iomgr/tcp_posix.h",
  404. "src/core/iomgr/tcp_server.h",
  405. "src/core/iomgr/tcp_windows.h",
  406. "src/core/iomgr/time_averaged_stats.h",
  407. "src/core/iomgr/wakeup_fd_pipe.h",
  408. "src/core/iomgr/wakeup_fd_posix.h",
  409. "src/core/json/json.h",
  410. "src/core/json/json_common.h",
  411. "src/core/json/json_reader.h",
  412. "src/core/json/json_writer.h",
  413. "src/core/profiling/timers.h",
  414. "src/core/profiling/timers_preciseclock.h",
  415. "src/core/surface/byte_buffer_queue.h",
  416. "src/core/surface/call.h",
  417. "src/core/surface/channel.h",
  418. "src/core/surface/client.h",
  419. "src/core/surface/completion_queue.h",
  420. "src/core/surface/event_string.h",
  421. "src/core/surface/init.h",
  422. "src/core/surface/server.h",
  423. "src/core/surface/surface_trace.h",
  424. "src/core/transport/chttp2/alpn.h",
  425. "src/core/transport/chttp2/bin_encoder.h",
  426. "src/core/transport/chttp2/frame.h",
  427. "src/core/transport/chttp2/frame_data.h",
  428. "src/core/transport/chttp2/frame_goaway.h",
  429. "src/core/transport/chttp2/frame_ping.h",
  430. "src/core/transport/chttp2/frame_rst_stream.h",
  431. "src/core/transport/chttp2/frame_settings.h",
  432. "src/core/transport/chttp2/frame_window_update.h",
  433. "src/core/transport/chttp2/hpack_parser.h",
  434. "src/core/transport/chttp2/hpack_table.h",
  435. "src/core/transport/chttp2/http2_errors.h",
  436. "src/core/transport/chttp2/huffsyms.h",
  437. "src/core/transport/chttp2/status_conversion.h",
  438. "src/core/transport/chttp2/stream_encoder.h",
  439. "src/core/transport/chttp2/stream_map.h",
  440. "src/core/transport/chttp2/timeout_encoding.h",
  441. "src/core/transport/chttp2/varint.h",
  442. "src/core/transport/chttp2_transport.h",
  443. "src/core/transport/metadata.h",
  444. "src/core/transport/stream_op.h",
  445. "src/core/transport/transport.h",
  446. "src/core/transport/transport_impl.h",
  447. "src/core/census/context.h",
  448. "src/core/surface/init_unsecure.c",
  449. "src/core/census/grpc_context.c",
  450. "src/core/channel/channel_args.c",
  451. "src/core/channel/channel_stack.c",
  452. "src/core/channel/child_channel.c",
  453. "src/core/channel/client_channel.c",
  454. "src/core/channel/client_setup.c",
  455. "src/core/channel/connected_channel.c",
  456. "src/core/channel/http_client_filter.c",
  457. "src/core/channel/http_server_filter.c",
  458. "src/core/channel/noop_filter.c",
  459. "src/core/compression/algorithm.c",
  460. "src/core/compression/message_compress.c",
  461. "src/core/debug/trace.c",
  462. "src/core/iomgr/alarm.c",
  463. "src/core/iomgr/alarm_heap.c",
  464. "src/core/iomgr/endpoint.c",
  465. "src/core/iomgr/endpoint_pair_posix.c",
  466. "src/core/iomgr/endpoint_pair_windows.c",
  467. "src/core/iomgr/fd_posix.c",
  468. "src/core/iomgr/iocp_windows.c",
  469. "src/core/iomgr/iomgr.c",
  470. "src/core/iomgr/iomgr_posix.c",
  471. "src/core/iomgr/iomgr_windows.c",
  472. "src/core/iomgr/pollset_kick_posix.c",
  473. "src/core/iomgr/pollset_multipoller_with_epoll.c",
  474. "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
  475. "src/core/iomgr/pollset_posix.c",
  476. "src/core/iomgr/pollset_set_posix.c",
  477. "src/core/iomgr/pollset_set_windows.c",
  478. "src/core/iomgr/pollset_windows.c",
  479. "src/core/iomgr/resolve_address_posix.c",
  480. "src/core/iomgr/resolve_address_windows.c",
  481. "src/core/iomgr/sockaddr_utils.c",
  482. "src/core/iomgr/socket_utils_common_posix.c",
  483. "src/core/iomgr/socket_utils_linux.c",
  484. "src/core/iomgr/socket_utils_posix.c",
  485. "src/core/iomgr/socket_windows.c",
  486. "src/core/iomgr/tcp_client_posix.c",
  487. "src/core/iomgr/tcp_client_windows.c",
  488. "src/core/iomgr/tcp_posix.c",
  489. "src/core/iomgr/tcp_server_posix.c",
  490. "src/core/iomgr/tcp_server_windows.c",
  491. "src/core/iomgr/tcp_windows.c",
  492. "src/core/iomgr/time_averaged_stats.c",
  493. "src/core/iomgr/wakeup_fd_eventfd.c",
  494. "src/core/iomgr/wakeup_fd_nospecial.c",
  495. "src/core/iomgr/wakeup_fd_pipe.c",
  496. "src/core/iomgr/wakeup_fd_posix.c",
  497. "src/core/json/json.c",
  498. "src/core/json/json_reader.c",
  499. "src/core/json/json_string.c",
  500. "src/core/json/json_writer.c",
  501. "src/core/profiling/basic_timers.c",
  502. "src/core/profiling/stap_timers.c",
  503. "src/core/surface/byte_buffer.c",
  504. "src/core/surface/byte_buffer_queue.c",
  505. "src/core/surface/byte_buffer_reader.c",
  506. "src/core/surface/call.c",
  507. "src/core/surface/call_details.c",
  508. "src/core/surface/call_log_batch.c",
  509. "src/core/surface/channel.c",
  510. "src/core/surface/channel_create.c",
  511. "src/core/surface/client.c",
  512. "src/core/surface/completion_queue.c",
  513. "src/core/surface/event_string.c",
  514. "src/core/surface/init.c",
  515. "src/core/surface/lame_client.c",
  516. "src/core/surface/metadata_array.c",
  517. "src/core/surface/server.c",
  518. "src/core/surface/server_chttp2.c",
  519. "src/core/surface/server_create.c",
  520. "src/core/surface/surface_trace.c",
  521. "src/core/transport/chttp2/alpn.c",
  522. "src/core/transport/chttp2/bin_encoder.c",
  523. "src/core/transport/chttp2/frame_data.c",
  524. "src/core/transport/chttp2/frame_goaway.c",
  525. "src/core/transport/chttp2/frame_ping.c",
  526. "src/core/transport/chttp2/frame_rst_stream.c",
  527. "src/core/transport/chttp2/frame_settings.c",
  528. "src/core/transport/chttp2/frame_window_update.c",
  529. "src/core/transport/chttp2/hpack_parser.c",
  530. "src/core/transport/chttp2/hpack_table.c",
  531. "src/core/transport/chttp2/huffsyms.c",
  532. "src/core/transport/chttp2/status_conversion.c",
  533. "src/core/transport/chttp2/stream_encoder.c",
  534. "src/core/transport/chttp2/stream_map.c",
  535. "src/core/transport/chttp2/timeout_encoding.c",
  536. "src/core/transport/chttp2/varint.c",
  537. "src/core/transport/chttp2_transport.c",
  538. "src/core/transport/metadata.c",
  539. "src/core/transport/stream_op.c",
  540. "src/core/transport/transport.c",
  541. "src/core/transport/transport_op_string.c",
  542. "src/core/census/context.c",
  543. "src/core/census/initialize.c",
  544. ],
  545. hdrs = [
  546. "include/grpc/byte_buffer.h",
  547. "include/grpc/byte_buffer_reader.h",
  548. "include/grpc/compression.h",
  549. "include/grpc/grpc.h",
  550. "include/grpc/status.h",
  551. "include/grpc/census.h",
  552. ],
  553. includes = [
  554. "include",
  555. ".",
  556. ],
  557. deps = [
  558. ":gpr",
  559. ],
  560. )
  561. cc_library(
  562. name = "grpc++",
  563. srcs = [
  564. "src/cpp/client/secure_credentials.h",
  565. "src/cpp/server/secure_server_credentials.h",
  566. "src/cpp/client/channel.h",
  567. "src/cpp/server/thread_pool.h",
  568. "src/cpp/client/secure_credentials.cc",
  569. "src/cpp/server/secure_server_credentials.cc",
  570. "src/cpp/client/channel.cc",
  571. "src/cpp/client/channel_arguments.cc",
  572. "src/cpp/client/client_context.cc",
  573. "src/cpp/client/create_channel.cc",
  574. "src/cpp/client/credentials.cc",
  575. "src/cpp/client/generic_stub.cc",
  576. "src/cpp/client/insecure_credentials.cc",
  577. "src/cpp/client/internal_stub.cc",
  578. "src/cpp/common/call.cc",
  579. "src/cpp/common/completion_queue.cc",
  580. "src/cpp/common/rpc_method.cc",
  581. "src/cpp/proto/proto_utils.cc",
  582. "src/cpp/server/async_generic_service.cc",
  583. "src/cpp/server/create_default_thread_pool.cc",
  584. "src/cpp/server/insecure_server_credentials.cc",
  585. "src/cpp/server/server.cc",
  586. "src/cpp/server/server_builder.cc",
  587. "src/cpp/server/server_context.cc",
  588. "src/cpp/server/server_credentials.cc",
  589. "src/cpp/server/thread_pool.cc",
  590. "src/cpp/util/byte_buffer.cc",
  591. "src/cpp/util/slice.cc",
  592. "src/cpp/util/status.cc",
  593. "src/cpp/util/time.cc",
  594. ],
  595. hdrs = [
  596. "include/grpc++/async_generic_service.h",
  597. "include/grpc++/async_unary_call.h",
  598. "include/grpc++/byte_buffer.h",
  599. "include/grpc++/channel_arguments.h",
  600. "include/grpc++/channel_interface.h",
  601. "include/grpc++/client_context.h",
  602. "include/grpc++/completion_queue.h",
  603. "include/grpc++/config.h",
  604. "include/grpc++/config_protobuf.h",
  605. "include/grpc++/create_channel.h",
  606. "include/grpc++/credentials.h",
  607. "include/grpc++/generic_stub.h",
  608. "include/grpc++/impl/call.h",
  609. "include/grpc++/impl/client_unary_call.h",
  610. "include/grpc++/impl/grpc_library.h",
  611. "include/grpc++/impl/internal_stub.h",
  612. "include/grpc++/impl/proto_utils.h",
  613. "include/grpc++/impl/rpc_method.h",
  614. "include/grpc++/impl/rpc_service_method.h",
  615. "include/grpc++/impl/serialization_traits.h",
  616. "include/grpc++/impl/service_type.h",
  617. "include/grpc++/impl/sync.h",
  618. "include/grpc++/impl/sync_cxx11.h",
  619. "include/grpc++/impl/sync_no_cxx11.h",
  620. "include/grpc++/impl/thd.h",
  621. "include/grpc++/impl/thd_cxx11.h",
  622. "include/grpc++/impl/thd_no_cxx11.h",
  623. "include/grpc++/server.h",
  624. "include/grpc++/server_builder.h",
  625. "include/grpc++/server_context.h",
  626. "include/grpc++/server_credentials.h",
  627. "include/grpc++/slice.h",
  628. "include/grpc++/status.h",
  629. "include/grpc++/status_code_enum.h",
  630. "include/grpc++/stream.h",
  631. "include/grpc++/thread_pool_interface.h",
  632. "include/grpc++/time.h",
  633. ],
  634. includes = [
  635. "include",
  636. ".",
  637. ],
  638. deps = [
  639. "//external:protobuf_clib",
  640. ":gpr",
  641. ":grpc",
  642. ],
  643. )
  644. cc_library(
  645. name = "grpc++_unsecure",
  646. srcs = [
  647. "src/cpp/client/channel.h",
  648. "src/cpp/server/thread_pool.h",
  649. "src/cpp/client/channel.cc",
  650. "src/cpp/client/channel_arguments.cc",
  651. "src/cpp/client/client_context.cc",
  652. "src/cpp/client/create_channel.cc",
  653. "src/cpp/client/credentials.cc",
  654. "src/cpp/client/generic_stub.cc",
  655. "src/cpp/client/insecure_credentials.cc",
  656. "src/cpp/client/internal_stub.cc",
  657. "src/cpp/common/call.cc",
  658. "src/cpp/common/completion_queue.cc",
  659. "src/cpp/common/rpc_method.cc",
  660. "src/cpp/proto/proto_utils.cc",
  661. "src/cpp/server/async_generic_service.cc",
  662. "src/cpp/server/create_default_thread_pool.cc",
  663. "src/cpp/server/insecure_server_credentials.cc",
  664. "src/cpp/server/server.cc",
  665. "src/cpp/server/server_builder.cc",
  666. "src/cpp/server/server_context.cc",
  667. "src/cpp/server/server_credentials.cc",
  668. "src/cpp/server/thread_pool.cc",
  669. "src/cpp/util/byte_buffer.cc",
  670. "src/cpp/util/slice.cc",
  671. "src/cpp/util/status.cc",
  672. "src/cpp/util/time.cc",
  673. ],
  674. hdrs = [
  675. "include/grpc++/async_generic_service.h",
  676. "include/grpc++/async_unary_call.h",
  677. "include/grpc++/byte_buffer.h",
  678. "include/grpc++/channel_arguments.h",
  679. "include/grpc++/channel_interface.h",
  680. "include/grpc++/client_context.h",
  681. "include/grpc++/completion_queue.h",
  682. "include/grpc++/config.h",
  683. "include/grpc++/config_protobuf.h",
  684. "include/grpc++/create_channel.h",
  685. "include/grpc++/credentials.h",
  686. "include/grpc++/generic_stub.h",
  687. "include/grpc++/impl/call.h",
  688. "include/grpc++/impl/client_unary_call.h",
  689. "include/grpc++/impl/grpc_library.h",
  690. "include/grpc++/impl/internal_stub.h",
  691. "include/grpc++/impl/proto_utils.h",
  692. "include/grpc++/impl/rpc_method.h",
  693. "include/grpc++/impl/rpc_service_method.h",
  694. "include/grpc++/impl/serialization_traits.h",
  695. "include/grpc++/impl/service_type.h",
  696. "include/grpc++/impl/sync.h",
  697. "include/grpc++/impl/sync_cxx11.h",
  698. "include/grpc++/impl/sync_no_cxx11.h",
  699. "include/grpc++/impl/thd.h",
  700. "include/grpc++/impl/thd_cxx11.h",
  701. "include/grpc++/impl/thd_no_cxx11.h",
  702. "include/grpc++/server.h",
  703. "include/grpc++/server_builder.h",
  704. "include/grpc++/server_context.h",
  705. "include/grpc++/server_credentials.h",
  706. "include/grpc++/slice.h",
  707. "include/grpc++/status.h",
  708. "include/grpc++/status_code_enum.h",
  709. "include/grpc++/stream.h",
  710. "include/grpc++/thread_pool_interface.h",
  711. "include/grpc++/time.h",
  712. ],
  713. includes = [
  714. "include",
  715. ".",
  716. ],
  717. deps = [
  718. "//external:protobuf_clib",
  719. ":gpr",
  720. ":grpc_unsecure",
  721. ],
  722. )
  723. cc_library(
  724. name = "grpc_plugin_support",
  725. srcs = [
  726. "src/compiler/config.h",
  727. "src/compiler/cpp_generator.h",
  728. "src/compiler/cpp_generator_helpers.h",
  729. "src/compiler/csharp_generator.h",
  730. "src/compiler/csharp_generator_helpers.h",
  731. "src/compiler/generator_helpers.h",
  732. "src/compiler/objective_c_generator.h",
  733. "src/compiler/objective_c_generator_helpers.h",
  734. "src/compiler/python_generator.h",
  735. "src/compiler/ruby_generator.h",
  736. "src/compiler/ruby_generator_helpers-inl.h",
  737. "src/compiler/ruby_generator_map-inl.h",
  738. "src/compiler/ruby_generator_string-inl.h",
  739. "src/compiler/cpp_generator.cc",
  740. "src/compiler/csharp_generator.cc",
  741. "src/compiler/objective_c_generator.cc",
  742. "src/compiler/python_generator.cc",
  743. "src/compiler/ruby_generator.cc",
  744. ],
  745. hdrs = [
  746. ],
  747. includes = [
  748. "include",
  749. ".",
  750. ],
  751. deps = [
  752. "//external:protobuf_compiler",
  753. ],
  754. )
  755. cc_library(
  756. name = "grpc_csharp_ext",
  757. srcs = [
  758. "src/csharp/ext/grpc_csharp_ext.c",
  759. ],
  760. hdrs = [
  761. ],
  762. includes = [
  763. "include",
  764. ".",
  765. ],
  766. deps = [
  767. ":gpr",
  768. ":grpc",
  769. ],
  770. )
  771. objc_library(
  772. name = "gpr_objc",
  773. srcs = [
  774. "src/core/support/alloc.c",
  775. "src/core/support/cancellable.c",
  776. "src/core/support/cmdline.c",
  777. "src/core/support/cpu_iphone.c",
  778. "src/core/support/cpu_linux.c",
  779. "src/core/support/cpu_posix.c",
  780. "src/core/support/cpu_windows.c",
  781. "src/core/support/env_linux.c",
  782. "src/core/support/env_posix.c",
  783. "src/core/support/env_win32.c",
  784. "src/core/support/file.c",
  785. "src/core/support/file_posix.c",
  786. "src/core/support/file_win32.c",
  787. "src/core/support/histogram.c",
  788. "src/core/support/host_port.c",
  789. "src/core/support/log.c",
  790. "src/core/support/log_android.c",
  791. "src/core/support/log_linux.c",
  792. "src/core/support/log_posix.c",
  793. "src/core/support/log_win32.c",
  794. "src/core/support/murmur_hash.c",
  795. "src/core/support/slice.c",
  796. "src/core/support/slice_buffer.c",
  797. "src/core/support/string.c",
  798. "src/core/support/string_posix.c",
  799. "src/core/support/string_win32.c",
  800. "src/core/support/subprocess_posix.c",
  801. "src/core/support/sync.c",
  802. "src/core/support/sync_posix.c",
  803. "src/core/support/sync_win32.c",
  804. "src/core/support/thd.c",
  805. "src/core/support/thd_posix.c",
  806. "src/core/support/thd_win32.c",
  807. "src/core/support/time.c",
  808. "src/core/support/time_posix.c",
  809. "src/core/support/time_win32.c",
  810. "src/core/support/tls_pthread.c",
  811. ],
  812. hdrs = [
  813. "include/grpc/support/alloc.h",
  814. "include/grpc/support/atm.h",
  815. "include/grpc/support/atm_gcc_atomic.h",
  816. "include/grpc/support/atm_gcc_sync.h",
  817. "include/grpc/support/atm_win32.h",
  818. "include/grpc/support/cancellable_platform.h",
  819. "include/grpc/support/cmdline.h",
  820. "include/grpc/support/cpu.h",
  821. "include/grpc/support/histogram.h",
  822. "include/grpc/support/host_port.h",
  823. "include/grpc/support/log.h",
  824. "include/grpc/support/log_win32.h",
  825. "include/grpc/support/port_platform.h",
  826. "include/grpc/support/slice.h",
  827. "include/grpc/support/slice_buffer.h",
  828. "include/grpc/support/string_util.h",
  829. "include/grpc/support/subprocess.h",
  830. "include/grpc/support/sync.h",
  831. "include/grpc/support/sync_generic.h",
  832. "include/grpc/support/sync_posix.h",
  833. "include/grpc/support/sync_win32.h",
  834. "include/grpc/support/thd.h",
  835. "include/grpc/support/time.h",
  836. "include/grpc/support/tls.h",
  837. "include/grpc/support/tls_gcc.h",
  838. "include/grpc/support/tls_msvc.h",
  839. "include/grpc/support/tls_pthread.h",
  840. "include/grpc/support/useful.h",
  841. "src/core/support/env.h",
  842. "src/core/support/file.h",
  843. "src/core/support/murmur_hash.h",
  844. "src/core/support/string.h",
  845. "src/core/support/string_win32.h",
  846. "src/core/support/thd_internal.h",
  847. ],
  848. includes = [
  849. "include",
  850. ".",
  851. ],
  852. deps = [
  853. ],
  854. )
  855. objc_library(
  856. name = "grpc_unsecure_objc",
  857. srcs = [
  858. "src/core/surface/init_unsecure.c",
  859. "src/core/census/grpc_context.c",
  860. "src/core/channel/channel_args.c",
  861. "src/core/channel/channel_stack.c",
  862. "src/core/channel/child_channel.c",
  863. "src/core/channel/client_channel.c",
  864. "src/core/channel/client_setup.c",
  865. "src/core/channel/connected_channel.c",
  866. "src/core/channel/http_client_filter.c",
  867. "src/core/channel/http_server_filter.c",
  868. "src/core/channel/noop_filter.c",
  869. "src/core/compression/algorithm.c",
  870. "src/core/compression/message_compress.c",
  871. "src/core/debug/trace.c",
  872. "src/core/iomgr/alarm.c",
  873. "src/core/iomgr/alarm_heap.c",
  874. "src/core/iomgr/endpoint.c",
  875. "src/core/iomgr/endpoint_pair_posix.c",
  876. "src/core/iomgr/endpoint_pair_windows.c",
  877. "src/core/iomgr/fd_posix.c",
  878. "src/core/iomgr/iocp_windows.c",
  879. "src/core/iomgr/iomgr.c",
  880. "src/core/iomgr/iomgr_posix.c",
  881. "src/core/iomgr/iomgr_windows.c",
  882. "src/core/iomgr/pollset_kick_posix.c",
  883. "src/core/iomgr/pollset_multipoller_with_epoll.c",
  884. "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
  885. "src/core/iomgr/pollset_posix.c",
  886. "src/core/iomgr/pollset_set_posix.c",
  887. "src/core/iomgr/pollset_set_windows.c",
  888. "src/core/iomgr/pollset_windows.c",
  889. "src/core/iomgr/resolve_address_posix.c",
  890. "src/core/iomgr/resolve_address_windows.c",
  891. "src/core/iomgr/sockaddr_utils.c",
  892. "src/core/iomgr/socket_utils_common_posix.c",
  893. "src/core/iomgr/socket_utils_linux.c",
  894. "src/core/iomgr/socket_utils_posix.c",
  895. "src/core/iomgr/socket_windows.c",
  896. "src/core/iomgr/tcp_client_posix.c",
  897. "src/core/iomgr/tcp_client_windows.c",
  898. "src/core/iomgr/tcp_posix.c",
  899. "src/core/iomgr/tcp_server_posix.c",
  900. "src/core/iomgr/tcp_server_windows.c",
  901. "src/core/iomgr/tcp_windows.c",
  902. "src/core/iomgr/time_averaged_stats.c",
  903. "src/core/iomgr/wakeup_fd_eventfd.c",
  904. "src/core/iomgr/wakeup_fd_nospecial.c",
  905. "src/core/iomgr/wakeup_fd_pipe.c",
  906. "src/core/iomgr/wakeup_fd_posix.c",
  907. "src/core/json/json.c",
  908. "src/core/json/json_reader.c",
  909. "src/core/json/json_string.c",
  910. "src/core/json/json_writer.c",
  911. "src/core/profiling/basic_timers.c",
  912. "src/core/profiling/stap_timers.c",
  913. "src/core/surface/byte_buffer.c",
  914. "src/core/surface/byte_buffer_queue.c",
  915. "src/core/surface/byte_buffer_reader.c",
  916. "src/core/surface/call.c",
  917. "src/core/surface/call_details.c",
  918. "src/core/surface/call_log_batch.c",
  919. "src/core/surface/channel.c",
  920. "src/core/surface/channel_create.c",
  921. "src/core/surface/client.c",
  922. "src/core/surface/completion_queue.c",
  923. "src/core/surface/event_string.c",
  924. "src/core/surface/init.c",
  925. "src/core/surface/lame_client.c",
  926. "src/core/surface/metadata_array.c",
  927. "src/core/surface/server.c",
  928. "src/core/surface/server_chttp2.c",
  929. "src/core/surface/server_create.c",
  930. "src/core/surface/surface_trace.c",
  931. "src/core/transport/chttp2/alpn.c",
  932. "src/core/transport/chttp2/bin_encoder.c",
  933. "src/core/transport/chttp2/frame_data.c",
  934. "src/core/transport/chttp2/frame_goaway.c",
  935. "src/core/transport/chttp2/frame_ping.c",
  936. "src/core/transport/chttp2/frame_rst_stream.c",
  937. "src/core/transport/chttp2/frame_settings.c",
  938. "src/core/transport/chttp2/frame_window_update.c",
  939. "src/core/transport/chttp2/hpack_parser.c",
  940. "src/core/transport/chttp2/hpack_table.c",
  941. "src/core/transport/chttp2/huffsyms.c",
  942. "src/core/transport/chttp2/status_conversion.c",
  943. "src/core/transport/chttp2/stream_encoder.c",
  944. "src/core/transport/chttp2/stream_map.c",
  945. "src/core/transport/chttp2/timeout_encoding.c",
  946. "src/core/transport/chttp2/varint.c",
  947. "src/core/transport/chttp2_transport.c",
  948. "src/core/transport/metadata.c",
  949. "src/core/transport/stream_op.c",
  950. "src/core/transport/transport.c",
  951. "src/core/transport/transport_op_string.c",
  952. "src/core/census/context.c",
  953. "src/core/census/initialize.c",
  954. ],
  955. hdrs = [
  956. "include/grpc/byte_buffer.h",
  957. "include/grpc/byte_buffer_reader.h",
  958. "include/grpc/compression.h",
  959. "include/grpc/grpc.h",
  960. "include/grpc/status.h",
  961. "include/grpc/census.h",
  962. "src/core/census/grpc_context.h",
  963. "src/core/channel/census_filter.h",
  964. "src/core/channel/channel_args.h",
  965. "src/core/channel/channel_stack.h",
  966. "src/core/channel/child_channel.h",
  967. "src/core/channel/client_channel.h",
  968. "src/core/channel/client_setup.h",
  969. "src/core/channel/connected_channel.h",
  970. "src/core/channel/context.h",
  971. "src/core/channel/http_client_filter.h",
  972. "src/core/channel/http_server_filter.h",
  973. "src/core/channel/noop_filter.h",
  974. "src/core/compression/message_compress.h",
  975. "src/core/debug/trace.h",
  976. "src/core/iomgr/alarm.h",
  977. "src/core/iomgr/alarm_heap.h",
  978. "src/core/iomgr/alarm_internal.h",
  979. "src/core/iomgr/endpoint.h",
  980. "src/core/iomgr/endpoint_pair.h",
  981. "src/core/iomgr/fd_posix.h",
  982. "src/core/iomgr/iocp_windows.h",
  983. "src/core/iomgr/iomgr.h",
  984. "src/core/iomgr/iomgr_internal.h",
  985. "src/core/iomgr/iomgr_posix.h",
  986. "src/core/iomgr/pollset.h",
  987. "src/core/iomgr/pollset_kick_posix.h",
  988. "src/core/iomgr/pollset_posix.h",
  989. "src/core/iomgr/pollset_set.h",
  990. "src/core/iomgr/pollset_set_posix.h",
  991. "src/core/iomgr/pollset_set_windows.h",
  992. "src/core/iomgr/pollset_windows.h",
  993. "src/core/iomgr/resolve_address.h",
  994. "src/core/iomgr/sockaddr.h",
  995. "src/core/iomgr/sockaddr_posix.h",
  996. "src/core/iomgr/sockaddr_utils.h",
  997. "src/core/iomgr/sockaddr_win32.h",
  998. "src/core/iomgr/socket_utils_posix.h",
  999. "src/core/iomgr/socket_windows.h",
  1000. "src/core/iomgr/tcp_client.h",
  1001. "src/core/iomgr/tcp_posix.h",
  1002. "src/core/iomgr/tcp_server.h",
  1003. "src/core/iomgr/tcp_windows.h",
  1004. "src/core/iomgr/time_averaged_stats.h",
  1005. "src/core/iomgr/wakeup_fd_pipe.h",
  1006. "src/core/iomgr/wakeup_fd_posix.h",
  1007. "src/core/json/json.h",
  1008. "src/core/json/json_common.h",
  1009. "src/core/json/json_reader.h",
  1010. "src/core/json/json_writer.h",
  1011. "src/core/profiling/timers.h",
  1012. "src/core/profiling/timers_preciseclock.h",
  1013. "src/core/surface/byte_buffer_queue.h",
  1014. "src/core/surface/call.h",
  1015. "src/core/surface/channel.h",
  1016. "src/core/surface/client.h",
  1017. "src/core/surface/completion_queue.h",
  1018. "src/core/surface/event_string.h",
  1019. "src/core/surface/init.h",
  1020. "src/core/surface/server.h",
  1021. "src/core/surface/surface_trace.h",
  1022. "src/core/transport/chttp2/alpn.h",
  1023. "src/core/transport/chttp2/bin_encoder.h",
  1024. "src/core/transport/chttp2/frame.h",
  1025. "src/core/transport/chttp2/frame_data.h",
  1026. "src/core/transport/chttp2/frame_goaway.h",
  1027. "src/core/transport/chttp2/frame_ping.h",
  1028. "src/core/transport/chttp2/frame_rst_stream.h",
  1029. "src/core/transport/chttp2/frame_settings.h",
  1030. "src/core/transport/chttp2/frame_window_update.h",
  1031. "src/core/transport/chttp2/hpack_parser.h",
  1032. "src/core/transport/chttp2/hpack_table.h",
  1033. "src/core/transport/chttp2/http2_errors.h",
  1034. "src/core/transport/chttp2/huffsyms.h",
  1035. "src/core/transport/chttp2/status_conversion.h",
  1036. "src/core/transport/chttp2/stream_encoder.h",
  1037. "src/core/transport/chttp2/stream_map.h",
  1038. "src/core/transport/chttp2/timeout_encoding.h",
  1039. "src/core/transport/chttp2/varint.h",
  1040. "src/core/transport/chttp2_transport.h",
  1041. "src/core/transport/metadata.h",
  1042. "src/core/transport/stream_op.h",
  1043. "src/core/transport/transport.h",
  1044. "src/core/transport/transport_impl.h",
  1045. "src/core/census/context.h",
  1046. ],
  1047. includes = [
  1048. "include",
  1049. ".",
  1050. ],
  1051. deps = [
  1052. ":gpr_objc",
  1053. ],
  1054. sdk_dylibs = ["libz"],
  1055. )
  1056. cc_binary(
  1057. name = "grpc_cpp_plugin",
  1058. srcs = [
  1059. "src/compiler/cpp_plugin.cc",
  1060. ],
  1061. deps = [
  1062. "//external:protobuf_compiler",
  1063. ":grpc_plugin_support",
  1064. ],
  1065. )
  1066. cc_binary(
  1067. name = "grpc_csharp_plugin",
  1068. srcs = [
  1069. "src/compiler/csharp_plugin.cc",
  1070. ],
  1071. deps = [
  1072. "//external:protobuf_compiler",
  1073. ":grpc_plugin_support",
  1074. ],
  1075. )
  1076. cc_binary(
  1077. name = "grpc_objective_c_plugin",
  1078. srcs = [
  1079. "src/compiler/objective_c_plugin.cc",
  1080. ],
  1081. deps = [
  1082. "//external:protobuf_compiler",
  1083. ":grpc_plugin_support",
  1084. ],
  1085. )
  1086. cc_binary(
  1087. name = "grpc_python_plugin",
  1088. srcs = [
  1089. "src/compiler/python_plugin.cc",
  1090. ],
  1091. deps = [
  1092. "//external:protobuf_compiler",
  1093. ":grpc_plugin_support",
  1094. ],
  1095. )
  1096. cc_binary(
  1097. name = "grpc_ruby_plugin",
  1098. srcs = [
  1099. "src/compiler/ruby_plugin.cc",
  1100. ],
  1101. deps = [
  1102. "//external:protobuf_compiler",
  1103. ":grpc_plugin_support",
  1104. ],
  1105. )