build.json 33 KB

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