build.json 32 KB

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