build.json 57 KB

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