package.json 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936
  1. {
  2. "name": "grpc",
  3. "version": "0.14.0-dev",
  4. "author": "Google Inc.",
  5. "description": "gRPC Library for Node",
  6. "homepage": "http://www.grpc.io/",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/grpc/grpc.git"
  10. },
  11. "bugs": "https://github.com/grpc/grpc/issues",
  12. "contributors": [
  13. {
  14. "name": "Michael Lumish",
  15. "email": "mlumish@google.com"
  16. }
  17. ],
  18. "directories": {
  19. "lib": "src/node/src"
  20. },
  21. "scripts": {
  22. "lint": "node ./node_modules/jshint/bin/jshint src/node/src src/node/test src/node/interop src/node/index.js",
  23. "test": "./node_modules/.bin/mocha src/node/test && npm run-script lint",
  24. "gen_docs": "./node_modules/.bin/jsdoc -c src/node/jsdoc_conf.json",
  25. "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/node/test",
  26. "install": "./node_modules/.bin/node-pre-gyp install --fallback-to-build"
  27. },
  28. "bundledDependencies": ["node-pre-gyp"],
  29. "dependencies": {
  30. "arguejs": "^0.2.3",
  31. "lodash": "^3.9.3",
  32. "nan": "^2.0.0",
  33. "protobufjs": "^4.0.0"
  34. },
  35. "devDependencies": {
  36. "async": "^1.5.0",
  37. "google-auth-library": "^0.9.2",
  38. "istanbul": "^0.3.21",
  39. "jsdoc": "^3.3.2",
  40. "jshint": "^2.5.0",
  41. "minimist": "^1.1.0",
  42. "mocha": "^2.3.4",
  43. "mocha-jenkins-reporter": "^0.1.9",
  44. "mustache": "^2.0.0",
  45. "poisson-process": "^0.2.1"
  46. },
  47. "engines": {
  48. "node": ">=0.12.0"
  49. },
  50. "binary": {
  51. "module_name": "grpc_node",
  52. "module_path": "./build/Release/",
  53. "host": "https://storage.googleapis.com/",
  54. "remote_path": "grpc-precompiled-binaries/node/{name}/v{version}",
  55. "package_name": "{node_abi}-{platform}-{arch}.tar.gz",
  56. "module_path": "src/node/extension_binary"
  57. },
  58. "files": [
  59. "LICENSE",
  60. "src/node/README.md",
  61. "src/node/health_check",
  62. "src/proto",
  63. "etc",
  64. "src/node/ext/byte_buffer.h",
  65. "src/node/ext/call.h",
  66. "src/node/ext/call_credentials.h",
  67. "src/node/ext/channel.h",
  68. "src/node/ext/channel_credentials.h",
  69. "src/node/ext/completion_queue_async_worker.h",
  70. "src/node/ext/server.h",
  71. "src/node/ext/server_credentials.h",
  72. "src/node/ext/timeval.h",
  73. "src/node/ext/byte_buffer.cc",
  74. "src/node/ext/call.cc",
  75. "src/node/ext/call_credentials.cc",
  76. "src/node/ext/channel.cc",
  77. "src/node/ext/channel_credentials.cc",
  78. "src/node/ext/completion_queue_async_worker.cc",
  79. "src/node/ext/node_grpc.cc",
  80. "src/node/ext/server.cc",
  81. "src/node/ext/server_credentials.cc",
  82. "src/node/ext/timeval.cc",
  83. "src/node/index.js",
  84. "src/node/src/client.js",
  85. "src/node/src/common.js",
  86. "src/node/src/credentials.js",
  87. "src/node/src/grpc_extension.js",
  88. "src/node/src/metadata.js",
  89. "src/node/src/server.js",
  90. "include/grpc/byte_buffer.h",
  91. "include/grpc/byte_buffer_reader.h",
  92. "include/grpc/census.h",
  93. "include/grpc/compression.h",
  94. "include/grpc/grpc.h",
  95. "include/grpc/grpc_security.h",
  96. "include/grpc/impl/codegen/byte_buffer.h",
  97. "include/grpc/impl/codegen/compression_types.h",
  98. "include/grpc/impl/codegen/connectivity_state.h",
  99. "include/grpc/impl/codegen/grpc_types.h",
  100. "include/grpc/impl/codegen/propagation_bits.h",
  101. "include/grpc/impl/codegen/status.h",
  102. "include/grpc/status.h",
  103. "src/core/ext/census/aggregation.h",
  104. "src/core/ext/census/census_interface.h",
  105. "src/core/ext/census/census_rpc_stats.h",
  106. "src/core/ext/census/grpc_filter.h",
  107. "src/core/ext/census/grpc_plugin.h",
  108. "src/core/ext/census/mlog.h",
  109. "src/core/ext/census/rpc_metric_id.h",
  110. "src/core/ext/lb_policy/grpclb/load_balancer_api.h",
  111. "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h",
  112. "src/core/ext/transport/chttp2/transport/alpn.h",
  113. "src/core/ext/transport/chttp2/transport/bin_encoder.h",
  114. "src/core/ext/transport/chttp2/transport/chttp2_transport.h",
  115. "src/core/ext/transport/chttp2/transport/frame.h",
  116. "src/core/ext/transport/chttp2/transport/frame_data.h",
  117. "src/core/ext/transport/chttp2/transport/frame_goaway.h",
  118. "src/core/ext/transport/chttp2/transport/frame_ping.h",
  119. "src/core/ext/transport/chttp2/transport/frame_rst_stream.h",
  120. "src/core/ext/transport/chttp2/transport/frame_settings.h",
  121. "src/core/ext/transport/chttp2/transport/frame_window_update.h",
  122. "src/core/ext/transport/chttp2/transport/hpack_encoder.h",
  123. "src/core/ext/transport/chttp2/transport/hpack_parser.h",
  124. "src/core/ext/transport/chttp2/transport/hpack_table.h",
  125. "src/core/ext/transport/chttp2/transport/http2_errors.h",
  126. "src/core/ext/transport/chttp2/transport/huffsyms.h",
  127. "src/core/ext/transport/chttp2/transport/incoming_metadata.h",
  128. "src/core/ext/transport/chttp2/transport/internal.h",
  129. "src/core/ext/transport/chttp2/transport/status_conversion.h",
  130. "src/core/ext/transport/chttp2/transport/stream_map.h",
  131. "src/core/ext/transport/chttp2/transport/timeout_encoding.h",
  132. "src/core/ext/transport/chttp2/transport/varint.h",
  133. "src/core/lib/channel/channel_args.h",
  134. "src/core/lib/channel/channel_stack.h",
  135. "src/core/lib/channel/channel_stack_builder.h",
  136. "src/core/lib/channel/client_channel.h",
  137. "src/core/lib/channel/compress_filter.h",
  138. "src/core/lib/channel/connected_channel.h",
  139. "src/core/lib/channel/context.h",
  140. "src/core/lib/channel/http_client_filter.h",
  141. "src/core/lib/channel/http_server_filter.h",
  142. "src/core/lib/channel/subchannel_call_holder.h",
  143. "src/core/lib/client_config/client_config.h",
  144. "src/core/lib/client_config/connector.h",
  145. "src/core/lib/client_config/initial_connect_string.h",
  146. "src/core/lib/client_config/lb_policy.h",
  147. "src/core/lib/client_config/lb_policy_factory.h",
  148. "src/core/lib/client_config/lb_policy_registry.h",
  149. "src/core/lib/client_config/resolver.h",
  150. "src/core/lib/client_config/resolver_factory.h",
  151. "src/core/lib/client_config/resolver_registry.h",
  152. "src/core/lib/client_config/resolvers/dns_resolver.h",
  153. "src/core/lib/client_config/resolvers/sockaddr_resolver.h",
  154. "src/core/lib/client_config/subchannel.h",
  155. "src/core/lib/client_config/subchannel_factory.h",
  156. "src/core/lib/client_config/subchannel_index.h",
  157. "src/core/lib/client_config/uri_parser.h",
  158. "src/core/lib/compression/algorithm_metadata.h",
  159. "src/core/lib/compression/message_compress.h",
  160. "src/core/lib/debug/trace.h",
  161. "src/core/lib/http/format_request.h",
  162. "src/core/lib/http/httpcli.h",
  163. "src/core/lib/http/parser.h",
  164. "src/core/lib/iomgr/closure.h",
  165. "src/core/lib/iomgr/endpoint.h",
  166. "src/core/lib/iomgr/endpoint_pair.h",
  167. "src/core/lib/iomgr/exec_ctx.h",
  168. "src/core/lib/iomgr/executor.h",
  169. "src/core/lib/iomgr/fd_posix.h",
  170. "src/core/lib/iomgr/iocp_windows.h",
  171. "src/core/lib/iomgr/iomgr.h",
  172. "src/core/lib/iomgr/iomgr_internal.h",
  173. "src/core/lib/iomgr/iomgr_posix.h",
  174. "src/core/lib/iomgr/pollset.h",
  175. "src/core/lib/iomgr/pollset_posix.h",
  176. "src/core/lib/iomgr/pollset_set.h",
  177. "src/core/lib/iomgr/pollset_set_posix.h",
  178. "src/core/lib/iomgr/pollset_set_windows.h",
  179. "src/core/lib/iomgr/pollset_windows.h",
  180. "src/core/lib/iomgr/resolve_address.h",
  181. "src/core/lib/iomgr/sockaddr.h",
  182. "src/core/lib/iomgr/sockaddr_posix.h",
  183. "src/core/lib/iomgr/sockaddr_utils.h",
  184. "src/core/lib/iomgr/sockaddr_win32.h",
  185. "src/core/lib/iomgr/socket_utils_posix.h",
  186. "src/core/lib/iomgr/socket_windows.h",
  187. "src/core/lib/iomgr/tcp_client.h",
  188. "src/core/lib/iomgr/tcp_posix.h",
  189. "src/core/lib/iomgr/tcp_server.h",
  190. "src/core/lib/iomgr/tcp_windows.h",
  191. "src/core/lib/iomgr/time_averaged_stats.h",
  192. "src/core/lib/iomgr/timer.h",
  193. "src/core/lib/iomgr/timer_heap.h",
  194. "src/core/lib/iomgr/udp_server.h",
  195. "src/core/lib/iomgr/unix_sockets_posix.h",
  196. "src/core/lib/iomgr/wakeup_fd_pipe.h",
  197. "src/core/lib/iomgr/wakeup_fd_posix.h",
  198. "src/core/lib/iomgr/workqueue.h",
  199. "src/core/lib/iomgr/workqueue_posix.h",
  200. "src/core/lib/iomgr/workqueue_windows.h",
  201. "src/core/lib/json/json.h",
  202. "src/core/lib/json/json_common.h",
  203. "src/core/lib/json/json_reader.h",
  204. "src/core/lib/json/json_writer.h",
  205. "src/core/lib/security/auth_filters.h",
  206. "src/core/lib/security/b64.h",
  207. "src/core/lib/security/credentials.h",
  208. "src/core/lib/security/handshake.h",
  209. "src/core/lib/security/json_token.h",
  210. "src/core/lib/security/jwt_verifier.h",
  211. "src/core/lib/security/secure_endpoint.h",
  212. "src/core/lib/security/security_connector.h",
  213. "src/core/lib/security/security_context.h",
  214. "src/core/lib/surface/api_trace.h",
  215. "src/core/lib/surface/call.h",
  216. "src/core/lib/surface/call_test_only.h",
  217. "src/core/lib/surface/channel.h",
  218. "src/core/lib/surface/channel_init.h",
  219. "src/core/lib/surface/channel_stack_type.h",
  220. "src/core/lib/surface/completion_queue.h",
  221. "src/core/lib/surface/event_string.h",
  222. "src/core/lib/surface/init.h",
  223. "src/core/lib/surface/lame_client.h",
  224. "src/core/lib/surface/server.h",
  225. "src/core/lib/surface/surface_trace.h",
  226. "src/core/lib/transport/byte_stream.h",
  227. "src/core/lib/transport/connectivity_state.h",
  228. "src/core/lib/transport/metadata.h",
  229. "src/core/lib/transport/metadata_batch.h",
  230. "src/core/lib/transport/static_metadata.h",
  231. "src/core/lib/transport/transport.h",
  232. "src/core/lib/transport/transport_impl.h",
  233. "src/core/lib/tsi/fake_transport_security.h",
  234. "src/core/lib/tsi/ssl_transport_security.h",
  235. "src/core/lib/tsi/ssl_types.h",
  236. "src/core/lib/tsi/transport_security.h",
  237. "src/core/lib/tsi/transport_security_interface.h",
  238. "third_party/nanopb/pb.h",
  239. "third_party/nanopb/pb_common.h",
  240. "third_party/nanopb/pb_decode.h",
  241. "third_party/nanopb/pb_encode.h",
  242. "src/core/ext/census/context.c",
  243. "src/core/ext/census/grpc_context.c",
  244. "src/core/ext/census/grpc_filter.c",
  245. "src/core/ext/census/grpc_plugin.c",
  246. "src/core/ext/census/initialize.c",
  247. "src/core/ext/census/mlog.c",
  248. "src/core/ext/census/operation.c",
  249. "src/core/ext/census/placeholders.c",
  250. "src/core/ext/census/tracing.c",
  251. "src/core/ext/lb_policy/grpclb/load_balancer_api.c",
  252. "src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c",
  253. "src/core/ext/lb_policy/pick_first/pick_first.c",
  254. "src/core/ext/lb_policy/round_robin/round_robin.c",
  255. "src/core/ext/transport/chttp2/client/insecure/channel_create.c",
  256. "src/core/ext/transport/chttp2/client/secure/secure_channel_create.c",
  257. "src/core/ext/transport/chttp2/server/insecure/server_chttp2.c",
  258. "src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c",
  259. "src/core/ext/transport/chttp2/transport/alpn.c",
  260. "src/core/ext/transport/chttp2/transport/bin_encoder.c",
  261. "src/core/ext/transport/chttp2/transport/chttp2_transport.c",
  262. "src/core/ext/transport/chttp2/transport/frame_data.c",
  263. "src/core/ext/transport/chttp2/transport/frame_goaway.c",
  264. "src/core/ext/transport/chttp2/transport/frame_ping.c",
  265. "src/core/ext/transport/chttp2/transport/frame_rst_stream.c",
  266. "src/core/ext/transport/chttp2/transport/frame_settings.c",
  267. "src/core/ext/transport/chttp2/transport/frame_window_update.c",
  268. "src/core/ext/transport/chttp2/transport/hpack_encoder.c",
  269. "src/core/ext/transport/chttp2/transport/hpack_parser.c",
  270. "src/core/ext/transport/chttp2/transport/hpack_table.c",
  271. "src/core/ext/transport/chttp2/transport/huffsyms.c",
  272. "src/core/ext/transport/chttp2/transport/incoming_metadata.c",
  273. "src/core/ext/transport/chttp2/transport/parsing.c",
  274. "src/core/ext/transport/chttp2/transport/status_conversion.c",
  275. "src/core/ext/transport/chttp2/transport/stream_lists.c",
  276. "src/core/ext/transport/chttp2/transport/stream_map.c",
  277. "src/core/ext/transport/chttp2/transport/timeout_encoding.c",
  278. "src/core/ext/transport/chttp2/transport/varint.c",
  279. "src/core/ext/transport/chttp2/transport/writing.c",
  280. "src/core/lib/channel/channel_args.c",
  281. "src/core/lib/channel/channel_stack.c",
  282. "src/core/lib/channel/channel_stack_builder.c",
  283. "src/core/lib/channel/client_channel.c",
  284. "src/core/lib/channel/compress_filter.c",
  285. "src/core/lib/channel/connected_channel.c",
  286. "src/core/lib/channel/http_client_filter.c",
  287. "src/core/lib/channel/http_server_filter.c",
  288. "src/core/lib/channel/subchannel_call_holder.c",
  289. "src/core/lib/client_config/client_config.c",
  290. "src/core/lib/client_config/connector.c",
  291. "src/core/lib/client_config/default_initial_connect_string.c",
  292. "src/core/lib/client_config/initial_connect_string.c",
  293. "src/core/lib/client_config/lb_policy.c",
  294. "src/core/lib/client_config/lb_policy_factory.c",
  295. "src/core/lib/client_config/lb_policy_registry.c",
  296. "src/core/lib/client_config/resolver.c",
  297. "src/core/lib/client_config/resolver_factory.c",
  298. "src/core/lib/client_config/resolver_registry.c",
  299. "src/core/lib/client_config/resolvers/dns_resolver.c",
  300. "src/core/lib/client_config/resolvers/sockaddr_resolver.c",
  301. "src/core/lib/client_config/subchannel.c",
  302. "src/core/lib/client_config/subchannel_factory.c",
  303. "src/core/lib/client_config/subchannel_index.c",
  304. "src/core/lib/client_config/uri_parser.c",
  305. "src/core/lib/compression/compression_algorithm.c",
  306. "src/core/lib/compression/message_compress.c",
  307. "src/core/lib/debug/trace.c",
  308. "src/core/lib/http/format_request.c",
  309. "src/core/lib/http/httpcli.c",
  310. "src/core/lib/http/httpcli_security_connector.c",
  311. "src/core/lib/http/parser.c",
  312. "src/core/lib/iomgr/closure.c",
  313. "src/core/lib/iomgr/endpoint.c",
  314. "src/core/lib/iomgr/endpoint_pair_posix.c",
  315. "src/core/lib/iomgr/endpoint_pair_windows.c",
  316. "src/core/lib/iomgr/exec_ctx.c",
  317. "src/core/lib/iomgr/executor.c",
  318. "src/core/lib/iomgr/fd_posix.c",
  319. "src/core/lib/iomgr/iocp_windows.c",
  320. "src/core/lib/iomgr/iomgr.c",
  321. "src/core/lib/iomgr/iomgr_posix.c",
  322. "src/core/lib/iomgr/iomgr_windows.c",
  323. "src/core/lib/iomgr/pollset_multipoller_with_epoll.c",
  324. "src/core/lib/iomgr/pollset_multipoller_with_poll_posix.c",
  325. "src/core/lib/iomgr/pollset_posix.c",
  326. "src/core/lib/iomgr/pollset_set_posix.c",
  327. "src/core/lib/iomgr/pollset_set_windows.c",
  328. "src/core/lib/iomgr/pollset_windows.c",
  329. "src/core/lib/iomgr/resolve_address_posix.c",
  330. "src/core/lib/iomgr/resolve_address_windows.c",
  331. "src/core/lib/iomgr/sockaddr_utils.c",
  332. "src/core/lib/iomgr/socket_utils_common_posix.c",
  333. "src/core/lib/iomgr/socket_utils_linux.c",
  334. "src/core/lib/iomgr/socket_utils_posix.c",
  335. "src/core/lib/iomgr/socket_windows.c",
  336. "src/core/lib/iomgr/tcp_client_posix.c",
  337. "src/core/lib/iomgr/tcp_client_windows.c",
  338. "src/core/lib/iomgr/tcp_posix.c",
  339. "src/core/lib/iomgr/tcp_server_posix.c",
  340. "src/core/lib/iomgr/tcp_server_windows.c",
  341. "src/core/lib/iomgr/tcp_windows.c",
  342. "src/core/lib/iomgr/time_averaged_stats.c",
  343. "src/core/lib/iomgr/timer.c",
  344. "src/core/lib/iomgr/timer_heap.c",
  345. "src/core/lib/iomgr/udp_server.c",
  346. "src/core/lib/iomgr/unix_sockets_posix.c",
  347. "src/core/lib/iomgr/unix_sockets_posix_noop.c",
  348. "src/core/lib/iomgr/wakeup_fd_eventfd.c",
  349. "src/core/lib/iomgr/wakeup_fd_nospecial.c",
  350. "src/core/lib/iomgr/wakeup_fd_pipe.c",
  351. "src/core/lib/iomgr/wakeup_fd_posix.c",
  352. "src/core/lib/iomgr/workqueue_posix.c",
  353. "src/core/lib/iomgr/workqueue_windows.c",
  354. "src/core/lib/json/json.c",
  355. "src/core/lib/json/json_reader.c",
  356. "src/core/lib/json/json_string.c",
  357. "src/core/lib/json/json_writer.c",
  358. "src/core/lib/security/b64.c",
  359. "src/core/lib/security/client_auth_filter.c",
  360. "src/core/lib/security/credentials.c",
  361. "src/core/lib/security/credentials_metadata.c",
  362. "src/core/lib/security/credentials_posix.c",
  363. "src/core/lib/security/credentials_win32.c",
  364. "src/core/lib/security/google_default_credentials.c",
  365. "src/core/lib/security/handshake.c",
  366. "src/core/lib/security/json_token.c",
  367. "src/core/lib/security/jwt_verifier.c",
  368. "src/core/lib/security/secure_endpoint.c",
  369. "src/core/lib/security/security_connector.c",
  370. "src/core/lib/security/security_context.c",
  371. "src/core/lib/security/server_auth_filter.c",
  372. "src/core/lib/surface/alarm.c",
  373. "src/core/lib/surface/api_trace.c",
  374. "src/core/lib/surface/byte_buffer.c",
  375. "src/core/lib/surface/byte_buffer_reader.c",
  376. "src/core/lib/surface/call.c",
  377. "src/core/lib/surface/call_details.c",
  378. "src/core/lib/surface/call_log_batch.c",
  379. "src/core/lib/surface/channel.c",
  380. "src/core/lib/surface/channel_connectivity.c",
  381. "src/core/lib/surface/channel_init.c",
  382. "src/core/lib/surface/channel_ping.c",
  383. "src/core/lib/surface/channel_stack_type.c",
  384. "src/core/lib/surface/completion_queue.c",
  385. "src/core/lib/surface/event_string.c",
  386. "src/core/lib/surface/init.c",
  387. "src/core/lib/surface/init_secure.c",
  388. "src/core/lib/surface/lame_client.c",
  389. "src/core/lib/surface/metadata_array.c",
  390. "src/core/lib/surface/server.c",
  391. "src/core/lib/surface/validate_metadata.c",
  392. "src/core/lib/surface/version.c",
  393. "src/core/lib/transport/byte_stream.c",
  394. "src/core/lib/transport/connectivity_state.c",
  395. "src/core/lib/transport/metadata.c",
  396. "src/core/lib/transport/metadata_batch.c",
  397. "src/core/lib/transport/static_metadata.c",
  398. "src/core/lib/transport/transport.c",
  399. "src/core/lib/transport/transport_op_string.c",
  400. "src/core/lib/tsi/fake_transport_security.c",
  401. "src/core/lib/tsi/ssl_transport_security.c",
  402. "src/core/lib/tsi/transport_security.c",
  403. "src/core/plugin_registry/grpc_plugin_registry.c",
  404. "third_party/nanopb/pb_common.c",
  405. "third_party/nanopb/pb_decode.c",
  406. "third_party/nanopb/pb_encode.c",
  407. "third_party/zlib/crc32.h",
  408. "third_party/zlib/deflate.h",
  409. "third_party/zlib/gzguts.h",
  410. "third_party/zlib/inffast.h",
  411. "third_party/zlib/inffixed.h",
  412. "third_party/zlib/inflate.h",
  413. "third_party/zlib/inftrees.h",
  414. "third_party/zlib/trees.h",
  415. "third_party/zlib/zconf.h",
  416. "third_party/zlib/zlib.h",
  417. "third_party/zlib/zutil.h",
  418. "third_party/zlib/adler32.c",
  419. "third_party/zlib/compress.c",
  420. "third_party/zlib/crc32.c",
  421. "third_party/zlib/deflate.c",
  422. "third_party/zlib/gzclose.c",
  423. "third_party/zlib/gzlib.c",
  424. "third_party/zlib/gzread.c",
  425. "third_party/zlib/gzwrite.c",
  426. "third_party/zlib/infback.c",
  427. "third_party/zlib/inffast.c",
  428. "third_party/zlib/inflate.c",
  429. "third_party/zlib/inftrees.c",
  430. "third_party/zlib/trees.c",
  431. "third_party/zlib/uncompr.c",
  432. "third_party/zlib/zutil.c",
  433. "third_party/boringssl/crypto/aes/internal.h",
  434. "third_party/boringssl/crypto/asn1/asn1_locl.h",
  435. "third_party/boringssl/crypto/bio/internal.h",
  436. "third_party/boringssl/crypto/bn/internal.h",
  437. "third_party/boringssl/crypto/bn/rsaz_exp.h",
  438. "third_party/boringssl/crypto/bytestring/internal.h",
  439. "third_party/boringssl/crypto/cipher/internal.h",
  440. "third_party/boringssl/crypto/conf/conf_def.h",
  441. "third_party/boringssl/crypto/conf/internal.h",
  442. "third_party/boringssl/crypto/des/internal.h",
  443. "third_party/boringssl/crypto/dh/internal.h",
  444. "third_party/boringssl/crypto/digest/internal.h",
  445. "third_party/boringssl/crypto/digest/md32_common.h",
  446. "third_party/boringssl/crypto/directory.h",
  447. "third_party/boringssl/crypto/dsa/internal.h",
  448. "third_party/boringssl/crypto/ec/internal.h",
  449. "third_party/boringssl/crypto/ec/p256-x86_64-table.h",
  450. "third_party/boringssl/crypto/evp/internal.h",
  451. "third_party/boringssl/crypto/internal.h",
  452. "third_party/boringssl/crypto/modes/internal.h",
  453. "third_party/boringssl/crypto/obj/obj_dat.h",
  454. "third_party/boringssl/crypto/obj/obj_xref.h",
  455. "third_party/boringssl/crypto/pkcs8/internal.h",
  456. "third_party/boringssl/crypto/rand/internal.h",
  457. "third_party/boringssl/crypto/rsa/internal.h",
  458. "third_party/boringssl/crypto/test/scoped_types.h",
  459. "third_party/boringssl/crypto/test/test_util.h",
  460. "third_party/boringssl/crypto/x509/charmap.h",
  461. "third_party/boringssl/crypto/x509/vpm_int.h",
  462. "third_party/boringssl/crypto/x509v3/ext_dat.h",
  463. "third_party/boringssl/crypto/x509v3/pcy_int.h",
  464. "third_party/boringssl/include/openssl/aead.h",
  465. "third_party/boringssl/include/openssl/aes.h",
  466. "third_party/boringssl/include/openssl/arm_arch.h",
  467. "third_party/boringssl/include/openssl/asn1.h",
  468. "third_party/boringssl/include/openssl/asn1_mac.h",
  469. "third_party/boringssl/include/openssl/asn1t.h",
  470. "third_party/boringssl/include/openssl/base.h",
  471. "third_party/boringssl/include/openssl/base64.h",
  472. "third_party/boringssl/include/openssl/bio.h",
  473. "third_party/boringssl/include/openssl/blowfish.h",
  474. "third_party/boringssl/include/openssl/bn.h",
  475. "third_party/boringssl/include/openssl/buf.h",
  476. "third_party/boringssl/include/openssl/buffer.h",
  477. "third_party/boringssl/include/openssl/bytestring.h",
  478. "third_party/boringssl/include/openssl/cast.h",
  479. "third_party/boringssl/include/openssl/chacha.h",
  480. "third_party/boringssl/include/openssl/cipher.h",
  481. "third_party/boringssl/include/openssl/cmac.h",
  482. "third_party/boringssl/include/openssl/conf.h",
  483. "third_party/boringssl/include/openssl/cpu.h",
  484. "third_party/boringssl/include/openssl/crypto.h",
  485. "third_party/boringssl/include/openssl/curve25519.h",
  486. "third_party/boringssl/include/openssl/des.h",
  487. "third_party/boringssl/include/openssl/dh.h",
  488. "third_party/boringssl/include/openssl/digest.h",
  489. "third_party/boringssl/include/openssl/dsa.h",
  490. "third_party/boringssl/include/openssl/dtls1.h",
  491. "third_party/boringssl/include/openssl/ec.h",
  492. "third_party/boringssl/include/openssl/ec_key.h",
  493. "third_party/boringssl/include/openssl/ecdh.h",
  494. "third_party/boringssl/include/openssl/ecdsa.h",
  495. "third_party/boringssl/include/openssl/engine.h",
  496. "third_party/boringssl/include/openssl/err.h",
  497. "third_party/boringssl/include/openssl/evp.h",
  498. "third_party/boringssl/include/openssl/ex_data.h",
  499. "third_party/boringssl/include/openssl/hkdf.h",
  500. "third_party/boringssl/include/openssl/hmac.h",
  501. "third_party/boringssl/include/openssl/lhash.h",
  502. "third_party/boringssl/include/openssl/lhash_macros.h",
  503. "third_party/boringssl/include/openssl/md4.h",
  504. "third_party/boringssl/include/openssl/md5.h",
  505. "third_party/boringssl/include/openssl/mem.h",
  506. "third_party/boringssl/include/openssl/obj.h",
  507. "third_party/boringssl/include/openssl/obj_mac.h",
  508. "third_party/boringssl/include/openssl/objects.h",
  509. "third_party/boringssl/include/openssl/opensslfeatures.h",
  510. "third_party/boringssl/include/openssl/opensslv.h",
  511. "third_party/boringssl/include/openssl/ossl_typ.h",
  512. "third_party/boringssl/include/openssl/pem.h",
  513. "third_party/boringssl/include/openssl/pkcs12.h",
  514. "third_party/boringssl/include/openssl/pkcs7.h",
  515. "third_party/boringssl/include/openssl/pkcs8.h",
  516. "third_party/boringssl/include/openssl/poly1305.h",
  517. "third_party/boringssl/include/openssl/pqueue.h",
  518. "third_party/boringssl/include/openssl/rand.h",
  519. "third_party/boringssl/include/openssl/rc4.h",
  520. "third_party/boringssl/include/openssl/rsa.h",
  521. "third_party/boringssl/include/openssl/safestack.h",
  522. "third_party/boringssl/include/openssl/sha.h",
  523. "third_party/boringssl/include/openssl/srtp.h",
  524. "third_party/boringssl/include/openssl/ssl.h",
  525. "third_party/boringssl/include/openssl/ssl3.h",
  526. "third_party/boringssl/include/openssl/stack.h",
  527. "third_party/boringssl/include/openssl/stack_macros.h",
  528. "third_party/boringssl/include/openssl/thread.h",
  529. "third_party/boringssl/include/openssl/time_support.h",
  530. "third_party/boringssl/include/openssl/tls1.h",
  531. "third_party/boringssl/include/openssl/type_check.h",
  532. "third_party/boringssl/include/openssl/x509.h",
  533. "third_party/boringssl/include/openssl/x509_vfy.h",
  534. "third_party/boringssl/include/openssl/x509v3.h",
  535. "third_party/boringssl/ssl/internal.h",
  536. "third_party/boringssl/ssl/test/async_bio.h",
  537. "third_party/boringssl/ssl/test/packeted_bio.h",
  538. "third_party/boringssl/ssl/test/scoped_types.h",
  539. "third_party/boringssl/ssl/test/test_config.h",
  540. "src/boringssl/err_data.c",
  541. "third_party/boringssl/crypto/aes/aes.c",
  542. "third_party/boringssl/crypto/aes/mode_wrappers.c",
  543. "third_party/boringssl/crypto/asn1/a_bitstr.c",
  544. "third_party/boringssl/crypto/asn1/a_bool.c",
  545. "third_party/boringssl/crypto/asn1/a_bytes.c",
  546. "third_party/boringssl/crypto/asn1/a_d2i_fp.c",
  547. "third_party/boringssl/crypto/asn1/a_dup.c",
  548. "third_party/boringssl/crypto/asn1/a_enum.c",
  549. "third_party/boringssl/crypto/asn1/a_gentm.c",
  550. "third_party/boringssl/crypto/asn1/a_i2d_fp.c",
  551. "third_party/boringssl/crypto/asn1/a_int.c",
  552. "third_party/boringssl/crypto/asn1/a_mbstr.c",
  553. "third_party/boringssl/crypto/asn1/a_object.c",
  554. "third_party/boringssl/crypto/asn1/a_octet.c",
  555. "third_party/boringssl/crypto/asn1/a_print.c",
  556. "third_party/boringssl/crypto/asn1/a_strnid.c",
  557. "third_party/boringssl/crypto/asn1/a_time.c",
  558. "third_party/boringssl/crypto/asn1/a_type.c",
  559. "third_party/boringssl/crypto/asn1/a_utctm.c",
  560. "third_party/boringssl/crypto/asn1/a_utf8.c",
  561. "third_party/boringssl/crypto/asn1/asn1_lib.c",
  562. "third_party/boringssl/crypto/asn1/asn1_par.c",
  563. "third_party/boringssl/crypto/asn1/asn_pack.c",
  564. "third_party/boringssl/crypto/asn1/bio_asn1.c",
  565. "third_party/boringssl/crypto/asn1/bio_ndef.c",
  566. "third_party/boringssl/crypto/asn1/f_enum.c",
  567. "third_party/boringssl/crypto/asn1/f_int.c",
  568. "third_party/boringssl/crypto/asn1/f_string.c",
  569. "third_party/boringssl/crypto/asn1/t_bitst.c",
  570. "third_party/boringssl/crypto/asn1/t_pkey.c",
  571. "third_party/boringssl/crypto/asn1/tasn_dec.c",
  572. "third_party/boringssl/crypto/asn1/tasn_enc.c",
  573. "third_party/boringssl/crypto/asn1/tasn_fre.c",
  574. "third_party/boringssl/crypto/asn1/tasn_new.c",
  575. "third_party/boringssl/crypto/asn1/tasn_prn.c",
  576. "third_party/boringssl/crypto/asn1/tasn_typ.c",
  577. "third_party/boringssl/crypto/asn1/tasn_utl.c",
  578. "third_party/boringssl/crypto/asn1/x_bignum.c",
  579. "third_party/boringssl/crypto/asn1/x_long.c",
  580. "third_party/boringssl/crypto/base64/base64.c",
  581. "third_party/boringssl/crypto/bio/bio.c",
  582. "third_party/boringssl/crypto/bio/bio_mem.c",
  583. "third_party/boringssl/crypto/bio/buffer.c",
  584. "third_party/boringssl/crypto/bio/connect.c",
  585. "third_party/boringssl/crypto/bio/fd.c",
  586. "third_party/boringssl/crypto/bio/file.c",
  587. "third_party/boringssl/crypto/bio/hexdump.c",
  588. "third_party/boringssl/crypto/bio/pair.c",
  589. "third_party/boringssl/crypto/bio/printf.c",
  590. "third_party/boringssl/crypto/bio/socket.c",
  591. "third_party/boringssl/crypto/bio/socket_helper.c",
  592. "third_party/boringssl/crypto/bn/add.c",
  593. "third_party/boringssl/crypto/bn/asm/x86_64-gcc.c",
  594. "third_party/boringssl/crypto/bn/bn.c",
  595. "third_party/boringssl/crypto/bn/bn_asn1.c",
  596. "third_party/boringssl/crypto/bn/cmp.c",
  597. "third_party/boringssl/crypto/bn/convert.c",
  598. "third_party/boringssl/crypto/bn/ctx.c",
  599. "third_party/boringssl/crypto/bn/div.c",
  600. "third_party/boringssl/crypto/bn/exponentiation.c",
  601. "third_party/boringssl/crypto/bn/gcd.c",
  602. "third_party/boringssl/crypto/bn/generic.c",
  603. "third_party/boringssl/crypto/bn/kronecker.c",
  604. "third_party/boringssl/crypto/bn/montgomery.c",
  605. "third_party/boringssl/crypto/bn/mul.c",
  606. "third_party/boringssl/crypto/bn/prime.c",
  607. "third_party/boringssl/crypto/bn/random.c",
  608. "third_party/boringssl/crypto/bn/rsaz_exp.c",
  609. "third_party/boringssl/crypto/bn/shift.c",
  610. "third_party/boringssl/crypto/bn/sqrt.c",
  611. "third_party/boringssl/crypto/buf/buf.c",
  612. "third_party/boringssl/crypto/bytestring/ber.c",
  613. "third_party/boringssl/crypto/bytestring/cbb.c",
  614. "third_party/boringssl/crypto/bytestring/cbs.c",
  615. "third_party/boringssl/crypto/chacha/chacha_generic.c",
  616. "third_party/boringssl/crypto/chacha/chacha_vec.c",
  617. "third_party/boringssl/crypto/cipher/aead.c",
  618. "third_party/boringssl/crypto/cipher/cipher.c",
  619. "third_party/boringssl/crypto/cipher/derive_key.c",
  620. "third_party/boringssl/crypto/cipher/e_aes.c",
  621. "third_party/boringssl/crypto/cipher/e_chacha20poly1305.c",
  622. "third_party/boringssl/crypto/cipher/e_des.c",
  623. "third_party/boringssl/crypto/cipher/e_null.c",
  624. "third_party/boringssl/crypto/cipher/e_rc2.c",
  625. "third_party/boringssl/crypto/cipher/e_rc4.c",
  626. "third_party/boringssl/crypto/cipher/e_ssl3.c",
  627. "third_party/boringssl/crypto/cipher/e_tls.c",
  628. "third_party/boringssl/crypto/cipher/tls_cbc.c",
  629. "third_party/boringssl/crypto/cmac/cmac.c",
  630. "third_party/boringssl/crypto/conf/conf.c",
  631. "third_party/boringssl/crypto/cpu-arm.c",
  632. "third_party/boringssl/crypto/cpu-intel.c",
  633. "third_party/boringssl/crypto/crypto.c",
  634. "third_party/boringssl/crypto/curve25519/curve25519.c",
  635. "third_party/boringssl/crypto/des/des.c",
  636. "third_party/boringssl/crypto/dh/check.c",
  637. "third_party/boringssl/crypto/dh/dh.c",
  638. "third_party/boringssl/crypto/dh/dh_asn1.c",
  639. "third_party/boringssl/crypto/dh/params.c",
  640. "third_party/boringssl/crypto/digest/digest.c",
  641. "third_party/boringssl/crypto/digest/digests.c",
  642. "third_party/boringssl/crypto/directory_posix.c",
  643. "third_party/boringssl/crypto/directory_win.c",
  644. "third_party/boringssl/crypto/dsa/dsa.c",
  645. "third_party/boringssl/crypto/dsa/dsa_asn1.c",
  646. "third_party/boringssl/crypto/ec/ec.c",
  647. "third_party/boringssl/crypto/ec/ec_asn1.c",
  648. "third_party/boringssl/crypto/ec/ec_key.c",
  649. "third_party/boringssl/crypto/ec/ec_montgomery.c",
  650. "third_party/boringssl/crypto/ec/oct.c",
  651. "third_party/boringssl/crypto/ec/p224-64.c",
  652. "third_party/boringssl/crypto/ec/p256-64.c",
  653. "third_party/boringssl/crypto/ec/p256-x86_64.c",
  654. "third_party/boringssl/crypto/ec/simple.c",
  655. "third_party/boringssl/crypto/ec/util-64.c",
  656. "third_party/boringssl/crypto/ec/wnaf.c",
  657. "third_party/boringssl/crypto/ecdh/ecdh.c",
  658. "third_party/boringssl/crypto/ecdsa/ecdsa.c",
  659. "third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c",
  660. "third_party/boringssl/crypto/engine/engine.c",
  661. "third_party/boringssl/crypto/err/err.c",
  662. "third_party/boringssl/crypto/evp/algorithm.c",
  663. "third_party/boringssl/crypto/evp/digestsign.c",
  664. "third_party/boringssl/crypto/evp/evp.c",
  665. "third_party/boringssl/crypto/evp/evp_asn1.c",
  666. "third_party/boringssl/crypto/evp/evp_ctx.c",
  667. "third_party/boringssl/crypto/evp/p_dsa_asn1.c",
  668. "third_party/boringssl/crypto/evp/p_ec.c",
  669. "third_party/boringssl/crypto/evp/p_ec_asn1.c",
  670. "third_party/boringssl/crypto/evp/p_rsa.c",
  671. "third_party/boringssl/crypto/evp/p_rsa_asn1.c",
  672. "third_party/boringssl/crypto/evp/pbkdf.c",
  673. "third_party/boringssl/crypto/evp/sign.c",
  674. "third_party/boringssl/crypto/ex_data.c",
  675. "third_party/boringssl/crypto/hkdf/hkdf.c",
  676. "third_party/boringssl/crypto/hmac/hmac.c",
  677. "third_party/boringssl/crypto/lhash/lhash.c",
  678. "third_party/boringssl/crypto/md4/md4.c",
  679. "third_party/boringssl/crypto/md5/md5.c",
  680. "third_party/boringssl/crypto/mem.c",
  681. "third_party/boringssl/crypto/modes/cbc.c",
  682. "third_party/boringssl/crypto/modes/cfb.c",
  683. "third_party/boringssl/crypto/modes/ctr.c",
  684. "third_party/boringssl/crypto/modes/gcm.c",
  685. "third_party/boringssl/crypto/modes/ofb.c",
  686. "third_party/boringssl/crypto/obj/obj.c",
  687. "third_party/boringssl/crypto/obj/obj_xref.c",
  688. "third_party/boringssl/crypto/pem/pem_all.c",
  689. "third_party/boringssl/crypto/pem/pem_info.c",
  690. "third_party/boringssl/crypto/pem/pem_lib.c",
  691. "third_party/boringssl/crypto/pem/pem_oth.c",
  692. "third_party/boringssl/crypto/pem/pem_pk8.c",
  693. "third_party/boringssl/crypto/pem/pem_pkey.c",
  694. "third_party/boringssl/crypto/pem/pem_x509.c",
  695. "third_party/boringssl/crypto/pem/pem_xaux.c",
  696. "third_party/boringssl/crypto/pkcs8/p5_pbe.c",
  697. "third_party/boringssl/crypto/pkcs8/p5_pbev2.c",
  698. "third_party/boringssl/crypto/pkcs8/p8_pkey.c",
  699. "third_party/boringssl/crypto/pkcs8/pkcs8.c",
  700. "third_party/boringssl/crypto/poly1305/poly1305.c",
  701. "third_party/boringssl/crypto/poly1305/poly1305_arm.c",
  702. "third_party/boringssl/crypto/poly1305/poly1305_vec.c",
  703. "third_party/boringssl/crypto/rand/rand.c",
  704. "third_party/boringssl/crypto/rand/urandom.c",
  705. "third_party/boringssl/crypto/rand/windows.c",
  706. "third_party/boringssl/crypto/rc4/rc4.c",
  707. "third_party/boringssl/crypto/refcount_c11.c",
  708. "third_party/boringssl/crypto/refcount_lock.c",
  709. "third_party/boringssl/crypto/rsa/blinding.c",
  710. "third_party/boringssl/crypto/rsa/padding.c",
  711. "third_party/boringssl/crypto/rsa/rsa.c",
  712. "third_party/boringssl/crypto/rsa/rsa_asn1.c",
  713. "third_party/boringssl/crypto/rsa/rsa_impl.c",
  714. "third_party/boringssl/crypto/sha/sha1.c",
  715. "third_party/boringssl/crypto/sha/sha256.c",
  716. "third_party/boringssl/crypto/sha/sha512.c",
  717. "third_party/boringssl/crypto/stack/stack.c",
  718. "third_party/boringssl/crypto/thread.c",
  719. "third_party/boringssl/crypto/thread_none.c",
  720. "third_party/boringssl/crypto/thread_pthread.c",
  721. "third_party/boringssl/crypto/thread_win.c",
  722. "third_party/boringssl/crypto/time_support.c",
  723. "third_party/boringssl/crypto/x509/a_digest.c",
  724. "third_party/boringssl/crypto/x509/a_sign.c",
  725. "third_party/boringssl/crypto/x509/a_strex.c",
  726. "third_party/boringssl/crypto/x509/a_verify.c",
  727. "third_party/boringssl/crypto/x509/asn1_gen.c",
  728. "third_party/boringssl/crypto/x509/by_dir.c",
  729. "third_party/boringssl/crypto/x509/by_file.c",
  730. "third_party/boringssl/crypto/x509/i2d_pr.c",
  731. "third_party/boringssl/crypto/x509/pkcs7.c",
  732. "third_party/boringssl/crypto/x509/t_crl.c",
  733. "third_party/boringssl/crypto/x509/t_req.c",
  734. "third_party/boringssl/crypto/x509/t_x509.c",
  735. "third_party/boringssl/crypto/x509/t_x509a.c",
  736. "third_party/boringssl/crypto/x509/x509.c",
  737. "third_party/boringssl/crypto/x509/x509_att.c",
  738. "third_party/boringssl/crypto/x509/x509_cmp.c",
  739. "third_party/boringssl/crypto/x509/x509_d2.c",
  740. "third_party/boringssl/crypto/x509/x509_def.c",
  741. "third_party/boringssl/crypto/x509/x509_ext.c",
  742. "third_party/boringssl/crypto/x509/x509_lu.c",
  743. "third_party/boringssl/crypto/x509/x509_obj.c",
  744. "third_party/boringssl/crypto/x509/x509_r2x.c",
  745. "third_party/boringssl/crypto/x509/x509_req.c",
  746. "third_party/boringssl/crypto/x509/x509_set.c",
  747. "third_party/boringssl/crypto/x509/x509_trs.c",
  748. "third_party/boringssl/crypto/x509/x509_txt.c",
  749. "third_party/boringssl/crypto/x509/x509_v3.c",
  750. "third_party/boringssl/crypto/x509/x509_vfy.c",
  751. "third_party/boringssl/crypto/x509/x509_vpm.c",
  752. "third_party/boringssl/crypto/x509/x509cset.c",
  753. "third_party/boringssl/crypto/x509/x509name.c",
  754. "third_party/boringssl/crypto/x509/x509rset.c",
  755. "third_party/boringssl/crypto/x509/x509spki.c",
  756. "third_party/boringssl/crypto/x509/x509type.c",
  757. "third_party/boringssl/crypto/x509/x_algor.c",
  758. "third_party/boringssl/crypto/x509/x_all.c",
  759. "third_party/boringssl/crypto/x509/x_attrib.c",
  760. "third_party/boringssl/crypto/x509/x_crl.c",
  761. "third_party/boringssl/crypto/x509/x_exten.c",
  762. "third_party/boringssl/crypto/x509/x_info.c",
  763. "third_party/boringssl/crypto/x509/x_name.c",
  764. "third_party/boringssl/crypto/x509/x_pkey.c",
  765. "third_party/boringssl/crypto/x509/x_pubkey.c",
  766. "third_party/boringssl/crypto/x509/x_req.c",
  767. "third_party/boringssl/crypto/x509/x_sig.c",
  768. "third_party/boringssl/crypto/x509/x_spki.c",
  769. "third_party/boringssl/crypto/x509/x_val.c",
  770. "third_party/boringssl/crypto/x509/x_x509.c",
  771. "third_party/boringssl/crypto/x509/x_x509a.c",
  772. "third_party/boringssl/crypto/x509v3/pcy_cache.c",
  773. "third_party/boringssl/crypto/x509v3/pcy_data.c",
  774. "third_party/boringssl/crypto/x509v3/pcy_lib.c",
  775. "third_party/boringssl/crypto/x509v3/pcy_map.c",
  776. "third_party/boringssl/crypto/x509v3/pcy_node.c",
  777. "third_party/boringssl/crypto/x509v3/pcy_tree.c",
  778. "third_party/boringssl/crypto/x509v3/v3_akey.c",
  779. "third_party/boringssl/crypto/x509v3/v3_akeya.c",
  780. "third_party/boringssl/crypto/x509v3/v3_alt.c",
  781. "third_party/boringssl/crypto/x509v3/v3_bcons.c",
  782. "third_party/boringssl/crypto/x509v3/v3_bitst.c",
  783. "third_party/boringssl/crypto/x509v3/v3_conf.c",
  784. "third_party/boringssl/crypto/x509v3/v3_cpols.c",
  785. "third_party/boringssl/crypto/x509v3/v3_crld.c",
  786. "third_party/boringssl/crypto/x509v3/v3_enum.c",
  787. "third_party/boringssl/crypto/x509v3/v3_extku.c",
  788. "third_party/boringssl/crypto/x509v3/v3_genn.c",
  789. "third_party/boringssl/crypto/x509v3/v3_ia5.c",
  790. "third_party/boringssl/crypto/x509v3/v3_info.c",
  791. "third_party/boringssl/crypto/x509v3/v3_int.c",
  792. "third_party/boringssl/crypto/x509v3/v3_lib.c",
  793. "third_party/boringssl/crypto/x509v3/v3_ncons.c",
  794. "third_party/boringssl/crypto/x509v3/v3_pci.c",
  795. "third_party/boringssl/crypto/x509v3/v3_pcia.c",
  796. "third_party/boringssl/crypto/x509v3/v3_pcons.c",
  797. "third_party/boringssl/crypto/x509v3/v3_pku.c",
  798. "third_party/boringssl/crypto/x509v3/v3_pmaps.c",
  799. "third_party/boringssl/crypto/x509v3/v3_prn.c",
  800. "third_party/boringssl/crypto/x509v3/v3_purp.c",
  801. "third_party/boringssl/crypto/x509v3/v3_skey.c",
  802. "third_party/boringssl/crypto/x509v3/v3_sxnet.c",
  803. "third_party/boringssl/crypto/x509v3/v3_utl.c",
  804. "third_party/boringssl/ssl/custom_extensions.c",
  805. "third_party/boringssl/ssl/d1_both.c",
  806. "third_party/boringssl/ssl/d1_clnt.c",
  807. "third_party/boringssl/ssl/d1_lib.c",
  808. "third_party/boringssl/ssl/d1_meth.c",
  809. "third_party/boringssl/ssl/d1_pkt.c",
  810. "third_party/boringssl/ssl/d1_srtp.c",
  811. "third_party/boringssl/ssl/d1_srvr.c",
  812. "third_party/boringssl/ssl/dtls_record.c",
  813. "third_party/boringssl/ssl/pqueue/pqueue.c",
  814. "third_party/boringssl/ssl/s3_both.c",
  815. "third_party/boringssl/ssl/s3_clnt.c",
  816. "third_party/boringssl/ssl/s3_enc.c",
  817. "third_party/boringssl/ssl/s3_lib.c",
  818. "third_party/boringssl/ssl/s3_meth.c",
  819. "third_party/boringssl/ssl/s3_pkt.c",
  820. "third_party/boringssl/ssl/s3_srvr.c",
  821. "third_party/boringssl/ssl/ssl_aead_ctx.c",
  822. "third_party/boringssl/ssl/ssl_asn1.c",
  823. "third_party/boringssl/ssl/ssl_buffer.c",
  824. "third_party/boringssl/ssl/ssl_cert.c",
  825. "third_party/boringssl/ssl/ssl_cipher.c",
  826. "third_party/boringssl/ssl/ssl_file.c",
  827. "third_party/boringssl/ssl/ssl_lib.c",
  828. "third_party/boringssl/ssl/ssl_rsa.c",
  829. "third_party/boringssl/ssl/ssl_session.c",
  830. "third_party/boringssl/ssl/ssl_stat.c",
  831. "third_party/boringssl/ssl/t1_enc.c",
  832. "third_party/boringssl/ssl/t1_lib.c",
  833. "third_party/boringssl/ssl/tls_record.c",
  834. "include/grpc/impl/codegen/alloc.h",
  835. "include/grpc/impl/codegen/atm.h",
  836. "include/grpc/impl/codegen/atm_gcc_atomic.h",
  837. "include/grpc/impl/codegen/atm_gcc_sync.h",
  838. "include/grpc/impl/codegen/atm_win32.h",
  839. "include/grpc/impl/codegen/log.h",
  840. "include/grpc/impl/codegen/port_platform.h",
  841. "include/grpc/impl/codegen/slice.h",
  842. "include/grpc/impl/codegen/slice_buffer.h",
  843. "include/grpc/impl/codegen/sync.h",
  844. "include/grpc/impl/codegen/sync_generic.h",
  845. "include/grpc/impl/codegen/sync_posix.h",
  846. "include/grpc/impl/codegen/sync_win32.h",
  847. "include/grpc/impl/codegen/time.h",
  848. "include/grpc/support/alloc.h",
  849. "include/grpc/support/atm.h",
  850. "include/grpc/support/atm_gcc_atomic.h",
  851. "include/grpc/support/atm_gcc_sync.h",
  852. "include/grpc/support/atm_win32.h",
  853. "include/grpc/support/avl.h",
  854. "include/grpc/support/cmdline.h",
  855. "include/grpc/support/cpu.h",
  856. "include/grpc/support/histogram.h",
  857. "include/grpc/support/host_port.h",
  858. "include/grpc/support/log.h",
  859. "include/grpc/support/log_win32.h",
  860. "include/grpc/support/port_platform.h",
  861. "include/grpc/support/slice.h",
  862. "include/grpc/support/slice_buffer.h",
  863. "include/grpc/support/string_util.h",
  864. "include/grpc/support/subprocess.h",
  865. "include/grpc/support/sync.h",
  866. "include/grpc/support/sync_generic.h",
  867. "include/grpc/support/sync_posix.h",
  868. "include/grpc/support/sync_win32.h",
  869. "include/grpc/support/thd.h",
  870. "include/grpc/support/time.h",
  871. "include/grpc/support/tls.h",
  872. "include/grpc/support/tls_gcc.h",
  873. "include/grpc/support/tls_msvc.h",
  874. "include/grpc/support/tls_pthread.h",
  875. "include/grpc/support/useful.h",
  876. "src/core/lib/profiling/timers.h",
  877. "src/core/lib/support/backoff.h",
  878. "src/core/lib/support/block_annotate.h",
  879. "src/core/lib/support/env.h",
  880. "src/core/lib/support/load_file.h",
  881. "src/core/lib/support/murmur_hash.h",
  882. "src/core/lib/support/stack_lockfree.h",
  883. "src/core/lib/support/string.h",
  884. "src/core/lib/support/string_win32.h",
  885. "src/core/lib/support/thd_internal.h",
  886. "src/core/lib/support/time_precise.h",
  887. "src/core/lib/support/tmpfile.h",
  888. "src/core/lib/profiling/basic_timers.c",
  889. "src/core/lib/profiling/stap_timers.c",
  890. "src/core/lib/support/alloc.c",
  891. "src/core/lib/support/avl.c",
  892. "src/core/lib/support/backoff.c",
  893. "src/core/lib/support/cmdline.c",
  894. "src/core/lib/support/cpu_iphone.c",
  895. "src/core/lib/support/cpu_linux.c",
  896. "src/core/lib/support/cpu_posix.c",
  897. "src/core/lib/support/cpu_windows.c",
  898. "src/core/lib/support/env_linux.c",
  899. "src/core/lib/support/env_posix.c",
  900. "src/core/lib/support/env_win32.c",
  901. "src/core/lib/support/histogram.c",
  902. "src/core/lib/support/host_port.c",
  903. "src/core/lib/support/load_file.c",
  904. "src/core/lib/support/log.c",
  905. "src/core/lib/support/log_android.c",
  906. "src/core/lib/support/log_linux.c",
  907. "src/core/lib/support/log_posix.c",
  908. "src/core/lib/support/log_win32.c",
  909. "src/core/lib/support/murmur_hash.c",
  910. "src/core/lib/support/slice.c",
  911. "src/core/lib/support/slice_buffer.c",
  912. "src/core/lib/support/stack_lockfree.c",
  913. "src/core/lib/support/string.c",
  914. "src/core/lib/support/string_posix.c",
  915. "src/core/lib/support/string_win32.c",
  916. "src/core/lib/support/subprocess_posix.c",
  917. "src/core/lib/support/subprocess_windows.c",
  918. "src/core/lib/support/sync.c",
  919. "src/core/lib/support/sync_posix.c",
  920. "src/core/lib/support/sync_win32.c",
  921. "src/core/lib/support/thd.c",
  922. "src/core/lib/support/thd_posix.c",
  923. "src/core/lib/support/thd_win32.c",
  924. "src/core/lib/support/time.c",
  925. "src/core/lib/support/time_posix.c",
  926. "src/core/lib/support/time_precise.c",
  927. "src/core/lib/support/time_win32.c",
  928. "src/core/lib/support/tls_pthread.c",
  929. "src/core/lib/support/tmpfile_posix.c",
  930. "src/core/lib/support/tmpfile_win32.c",
  931. "src/core/lib/support/wrap_memcpy.c",
  932. "binding.gyp"
  933. ],
  934. "main": "src/node/index.js",
  935. "license": "BSD-3-Clause"
  936. }