build.yaml 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250
  1. '#1': This file describes the list of targets and dependencies.
  2. '#2': It is used among other things to generate all of our project files.
  3. '#3': Please refer to the templates directory for more information.
  4. settings:
  5. '#': The public version number of the library.
  6. version:
  7. major: 0
  8. minor: 12
  9. micro: 0
  10. build: 0
  11. filegroups:
  12. - name: census
  13. public_headers:
  14. - include/grpc/census.h
  15. headers:
  16. - src/core/census/aggregation.h
  17. - src/core/census/context.h
  18. - src/core/census/rpc_metric_id.h
  19. src:
  20. - src/core/census/context.c
  21. - src/core/census/initialize.c
  22. - src/core/census/operation.c
  23. - src/core/census/tracing.c
  24. - name: grpc++_base
  25. public_headers:
  26. - include/grpc++/channel.h
  27. - include/grpc++/client_context.h
  28. - include/grpc++/completion_queue.h
  29. - include/grpc++/create_channel.h
  30. - include/grpc++/generic/async_generic_service.h
  31. - include/grpc++/generic/generic_stub.h
  32. - include/grpc++/grpc++.h
  33. - include/grpc++/impl/call.h
  34. - include/grpc++/impl/client_unary_call.h
  35. - include/grpc++/impl/grpc_library.h
  36. - include/grpc++/impl/proto_utils.h
  37. - include/grpc++/impl/rpc_method.h
  38. - include/grpc++/impl/rpc_service_method.h
  39. - include/grpc++/impl/serialization_traits.h
  40. - include/grpc++/impl/service_type.h
  41. - include/grpc++/impl/sync.h
  42. - include/grpc++/impl/sync_cxx11.h
  43. - include/grpc++/impl/sync_no_cxx11.h
  44. - include/grpc++/impl/thd.h
  45. - include/grpc++/impl/thd_cxx11.h
  46. - include/grpc++/impl/thd_no_cxx11.h
  47. - include/grpc++/security/auth_context.h
  48. - include/grpc++/security/auth_metadata_processor.h
  49. - include/grpc++/security/credentials.h
  50. - include/grpc++/security/server_credentials.h
  51. - include/grpc++/server.h
  52. - include/grpc++/server_builder.h
  53. - include/grpc++/server_context.h
  54. - include/grpc++/support/async_stream.h
  55. - include/grpc++/support/async_unary_call.h
  56. - include/grpc++/support/byte_buffer.h
  57. - include/grpc++/support/channel_arguments.h
  58. - include/grpc++/support/config.h
  59. - include/grpc++/support/config_protobuf.h
  60. - include/grpc++/support/slice.h
  61. - include/grpc++/support/status.h
  62. - include/grpc++/support/status_code_enum.h
  63. - include/grpc++/support/string_ref.h
  64. - include/grpc++/support/stub_options.h
  65. - include/grpc++/support/sync_stream.h
  66. - include/grpc++/support/time.h
  67. headers:
  68. - src/cpp/client/create_channel_internal.h
  69. - src/cpp/common/create_auth_context.h
  70. - src/cpp/server/dynamic_thread_pool.h
  71. - src/cpp/server/fixed_size_thread_pool.h
  72. - src/cpp/server/thread_pool_interface.h
  73. src:
  74. - src/cpp/client/channel.cc
  75. - src/cpp/client/channel_arguments.cc
  76. - src/cpp/client/client_context.cc
  77. - src/cpp/client/create_channel.cc
  78. - src/cpp/client/create_channel_internal.cc
  79. - src/cpp/client/credentials.cc
  80. - src/cpp/client/generic_stub.cc
  81. - src/cpp/client/insecure_credentials.cc
  82. - src/cpp/common/call.cc
  83. - src/cpp/common/completion_queue.cc
  84. - src/cpp/common/rpc_method.cc
  85. - src/cpp/proto/proto_utils.cc
  86. - src/cpp/server/async_generic_service.cc
  87. - src/cpp/server/create_default_thread_pool.cc
  88. - src/cpp/server/dynamic_thread_pool.cc
  89. - src/cpp/server/fixed_size_thread_pool.cc
  90. - src/cpp/server/insecure_server_credentials.cc
  91. - src/cpp/server/server.cc
  92. - src/cpp/server/server_builder.cc
  93. - src/cpp/server/server_context.cc
  94. - src/cpp/server/server_credentials.cc
  95. - src/cpp/util/byte_buffer.cc
  96. - src/cpp/util/slice.cc
  97. - src/cpp/util/status.cc
  98. - src/cpp/util/string_ref.cc
  99. - src/cpp/util/time.cc
  100. - name: grpc_base
  101. public_headers:
  102. - include/grpc/byte_buffer.h
  103. - include/grpc/byte_buffer_reader.h
  104. - include/grpc/compression.h
  105. - include/grpc/grpc.h
  106. - include/grpc/status.h
  107. headers:
  108. - src/core/census/grpc_filter.h
  109. - src/core/channel/channel_args.h
  110. - src/core/channel/channel_stack.h
  111. - src/core/channel/client_channel.h
  112. - src/core/channel/client_uchannel.h
  113. - src/core/channel/compress_filter.h
  114. - src/core/channel/connected_channel.h
  115. - src/core/channel/context.h
  116. - src/core/channel/http_client_filter.h
  117. - src/core/channel/http_server_filter.h
  118. - src/core/channel/noop_filter.h
  119. - src/core/client_config/client_config.h
  120. - src/core/client_config/connector.h
  121. - src/core/client_config/lb_policies/pick_first.h
  122. - src/core/client_config/lb_policies/round_robin.h
  123. - src/core/client_config/lb_policy.h
  124. - src/core/client_config/lb_policy_factory.h
  125. - src/core/client_config/lb_policy_registry.h
  126. - src/core/client_config/resolver.h
  127. - src/core/client_config/resolver_factory.h
  128. - src/core/client_config/resolver_registry.h
  129. - src/core/client_config/resolvers/dns_resolver.h
  130. - src/core/client_config/resolvers/sockaddr_resolver.h
  131. - src/core/client_config/subchannel.h
  132. - src/core/client_config/subchannel_factory.h
  133. - src/core/client_config/subchannel_factory_decorators/add_channel_arg.h
  134. - src/core/client_config/subchannel_factory_decorators/merge_channel_args.h
  135. - src/core/client_config/uri_parser.h
  136. - src/core/compression/message_compress.h
  137. - src/core/debug/trace.h
  138. - src/core/httpcli/format_request.h
  139. - src/core/httpcli/httpcli.h
  140. - src/core/httpcli/parser.h
  141. - src/core/iomgr/closure.h
  142. - src/core/iomgr/endpoint.h
  143. - src/core/iomgr/endpoint_pair.h
  144. - src/core/iomgr/exec_ctx.h
  145. - src/core/iomgr/executor.h
  146. - src/core/iomgr/fd_posix.h
  147. - src/core/iomgr/iocp_windows.h
  148. - src/core/iomgr/iomgr.h
  149. - src/core/iomgr/iomgr_internal.h
  150. - src/core/iomgr/iomgr_posix.h
  151. - src/core/iomgr/pollset.h
  152. - src/core/iomgr/pollset_posix.h
  153. - src/core/iomgr/pollset_set.h
  154. - src/core/iomgr/pollset_set_posix.h
  155. - src/core/iomgr/pollset_set_windows.h
  156. - src/core/iomgr/pollset_windows.h
  157. - src/core/iomgr/resolve_address.h
  158. - src/core/iomgr/sockaddr.h
  159. - src/core/iomgr/sockaddr_posix.h
  160. - src/core/iomgr/sockaddr_utils.h
  161. - src/core/iomgr/sockaddr_win32.h
  162. - src/core/iomgr/socket_utils_posix.h
  163. - src/core/iomgr/socket_windows.h
  164. - src/core/iomgr/tcp_client.h
  165. - src/core/iomgr/tcp_posix.h
  166. - src/core/iomgr/tcp_server.h
  167. - src/core/iomgr/tcp_windows.h
  168. - src/core/iomgr/time_averaged_stats.h
  169. - src/core/iomgr/timer.h
  170. - src/core/iomgr/timer_heap.h
  171. - src/core/iomgr/timer_internal.h
  172. - src/core/iomgr/udp_server.h
  173. - src/core/iomgr/wakeup_fd_pipe.h
  174. - src/core/iomgr/wakeup_fd_posix.h
  175. - src/core/iomgr/workqueue.h
  176. - src/core/iomgr/workqueue_posix.h
  177. - src/core/iomgr/workqueue_windows.h
  178. - src/core/json/json.h
  179. - src/core/json/json_common.h
  180. - src/core/json/json_reader.h
  181. - src/core/json/json_writer.h
  182. - src/core/statistics/census_interface.h
  183. - src/core/statistics/census_rpc_stats.h
  184. - src/core/surface/api_trace.h
  185. - src/core/surface/byte_buffer_queue.h
  186. - src/core/surface/call.h
  187. - src/core/surface/call_test_only.h
  188. - src/core/surface/channel.h
  189. - src/core/surface/completion_queue.h
  190. - src/core/surface/event_string.h
  191. - src/core/surface/init.h
  192. - src/core/surface/server.h
  193. - src/core/surface/surface_trace.h
  194. - src/core/transport/chttp2/alpn.h
  195. - src/core/transport/chttp2/bin_encoder.h
  196. - src/core/transport/chttp2/frame.h
  197. - src/core/transport/chttp2/frame_data.h
  198. - src/core/transport/chttp2/frame_goaway.h
  199. - src/core/transport/chttp2/frame_ping.h
  200. - src/core/transport/chttp2/frame_rst_stream.h
  201. - src/core/transport/chttp2/frame_settings.h
  202. - src/core/transport/chttp2/frame_window_update.h
  203. - src/core/transport/chttp2/hpack_parser.h
  204. - src/core/transport/chttp2/hpack_table.h
  205. - src/core/transport/chttp2/http2_errors.h
  206. - src/core/transport/chttp2/huffsyms.h
  207. - src/core/transport/chttp2/incoming_metadata.h
  208. - src/core/transport/chttp2/internal.h
  209. - src/core/transport/chttp2/status_conversion.h
  210. - src/core/transport/chttp2/stream_encoder.h
  211. - src/core/transport/chttp2/stream_map.h
  212. - src/core/transport/chttp2/timeout_encoding.h
  213. - src/core/transport/chttp2/varint.h
  214. - src/core/transport/chttp2_transport.h
  215. - src/core/transport/connectivity_state.h
  216. - src/core/transport/metadata.h
  217. - src/core/transport/stream_op.h
  218. - src/core/transport/transport.h
  219. - src/core/transport/transport_impl.h
  220. src:
  221. - src/core/census/grpc_context.c
  222. - src/core/census/grpc_filter.c
  223. - src/core/channel/channel_args.c
  224. - src/core/channel/channel_stack.c
  225. - src/core/channel/client_channel.c
  226. - src/core/channel/client_uchannel.c
  227. - src/core/channel/compress_filter.c
  228. - src/core/channel/connected_channel.c
  229. - src/core/channel/http_client_filter.c
  230. - src/core/channel/http_server_filter.c
  231. - src/core/channel/noop_filter.c
  232. - src/core/client_config/client_config.c
  233. - src/core/client_config/connector.c
  234. - src/core/client_config/lb_policies/pick_first.c
  235. - src/core/client_config/lb_policies/round_robin.c
  236. - src/core/client_config/lb_policy.c
  237. - src/core/client_config/lb_policy_factory.c
  238. - src/core/client_config/lb_policy_registry.c
  239. - src/core/client_config/resolver.c
  240. - src/core/client_config/resolver_factory.c
  241. - src/core/client_config/resolver_registry.c
  242. - src/core/client_config/resolvers/dns_resolver.c
  243. - src/core/client_config/resolvers/sockaddr_resolver.c
  244. - src/core/client_config/subchannel.c
  245. - src/core/client_config/subchannel_factory.c
  246. - src/core/client_config/subchannel_factory_decorators/add_channel_arg.c
  247. - src/core/client_config/subchannel_factory_decorators/merge_channel_args.c
  248. - src/core/client_config/uri_parser.c
  249. - src/core/compression/algorithm.c
  250. - src/core/compression/message_compress.c
  251. - src/core/debug/trace.c
  252. - src/core/httpcli/format_request.c
  253. - src/core/httpcli/httpcli.c
  254. - src/core/httpcli/parser.c
  255. - src/core/iomgr/closure.c
  256. - src/core/iomgr/endpoint.c
  257. - src/core/iomgr/endpoint_pair_posix.c
  258. - src/core/iomgr/endpoint_pair_windows.c
  259. - src/core/iomgr/exec_ctx.c
  260. - src/core/iomgr/executor.c
  261. - src/core/iomgr/fd_posix.c
  262. - src/core/iomgr/iocp_windows.c
  263. - src/core/iomgr/iomgr.c
  264. - src/core/iomgr/iomgr_posix.c
  265. - src/core/iomgr/iomgr_windows.c
  266. - src/core/iomgr/pollset_multipoller_with_epoll.c
  267. - src/core/iomgr/pollset_multipoller_with_poll_posix.c
  268. - src/core/iomgr/pollset_posix.c
  269. - src/core/iomgr/pollset_set_posix.c
  270. - src/core/iomgr/pollset_set_windows.c
  271. - src/core/iomgr/pollset_windows.c
  272. - src/core/iomgr/resolve_address_posix.c
  273. - src/core/iomgr/resolve_address_windows.c
  274. - src/core/iomgr/sockaddr_utils.c
  275. - src/core/iomgr/socket_utils_common_posix.c
  276. - src/core/iomgr/socket_utils_linux.c
  277. - src/core/iomgr/socket_utils_posix.c
  278. - src/core/iomgr/socket_windows.c
  279. - src/core/iomgr/tcp_client_posix.c
  280. - src/core/iomgr/tcp_client_windows.c
  281. - src/core/iomgr/tcp_posix.c
  282. - src/core/iomgr/tcp_server_posix.c
  283. - src/core/iomgr/tcp_server_windows.c
  284. - src/core/iomgr/tcp_windows.c
  285. - src/core/iomgr/time_averaged_stats.c
  286. - src/core/iomgr/timer.c
  287. - src/core/iomgr/timer_heap.c
  288. - src/core/iomgr/udp_server.c
  289. - src/core/iomgr/wakeup_fd_eventfd.c
  290. - src/core/iomgr/wakeup_fd_nospecial.c
  291. - src/core/iomgr/wakeup_fd_pipe.c
  292. - src/core/iomgr/wakeup_fd_posix.c
  293. - src/core/iomgr/workqueue_posix.c
  294. - src/core/iomgr/workqueue_windows.c
  295. - src/core/json/json.c
  296. - src/core/json/json_reader.c
  297. - src/core/json/json_string.c
  298. - src/core/json/json_writer.c
  299. - src/core/surface/api_trace.c
  300. - src/core/surface/byte_buffer.c
  301. - src/core/surface/byte_buffer_queue.c
  302. - src/core/surface/byte_buffer_reader.c
  303. - src/core/surface/call.c
  304. - src/core/surface/call_details.c
  305. - src/core/surface/call_log_batch.c
  306. - src/core/surface/channel.c
  307. - src/core/surface/channel_connectivity.c
  308. - src/core/surface/channel_create.c
  309. - src/core/surface/completion_queue.c
  310. - src/core/surface/event_string.c
  311. - src/core/surface/init.c
  312. - src/core/surface/lame_client.c
  313. - src/core/surface/metadata_array.c
  314. - src/core/surface/server.c
  315. - src/core/surface/server_chttp2.c
  316. - src/core/surface/server_create.c
  317. - src/core/surface/version.c
  318. - src/core/transport/chttp2/alpn.c
  319. - src/core/transport/chttp2/bin_encoder.c
  320. - src/core/transport/chttp2/frame_data.c
  321. - src/core/transport/chttp2/frame_goaway.c
  322. - src/core/transport/chttp2/frame_ping.c
  323. - src/core/transport/chttp2/frame_rst_stream.c
  324. - src/core/transport/chttp2/frame_settings.c
  325. - src/core/transport/chttp2/frame_window_update.c
  326. - src/core/transport/chttp2/hpack_parser.c
  327. - src/core/transport/chttp2/hpack_table.c
  328. - src/core/transport/chttp2/huffsyms.c
  329. - src/core/transport/chttp2/incoming_metadata.c
  330. - src/core/transport/chttp2/parsing.c
  331. - src/core/transport/chttp2/status_conversion.c
  332. - src/core/transport/chttp2/stream_encoder.c
  333. - src/core/transport/chttp2/stream_lists.c
  334. - src/core/transport/chttp2/stream_map.c
  335. - src/core/transport/chttp2/timeout_encoding.c
  336. - src/core/transport/chttp2/varint.c
  337. - src/core/transport/chttp2/writing.c
  338. - src/core/transport/chttp2_transport.c
  339. - src/core/transport/connectivity_state.c
  340. - src/core/transport/metadata.c
  341. - src/core/transport/stream_op.c
  342. - src/core/transport/transport.c
  343. - src/core/transport/transport_op_string.c
  344. - name: grpc_test_util_base
  345. headers:
  346. - test/core/end2end/cq_verifier.h
  347. - test/core/end2end/fixtures/proxy.h
  348. - test/core/iomgr/endpoint_tests.h
  349. - test/core/security/oauth2_utils.h
  350. - test/core/util/grpc_profiler.h
  351. - test/core/util/parse_hexstring.h
  352. - test/core/util/port.h
  353. - test/core/util/slice_splitter.h
  354. src:
  355. - test/core/end2end/cq_verifier.c
  356. - test/core/end2end/fixtures/proxy.c
  357. - test/core/iomgr/endpoint_tests.c
  358. - test/core/security/oauth2_utils.c
  359. - test/core/util/grpc_profiler.c
  360. - test/core/util/parse_hexstring.c
  361. - test/core/util/port_posix.c
  362. - test/core/util/port_windows.c
  363. - test/core/util/slice_splitter.c
  364. libs:
  365. - name: gpr
  366. build: all
  367. language: c
  368. public_headers:
  369. - include/grpc/support/alloc.h
  370. - include/grpc/support/atm.h
  371. - include/grpc/support/atm_gcc_atomic.h
  372. - include/grpc/support/atm_gcc_sync.h
  373. - include/grpc/support/atm_win32.h
  374. - include/grpc/support/cmdline.h
  375. - include/grpc/support/cpu.h
  376. - include/grpc/support/histogram.h
  377. - include/grpc/support/host_port.h
  378. - include/grpc/support/log.h
  379. - include/grpc/support/log_win32.h
  380. - include/grpc/support/port_platform.h
  381. - include/grpc/support/slice.h
  382. - include/grpc/support/slice_buffer.h
  383. - include/grpc/support/string_util.h
  384. - include/grpc/support/subprocess.h
  385. - include/grpc/support/sync.h
  386. - include/grpc/support/sync_generic.h
  387. - include/grpc/support/sync_posix.h
  388. - include/grpc/support/sync_win32.h
  389. - include/grpc/support/thd.h
  390. - include/grpc/support/time.h
  391. - include/grpc/support/tls.h
  392. - include/grpc/support/tls_gcc.h
  393. - include/grpc/support/tls_msvc.h
  394. - include/grpc/support/tls_pthread.h
  395. - include/grpc/support/useful.h
  396. headers:
  397. - src/core/profiling/timers.h
  398. - src/core/support/block_annotate.h
  399. - src/core/support/env.h
  400. - src/core/support/file.h
  401. - src/core/support/murmur_hash.h
  402. - src/core/support/stack_lockfree.h
  403. - src/core/support/string.h
  404. - src/core/support/string_win32.h
  405. - src/core/support/thd_internal.h
  406. - src/core/support/time_precise.h
  407. src:
  408. - src/core/profiling/basic_timers.c
  409. - src/core/profiling/stap_timers.c
  410. - src/core/support/alloc.c
  411. - src/core/support/cmdline.c
  412. - src/core/support/cpu_iphone.c
  413. - src/core/support/cpu_linux.c
  414. - src/core/support/cpu_posix.c
  415. - src/core/support/cpu_windows.c
  416. - src/core/support/env_linux.c
  417. - src/core/support/env_posix.c
  418. - src/core/support/env_win32.c
  419. - src/core/support/file.c
  420. - src/core/support/file_posix.c
  421. - src/core/support/file_win32.c
  422. - src/core/support/histogram.c
  423. - src/core/support/host_port.c
  424. - src/core/support/log.c
  425. - src/core/support/log_android.c
  426. - src/core/support/log_linux.c
  427. - src/core/support/log_posix.c
  428. - src/core/support/log_win32.c
  429. - src/core/support/murmur_hash.c
  430. - src/core/support/slice.c
  431. - src/core/support/slice_buffer.c
  432. - src/core/support/stack_lockfree.c
  433. - src/core/support/string.c
  434. - src/core/support/string_posix.c
  435. - src/core/support/string_win32.c
  436. - src/core/support/subprocess_posix.c
  437. - src/core/support/sync.c
  438. - src/core/support/sync_posix.c
  439. - src/core/support/sync_win32.c
  440. - src/core/support/thd.c
  441. - src/core/support/thd_posix.c
  442. - src/core/support/thd_win32.c
  443. - src/core/support/time.c
  444. - src/core/support/time_posix.c
  445. - src/core/support/time_precise.c
  446. - src/core/support/time_win32.c
  447. - src/core/support/tls_pthread.c
  448. secure: false
  449. vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
  450. - name: gpr_test_util
  451. build: private
  452. language: c
  453. headers:
  454. - test/core/util/test_config.h
  455. src:
  456. - test/core/util/test_config.c
  457. deps:
  458. - gpr
  459. secure: false
  460. vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
  461. - name: grpc
  462. build: all
  463. language: c
  464. public_headers:
  465. - include/grpc/grpc_security.h
  466. headers:
  467. - src/core/security/auth_filters.h
  468. - src/core/security/base64.h
  469. - src/core/security/credentials.h
  470. - src/core/security/handshake.h
  471. - src/core/security/json_token.h
  472. - src/core/security/jwt_verifier.h
  473. - src/core/security/secure_endpoint.h
  474. - src/core/security/security_connector.h
  475. - src/core/security/security_context.h
  476. - src/core/tsi/fake_transport_security.h
  477. - src/core/tsi/ssl_transport_security.h
  478. - src/core/tsi/transport_security.h
  479. - src/core/tsi/transport_security_interface.h
  480. src:
  481. - src/core/httpcli/httpcli_security_connector.c
  482. - src/core/security/base64.c
  483. - src/core/security/client_auth_filter.c
  484. - src/core/security/credentials.c
  485. - src/core/security/credentials_metadata.c
  486. - src/core/security/credentials_posix.c
  487. - src/core/security/credentials_win32.c
  488. - src/core/security/google_default_credentials.c
  489. - src/core/security/handshake.c
  490. - src/core/security/json_token.c
  491. - src/core/security/jwt_verifier.c
  492. - src/core/security/secure_endpoint.c
  493. - src/core/security/security_connector.c
  494. - src/core/security/security_context.c
  495. - src/core/security/server_auth_filter.c
  496. - src/core/security/server_secure_chttp2.c
  497. - src/core/surface/init_secure.c
  498. - src/core/surface/secure_channel_create.c
  499. - src/core/tsi/fake_transport_security.c
  500. - src/core/tsi/ssl_transport_security.c
  501. - src/core/tsi/transport_security.c
  502. deps:
  503. - gpr
  504. baselib: true
  505. dll: true
  506. filegroups:
  507. - grpc_base
  508. - census
  509. secure: true
  510. vs_packages:
  511. - grpc.dependencies.openssl
  512. - grpc.dependencies.zlib
  513. vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
  514. - name: grpc_test_util
  515. build: private
  516. language: c
  517. headers:
  518. - test/core/end2end/data/ssl_test_data.h
  519. src:
  520. - test/core/end2end/data/server1_cert.c
  521. - test/core/end2end/data/server1_key.c
  522. - test/core/end2end/data/test_root_cert.c
  523. deps:
  524. - gpr
  525. - gpr_test_util
  526. - grpc
  527. filegroups:
  528. - grpc_test_util_base
  529. vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
  530. - name: grpc_test_util_unsecure
  531. build: private
  532. language: c
  533. deps:
  534. - gpr
  535. - gpr_test_util
  536. - grpc
  537. filegroups:
  538. - grpc_test_util_base
  539. secure: false
  540. vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
  541. - name: grpc_unsecure
  542. build: all
  543. language: c
  544. src:
  545. - src/core/surface/init_unsecure.c
  546. deps:
  547. - gpr
  548. baselib: true
  549. dll: true
  550. filegroups:
  551. - grpc_base
  552. - census
  553. secure: false
  554. vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
  555. - name: grpc_zookeeper
  556. build: all
  557. language: c
  558. public_headers:
  559. - include/grpc/grpc_zookeeper.h
  560. headers:
  561. - src/core/client_config/resolvers/zookeeper_resolver.h
  562. src:
  563. - src/core/client_config/resolvers/zookeeper_resolver.c
  564. deps:
  565. - gpr
  566. - grpc
  567. external_deps:
  568. - zookeeper
  569. platforms:
  570. - linux
  571. secure: false
  572. - name: reconnect_server
  573. build: private
  574. language: c
  575. headers:
  576. - test/core/util/reconnect_server.h
  577. src:
  578. - test/core/util/reconnect_server.c
  579. deps:
  580. - grpc_test_util
  581. - grpc
  582. - gpr_test_util
  583. - gpr
  584. - name: grpc++
  585. build: all
  586. language: c++
  587. headers:
  588. - src/cpp/client/secure_credentials.h
  589. - src/cpp/common/secure_auth_context.h
  590. - src/cpp/server/secure_server_credentials.h
  591. src:
  592. - src/cpp/client/secure_channel_arguments.cc
  593. - src/cpp/client/secure_credentials.cc
  594. - src/cpp/common/auth_property_iterator.cc
  595. - src/cpp/common/secure_auth_context.cc
  596. - src/cpp/common/secure_create_auth_context.cc
  597. - src/cpp/server/secure_server_credentials.cc
  598. deps:
  599. - gpr
  600. - grpc
  601. baselib: true
  602. dll: true
  603. filegroups:
  604. - grpc++_base
  605. secure: check
  606. vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
  607. - name: grpc++_test_config
  608. build: private
  609. language: c++
  610. headers:
  611. - test/cpp/util/test_config.h
  612. src:
  613. - test/cpp/util/test_config.cc
  614. - name: grpc++_test_util
  615. build: private
  616. language: c++
  617. headers:
  618. - test/cpp/util/cli_call.h
  619. - test/cpp/util/create_test_channel.h
  620. - test/cpp/util/string_ref_helper.h
  621. - test/cpp/util/subprocess.h
  622. src:
  623. - test/cpp/util/messages.proto
  624. - test/cpp/util/echo.proto
  625. - test/cpp/util/echo_duplicate.proto
  626. - test/cpp/util/cli_call.cc
  627. - test/cpp/util/create_test_channel.cc
  628. - test/cpp/util/string_ref_helper.cc
  629. - test/cpp/util/subprocess.cc
  630. deps:
  631. - grpc++
  632. - grpc_test_util
  633. - name: grpc++_unsecure
  634. build: all
  635. language: c++
  636. src:
  637. - src/cpp/common/insecure_create_auth_context.cc
  638. deps:
  639. - gpr
  640. - grpc_unsecure
  641. baselib: true
  642. dll: true
  643. filegroups:
  644. - grpc++_base
  645. secure: false
  646. vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
  647. - name: grpc_plugin_support
  648. build: protoc
  649. language: c++
  650. headers:
  651. - include/grpc++/support/config.h
  652. - include/grpc++/support/config_protobuf.h
  653. - src/compiler/config.h
  654. - src/compiler/cpp_generator.h
  655. - src/compiler/cpp_generator_helpers.h
  656. - src/compiler/csharp_generator.h
  657. - src/compiler/csharp_generator_helpers.h
  658. - src/compiler/generator_helpers.h
  659. - src/compiler/objective_c_generator.h
  660. - src/compiler/objective_c_generator_helpers.h
  661. - src/compiler/python_generator.h
  662. - src/compiler/ruby_generator.h
  663. - src/compiler/ruby_generator_helpers-inl.h
  664. - src/compiler/ruby_generator_map-inl.h
  665. - src/compiler/ruby_generator_string-inl.h
  666. src:
  667. - src/compiler/cpp_generator.cc
  668. - src/compiler/csharp_generator.cc
  669. - src/compiler/objective_c_generator.cc
  670. - src/compiler/python_generator.cc
  671. - src/compiler/ruby_generator.cc
  672. deps: []
  673. secure: false
  674. vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
  675. - name: interop_client_helper
  676. build: private
  677. language: c++
  678. headers:
  679. - test/cpp/interop/client_helper.h
  680. src:
  681. - test/proto/messages.proto
  682. - test/cpp/interop/client_helper.cc
  683. deps:
  684. - grpc++_test_util
  685. - grpc_test_util
  686. - grpc++
  687. - grpc
  688. - gpr
  689. - name: interop_client_main
  690. build: private
  691. language: c++
  692. headers:
  693. - test/cpp/interop/interop_client.h
  694. src:
  695. - test/proto/empty.proto
  696. - test/proto/messages.proto
  697. - test/proto/test.proto
  698. - test/cpp/interop/client.cc
  699. - test/cpp/interop/interop_client.cc
  700. deps:
  701. - interop_client_helper
  702. - grpc++_test_util
  703. - grpc_test_util
  704. - grpc++
  705. - grpc
  706. - gpr_test_util
  707. - gpr
  708. - grpc++_test_config
  709. - name: interop_server_helper
  710. build: private
  711. language: c++
  712. headers:
  713. - test/cpp/interop/server_helper.h
  714. src:
  715. - test/cpp/interop/server_helper.cc
  716. deps:
  717. - grpc_test_util
  718. - grpc++
  719. - grpc
  720. - gpr
  721. - name: interop_server_main
  722. build: private
  723. language: c++
  724. src:
  725. - test/proto/empty.proto
  726. - test/proto/messages.proto
  727. - test/proto/test.proto
  728. - test/cpp/interop/server.cc
  729. deps:
  730. - interop_server_helper
  731. - grpc++_test_util
  732. - grpc_test_util
  733. - grpc++
  734. - grpc
  735. - gpr_test_util
  736. - gpr
  737. - grpc++_test_config
  738. - name: qps
  739. build: private
  740. language: c++
  741. headers:
  742. - test/cpp/qps/client.h
  743. - test/cpp/qps/driver.h
  744. - test/cpp/qps/histogram.h
  745. - test/cpp/qps/interarrival.h
  746. - test/cpp/qps/perf_db_client.h
  747. - test/cpp/qps/qps_worker.h
  748. - test/cpp/qps/report.h
  749. - test/cpp/qps/server.h
  750. - test/cpp/qps/stats.h
  751. - test/cpp/qps/timer.h
  752. - test/cpp/util/benchmark_config.h
  753. src:
  754. - test/proto/messages.proto
  755. - test/proto/benchmarks/control.proto
  756. - test/proto/benchmarks/payloads.proto
  757. - test/proto/benchmarks/services.proto
  758. - test/proto/benchmarks/stats.proto
  759. - test/cpp/qps/perf_db.proto
  760. - test/cpp/qps/client_async.cc
  761. - test/cpp/qps/client_sync.cc
  762. - test/cpp/qps/driver.cc
  763. - test/cpp/qps/perf_db_client.cc
  764. - test/cpp/qps/qps_worker.cc
  765. - test/cpp/qps/report.cc
  766. - test/cpp/qps/server_async.cc
  767. - test/cpp/qps/server_sync.cc
  768. - test/cpp/qps/timer.cc
  769. - test/cpp/util/benchmark_config.cc
  770. deps:
  771. - grpc_test_util
  772. - grpc++_test_util
  773. - grpc++
  774. - name: grpc_csharp_ext
  775. build: all
  776. language: csharp
  777. src:
  778. - src/csharp/ext/grpc_csharp_ext.c
  779. deps:
  780. - gpr
  781. - grpc
  782. dll: only
  783. vs_config_type: DynamicLibrary
  784. vs_packages:
  785. - grpc.dependencies.openssl
  786. - grpc.dependencies.zlib
  787. vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
  788. vs_props:
  789. - zlib
  790. - openssl
  791. - winsock
  792. - global
  793. targets:
  794. - name: alpn_test
  795. build: test
  796. language: c
  797. src:
  798. - test/core/transport/chttp2/alpn_test.c
  799. deps:
  800. - grpc_test_util
  801. - grpc
  802. - gpr_test_util
  803. - gpr
  804. - name: bin_encoder_test
  805. build: test
  806. language: c
  807. src:
  808. - test/core/transport/chttp2/bin_encoder_test.c
  809. deps:
  810. - grpc_test_util
  811. - grpc
  812. - gpr_test_util
  813. - gpr
  814. - name: chttp2_status_conversion_test
  815. build: test
  816. language: c
  817. src:
  818. - test/core/transport/chttp2/status_conversion_test.c
  819. deps:
  820. - grpc_test_util
  821. - grpc
  822. - gpr_test_util
  823. - gpr
  824. - name: chttp2_stream_encoder_test
  825. build: test
  826. language: c
  827. src:
  828. - test/core/transport/chttp2/stream_encoder_test.c
  829. deps:
  830. - grpc_test_util
  831. - grpc
  832. - gpr_test_util
  833. - gpr
  834. - name: chttp2_stream_map_test
  835. build: test
  836. language: c
  837. src:
  838. - test/core/transport/chttp2/stream_map_test.c
  839. deps:
  840. - grpc_test_util
  841. - grpc
  842. - gpr_test_util
  843. - gpr
  844. - name: compression_test
  845. build: test
  846. language: c
  847. src:
  848. - test/core/compression/compression_test.c
  849. deps:
  850. - grpc_test_util
  851. - grpc
  852. - gpr_test_util
  853. - gpr
  854. - name: dualstack_socket_test
  855. build: test
  856. language: c
  857. src:
  858. - test/core/end2end/dualstack_socket_test.c
  859. deps:
  860. - grpc_test_util
  861. - grpc
  862. - gpr_test_util
  863. - gpr
  864. platforms:
  865. - mac
  866. - linux
  867. - posix
  868. - name: endpoint_pair_test
  869. build: test
  870. language: c
  871. src:
  872. - test/core/iomgr/endpoint_pair_test.c
  873. deps:
  874. - grpc_test_util
  875. - grpc
  876. - gpr_test_util
  877. - gpr
  878. - name: fd_conservation_posix_test
  879. build: test
  880. language: c
  881. src:
  882. - test/core/iomgr/fd_conservation_posix_test.c
  883. deps:
  884. - grpc_test_util
  885. - grpc
  886. - gpr_test_util
  887. - gpr
  888. platforms:
  889. - mac
  890. - linux
  891. - posix
  892. - name: fd_posix_test
  893. build: test
  894. language: c
  895. src:
  896. - test/core/iomgr/fd_posix_test.c
  897. deps:
  898. - grpc_test_util
  899. - grpc
  900. - gpr_test_util
  901. - gpr
  902. platforms:
  903. - mac
  904. - linux
  905. - posix
  906. - name: fling_client
  907. build: test
  908. run: false
  909. language: c
  910. src:
  911. - test/core/fling/client.c
  912. deps:
  913. - grpc_test_util
  914. - grpc
  915. - gpr_test_util
  916. - gpr
  917. - name: fling_server
  918. build: test
  919. run: false
  920. language: c
  921. src:
  922. - test/core/fling/server.c
  923. deps:
  924. - grpc_test_util
  925. - grpc
  926. - gpr_test_util
  927. - gpr
  928. - name: fling_stream_test
  929. build: test
  930. language: c
  931. src:
  932. - test/core/fling/fling_stream_test.c
  933. deps:
  934. - grpc_test_util
  935. - grpc
  936. - gpr_test_util
  937. - gpr
  938. platforms:
  939. - mac
  940. - linux
  941. - posix
  942. - name: fling_test
  943. build: test
  944. language: c
  945. src:
  946. - test/core/fling/fling_test.c
  947. deps:
  948. - grpc_test_util
  949. - grpc
  950. - gpr_test_util
  951. - gpr
  952. platforms:
  953. - mac
  954. - linux
  955. - posix
  956. - name: gen_hpack_tables
  957. build: tool
  958. language: c
  959. src:
  960. - tools/codegen/core/gen_hpack_tables.c
  961. deps:
  962. - gpr
  963. - grpc
  964. - name: gen_legal_metadata_characters
  965. build: tool
  966. language: c
  967. src:
  968. - tools/codegen/core/gen_legal_metadata_characters.c
  969. deps: []
  970. - name: gpr_cmdline_test
  971. build: test
  972. language: c
  973. src:
  974. - test/core/support/cmdline_test.c
  975. deps:
  976. - gpr_test_util
  977. - gpr
  978. - name: gpr_cpu_test
  979. build: test
  980. language: c
  981. src:
  982. - test/core/support/cpu_test.c
  983. deps:
  984. - gpr_test_util
  985. - gpr
  986. - name: gpr_env_test
  987. build: test
  988. language: c
  989. src:
  990. - test/core/support/env_test.c
  991. deps:
  992. - gpr_test_util
  993. - gpr
  994. - name: gpr_file_test
  995. build: test
  996. language: c
  997. src:
  998. - test/core/support/file_test.c
  999. deps:
  1000. - gpr_test_util
  1001. - gpr
  1002. - name: gpr_histogram_test
  1003. build: test
  1004. language: c
  1005. src:
  1006. - test/core/support/histogram_test.c
  1007. deps:
  1008. - gpr_test_util
  1009. - gpr
  1010. - name: gpr_host_port_test
  1011. build: test
  1012. language: c
  1013. src:
  1014. - test/core/support/host_port_test.c
  1015. deps:
  1016. - gpr_test_util
  1017. - gpr
  1018. - name: gpr_log_test
  1019. build: test
  1020. language: c
  1021. src:
  1022. - test/core/support/log_test.c
  1023. deps:
  1024. - gpr_test_util
  1025. - gpr
  1026. - name: gpr_slice_buffer_test
  1027. build: test
  1028. language: c
  1029. src:
  1030. - test/core/support/slice_buffer_test.c
  1031. deps:
  1032. - gpr_test_util
  1033. - gpr
  1034. - name: gpr_slice_test
  1035. build: test
  1036. language: c
  1037. src:
  1038. - test/core/support/slice_test.c
  1039. deps:
  1040. - gpr_test_util
  1041. - gpr
  1042. - name: gpr_stack_lockfree_test
  1043. build: test
  1044. language: c
  1045. src:
  1046. - test/core/support/stack_lockfree_test.c
  1047. deps:
  1048. - gpr_test_util
  1049. - gpr
  1050. - name: gpr_string_test
  1051. build: test
  1052. language: c
  1053. src:
  1054. - test/core/support/string_test.c
  1055. deps:
  1056. - gpr_test_util
  1057. - gpr
  1058. - name: gpr_sync_test
  1059. build: test
  1060. language: c
  1061. src:
  1062. - test/core/support/sync_test.c
  1063. deps:
  1064. - gpr_test_util
  1065. - gpr
  1066. - name: gpr_thd_test
  1067. build: test
  1068. language: c
  1069. src:
  1070. - test/core/support/thd_test.c
  1071. deps:
  1072. - gpr_test_util
  1073. - gpr
  1074. - name: gpr_time_test
  1075. build: test
  1076. language: c
  1077. src:
  1078. - test/core/support/time_test.c
  1079. deps:
  1080. - gpr_test_util
  1081. - gpr
  1082. - name: gpr_tls_test
  1083. build: test
  1084. language: c
  1085. src:
  1086. - test/core/support/tls_test.c
  1087. deps:
  1088. - gpr_test_util
  1089. - gpr
  1090. - name: gpr_useful_test
  1091. build: test
  1092. language: c
  1093. src:
  1094. - test/core/support/useful_test.c
  1095. deps:
  1096. - gpr_test_util
  1097. - gpr
  1098. - name: grpc_auth_context_test
  1099. build: test
  1100. language: c
  1101. src:
  1102. - test/core/security/auth_context_test.c
  1103. deps:
  1104. - grpc_test_util
  1105. - grpc
  1106. - gpr_test_util
  1107. - gpr
  1108. - name: grpc_base64_test
  1109. build: test
  1110. language: c
  1111. src:
  1112. - test/core/security/base64_test.c
  1113. deps:
  1114. - grpc_test_util
  1115. - grpc
  1116. - gpr_test_util
  1117. - gpr
  1118. - name: grpc_byte_buffer_reader_test
  1119. build: test
  1120. language: c
  1121. src:
  1122. - test/core/surface/byte_buffer_reader_test.c
  1123. deps:
  1124. - grpc_test_util
  1125. - grpc
  1126. - gpr_test_util
  1127. - gpr
  1128. - name: grpc_channel_args_test
  1129. build: test
  1130. language: c
  1131. src:
  1132. - test/core/channel/channel_args_test.c
  1133. deps:
  1134. - grpc_test_util
  1135. - grpc
  1136. - gpr_test_util
  1137. - gpr
  1138. - name: grpc_channel_stack_test
  1139. build: test
  1140. language: c
  1141. src:
  1142. - test/core/channel/channel_stack_test.c
  1143. deps:
  1144. - grpc_test_util
  1145. - grpc
  1146. - gpr_test_util
  1147. - gpr
  1148. - name: grpc_completion_queue_test
  1149. build: test
  1150. language: c
  1151. src:
  1152. - test/core/surface/completion_queue_test.c
  1153. deps:
  1154. - grpc_test_util
  1155. - grpc
  1156. - gpr_test_util
  1157. - gpr
  1158. - name: grpc_create_jwt
  1159. build: tool
  1160. language: c
  1161. src:
  1162. - test/core/security/create_jwt.c
  1163. deps:
  1164. - grpc_test_util
  1165. - grpc
  1166. - gpr_test_util
  1167. - gpr
  1168. - name: grpc_credentials_test
  1169. build: test
  1170. language: c
  1171. src:
  1172. - test/core/security/credentials_test.c
  1173. deps:
  1174. - grpc_test_util
  1175. - grpc
  1176. - gpr_test_util
  1177. - gpr
  1178. - name: grpc_fetch_oauth2
  1179. build: tool
  1180. language: c
  1181. src:
  1182. - test/core/security/fetch_oauth2.c
  1183. deps:
  1184. - grpc_test_util
  1185. - grpc
  1186. - gpr_test_util
  1187. - gpr
  1188. - name: grpc_json_token_test
  1189. build: test
  1190. language: c
  1191. src:
  1192. - test/core/security/json_token_test.c
  1193. deps:
  1194. - grpc_test_util
  1195. - grpc
  1196. - gpr_test_util
  1197. - gpr
  1198. platforms:
  1199. - linux
  1200. - posix
  1201. - mac
  1202. - name: grpc_jwt_verifier_test
  1203. build: test
  1204. language: c
  1205. src:
  1206. - test/core/security/jwt_verifier_test.c
  1207. deps:
  1208. - grpc_test_util
  1209. - grpc
  1210. - gpr_test_util
  1211. - gpr
  1212. - name: grpc_print_google_default_creds_token
  1213. build: tool
  1214. language: c
  1215. src:
  1216. - test/core/security/print_google_default_creds_token.c
  1217. deps:
  1218. - grpc_test_util
  1219. - grpc
  1220. - gpr_test_util
  1221. - gpr
  1222. - name: grpc_security_connector_test
  1223. build: test
  1224. language: c
  1225. src:
  1226. - test/core/security/security_connector_test.c
  1227. deps:
  1228. - grpc_test_util
  1229. - grpc
  1230. - gpr_test_util
  1231. - gpr
  1232. - name: grpc_stream_op_test
  1233. build: test
  1234. language: c
  1235. src:
  1236. - test/core/transport/stream_op_test.c
  1237. deps:
  1238. - grpc_test_util
  1239. - grpc
  1240. - gpr_test_util
  1241. - gpr
  1242. - name: grpc_verify_jwt
  1243. build: tool
  1244. language: c
  1245. src:
  1246. - test/core/security/verify_jwt.c
  1247. deps:
  1248. - grpc_test_util
  1249. - grpc
  1250. - gpr_test_util
  1251. - gpr
  1252. - name: hpack_parser_test
  1253. build: test
  1254. language: c
  1255. src:
  1256. - test/core/transport/chttp2/hpack_parser_test.c
  1257. deps:
  1258. - grpc_test_util
  1259. - grpc
  1260. - gpr_test_util
  1261. - gpr
  1262. - name: hpack_table_test
  1263. build: test
  1264. language: c
  1265. src:
  1266. - test/core/transport/chttp2/hpack_table_test.c
  1267. deps:
  1268. - grpc_test_util
  1269. - grpc
  1270. - gpr_test_util
  1271. - gpr
  1272. - name: httpcli_format_request_test
  1273. build: test
  1274. language: c
  1275. src:
  1276. - test/core/httpcli/format_request_test.c
  1277. deps:
  1278. - grpc_test_util
  1279. - grpc
  1280. - gpr_test_util
  1281. - gpr
  1282. - name: httpcli_parser_test
  1283. build: test
  1284. language: c
  1285. src:
  1286. - test/core/httpcli/parser_test.c
  1287. deps:
  1288. - grpc_test_util
  1289. - grpc
  1290. - gpr_test_util
  1291. - gpr
  1292. - name: httpcli_test
  1293. build: test
  1294. language: c
  1295. src:
  1296. - test/core/httpcli/httpcli_test.c
  1297. deps:
  1298. - grpc_test_util
  1299. - grpc
  1300. - gpr_test_util
  1301. - gpr
  1302. platforms:
  1303. - mac
  1304. - linux
  1305. - posix
  1306. - name: json_rewrite
  1307. build: test
  1308. run: false
  1309. language: c
  1310. src:
  1311. - test/core/json/json_rewrite.c
  1312. deps:
  1313. - grpc
  1314. - gpr
  1315. - name: json_rewrite_test
  1316. build: test
  1317. language: c
  1318. src:
  1319. - test/core/json/json_rewrite_test.c
  1320. deps:
  1321. - grpc_test_util
  1322. - grpc
  1323. - gpr_test_util
  1324. - gpr
  1325. - name: json_test
  1326. build: test
  1327. language: c
  1328. src:
  1329. - test/core/json/json_test.c
  1330. deps:
  1331. - grpc_test_util
  1332. - grpc
  1333. - gpr_test_util
  1334. - gpr
  1335. - name: lame_client_test
  1336. build: test
  1337. language: c
  1338. src:
  1339. - test/core/surface/lame_client_test.c
  1340. deps:
  1341. - grpc_test_util
  1342. - grpc
  1343. - gpr_test_util
  1344. - gpr
  1345. - name: lb_policies_test
  1346. build: test
  1347. language: c
  1348. src:
  1349. - test/core/client_config/lb_policies_test.c
  1350. deps:
  1351. - grpc_test_util
  1352. - grpc
  1353. - gpr_test_util
  1354. - gpr
  1355. - name: low_level_ping_pong_benchmark
  1356. build: benchmark
  1357. language: c
  1358. src:
  1359. - test/core/network_benchmarks/low_level_ping_pong.c
  1360. deps:
  1361. - grpc_test_util
  1362. - grpc
  1363. - gpr_test_util
  1364. - gpr
  1365. platforms:
  1366. - mac
  1367. - linux
  1368. - posix
  1369. - name: message_compress_test
  1370. build: test
  1371. language: c
  1372. src:
  1373. - test/core/compression/message_compress_test.c
  1374. deps:
  1375. - grpc_test_util
  1376. - grpc
  1377. - gpr_test_util
  1378. - gpr
  1379. - name: multi_init_test
  1380. build: test
  1381. language: c
  1382. src:
  1383. - test/core/surface/multi_init_test.c
  1384. deps:
  1385. - grpc_test_util
  1386. - grpc
  1387. - gpr_test_util
  1388. - gpr
  1389. - name: multiple_server_queues_test
  1390. build: test
  1391. language: c
  1392. src:
  1393. - test/core/end2end/multiple_server_queues_test.c
  1394. deps:
  1395. - grpc_test_util
  1396. - grpc
  1397. - gpr_test_util
  1398. - gpr
  1399. - name: murmur_hash_test
  1400. build: test
  1401. language: c
  1402. src:
  1403. - test/core/support/murmur_hash_test.c
  1404. deps:
  1405. - gpr_test_util
  1406. - gpr
  1407. - name: no_server_test
  1408. build: test
  1409. language: c
  1410. src:
  1411. - test/core/end2end/no_server_test.c
  1412. deps:
  1413. - grpc_test_util
  1414. - grpc
  1415. - gpr_test_util
  1416. - gpr
  1417. - name: resolve_address_test
  1418. build: test
  1419. language: c
  1420. src:
  1421. - test/core/iomgr/resolve_address_test.c
  1422. deps:
  1423. - grpc_test_util
  1424. - grpc
  1425. - gpr_test_util
  1426. - gpr
  1427. - name: secure_endpoint_test
  1428. build: test
  1429. language: c
  1430. src:
  1431. - test/core/security/secure_endpoint_test.c
  1432. deps:
  1433. - grpc_test_util
  1434. - grpc
  1435. - gpr_test_util
  1436. - gpr
  1437. - name: sockaddr_utils_test
  1438. build: test
  1439. language: c
  1440. src:
  1441. - test/core/iomgr/sockaddr_utils_test.c
  1442. deps:
  1443. - grpc_test_util
  1444. - grpc
  1445. - gpr_test_util
  1446. - gpr
  1447. - name: tcp_client_posix_test
  1448. build: test
  1449. language: c
  1450. src:
  1451. - test/core/iomgr/tcp_client_posix_test.c
  1452. deps:
  1453. - grpc_test_util
  1454. - grpc
  1455. - gpr_test_util
  1456. - gpr
  1457. platforms:
  1458. - mac
  1459. - linux
  1460. - posix
  1461. - name: tcp_posix_test
  1462. build: test
  1463. language: c
  1464. src:
  1465. - test/core/iomgr/tcp_posix_test.c
  1466. deps:
  1467. - grpc_test_util
  1468. - grpc
  1469. - gpr_test_util
  1470. - gpr
  1471. platforms:
  1472. - mac
  1473. - linux
  1474. - posix
  1475. - name: tcp_server_posix_test
  1476. build: test
  1477. language: c
  1478. src:
  1479. - test/core/iomgr/tcp_server_posix_test.c
  1480. deps:
  1481. - grpc_test_util
  1482. - grpc
  1483. - gpr_test_util
  1484. - gpr
  1485. platforms:
  1486. - mac
  1487. - linux
  1488. - posix
  1489. - name: time_averaged_stats_test
  1490. build: test
  1491. language: c
  1492. src:
  1493. - test/core/iomgr/time_averaged_stats_test.c
  1494. deps:
  1495. - grpc_test_util
  1496. - grpc
  1497. - gpr_test_util
  1498. - gpr
  1499. - name: timeout_encoding_test
  1500. build: test
  1501. language: c
  1502. src:
  1503. - test/core/transport/chttp2/timeout_encoding_test.c
  1504. deps:
  1505. - grpc_test_util
  1506. - grpc
  1507. - gpr_test_util
  1508. - gpr
  1509. - name: timer_heap_test
  1510. build: test
  1511. language: c
  1512. src:
  1513. - test/core/iomgr/timer_heap_test.c
  1514. deps:
  1515. - grpc_test_util
  1516. - grpc
  1517. - gpr_test_util
  1518. - gpr
  1519. - name: timer_list_test
  1520. build: test
  1521. language: c
  1522. src:
  1523. - test/core/iomgr/timer_list_test.c
  1524. deps:
  1525. - grpc_test_util
  1526. - grpc
  1527. - gpr_test_util
  1528. - gpr
  1529. - name: timers_test
  1530. build: test
  1531. language: c
  1532. src:
  1533. - test/core/profiling/timers_test.c
  1534. deps:
  1535. - grpc_test_util
  1536. - grpc
  1537. - gpr_test_util
  1538. - gpr
  1539. - name: transport_metadata_test
  1540. build: test
  1541. language: c
  1542. src:
  1543. - test/core/transport/metadata_test.c
  1544. deps:
  1545. - grpc_test_util
  1546. - grpc
  1547. - gpr_test_util
  1548. - gpr
  1549. - name: transport_security_test
  1550. build: test
  1551. language: c
  1552. src:
  1553. - test/core/tsi/transport_security_test.c
  1554. deps:
  1555. - grpc_test_util
  1556. - grpc
  1557. - gpr_test_util
  1558. - gpr
  1559. platforms:
  1560. - linux
  1561. - posix
  1562. - mac
  1563. - name: udp_server_test
  1564. build: test
  1565. language: c
  1566. src:
  1567. - test/core/iomgr/udp_server_test.c
  1568. deps:
  1569. - grpc_test_util
  1570. - grpc
  1571. - gpr_test_util
  1572. - gpr
  1573. platforms:
  1574. - mac
  1575. - linux
  1576. - posix
  1577. - name: uri_parser_test
  1578. build: test
  1579. language: c
  1580. src:
  1581. - test/core/client_config/uri_parser_test.c
  1582. deps:
  1583. - grpc_test_util
  1584. - grpc
  1585. - gpr_test_util
  1586. - gpr
  1587. - name: workqueue_test
  1588. build: test
  1589. language: c
  1590. src:
  1591. - test/core/iomgr/workqueue_test.c
  1592. deps:
  1593. - grpc_test_util
  1594. - grpc
  1595. - gpr_test_util
  1596. - gpr
  1597. platforms:
  1598. - mac
  1599. - linux
  1600. - posix
  1601. - name: async_end2end_test
  1602. build: test
  1603. language: c++
  1604. src:
  1605. - test/cpp/end2end/async_end2end_test.cc
  1606. deps:
  1607. - grpc++_test_util
  1608. - grpc_test_util
  1609. - grpc++
  1610. - grpc
  1611. - gpr_test_util
  1612. - gpr
  1613. - name: async_streaming_ping_pong_test
  1614. build: test
  1615. language: c++
  1616. src:
  1617. - test/cpp/qps/async_streaming_ping_pong_test.cc
  1618. deps:
  1619. - qps
  1620. - grpc++_test_util
  1621. - grpc_test_util
  1622. - grpc++
  1623. - grpc
  1624. - gpr_test_util
  1625. - gpr
  1626. platforms:
  1627. - mac
  1628. - linux
  1629. - posix
  1630. - name: async_unary_ping_pong_test
  1631. build: test
  1632. language: c++
  1633. src:
  1634. - test/cpp/qps/async_unary_ping_pong_test.cc
  1635. deps:
  1636. - qps
  1637. - grpc++_test_util
  1638. - grpc_test_util
  1639. - grpc++
  1640. - grpc
  1641. - gpr_test_util
  1642. - gpr
  1643. platforms:
  1644. - mac
  1645. - linux
  1646. - posix
  1647. - name: auth_property_iterator_test
  1648. build: test
  1649. language: c++
  1650. src:
  1651. - test/cpp/common/auth_property_iterator_test.cc
  1652. deps:
  1653. - grpc++_test_util
  1654. - grpc_test_util
  1655. - grpc++
  1656. - grpc
  1657. - gpr_test_util
  1658. - gpr
  1659. - name: channel_arguments_test
  1660. build: test
  1661. language: c++
  1662. src:
  1663. - test/cpp/client/channel_arguments_test.cc
  1664. deps:
  1665. - grpc++
  1666. - grpc
  1667. - gpr
  1668. - name: cli_call_test
  1669. build: test
  1670. language: c++
  1671. src:
  1672. - test/cpp/util/cli_call_test.cc
  1673. deps:
  1674. - grpc++_test_util
  1675. - grpc_test_util
  1676. - grpc++
  1677. - grpc
  1678. - gpr_test_util
  1679. - gpr
  1680. - name: client_crash_test
  1681. build: test
  1682. language: c++
  1683. src:
  1684. - test/cpp/end2end/client_crash_test.cc
  1685. deps:
  1686. - grpc++_test_util
  1687. - grpc_test_util
  1688. - grpc++
  1689. - grpc
  1690. - gpr_test_util
  1691. - gpr
  1692. platforms:
  1693. - mac
  1694. - linux
  1695. - posix
  1696. - name: client_crash_test_server
  1697. build: test
  1698. run: false
  1699. language: c++
  1700. src:
  1701. - test/cpp/end2end/client_crash_test_server.cc
  1702. deps:
  1703. - grpc++_test_util
  1704. - grpc_test_util
  1705. - grpc++
  1706. - grpc
  1707. - gpr_test_util
  1708. - gpr
  1709. - name: credentials_test
  1710. build: test
  1711. language: c++
  1712. src:
  1713. - test/cpp/client/credentials_test.cc
  1714. deps:
  1715. - grpc++
  1716. - grpc
  1717. - gpr
  1718. - name: cxx_byte_buffer_test
  1719. build: test
  1720. language: c++
  1721. src:
  1722. - test/cpp/util/byte_buffer_test.cc
  1723. deps:
  1724. - grpc_test_util
  1725. - grpc++
  1726. - grpc
  1727. - gpr_test_util
  1728. - gpr
  1729. - name: cxx_slice_test
  1730. build: test
  1731. language: c++
  1732. src:
  1733. - test/cpp/util/slice_test.cc
  1734. deps:
  1735. - grpc_test_util
  1736. - grpc++
  1737. - grpc
  1738. - gpr_test_util
  1739. - gpr
  1740. - name: cxx_string_ref_test
  1741. build: test
  1742. language: c++
  1743. src:
  1744. - test/cpp/util/string_ref_test.cc
  1745. deps:
  1746. - grpc++
  1747. - name: cxx_time_test
  1748. build: test
  1749. language: c++
  1750. src:
  1751. - test/cpp/util/time_test.cc
  1752. deps:
  1753. - grpc_test_util
  1754. - grpc++
  1755. - grpc
  1756. - gpr_test_util
  1757. - gpr
  1758. - name: end2end_test
  1759. build: test
  1760. language: c++
  1761. src:
  1762. - test/cpp/end2end/end2end_test.cc
  1763. deps:
  1764. - grpc++_test_util
  1765. - grpc_test_util
  1766. - grpc++
  1767. - grpc
  1768. - gpr_test_util
  1769. - gpr
  1770. - name: generic_end2end_test
  1771. build: test
  1772. language: c++
  1773. src:
  1774. - test/cpp/end2end/generic_end2end_test.cc
  1775. deps:
  1776. - grpc++_test_util
  1777. - grpc_test_util
  1778. - grpc++
  1779. - grpc
  1780. - gpr_test_util
  1781. - gpr
  1782. - name: grpc_cli
  1783. build: test
  1784. run: false
  1785. language: c++
  1786. src:
  1787. - test/cpp/util/grpc_cli.cc
  1788. deps:
  1789. - grpc++_test_util
  1790. - grpc_test_util
  1791. - grpc++
  1792. - grpc
  1793. - gpr_test_util
  1794. - gpr
  1795. - grpc++_test_config
  1796. - name: grpc_cpp_plugin
  1797. build: protoc
  1798. language: c++
  1799. src:
  1800. - src/compiler/cpp_plugin.cc
  1801. deps:
  1802. - grpc_plugin_support
  1803. secure: false
  1804. vs_config_type: Application
  1805. vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
  1806. - name: grpc_csharp_plugin
  1807. build: protoc
  1808. language: c++
  1809. src:
  1810. - src/compiler/csharp_plugin.cc
  1811. deps:
  1812. - grpc_plugin_support
  1813. secure: false
  1814. vs_config_type: Application
  1815. vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
  1816. - name: grpc_objective_c_plugin
  1817. build: protoc
  1818. language: c++
  1819. src:
  1820. - src/compiler/objective_c_plugin.cc
  1821. deps:
  1822. - grpc_plugin_support
  1823. secure: false
  1824. vs_config_type: Application
  1825. vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
  1826. - name: grpc_python_plugin
  1827. build: protoc
  1828. language: c++
  1829. src:
  1830. - src/compiler/python_plugin.cc
  1831. deps:
  1832. - grpc_plugin_support
  1833. secure: false
  1834. vs_config_type: Application
  1835. vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
  1836. - name: grpc_ruby_plugin
  1837. build: protoc
  1838. language: c++
  1839. src:
  1840. - src/compiler/ruby_plugin.cc
  1841. deps:
  1842. - grpc_plugin_support
  1843. secure: false
  1844. vs_config_type: Application
  1845. vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
  1846. - name: interop_client
  1847. build: test
  1848. run: false
  1849. language: c++
  1850. src: []
  1851. deps:
  1852. - interop_client_main
  1853. - interop_client_helper
  1854. - grpc++_test_util
  1855. - grpc_test_util
  1856. - grpc++
  1857. - grpc
  1858. - gpr_test_util
  1859. - gpr
  1860. - grpc++_test_config
  1861. platforms:
  1862. - mac
  1863. - linux
  1864. - posix
  1865. - name: interop_server
  1866. build: test
  1867. run: false
  1868. language: c++
  1869. src: []
  1870. deps:
  1871. - interop_server_main
  1872. - interop_server_helper
  1873. - grpc++_test_util
  1874. - grpc_test_util
  1875. - grpc++
  1876. - grpc
  1877. - gpr_test_util
  1878. - gpr
  1879. - grpc++_test_config
  1880. platforms:
  1881. - mac
  1882. - linux
  1883. - posix
  1884. - name: interop_test
  1885. build: test
  1886. language: c++
  1887. src:
  1888. - test/cpp/interop/interop_test.cc
  1889. deps:
  1890. - grpc_test_util
  1891. - grpc
  1892. - gpr_test_util
  1893. - gpr
  1894. platforms:
  1895. - mac
  1896. - linux
  1897. - posix
  1898. - name: mock_test
  1899. build: test
  1900. language: c++
  1901. src:
  1902. - test/cpp/end2end/mock_test.cc
  1903. deps:
  1904. - grpc++_test_util
  1905. - grpc_test_util
  1906. - grpc++
  1907. - grpc
  1908. - gpr_test_util
  1909. - gpr
  1910. - name: qps_driver
  1911. build: benchmark
  1912. language: c++
  1913. src:
  1914. - test/cpp/qps/qps_driver.cc
  1915. deps:
  1916. - qps
  1917. - grpc++_test_util
  1918. - grpc_test_util
  1919. - grpc++
  1920. - grpc
  1921. - gpr_test_util
  1922. - gpr
  1923. - grpc++_test_config
  1924. - name: qps_interarrival_test
  1925. build: test
  1926. run: false
  1927. language: c++
  1928. src:
  1929. - test/cpp/qps/qps_interarrival_test.cc
  1930. deps:
  1931. - qps
  1932. - grpc++_test_util
  1933. - grpc_test_util
  1934. - grpc++
  1935. - grpc
  1936. - gpr_test_util
  1937. - gpr
  1938. platforms:
  1939. - mac
  1940. - linux
  1941. - posix
  1942. - name: qps_openloop_test
  1943. build: test
  1944. run: false
  1945. language: c++
  1946. src:
  1947. - test/cpp/qps/qps_openloop_test.cc
  1948. deps:
  1949. - qps
  1950. - grpc++_test_util
  1951. - grpc_test_util
  1952. - grpc++
  1953. - grpc
  1954. - gpr_test_util
  1955. - gpr
  1956. - grpc++_test_config
  1957. platforms:
  1958. - mac
  1959. - linux
  1960. - posix
  1961. - name: qps_test
  1962. build: test
  1963. language: c++
  1964. src:
  1965. - test/cpp/qps/qps_test.cc
  1966. deps:
  1967. - qps
  1968. - grpc++_test_util
  1969. - grpc_test_util
  1970. - grpc++
  1971. - grpc
  1972. - gpr_test_util
  1973. - gpr
  1974. - grpc++_test_config
  1975. exclude_configs:
  1976. - tsan
  1977. platforms:
  1978. - mac
  1979. - linux
  1980. - posix
  1981. - name: qps_worker
  1982. build: benchmark
  1983. language: c++
  1984. headers:
  1985. - test/cpp/qps/client.h
  1986. - test/cpp/qps/server.h
  1987. src:
  1988. - test/cpp/qps/worker.cc
  1989. deps:
  1990. - qps
  1991. - grpc++_test_util
  1992. - grpc_test_util
  1993. - grpc++
  1994. - grpc
  1995. - gpr_test_util
  1996. - gpr
  1997. - grpc++_test_config
  1998. - name: reconnect_interop_client
  1999. build: test
  2000. run: false
  2001. language: c++
  2002. src:
  2003. - test/proto/empty.proto
  2004. - test/proto/messages.proto
  2005. - test/proto/test.proto
  2006. - test/cpp/interop/reconnect_interop_client.cc
  2007. deps:
  2008. - grpc++_test_util
  2009. - grpc_test_util
  2010. - grpc++
  2011. - grpc
  2012. - gpr_test_util
  2013. - gpr
  2014. - grpc++_test_config
  2015. - name: reconnect_interop_server
  2016. build: test
  2017. run: false
  2018. language: c++
  2019. src:
  2020. - test/proto/empty.proto
  2021. - test/proto/messages.proto
  2022. - test/proto/test.proto
  2023. - test/cpp/interop/reconnect_interop_server.cc
  2024. deps:
  2025. - reconnect_server
  2026. - grpc++_test_util
  2027. - grpc_test_util
  2028. - grpc++
  2029. - grpc
  2030. - gpr_test_util
  2031. - gpr
  2032. - grpc++_test_config
  2033. - name: secure_auth_context_test
  2034. build: test
  2035. language: c++
  2036. src:
  2037. - test/cpp/common/secure_auth_context_test.cc
  2038. deps:
  2039. - grpc++_test_util
  2040. - grpc_test_util
  2041. - grpc++
  2042. - grpc
  2043. - gpr_test_util
  2044. - gpr
  2045. - name: secure_sync_unary_ping_pong_test
  2046. build: test
  2047. language: c++
  2048. src:
  2049. - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
  2050. deps:
  2051. - qps
  2052. - grpc++_test_util
  2053. - grpc_test_util
  2054. - grpc++
  2055. - grpc
  2056. - gpr_test_util
  2057. - gpr
  2058. platforms:
  2059. - mac
  2060. - linux
  2061. - posix
  2062. - name: server_crash_test
  2063. build: test
  2064. language: c++
  2065. src:
  2066. - test/cpp/end2end/server_crash_test.cc
  2067. deps:
  2068. - grpc++_test_util
  2069. - grpc_test_util
  2070. - grpc++
  2071. - grpc
  2072. - gpr_test_util
  2073. - gpr
  2074. platforms:
  2075. - mac
  2076. - linux
  2077. - posix
  2078. - name: server_crash_test_client
  2079. build: test
  2080. run: false
  2081. language: c++
  2082. src:
  2083. - test/cpp/end2end/server_crash_test_client.cc
  2084. deps:
  2085. - grpc++_test_util
  2086. - grpc_test_util
  2087. - grpc++
  2088. - grpc
  2089. - gpr_test_util
  2090. - gpr
  2091. - name: shutdown_test
  2092. build: test
  2093. language: c++
  2094. src:
  2095. - test/cpp/end2end/shutdown_test.cc
  2096. deps:
  2097. - grpc++_test_util
  2098. - grpc_test_util
  2099. - grpc++
  2100. - grpc
  2101. - gpr_test_util
  2102. - gpr
  2103. - name: status_test
  2104. build: test
  2105. language: c++
  2106. src:
  2107. - test/cpp/util/status_test.cc
  2108. deps:
  2109. - grpc_test_util
  2110. - grpc++
  2111. - grpc
  2112. - gpr_test_util
  2113. - gpr
  2114. - name: streaming_throughput_test
  2115. build: test
  2116. language: c++
  2117. src:
  2118. - test/cpp/end2end/streaming_throughput_test.cc
  2119. deps:
  2120. - grpc++_test_util
  2121. - grpc_test_util
  2122. - grpc++
  2123. - grpc
  2124. - gpr_test_util
  2125. - gpr
  2126. platforms:
  2127. - mac
  2128. - linux
  2129. - posix
  2130. - name: stress_test
  2131. build: test
  2132. run: false
  2133. language: c++
  2134. headers:
  2135. - test/cpp/interop/client_helper.h
  2136. - test/cpp/interop/interop_client.h
  2137. - test/cpp/interop/stress_interop_client.h
  2138. src:
  2139. - test/proto/empty.proto
  2140. - test/proto/messages.proto
  2141. - test/proto/test.proto
  2142. - test/cpp/interop/interop_client.cc
  2143. - test/cpp/interop/stress_interop_client.cc
  2144. - test/cpp/interop/stress_test.cc
  2145. deps:
  2146. - grpc++_test_util
  2147. - grpc_test_util
  2148. - grpc++
  2149. - grpc
  2150. - gpr_test_util
  2151. - gpr
  2152. - grpc++_test_config
  2153. - name: sync_streaming_ping_pong_test
  2154. build: test
  2155. language: c++
  2156. src:
  2157. - test/cpp/qps/sync_streaming_ping_pong_test.cc
  2158. deps:
  2159. - qps
  2160. - grpc++_test_util
  2161. - grpc_test_util
  2162. - grpc++
  2163. - grpc
  2164. - gpr_test_util
  2165. - gpr
  2166. platforms:
  2167. - mac
  2168. - linux
  2169. - posix
  2170. - name: sync_unary_ping_pong_test
  2171. build: test
  2172. language: c++
  2173. src:
  2174. - test/cpp/qps/sync_unary_ping_pong_test.cc
  2175. deps:
  2176. - qps
  2177. - grpc++_test_util
  2178. - grpc_test_util
  2179. - grpc++
  2180. - grpc
  2181. - gpr_test_util
  2182. - gpr
  2183. platforms:
  2184. - mac
  2185. - linux
  2186. - posix
  2187. - name: thread_stress_test
  2188. build: test
  2189. language: c++
  2190. src:
  2191. - test/cpp/end2end/thread_stress_test.cc
  2192. deps:
  2193. - grpc++_test_util
  2194. - grpc_test_util
  2195. - grpc++
  2196. - grpc
  2197. - gpr_test_util
  2198. - gpr
  2199. - name: zookeeper_test
  2200. build: test
  2201. run: false
  2202. language: c++
  2203. src:
  2204. - test/cpp/end2end/zookeeper_test.cc
  2205. deps:
  2206. - grpc++_test_util
  2207. - grpc_test_util
  2208. - grpc++
  2209. - grpc_zookeeper
  2210. - grpc
  2211. - gpr_test_util
  2212. - gpr
  2213. external_deps:
  2214. - zookeeper
  2215. platforms:
  2216. - linux
  2217. vspackages:
  2218. - linkage: static
  2219. name: grpc.dependencies.zlib
  2220. props: false
  2221. redist: true
  2222. version: 1.2.8.9
  2223. - name: grpc.dependencies.openssl
  2224. props: true
  2225. redist: true
  2226. version: 1.0.2.3
  2227. - name: gflags
  2228. props: false
  2229. redist: false
  2230. version: 2.1.2.1
  2231. - name: gtest
  2232. props: false
  2233. redist: false
  2234. version: 1.7.0.1
  2235. node_modules:
  2236. - deps:
  2237. - grpc
  2238. - gpr
  2239. name: grpc_node
  2240. src:
  2241. - src/node/ext/byte_buffer.cc
  2242. - src/node/ext/call.cc
  2243. - src/node/ext/call_credentials.cc
  2244. - src/node/ext/channel.cc
  2245. - src/node/ext/channel_credentials.cc
  2246. - src/node/ext/completion_queue_async_worker.cc
  2247. - src/node/ext/node_grpc.cc
  2248. - src/node/ext/server.cc
  2249. - src/node/ext/server_credentials.cc
  2250. - src/node/ext/timeval.cc