build.json 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518
  1. {
  2. "settings": {
  3. "#": "The public version number of the library.",
  4. "version": {
  5. "major": 0,
  6. "minor": 8,
  7. "micro": 0,
  8. "build": 0
  9. }
  10. },
  11. "filegroups": [
  12. {
  13. "name": "grpc_base",
  14. "src": [
  15. "src/core/channel/call_op_string.c",
  16. "src/core/channel/census_filter.c",
  17. "src/core/channel/channel_args.c",
  18. "src/core/channel/channel_stack.c",
  19. "src/core/channel/child_channel.c",
  20. "src/core/channel/client_channel.c",
  21. "src/core/channel/client_setup.c",
  22. "src/core/channel/connected_channel.c",
  23. "src/core/channel/http_client_filter.c",
  24. "src/core/channel/http_filter.c",
  25. "src/core/channel/http_server_filter.c",
  26. "src/core/channel/metadata_buffer.c",
  27. "src/core/channel/noop_filter.c",
  28. "src/core/compression/algorithm.c",
  29. "src/core/compression/message_compress.c",
  30. "src/core/httpcli/format_request.c",
  31. "src/core/httpcli/httpcli.c",
  32. "src/core/httpcli/httpcli_security_context.c",
  33. "src/core/httpcli/parser.c",
  34. "src/core/iomgr/alarm.c",
  35. "src/core/iomgr/alarm_heap.c",
  36. "src/core/iomgr/endpoint.c",
  37. "src/core/iomgr/endpoint_pair_posix.c",
  38. "src/core/iomgr/fd_posix.c",
  39. "src/core/iomgr/iomgr.c",
  40. "src/core/iomgr/iomgr_posix.c",
  41. "src/core/iomgr/pollset_kick_posix.c",
  42. "src/core/iomgr/pollset_multipoller_with_poll_posix.c",
  43. "src/core/iomgr/pollset_posix.c",
  44. "src/core/iomgr/resolve_address_posix.c",
  45. "src/core/iomgr/sockaddr_utils.c",
  46. "src/core/iomgr/socket_utils_common_posix.c",
  47. "src/core/iomgr/socket_utils_linux.c",
  48. "src/core/iomgr/socket_utils_posix.c",
  49. "src/core/iomgr/tcp_client_posix.c",
  50. "src/core/iomgr/tcp_posix.c",
  51. "src/core/iomgr/tcp_server_posix.c",
  52. "src/core/iomgr/time_averaged_stats.c",
  53. "src/core/statistics/census_init.c",
  54. "src/core/statistics/census_log.c",
  55. "src/core/statistics/census_rpc_stats.c",
  56. "src/core/statistics/census_tracing.c",
  57. "src/core/statistics/hash_table.c",
  58. "src/core/statistics/window_stats.c",
  59. "src/core/surface/byte_buffer.c",
  60. "src/core/surface/byte_buffer_reader.c",
  61. "src/core/surface/call.c",
  62. "src/core/surface/channel.c",
  63. "src/core/surface/channel_create.c",
  64. "src/core/surface/client.c",
  65. "src/core/surface/completion_queue.c",
  66. "src/core/surface/event_string.c",
  67. "src/core/surface/init.c",
  68. "src/core/surface/lame_client.c",
  69. "src/core/surface/secure_channel_create.c",
  70. "src/core/surface/secure_server_create.c",
  71. "src/core/surface/server.c",
  72. "src/core/surface/server_chttp2.c",
  73. "src/core/surface/server_create.c",
  74. "src/core/transport/chttp2/alpn.c",
  75. "src/core/transport/chttp2/bin_encoder.c",
  76. "src/core/transport/chttp2/frame_data.c",
  77. "src/core/transport/chttp2/frame_goaway.c",
  78. "src/core/transport/chttp2/frame_ping.c",
  79. "src/core/transport/chttp2/frame_rst_stream.c",
  80. "src/core/transport/chttp2/frame_settings.c",
  81. "src/core/transport/chttp2/frame_window_update.c",
  82. "src/core/transport/chttp2/hpack_parser.c",
  83. "src/core/transport/chttp2/hpack_table.c",
  84. "src/core/transport/chttp2/huffsyms.c",
  85. "src/core/transport/chttp2/status_conversion.c",
  86. "src/core/transport/chttp2/stream_encoder.c",
  87. "src/core/transport/chttp2/stream_map.c",
  88. "src/core/transport/chttp2/timeout_encoding.c",
  89. "src/core/transport/chttp2/varint.c",
  90. "src/core/transport/chttp2_transport.c",
  91. "src/core/transport/metadata.c",
  92. "src/core/transport/stream_op.c",
  93. "src/core/transport/transport.c",
  94. "third_party/cJSON/cJSON.c"
  95. ],
  96. "public_headers": [
  97. "include/grpc/byte_buffer.h",
  98. "include/grpc/byte_buffer_reader.h",
  99. "include/grpc/grpc.h",
  100. "include/grpc/status.h"
  101. ],
  102. "headers": [
  103. "src/core/channel/census_filter.h",
  104. "src/core/channel/channel_args.h",
  105. "src/core/channel/channel_stack.h",
  106. "src/core/channel/child_channel.h",
  107. "src/core/channel/client_channel.h",
  108. "src/core/channel/client_setup.h",
  109. "src/core/channel/connected_channel.h",
  110. "src/core/channel/http_client_filter.h",
  111. "src/core/channel/http_filter.h",
  112. "src/core/channel/http_server_filter.h",
  113. "src/core/channel/metadata_buffer.h",
  114. "src/core/channel/noop_filter.h",
  115. "src/core/compression/algorithm.h",
  116. "src/core/compression/message_compress.h",
  117. "src/core/httpcli/format_request.h",
  118. "src/core/httpcli/httpcli.h",
  119. "src/core/httpcli/httpcli_security_context.h",
  120. "src/core/httpcli/parser.h",
  121. "src/core/iomgr/alarm.h",
  122. "src/core/iomgr/alarm_heap.h",
  123. "src/core/iomgr/alarm_internal.h",
  124. "src/core/iomgr/endpoint.h",
  125. "src/core/iomgr/endpoint_pair.h",
  126. "src/core/iomgr/fd_posix.h",
  127. "src/core/iomgr/iomgr.h",
  128. "src/core/iomgr/iomgr_internal.h",
  129. "src/core/iomgr/iomgr_posix.h",
  130. "src/core/iomgr/pollset_kick.h",
  131. "src/core/iomgr/pollset_kick_posix.h",
  132. "src/core/iomgr/pollset.h",
  133. "src/core/iomgr/pollset_posix.h",
  134. "src/core/iomgr/resolve_address.h",
  135. "src/core/iomgr/sockaddr.h",
  136. "src/core/iomgr/sockaddr_posix.h",
  137. "src/core/iomgr/sockaddr_utils.h",
  138. "src/core/iomgr/sockaddr_win32.h",
  139. "src/core/iomgr/socket_utils_posix.h",
  140. "src/core/iomgr/tcp_client.h",
  141. "src/core/iomgr/tcp_posix.h",
  142. "src/core/iomgr/tcp_server.h",
  143. "src/core/iomgr/time_averaged_stats.h",
  144. "src/core/statistics/census_interface.h",
  145. "src/core/statistics/census_log.h",
  146. "src/core/statistics/census_rpc_stats.h",
  147. "src/core/statistics/census_tracing.h",
  148. "src/core/statistics/hash_table.h",
  149. "src/core/statistics/window_stats.h",
  150. "src/core/surface/call.h",
  151. "src/core/surface/channel.h",
  152. "src/core/surface/client.h",
  153. "src/core/surface/completion_queue.h",
  154. "src/core/surface/event_string.h",
  155. "src/core/surface/lame_client.h",
  156. "src/core/surface/server.h",
  157. "src/core/surface/surface_trace.h",
  158. "src/core/transport/chttp2/bin_encoder.h",
  159. "src/core/transport/chttp2/frame.h",
  160. "src/core/transport/chttp2/frame_data.h",
  161. "src/core/transport/chttp2/frame_goaway.h",
  162. "src/core/transport/chttp2/frame_ping.h",
  163. "src/core/transport/chttp2/frame_rst_stream.h",
  164. "src/core/transport/chttp2/frame_settings.h",
  165. "src/core/transport/chttp2/frame_window_update.h",
  166. "src/core/transport/chttp2/hpack_parser.h",
  167. "src/core/transport/chttp2/hpack_table.h",
  168. "src/core/transport/chttp2/http2_errors.h",
  169. "src/core/transport/chttp2/huffsyms.h",
  170. "src/core/transport/chttp2/status_conversion.h",
  171. "src/core/transport/chttp2/stream_encoder.h",
  172. "src/core/transport/chttp2/stream_map.h",
  173. "src/core/transport/chttp2/timeout_encoding.h",
  174. "src/core/transport/chttp2/varint.h",
  175. "src/core/transport/chttp2_transport.h",
  176. "src/core/transport/metadata.h",
  177. "src/core/transport/stream_op.h",
  178. "src/core/transport/transport.h",
  179. "src/core/transport/transport_impl.h"
  180. ]
  181. }
  182. ],
  183. "libs": [
  184. {
  185. "name": "gpr",
  186. "build": "all",
  187. "secure": false,
  188. "vs_project_guid": "{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}",
  189. "src": [
  190. "src/core/support/alloc.c",
  191. "src/core/support/cancellable.c",
  192. "src/core/support/cmdline.c",
  193. "src/core/support/cpu_linux.c",
  194. "src/core/support/cpu_posix.c",
  195. "src/core/support/histogram.c",
  196. "src/core/support/host_port.c",
  197. "src/core/support/log_android.c",
  198. "src/core/support/log.c",
  199. "src/core/support/log_linux.c",
  200. "src/core/support/log_posix.c",
  201. "src/core/support/log_win32.c",
  202. "src/core/support/murmur_hash.c",
  203. "src/core/support/slice_buffer.c",
  204. "src/core/support/slice.c",
  205. "src/core/support/string.c",
  206. "src/core/support/string_posix.c",
  207. "src/core/support/string_win32.c",
  208. "src/core/support/sync.c",
  209. "src/core/support/sync_posix.c",
  210. "src/core/support/sync_win32.c",
  211. "src/core/support/thd_posix.c",
  212. "src/core/support/thd_win32.c",
  213. "src/core/support/time.c",
  214. "src/core/support/time_posix.c",
  215. "src/core/support/time_win32.c"
  216. ],
  217. "public_headers": [
  218. "include/grpc/support/alloc.h",
  219. "include/grpc/support/atm_gcc_atomic.h",
  220. "include/grpc/support/atm_gcc_sync.h",
  221. "include/grpc/support/atm.h",
  222. "include/grpc/support/atm_win32.h",
  223. "include/grpc/support/cancellable_platform.h",
  224. "include/grpc/support/cmdline.h",
  225. "include/grpc/support/histogram.h",
  226. "include/grpc/support/host_port.h",
  227. "include/grpc/support/log.h",
  228. "include/grpc/support/port_platform.h",
  229. "include/grpc/support/slice_buffer.h",
  230. "include/grpc/support/slice.h",
  231. "include/grpc/support/string.h",
  232. "include/grpc/support/sync_generic.h",
  233. "include/grpc/support/sync.h",
  234. "include/grpc/support/sync_posix.h",
  235. "include/grpc/support/sync_win32.h",
  236. "include/grpc/support/thd.h",
  237. "include/grpc/support/thd_posix.h",
  238. "include/grpc/support/thd_win32.h",
  239. "include/grpc/support/time.h",
  240. "include/grpc/support/time_posix.h",
  241. "include/grpc/support/time_win32.h",
  242. "include/grpc/support/useful.h"
  243. ],
  244. "headers": [
  245. "src/core/support/cpu.h",
  246. "src/core/support/murmur_hash.h",
  247. "src/core/support/thd_internal.h"
  248. ]
  249. },
  250. {
  251. "name": "grpc",
  252. "build": "all",
  253. "secure": true,
  254. "vs_project_guid": "{29D16885-7228-4C31-81ED-5F9187C7F2A9}",
  255. "baselib": true,
  256. "filegroups": [
  257. "grpc_base"
  258. ],
  259. "src": [
  260. "src/core/security/auth.c",
  261. "src/core/security/base64.c",
  262. "src/core/security/credentials.c",
  263. "src/core/security/factories.c",
  264. "src/core/security/google_root_certs.c",
  265. "src/core/security/json_token.c",
  266. "src/core/security/secure_endpoint.c",
  267. "src/core/security/secure_transport_setup.c",
  268. "src/core/security/security_context.c",
  269. "src/core/security/server_secure_chttp2.c",
  270. "src/core/tsi/fake_transport_security.c",
  271. "src/core/tsi/ssl_transport_security.c",
  272. "src/core/tsi/transport_security.c"
  273. ],
  274. "public_headers": [
  275. "include/grpc/grpc_security.h"
  276. ],
  277. "headers": [
  278. "src/core/security/auth.h",
  279. "src/core/security/base64.h",
  280. "src/core/security/credentials.h",
  281. "src/core/security/google_root_certs.h",
  282. "src/core/security/json_token.h",
  283. "src/core/security/secure_transport_setup.h",
  284. "src/core/security/security_context.h",
  285. "src/core/tsi/fake_transport_security.h",
  286. "src/core/tsi/ssl_transport_security.h",
  287. "src/core/tsi/transport_security.h",
  288. "src/core/tsi/transport_security_interface.h"
  289. ],
  290. "deps": [
  291. "gpr"
  292. ]
  293. },
  294. {
  295. "name": "grpc_unsecure",
  296. "build": "all",
  297. "secure": false,
  298. "vs_project_guid": "{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}",
  299. "baselib": true,
  300. "filegroups": [
  301. "grpc_base"
  302. ],
  303. "deps": [
  304. "gpr"
  305. ]
  306. },
  307. {
  308. "name": "gpr_test_util",
  309. "build": "private",
  310. "vs_project_guid": "{EAB0A629-17A9-44DB-B5FF-E91A721FE037}",
  311. "src": [
  312. "test/core/util/test_config.c"
  313. ]
  314. },
  315. {
  316. "name": "grpc_test_util",
  317. "build": "private",
  318. "vs_project_guid": "{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}",
  319. "src": [
  320. "test/core/end2end/cq_verifier.c",
  321. "test/core/end2end/data/test_root_cert.c",
  322. "test/core/end2end/data/prod_roots_certs.c",
  323. "test/core/end2end/data/server1_cert.c",
  324. "test/core/end2end/data/server1_key.c",
  325. "test/core/iomgr/endpoint_tests.c",
  326. "test/core/statistics/census_log_tests.c",
  327. "test/core/transport/transport_end2end_tests.c",
  328. "test/core/util/grpc_profiler.c",
  329. "test/core/util/port_posix.c",
  330. "test/core/util/parse_hexstring.c",
  331. "test/core/util/slice_splitter.c"
  332. ]
  333. },
  334. {
  335. "name": "grpc++",
  336. "build": "all",
  337. "c++": true,
  338. "secure": true,
  339. "vs_project_guid": "{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}",
  340. "src": [
  341. "src/cpp/client/channel.cc",
  342. "src/cpp/client/channel_arguments.cc",
  343. "src/cpp/client/client_context.cc",
  344. "src/cpp/client/create_channel.cc",
  345. "src/cpp/client/credentials.cc",
  346. "src/cpp/client/internal_stub.cc",
  347. "src/cpp/proto/proto_utils.cc",
  348. "src/cpp/common/rpc_method.cc",
  349. "src/cpp/server/async_server.cc",
  350. "src/cpp/server/async_server_context.cc",
  351. "src/cpp/server/completion_queue.cc",
  352. "src/cpp/server/server_builder.cc",
  353. "src/cpp/server/server_context_impl.cc",
  354. "src/cpp/server/server.cc",
  355. "src/cpp/server/server_rpc_handler.cc",
  356. "src/cpp/server/server_credentials.cc",
  357. "src/cpp/server/thread_pool.cc",
  358. "src/cpp/stream/stream_context.cc",
  359. "src/cpp/util/status.cc",
  360. "src/cpp/util/time.cc"
  361. ],
  362. "public_headers": [
  363. "include/grpc++/async_server_context.h",
  364. "include/grpc++/async_server.h",
  365. "include/grpc++/channel_arguments.h",
  366. "include/grpc++/channel_interface.h",
  367. "include/grpc++/client_context.h",
  368. "include/grpc++/completion_queue.h",
  369. "include/grpc++/config.h",
  370. "include/grpc++/create_channel.h",
  371. "include/grpc++/credentials.h",
  372. "include/grpc++/impl/internal_stub.h",
  373. "include/grpc++/impl/rpc_method.h",
  374. "include/grpc++/impl/rpc_service_method.h",
  375. "include/grpc++/server_builder.h",
  376. "include/grpc++/server_context.h",
  377. "include/grpc++/server_credentials.h",
  378. "include/grpc++/server.h",
  379. "include/grpc++/status.h",
  380. "include/grpc++/stream_context_interface.h",
  381. "include/grpc++/stream.h"
  382. ],
  383. "headers": [
  384. "src/cpp/client/channel.h",
  385. "src/cpp/proto/proto_utils.h",
  386. "src/cpp/server/server_rpc_handler.h",
  387. "src/cpp/server/thread_pool.h",
  388. "src/cpp/stream/stream_context.h",
  389. "src/cpp/util/time.h"
  390. ],
  391. "deps": [
  392. "grpc"
  393. ]
  394. },
  395. {
  396. "name": "grpc++_test_util",
  397. "build": "private",
  398. "src": [
  399. "test/cpp/util/messages.proto",
  400. "test/cpp/util/echo.proto",
  401. "test/cpp/util/echo_duplicate.proto",
  402. "test/cpp/util/create_test_channel.cc",
  403. "test/cpp/end2end/async_test_server.cc"
  404. ],
  405. "c++": true
  406. }
  407. ],
  408. "targets": [
  409. {
  410. "name": "gen_hpack_tables",
  411. "build": "tool",
  412. "src": [
  413. "src/core/transport/chttp2/gen_hpack_tables.c"
  414. ],
  415. "deps": [
  416. "grpc_test_util",
  417. "gpr",
  418. "grpc"
  419. ]
  420. },
  421. {
  422. "name": "cpp_plugin",
  423. "build": "protoc",
  424. "c++": true,
  425. "secure": false,
  426. "src": [
  427. "src/compiler/cpp_plugin.cc",
  428. "src/compiler/cpp_generator.cc"
  429. ],
  430. "headers": [
  431. "src/compiler/cpp_generator.h",
  432. "src/compiler/cpp_generator_helpers.h"
  433. ],
  434. "deps": []
  435. },
  436. {
  437. "name": "ruby_plugin",
  438. "build": "protoc",
  439. "c++": true,
  440. "secure": false,
  441. "src": [
  442. "src/compiler/ruby_plugin.cc",
  443. "src/compiler/ruby_generator.cc"
  444. ],
  445. "headers": [
  446. "src/compiler/cpp_generator.h",
  447. "src/compiler/cpp_generator_helpers-inl.h",
  448. "src/compiler/cpp_generator_map-inl.h",
  449. "src/compiler/cpp_generator_string-inl.h"
  450. ],
  451. "deps": []
  452. },
  453. {
  454. "name": "grpc_byte_buffer_reader_test",
  455. "build": "test",
  456. "src": [
  457. "test/core/surface/byte_buffer_reader_test.c"
  458. ],
  459. "deps": [
  460. "grpc_test_util",
  461. "grpc",
  462. "gpr_test_util",
  463. "gpr"
  464. ]
  465. },
  466. {
  467. "name": "gpr_cancellable_test",
  468. "build": "test",
  469. "src": [
  470. "test/core/support/cancellable_test.c"
  471. ],
  472. "deps": [
  473. "gpr_test_util",
  474. "gpr"
  475. ]
  476. },
  477. {
  478. "name": "gpr_log_test",
  479. "build": "test",
  480. "src": [
  481. "test/core/support/log_test.c"
  482. ],
  483. "deps": [
  484. "gpr_test_util",
  485. "gpr"
  486. ]
  487. },
  488. {
  489. "name": "gpr_useful_test",
  490. "build": "test",
  491. "src": [
  492. "test/core/support/useful_test.c"
  493. ],
  494. "deps": [
  495. "gpr_test_util",
  496. "gpr"
  497. ]
  498. },
  499. {
  500. "name": "gpr_cmdline_test",
  501. "build": "test",
  502. "src": [
  503. "test/core/support/cmdline_test.c"
  504. ],
  505. "deps": [
  506. "gpr_test_util",
  507. "gpr"
  508. ]
  509. },
  510. {
  511. "name": "gpr_histogram_test",
  512. "build": "test",
  513. "src": [
  514. "test/core/support/histogram_test.c"
  515. ],
  516. "deps": [
  517. "gpr_test_util",
  518. "gpr"
  519. ]
  520. },
  521. {
  522. "name": "gpr_host_port_test",
  523. "build": "test",
  524. "src": [
  525. "test/core/support/host_port_test.c"
  526. ],
  527. "deps": [
  528. "gpr_test_util",
  529. "gpr"
  530. ]
  531. },
  532. {
  533. "name": "gpr_slice_buffer_test",
  534. "build": "test",
  535. "src": [
  536. "test/core/support/slice_buffer_test.c"
  537. ],
  538. "deps": [
  539. "gpr_test_util",
  540. "gpr"
  541. ]
  542. },
  543. {
  544. "name": "gpr_slice_test",
  545. "build": "test",
  546. "src": [
  547. "test/core/support/slice_test.c"
  548. ],
  549. "deps": [
  550. "gpr_test_util",
  551. "gpr"
  552. ]
  553. },
  554. {
  555. "name": "gpr_string_test",
  556. "build": "test",
  557. "src": [
  558. "test/core/support/string_test.c"
  559. ],
  560. "deps": [
  561. "gpr_test_util",
  562. "gpr"
  563. ]
  564. },
  565. {
  566. "name": "gpr_sync_test",
  567. "build": "test",
  568. "src": [
  569. "test/core/support/sync_test.c"
  570. ],
  571. "deps": [
  572. "gpr_test_util",
  573. "gpr"
  574. ]
  575. },
  576. {
  577. "name": "gpr_thd_test",
  578. "build": "test",
  579. "src": [
  580. "test/core/support/thd_test.c"
  581. ],
  582. "deps": [
  583. "gpr_test_util",
  584. "gpr"
  585. ]
  586. },
  587. {
  588. "name": "gpr_time_test",
  589. "build": "test",
  590. "src": [
  591. "test/core/support/time_test.c"
  592. ],
  593. "deps": [
  594. "gpr_test_util",
  595. "gpr"
  596. ]
  597. },
  598. {
  599. "name": "murmur_hash_test",
  600. "build": "test",
  601. "src": [
  602. "test/core/support/murmur_hash_test.c"
  603. ],
  604. "deps": [
  605. "gpr_test_util",
  606. "gpr"
  607. ]
  608. },
  609. {
  610. "name": "grpc_stream_op_test",
  611. "build": "test",
  612. "src": [
  613. "test/core/transport/stream_op_test.c"
  614. ],
  615. "deps": [
  616. "grpc_test_util",
  617. "grpc",
  618. "gpr_test_util",
  619. "gpr"
  620. ]
  621. },
  622. {
  623. "name": "alpn_test",
  624. "build": "test",
  625. "src": [
  626. "test/core/transport/chttp2/alpn_test.c"
  627. ],
  628. "deps": [
  629. "grpc_test_util",
  630. "grpc",
  631. "gpr_test_util",
  632. "gpr"
  633. ]
  634. },
  635. {
  636. "name": "time_averaged_stats_test",
  637. "build": "test",
  638. "src": [
  639. "test/core/iomgr/time_averaged_stats_test.c"
  640. ],
  641. "deps": [
  642. "grpc_test_util",
  643. "grpc",
  644. "gpr_test_util",
  645. "gpr"
  646. ]
  647. },
  648. {
  649. "name": "chttp2_stream_encoder_test",
  650. "build": "test",
  651. "src": [
  652. "test/core/transport/chttp2/stream_encoder_test.c"
  653. ],
  654. "deps": [
  655. "grpc_test_util",
  656. "grpc",
  657. "gpr_test_util",
  658. "gpr"
  659. ]
  660. },
  661. {
  662. "name": "hpack_table_test",
  663. "build": "test",
  664. "src": [
  665. "test/core/transport/chttp2/hpack_table_test.c"
  666. ],
  667. "deps": [
  668. "grpc_test_util",
  669. "grpc",
  670. "gpr_test_util",
  671. "gpr"
  672. ]
  673. },
  674. {
  675. "name": "chttp2_stream_map_test",
  676. "build": "test",
  677. "src": [
  678. "test/core/transport/chttp2/stream_map_test.c"
  679. ],
  680. "deps": [
  681. "grpc_test_util",
  682. "grpc",
  683. "gpr_test_util",
  684. "gpr"
  685. ]
  686. },
  687. {
  688. "name": "hpack_parser_test",
  689. "build": "test",
  690. "src": [
  691. "test/core/transport/chttp2/hpack_parser_test.c"
  692. ],
  693. "deps": [
  694. "grpc_test_util",
  695. "grpc",
  696. "gpr_test_util",
  697. "gpr"
  698. ]
  699. },
  700. {
  701. "name": "transport_metadata_test",
  702. "build": "test",
  703. "src": [
  704. "test/core/transport/metadata_test.c"
  705. ],
  706. "deps": [
  707. "grpc_test_util",
  708. "grpc",
  709. "gpr_test_util",
  710. "gpr"
  711. ]
  712. },
  713. {
  714. "name": "chttp2_status_conversion_test",
  715. "build": "test",
  716. "src": [
  717. "test/core/transport/chttp2/status_conversion_test.c"
  718. ],
  719. "deps": [
  720. "grpc_test_util",
  721. "grpc",
  722. "gpr_test_util",
  723. "gpr"
  724. ]
  725. },
  726. {
  727. "name": "chttp2_transport_end2end_test",
  728. "build": "test",
  729. "src": [
  730. "test/core/transport/chttp2_transport_end2end_test.c"
  731. ],
  732. "deps": [
  733. "grpc_test_util",
  734. "grpc",
  735. "gpr_test_util",
  736. "gpr"
  737. ]
  738. },
  739. {
  740. "name": "tcp_posix_test",
  741. "build": "test",
  742. "src": [
  743. "test/core/iomgr/tcp_posix_test.c"
  744. ],
  745. "deps": [
  746. "grpc_test_util",
  747. "grpc",
  748. "gpr_test_util",
  749. "gpr"
  750. ]
  751. },
  752. {
  753. "name": "dualstack_socket_test",
  754. "build": "test",
  755. "src": [
  756. "test/core/end2end/dualstack_socket_test.c"
  757. ],
  758. "deps": [
  759. "grpc_test_util",
  760. "grpc",
  761. "gpr_test_util",
  762. "gpr"
  763. ]
  764. },
  765. {
  766. "name": "no_server_test",
  767. "build": "test",
  768. "src": [
  769. "test/core/end2end/no_server_test.c"
  770. ],
  771. "deps": [
  772. "grpc_test_util",
  773. "grpc",
  774. "gpr_test_util",
  775. "gpr"
  776. ]
  777. },
  778. {
  779. "name": "resolve_address_test",
  780. "build": "test",
  781. "src": [
  782. "test/core/iomgr/resolve_address_test.c"
  783. ],
  784. "deps": [
  785. "grpc_test_util",
  786. "grpc",
  787. "gpr_test_util",
  788. "gpr"
  789. ]
  790. },
  791. {
  792. "name": "sockaddr_utils_test",
  793. "build": "test",
  794. "src": [
  795. "test/core/iomgr/sockaddr_utils_test.c"
  796. ],
  797. "deps": [
  798. "grpc_test_util",
  799. "grpc",
  800. "gpr_test_util",
  801. "gpr"
  802. ]
  803. },
  804. {
  805. "name": "tcp_server_posix_test",
  806. "build": "test",
  807. "src": [
  808. "test/core/iomgr/tcp_server_posix_test.c"
  809. ],
  810. "deps": [
  811. "grpc_test_util",
  812. "grpc",
  813. "gpr_test_util",
  814. "gpr"
  815. ]
  816. },
  817. {
  818. "name": "tcp_client_posix_test",
  819. "build": "test",
  820. "src": [
  821. "test/core/iomgr/tcp_client_posix_test.c"
  822. ],
  823. "deps": [
  824. "grpc_test_util",
  825. "grpc",
  826. "gpr_test_util",
  827. "gpr"
  828. ]
  829. },
  830. {
  831. "name": "grpc_channel_stack_test",
  832. "build": "test",
  833. "src": [
  834. "test/core/channel/channel_stack_test.c"
  835. ],
  836. "deps": [
  837. "grpc_test_util",
  838. "grpc",
  839. "gpr_test_util",
  840. "gpr"
  841. ]
  842. },
  843. {
  844. "name": "metadata_buffer_test",
  845. "build": "test",
  846. "src": [
  847. "test/core/channel/metadata_buffer_test.c"
  848. ],
  849. "deps": [
  850. "grpc_test_util",
  851. "grpc",
  852. "gpr_test_util",
  853. "gpr"
  854. ]
  855. },
  856. {
  857. "name": "grpc_completion_queue_test",
  858. "build": "test",
  859. "src": [
  860. "test/core/surface/completion_queue_test.c"
  861. ],
  862. "deps": [
  863. "grpc_test_util",
  864. "grpc",
  865. "gpr_test_util",
  866. "gpr"
  867. ]
  868. },
  869. {
  870. "name": "grpc_completion_queue_benchmark",
  871. "build": "benchmark",
  872. "src": [
  873. "test/core/surface/completion_queue_benchmark.c"
  874. ],
  875. "deps": [
  876. "grpc_test_util",
  877. "grpc",
  878. "gpr_test_util",
  879. "gpr"
  880. ]
  881. },
  882. {
  883. "name": "census_trace_store_test",
  884. "build": "executable",
  885. "src": [
  886. "test/core/statistics/trace_test.c"
  887. ],
  888. "deps": [
  889. "grpc_test_util",
  890. "grpc",
  891. "gpr_test_util",
  892. "gpr"
  893. ]
  894. },
  895. {
  896. "name": "census_stats_store_test",
  897. "build": "executable",
  898. "src": [
  899. "test/core/statistics/rpc_stats_test.c"
  900. ],
  901. "deps": [
  902. "grpc_test_util",
  903. "grpc",
  904. "gpr_test_util",
  905. "gpr"
  906. ]
  907. },
  908. {
  909. "name": "census_window_stats_test",
  910. "build": "test",
  911. "src": [
  912. "test/core/statistics/window_stats_test.c"
  913. ],
  914. "deps": [
  915. "grpc_test_util",
  916. "grpc",
  917. "gpr_test_util",
  918. "gpr"
  919. ]
  920. },
  921. {
  922. "name": "census_statistics_quick_test",
  923. "build": "test",
  924. "src": [
  925. "test/core/statistics/quick_test.c"
  926. ],
  927. "deps": [
  928. "grpc_test_util",
  929. "grpc",
  930. "gpr_test_util",
  931. "gpr"
  932. ]
  933. },
  934. {
  935. "name": "census_statistics_small_log_test",
  936. "build": "test",
  937. "src": [
  938. "test/core/statistics/small_log_test.c"
  939. ],
  940. "deps": [
  941. "grpc_test_util",
  942. "grpc",
  943. "gpr_test_util",
  944. "gpr"
  945. ]
  946. },
  947. {
  948. "name": "census_statistics_performance_test",
  949. "build": "test",
  950. "src": [
  951. "test/core/statistics/performance_test.c"
  952. ],
  953. "deps": [
  954. "grpc_test_util",
  955. "grpc",
  956. "gpr_test_util",
  957. "gpr"
  958. ]
  959. },
  960. {
  961. "name": "census_statistics_multiple_writers_test",
  962. "build": "test",
  963. "src": [
  964. "test/core/statistics/multiple_writers_test.c"
  965. ],
  966. "deps": [
  967. "grpc_test_util",
  968. "grpc",
  969. "gpr_test_util",
  970. "gpr"
  971. ]
  972. },
  973. {
  974. "name": "census_statistics_multiple_writers_circular_buffer_test",
  975. "build": "test",
  976. "src": [
  977. "test/core/statistics/multiple_writers_circular_buffer_test.c"
  978. ],
  979. "deps": [
  980. "grpc_test_util",
  981. "grpc",
  982. "gpr_test_util",
  983. "gpr"
  984. ]
  985. },
  986. {
  987. "name": "census_stub_test",
  988. "build": "test",
  989. "src": [
  990. "test/core/statistics/census_stub_test.c"
  991. ],
  992. "deps": [
  993. "grpc_test_util",
  994. "grpc",
  995. "gpr_test_util",
  996. "gpr"
  997. ]
  998. },
  999. {
  1000. "name": "census_hash_table_test",
  1001. "build": "test",
  1002. "src": [
  1003. "test/core/statistics/hash_table_test.c"
  1004. ],
  1005. "deps": [
  1006. "grpc_test_util",
  1007. "grpc",
  1008. "gpr_test_util",
  1009. "gpr"
  1010. ]
  1011. },
  1012. {
  1013. "name": "fling_server",
  1014. "build": "test",
  1015. "run": false,
  1016. "src": [
  1017. "test/core/fling/server.c"
  1018. ],
  1019. "deps": [
  1020. "grpc_test_util",
  1021. "grpc",
  1022. "gpr_test_util",
  1023. "gpr"
  1024. ]
  1025. },
  1026. {
  1027. "name": "fling_client",
  1028. "build": "test",
  1029. "run": false,
  1030. "src": [
  1031. "test/core/fling/client.c"
  1032. ],
  1033. "deps": [
  1034. "grpc_test_util",
  1035. "grpc",
  1036. "gpr_test_util",
  1037. "gpr"
  1038. ]
  1039. },
  1040. {
  1041. "name": "fling_test",
  1042. "build": "test",
  1043. "src": [
  1044. "test/core/fling/fling_test.c"
  1045. ],
  1046. "deps": [
  1047. "grpc_test_util",
  1048. "grpc",
  1049. "gpr_test_util",
  1050. "gpr"
  1051. ]
  1052. },
  1053. {
  1054. "name": "echo_server",
  1055. "build": "test",
  1056. "run": false,
  1057. "src": [
  1058. "test/core/echo/server.c"
  1059. ],
  1060. "deps": [
  1061. "grpc_test_util",
  1062. "grpc",
  1063. "gpr_test_util",
  1064. "gpr"
  1065. ]
  1066. },
  1067. {
  1068. "name": "echo_client",
  1069. "build": "test",
  1070. "run": false,
  1071. "src": [
  1072. "test/core/echo/client.c"
  1073. ],
  1074. "deps": [
  1075. "grpc_test_util",
  1076. "grpc",
  1077. "gpr_test_util",
  1078. "gpr"
  1079. ]
  1080. },
  1081. {
  1082. "name": "echo_test",
  1083. "build": "test",
  1084. "src": [
  1085. "test/core/echo/echo_test.c"
  1086. ],
  1087. "deps": [
  1088. "grpc_test_util",
  1089. "grpc",
  1090. "gpr_test_util",
  1091. "gpr"
  1092. ]
  1093. },
  1094. {
  1095. "name": "low_level_ping_pong_benchmark",
  1096. "build": "benchmark",
  1097. "src": [
  1098. "test/core/network_benchmarks/low_level_ping_pong.c"
  1099. ],
  1100. "deps": [
  1101. "grpc_test_util",
  1102. "grpc",
  1103. "gpr_test_util",
  1104. "gpr"
  1105. ]
  1106. },
  1107. {
  1108. "name": "message_compress_test",
  1109. "build": "test",
  1110. "src": [
  1111. "test/core/compression/message_compress_test.c"
  1112. ],
  1113. "deps": [
  1114. "grpc_test_util",
  1115. "grpc",
  1116. "gpr_test_util",
  1117. "gpr"
  1118. ]
  1119. },
  1120. {
  1121. "name": "bin_encoder_test",
  1122. "build": "test",
  1123. "src": [
  1124. "test/core/transport/chttp2/bin_encoder_test.c"
  1125. ],
  1126. "deps": [
  1127. "grpc_test_util",
  1128. "grpc",
  1129. "gpr_test_util",
  1130. "gpr"
  1131. ]
  1132. },
  1133. {
  1134. "name": "secure_endpoint_test",
  1135. "build": "test",
  1136. "src": [
  1137. "test/core/security/secure_endpoint_test.c"
  1138. ],
  1139. "deps": [
  1140. "grpc_test_util",
  1141. "grpc",
  1142. "gpr_test_util",
  1143. "gpr"
  1144. ]
  1145. },
  1146. {
  1147. "name": "httpcli_format_request_test",
  1148. "build": "test",
  1149. "src": [
  1150. "test/core/httpcli/format_request_test.c"
  1151. ],
  1152. "deps": [
  1153. "grpc_test_util",
  1154. "grpc",
  1155. "gpr_test_util",
  1156. "gpr"
  1157. ]
  1158. },
  1159. {
  1160. "name": "httpcli_parser_test",
  1161. "build": "test",
  1162. "src": [
  1163. "test/core/httpcli/parser_test.c"
  1164. ],
  1165. "deps": [
  1166. "grpc_test_util",
  1167. "grpc",
  1168. "gpr_test_util",
  1169. "gpr"
  1170. ]
  1171. },
  1172. {
  1173. "name": "httpcli_test",
  1174. "build": "test",
  1175. "src": [
  1176. "test/core/httpcli/httpcli_test.c"
  1177. ],
  1178. "deps": [
  1179. "grpc_test_util",
  1180. "grpc",
  1181. "gpr_test_util",
  1182. "gpr"
  1183. ]
  1184. },
  1185. {
  1186. "name": "grpc_credentials_test",
  1187. "build": "test",
  1188. "src": [
  1189. "test/core/security/credentials_test.c"
  1190. ],
  1191. "deps": [
  1192. "grpc_test_util",
  1193. "grpc",
  1194. "gpr_test_util",
  1195. "gpr"
  1196. ]
  1197. },
  1198. {
  1199. "name": "grpc_fetch_oauth2",
  1200. "build": "tool",
  1201. "src": [
  1202. "test/core/security/fetch_oauth2.c"
  1203. ],
  1204. "deps": [
  1205. "grpc_test_util",
  1206. "grpc",
  1207. "gpr_test_util",
  1208. "gpr"
  1209. ]
  1210. },
  1211. {
  1212. "name": "grpc_base64_test",
  1213. "build": "test",
  1214. "src": [
  1215. "test/core/security/base64_test.c"
  1216. ],
  1217. "deps": [
  1218. "grpc_test_util",
  1219. "grpc",
  1220. "gpr_test_util",
  1221. "gpr"
  1222. ]
  1223. },
  1224. {
  1225. "name": "grpc_json_token_test",
  1226. "build": "test",
  1227. "src": [
  1228. "test/core/security/json_token_test.c"
  1229. ],
  1230. "deps": [
  1231. "grpc_test_util",
  1232. "grpc",
  1233. "gpr_test_util",
  1234. "gpr"
  1235. ]
  1236. },
  1237. {
  1238. "name": "timeout_encoding_test",
  1239. "build": "test",
  1240. "src": [
  1241. "test/core/transport/chttp2/timeout_encoding_test.c"
  1242. ],
  1243. "deps": [
  1244. "grpc_test_util",
  1245. "grpc",
  1246. "gpr_test_util",
  1247. "gpr"
  1248. ]
  1249. },
  1250. {
  1251. "name": "fd_posix_test",
  1252. "build": "test",
  1253. "src": [
  1254. "test/core/iomgr/fd_posix_test.c"
  1255. ],
  1256. "deps": [
  1257. "grpc_test_util",
  1258. "grpc",
  1259. "gpr_test_util",
  1260. "gpr"
  1261. ]
  1262. },
  1263. {
  1264. "name": "fling_stream_test",
  1265. "build": "test",
  1266. "src": [
  1267. "test/core/fling/fling_stream_test.c"
  1268. ],
  1269. "deps": [
  1270. "grpc_test_util",
  1271. "grpc",
  1272. "gpr_test_util",
  1273. "gpr"
  1274. ]
  1275. },
  1276. {
  1277. "name": "lame_client_test",
  1278. "build": "test",
  1279. "src": [
  1280. "test/core/surface/lame_client_test.c"
  1281. ],
  1282. "deps": [
  1283. "grpc_test_util",
  1284. "grpc",
  1285. "gpr_test_util",
  1286. "gpr"
  1287. ]
  1288. },
  1289. {
  1290. "name": "thread_pool_test",
  1291. "build": "test",
  1292. "c++": true,
  1293. "src": [
  1294. "test/cpp/server/thread_pool_test.cc"
  1295. ],
  1296. "deps": [
  1297. "grpc_test_util",
  1298. "grpc++",
  1299. "grpc",
  1300. "gpr_test_util",
  1301. "gpr"
  1302. ]
  1303. },
  1304. {
  1305. "name": "status_test",
  1306. "build": "test",
  1307. "c++": true,
  1308. "src": [
  1309. "test/cpp/util/status_test.cc"
  1310. ],
  1311. "deps": [
  1312. "grpc_test_util",
  1313. "grpc++",
  1314. "grpc",
  1315. "gpr_test_util",
  1316. "gpr"
  1317. ]
  1318. },
  1319. {
  1320. "name": "sync_client_async_server_test",
  1321. "build": "test",
  1322. "c++": true,
  1323. "src": [
  1324. "test/cpp/end2end/sync_client_async_server_test.cc"
  1325. ],
  1326. "deps": [
  1327. "grpc++_test_util",
  1328. "grpc_test_util",
  1329. "grpc++",
  1330. "grpc",
  1331. "gpr_test_util",
  1332. "gpr"
  1333. ]
  1334. },
  1335. {
  1336. "name": "qps_client",
  1337. "build": "test",
  1338. "c++": true,
  1339. "src": [
  1340. "test/cpp/qps/qpstest.proto",
  1341. "test/cpp/qps/client.cc"
  1342. ],
  1343. "deps": [
  1344. "grpc++_test_util",
  1345. "grpc_test_util",
  1346. "grpc++",
  1347. "grpc",
  1348. "gpr_test_util",
  1349. "gpr"
  1350. ]
  1351. },
  1352. {
  1353. "name": "qps_server",
  1354. "build": "test",
  1355. "c++": true,
  1356. "src": [
  1357. "test/cpp/qps/qpstest.proto",
  1358. "test/cpp/qps/server.cc"
  1359. ],
  1360. "deps": [
  1361. "grpc++_test_util",
  1362. "grpc_test_util",
  1363. "grpc++",
  1364. "grpc",
  1365. "gpr_test_util",
  1366. "gpr"
  1367. ]
  1368. },
  1369. {
  1370. "name": "interop_server",
  1371. "build": "test",
  1372. "run": false,
  1373. "c++": true,
  1374. "src": [
  1375. "test/cpp/interop/empty.proto",
  1376. "test/cpp/interop/messages.proto",
  1377. "test/cpp/interop/test.proto",
  1378. "test/cpp/interop/server.cc"
  1379. ],
  1380. "deps": [
  1381. "grpc++_test_util",
  1382. "grpc_test_util",
  1383. "grpc++",
  1384. "grpc",
  1385. "gpr_test_util",
  1386. "gpr"
  1387. ]
  1388. },
  1389. {
  1390. "name": "interop_client",
  1391. "build": "test",
  1392. "run": false,
  1393. "c++": true,
  1394. "src": [
  1395. "test/cpp/interop/empty.proto",
  1396. "test/cpp/interop/messages.proto",
  1397. "test/cpp/interop/test.proto",
  1398. "test/cpp/interop/client.cc"
  1399. ],
  1400. "deps": [
  1401. "grpc++_test_util",
  1402. "grpc_test_util",
  1403. "grpc++",
  1404. "grpc",
  1405. "gpr_test_util",
  1406. "gpr"
  1407. ]
  1408. },
  1409. {
  1410. "name": "end2end_test",
  1411. "build": "test",
  1412. "c++": true,
  1413. "src": [
  1414. "test/cpp/end2end/end2end_test.cc"
  1415. ],
  1416. "deps": [
  1417. "grpc++_test_util",
  1418. "grpc_test_util",
  1419. "grpc++",
  1420. "grpc",
  1421. "gpr_test_util",
  1422. "gpr"
  1423. ]
  1424. },
  1425. {
  1426. "name": "channel_arguments_test",
  1427. "build": "test",
  1428. "c++": true,
  1429. "src": [
  1430. "test/cpp/client/channel_arguments_test.cc"
  1431. ],
  1432. "deps": [
  1433. "grpc++",
  1434. "grpc",
  1435. "gpr"
  1436. ]
  1437. },
  1438. {
  1439. "name": "credentials_test",
  1440. "build": "test",
  1441. "c++": true,
  1442. "src": [
  1443. "test/cpp/client/credentials_test.cc"
  1444. ],
  1445. "deps": [
  1446. "grpc++",
  1447. "grpc",
  1448. "gpr"
  1449. ]
  1450. },
  1451. {
  1452. "name": "alarm_test",
  1453. "build": "test",
  1454. "src": [
  1455. "test/core/iomgr/alarm_test.c"
  1456. ],
  1457. "deps": [
  1458. "grpc_test_util",
  1459. "grpc",
  1460. "gpr_test_util",
  1461. "gpr"
  1462. ]
  1463. },
  1464. {
  1465. "name": "alarm_list_test",
  1466. "build": "test",
  1467. "src": [
  1468. "test/core/iomgr/alarm_list_test.c"
  1469. ],
  1470. "deps": [
  1471. "grpc_test_util",
  1472. "grpc",
  1473. "gpr_test_util",
  1474. "gpr"
  1475. ]
  1476. },
  1477. {
  1478. "name": "alarm_heap_test",
  1479. "build": "test",
  1480. "src": [
  1481. "test/core/iomgr/alarm_heap_test.c"
  1482. ],
  1483. "deps": [
  1484. "grpc_test_util",
  1485. "grpc",
  1486. "gpr_test_util",
  1487. "gpr"
  1488. ]
  1489. },
  1490. {
  1491. "name": "time_test",
  1492. "build": "test",
  1493. "src": [
  1494. "test/core/support/time_test.c"
  1495. ],
  1496. "deps": [
  1497. "grpc_test_util",
  1498. "grpc",
  1499. "gpr_test_util",
  1500. "gpr"
  1501. ]
  1502. },
  1503. {
  1504. "name": "poll_kick_test",
  1505. "build": "test",
  1506. "src": [
  1507. "test/core/iomgr/poll_kick_test.c"
  1508. ],
  1509. "deps": [
  1510. "grpc_test_util",
  1511. "grpc",
  1512. "gpr_test_util",
  1513. "gpr"
  1514. ]
  1515. }
  1516. ]
  1517. }