blob: 68c9b8904089d2c8cb973e77a4b49e23e0ab790b [file] [log] [blame]
Craig Tillerbf4b2242015-08-31 15:53:53 -07001'#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.
4settings:
Craig Tillerf008f062016-02-08 12:48:03 -08005 '#1': The public version number of the library.
6 '#2': Master always has a "-dev" suffix
7 '#3': Use "-preN" suffixes to identify pre-release versions
Craig Tiller719a9a02016-02-08 15:06:54 -08008 '#4': Per-language overrides are possible with (eg) ruby_version tag here
Craig Tillerf008f062016-02-08 12:48:03 -08009 '#5': See the expand_version.py for all the quirks here
Nicolas "Pixel" Noble1935c362016-02-09 01:54:56 +010010 version: 0.14.0-dev
Craig Tillerbf4b2242015-08-31 15:53:53 -070011filegroups:
12- name: census
Craig Tiller25834342015-09-25 08:08:24 -070013 public_headers:
14 - include/grpc/census.h
15 headers:
16 - src/core/census/aggregation.h
Alistair Veitch85afe712016-02-02 17:58:15 -080017 - src/core/census/log.h
Craig Tiller25834342015-09-25 08:08:24 -070018 - src/core/census/rpc_metric_id.h
19 src:
20 - src/core/census/context.c
21 - src/core/census/initialize.c
Alistair Veitch85afe712016-02-02 17:58:15 -080022 - src/core/census/log.c
Craig Tiller25834342015-09-25 08:08:24 -070023 - src/core/census/operation.c
Nicolas "Pixel" Noblefa132c22016-01-31 09:31:15 +010024 - src/core/census/placeholders.c
Craig Tiller25834342015-09-25 08:08:24 -070025 - src/core/census/tracing.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010026- name: gpr
27 public_headers:
28 - include/grpc/support/alloc.h
29 - include/grpc/support/atm.h
30 - include/grpc/support/atm_gcc_atomic.h
31 - include/grpc/support/atm_gcc_sync.h
32 - include/grpc/support/atm_win32.h
33 - include/grpc/support/avl.h
34 - include/grpc/support/cmdline.h
35 - include/grpc/support/cpu.h
36 - include/grpc/support/histogram.h
37 - include/grpc/support/host_port.h
38 - include/grpc/support/log.h
39 - include/grpc/support/log_win32.h
40 - include/grpc/support/port_platform.h
41 - include/grpc/support/slice.h
42 - include/grpc/support/slice_buffer.h
43 - include/grpc/support/string_util.h
44 - include/grpc/support/subprocess.h
45 - include/grpc/support/sync.h
46 - include/grpc/support/sync_generic.h
47 - include/grpc/support/sync_posix.h
48 - include/grpc/support/sync_win32.h
49 - include/grpc/support/thd.h
50 - include/grpc/support/time.h
51 - include/grpc/support/tls.h
52 - include/grpc/support/tls_gcc.h
53 - include/grpc/support/tls_msvc.h
54 - include/grpc/support/tls_pthread.h
55 - include/grpc/support/useful.h
56 headers:
57 - src/core/profiling/timers.h
58 - src/core/support/block_annotate.h
59 - src/core/support/env.h
60 - src/core/support/file.h
61 - src/core/support/murmur_hash.h
62 - src/core/support/stack_lockfree.h
63 - src/core/support/string.h
64 - src/core/support/string_win32.h
65 - src/core/support/thd_internal.h
66 - src/core/support/time_precise.h
67 src:
68 - src/core/profiling/basic_timers.c
69 - src/core/profiling/stap_timers.c
70 - src/core/support/alloc.c
71 - src/core/support/avl.c
72 - src/core/support/cmdline.c
73 - src/core/support/cpu_iphone.c
74 - src/core/support/cpu_linux.c
75 - src/core/support/cpu_posix.c
76 - src/core/support/cpu_windows.c
77 - src/core/support/env_linux.c
78 - src/core/support/env_posix.c
79 - src/core/support/env_win32.c
80 - src/core/support/file.c
81 - src/core/support/file_posix.c
82 - src/core/support/file_win32.c
83 - src/core/support/histogram.c
84 - src/core/support/host_port.c
85 - src/core/support/log.c
86 - src/core/support/log_android.c
87 - src/core/support/log_linux.c
88 - src/core/support/log_posix.c
89 - src/core/support/log_win32.c
90 - src/core/support/murmur_hash.c
91 - src/core/support/slice.c
92 - src/core/support/slice_buffer.c
93 - src/core/support/stack_lockfree.c
94 - src/core/support/string.c
95 - src/core/support/string_posix.c
96 - src/core/support/string_win32.c
97 - src/core/support/subprocess_posix.c
Nicolas "Pixel" Noble78825ca2016-01-31 07:08:20 +010098 - src/core/support/subprocess_windows.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010099 - src/core/support/sync.c
100 - src/core/support/sync_posix.c
101 - src/core/support/sync_win32.c
102 - src/core/support/thd.c
103 - src/core/support/thd_posix.c
104 - src/core/support/thd_win32.c
105 - src/core/support/time.c
106 - src/core/support/time_posix.c
107 - src/core/support/time_precise.c
108 - src/core/support/time_win32.c
109 - src/core/support/tls_pthread.c
Nicolas "Pixel" Noble89d8ed12016-02-03 01:12:14 +0100110 - src/core/support/wrap_memcpy.c
Craig Tiller1298afd2016-02-09 12:29:17 -0800111- name: gpr_codegen
112 public_headers:
113 - include/grpc/impl/codegen/alloc.h
114 - include/grpc/impl/codegen/atm.h
115 - include/grpc/impl/codegen/atm_gcc_atomic.h
116 - include/grpc/impl/codegen/atm_gcc_sync.h
117 - include/grpc/impl/codegen/atm_win32.h
118 - include/grpc/impl/codegen/log.h
119 - include/grpc/impl/codegen/port_platform.h
120 - include/grpc/impl/codegen/slice.h
121 - include/grpc/impl/codegen/slice_buffer.h
122 - include/grpc/impl/codegen/sync.h
123 - include/grpc/impl/codegen/sync_generic.h
124 - include/grpc/impl/codegen/sync_posix.h
125 - include/grpc/impl/codegen/sync_win32.h
126 - include/grpc/impl/codegen/time.h
Craig Tillerbf4b2242015-08-31 15:53:53 -0700127- name: grpc++_base
Craig Tiller25834342015-09-25 08:08:24 -0700128 public_headers:
vjpaif9f61cf2016-02-10 20:51:53 -0800129 - include/grpc++/alarm.h
Craig Tiller25834342015-09-25 08:08:24 -0700130 - include/grpc++/channel.h
131 - include/grpc++/client_context.h
132 - include/grpc++/completion_queue.h
133 - include/grpc++/create_channel.h
134 - include/grpc++/generic/async_generic_service.h
135 - include/grpc++/generic/generic_stub.h
136 - include/grpc++/grpc++.h
137 - include/grpc++/impl/call.h
138 - include/grpc++/impl/client_unary_call.h
139 - include/grpc++/impl/grpc_library.h
yang-g77c63332016-01-14 16:09:04 -0800140 - include/grpc++/impl/method_handler_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700141 - include/grpc++/impl/proto_utils.h
142 - include/grpc++/impl/rpc_method.h
143 - include/grpc++/impl/rpc_service_method.h
144 - include/grpc++/impl/serialization_traits.h
yang-ga23f17b2015-11-25 10:21:05 -0800145 - include/grpc++/impl/server_builder_option.h
Craig Tiller25834342015-09-25 08:08:24 -0700146 - include/grpc++/impl/service_type.h
147 - include/grpc++/impl/sync.h
148 - include/grpc++/impl/sync_cxx11.h
149 - include/grpc++/impl/sync_no_cxx11.h
150 - include/grpc++/impl/thd.h
151 - include/grpc++/impl/thd_cxx11.h
152 - include/grpc++/impl/thd_no_cxx11.h
153 - include/grpc++/security/auth_context.h
154 - include/grpc++/security/auth_metadata_processor.h
155 - include/grpc++/security/credentials.h
156 - include/grpc++/security/server_credentials.h
157 - include/grpc++/server.h
158 - include/grpc++/server_builder.h
159 - include/grpc++/server_context.h
160 - include/grpc++/support/async_stream.h
161 - include/grpc++/support/async_unary_call.h
162 - include/grpc++/support/byte_buffer.h
163 - include/grpc++/support/channel_arguments.h
164 - include/grpc++/support/config.h
165 - include/grpc++/support/config_protobuf.h
166 - include/grpc++/support/slice.h
167 - include/grpc++/support/status.h
168 - include/grpc++/support/status_code_enum.h
169 - include/grpc++/support/string_ref.h
170 - include/grpc++/support/stub_options.h
171 - include/grpc++/support/sync_stream.h
172 - include/grpc++/support/time.h
173 headers:
174 - src/cpp/client/create_channel_internal.h
175 - src/cpp/common/create_auth_context.h
176 - src/cpp/server/dynamic_thread_pool.h
Craig Tiller25834342015-09-25 08:08:24 -0700177 - src/cpp/server/thread_pool_interface.h
178 src:
179 - src/cpp/client/channel.cc
Craig Tiller25834342015-09-25 08:08:24 -0700180 - src/cpp/client/client_context.cc
181 - src/cpp/client/create_channel.cc
182 - src/cpp/client/create_channel_internal.cc
183 - src/cpp/client/credentials.cc
184 - src/cpp/client/generic_stub.cc
185 - src/cpp/client/insecure_credentials.cc
vjpai04e992a2016-02-10 16:58:38 -0800186 - src/cpp/common/alarm.cc
Craig Tiller25834342015-09-25 08:08:24 -0700187 - src/cpp/common/call.cc
yang-g52705592015-11-25 11:45:33 -0800188 - src/cpp/common/channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700189 - src/cpp/common/completion_queue.cc
190 - src/cpp/common/rpc_method.cc
191 - src/cpp/proto/proto_utils.cc
192 - src/cpp/server/async_generic_service.cc
193 - src/cpp/server/create_default_thread_pool.cc
194 - src/cpp/server/dynamic_thread_pool.cc
Craig Tiller25834342015-09-25 08:08:24 -0700195 - src/cpp/server/insecure_server_credentials.cc
196 - src/cpp/server/server.cc
197 - src/cpp/server/server_builder.cc
198 - src/cpp/server/server_context.cc
199 - src/cpp/server/server_credentials.cc
200 - src/cpp/util/byte_buffer.cc
201 - src/cpp/util/slice.cc
202 - src/cpp/util/status.cc
203 - src/cpp/util/string_ref.cc
204 - src/cpp/util/time.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700205- name: grpc_base
Craig Tiller25834342015-09-25 08:08:24 -0700206 public_headers:
207 - include/grpc/byte_buffer.h
208 - include/grpc/byte_buffer_reader.h
209 - include/grpc/compression.h
210 - include/grpc/grpc.h
211 - include/grpc/status.h
212 headers:
213 - src/core/census/grpc_filter.h
214 - src/core/channel/channel_args.h
215 - src/core/channel/channel_stack.h
216 - src/core/channel/client_channel.h
David Garcia Quintas7b1bd2c2015-10-05 18:22:10 -0700217 - src/core/channel/client_uchannel.h
Craig Tiller25834342015-09-25 08:08:24 -0700218 - src/core/channel/compress_filter.h
219 - src/core/channel/connected_channel.h
220 - src/core/channel/context.h
221 - src/core/channel/http_client_filter.h
222 - src/core/channel/http_server_filter.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800223 - src/core/channel/subchannel_call_holder.h
Craig Tiller25834342015-09-25 08:08:24 -0700224 - src/core/client_config/client_config.h
225 - src/core/client_config/connector.h
yang-ga6124122015-11-05 22:36:20 -0800226 - src/core/client_config/initial_connect_string.h
Craig Tiller25834342015-09-25 08:08:24 -0700227 - src/core/client_config/lb_policies/pick_first.h
228 - src/core/client_config/lb_policies/round_robin.h
229 - src/core/client_config/lb_policy.h
230 - src/core/client_config/lb_policy_factory.h
231 - src/core/client_config/lb_policy_registry.h
232 - src/core/client_config/resolver.h
233 - src/core/client_config/resolver_factory.h
234 - src/core/client_config/resolver_registry.h
235 - src/core/client_config/resolvers/dns_resolver.h
236 - src/core/client_config/resolvers/sockaddr_resolver.h
237 - src/core/client_config/subchannel.h
238 - src/core/client_config/subchannel_factory.h
Craig Tiller694cf8b2016-01-15 21:13:25 -0800239 - src/core/client_config/subchannel_index.h
Craig Tiller25834342015-09-25 08:08:24 -0700240 - src/core/client_config/uri_parser.h
Craig Tillerebdef9d2015-11-19 17:09:49 -0800241 - src/core/compression/algorithm_metadata.h
Craig Tiller25834342015-09-25 08:08:24 -0700242 - src/core/compression/message_compress.h
243 - src/core/debug/trace.h
244 - src/core/httpcli/format_request.h
245 - src/core/httpcli/httpcli.h
246 - src/core/httpcli/parser.h
Craig Tiller25834342015-09-25 08:08:24 -0700247 - src/core/iomgr/closure.h
248 - src/core/iomgr/endpoint.h
249 - src/core/iomgr/endpoint_pair.h
250 - src/core/iomgr/exec_ctx.h
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700251 - src/core/iomgr/executor.h
Craig Tiller25834342015-09-25 08:08:24 -0700252 - src/core/iomgr/fd_posix.h
253 - src/core/iomgr/iocp_windows.h
254 - src/core/iomgr/iomgr.h
255 - src/core/iomgr/iomgr_internal.h
256 - src/core/iomgr/iomgr_posix.h
257 - src/core/iomgr/pollset.h
258 - src/core/iomgr/pollset_posix.h
259 - src/core/iomgr/pollset_set.h
260 - src/core/iomgr/pollset_set_posix.h
261 - src/core/iomgr/pollset_set_windows.h
262 - src/core/iomgr/pollset_windows.h
263 - src/core/iomgr/resolve_address.h
264 - src/core/iomgr/sockaddr.h
265 - src/core/iomgr/sockaddr_posix.h
266 - src/core/iomgr/sockaddr_utils.h
267 - src/core/iomgr/sockaddr_win32.h
268 - src/core/iomgr/socket_utils_posix.h
269 - src/core/iomgr/socket_windows.h
270 - src/core/iomgr/tcp_client.h
271 - src/core/iomgr/tcp_posix.h
272 - src/core/iomgr/tcp_server.h
273 - src/core/iomgr/tcp_windows.h
274 - src/core/iomgr/time_averaged_stats.h
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700275 - src/core/iomgr/timer.h
276 - src/core/iomgr/timer_heap.h
277 - src/core/iomgr/timer_internal.h
Craig Tiller25834342015-09-25 08:08:24 -0700278 - src/core/iomgr/udp_server.h
279 - src/core/iomgr/wakeup_fd_pipe.h
280 - src/core/iomgr/wakeup_fd_posix.h
281 - src/core/iomgr/workqueue.h
282 - src/core/iomgr/workqueue_posix.h
283 - src/core/iomgr/workqueue_windows.h
284 - src/core/json/json.h
285 - src/core/json/json_common.h
286 - src/core/json/json_reader.h
287 - src/core/json/json_writer.h
Craig Tiller25834342015-09-25 08:08:24 -0700288 - src/core/statistics/census_interface.h
289 - src/core/statistics/census_rpc_stats.h
Craig Tiller2468ff52015-10-05 09:00:17 -0700290 - src/core/surface/api_trace.h
Craig Tiller25834342015-09-25 08:08:24 -0700291 - src/core/surface/call.h
David Garcia Quintas0c331882015-10-08 14:51:54 -0700292 - src/core/surface/call_test_only.h
Craig Tiller25834342015-09-25 08:08:24 -0700293 - src/core/surface/channel.h
294 - src/core/surface/completion_queue.h
295 - src/core/surface/event_string.h
296 - src/core/surface/init.h
297 - src/core/surface/server.h
Craig Tiller0801ce62015-10-05 09:40:31 -0700298 - src/core/surface/surface_trace.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800299 - src/core/transport/byte_stream.h
Craig Tiller25834342015-09-25 08:08:24 -0700300 - src/core/transport/chttp2/alpn.h
301 - src/core/transport/chttp2/bin_encoder.h
302 - src/core/transport/chttp2/frame.h
303 - src/core/transport/chttp2/frame_data.h
304 - src/core/transport/chttp2/frame_goaway.h
305 - src/core/transport/chttp2/frame_ping.h
306 - src/core/transport/chttp2/frame_rst_stream.h
307 - src/core/transport/chttp2/frame_settings.h
308 - src/core/transport/chttp2/frame_window_update.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800309 - src/core/transport/chttp2/hpack_encoder.h
Craig Tiller25834342015-09-25 08:08:24 -0700310 - src/core/transport/chttp2/hpack_parser.h
311 - src/core/transport/chttp2/hpack_table.h
312 - src/core/transport/chttp2/http2_errors.h
313 - src/core/transport/chttp2/huffsyms.h
314 - src/core/transport/chttp2/incoming_metadata.h
315 - src/core/transport/chttp2/internal.h
316 - src/core/transport/chttp2/status_conversion.h
Craig Tiller25834342015-09-25 08:08:24 -0700317 - src/core/transport/chttp2/stream_map.h
318 - src/core/transport/chttp2/timeout_encoding.h
319 - src/core/transport/chttp2/varint.h
320 - src/core/transport/chttp2_transport.h
321 - src/core/transport/connectivity_state.h
322 - src/core/transport/metadata.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800323 - src/core/transport/metadata_batch.h
Craig Tiller2e7687c2015-11-18 14:56:46 -0800324 - src/core/transport/static_metadata.h
Craig Tiller25834342015-09-25 08:08:24 -0700325 - src/core/transport/transport.h
326 - src/core/transport/transport_impl.h
327 src:
328 - src/core/census/grpc_context.c
329 - src/core/census/grpc_filter.c
330 - src/core/channel/channel_args.c
331 - src/core/channel/channel_stack.c
332 - src/core/channel/client_channel.c
David Garcia Quintas7b1bd2c2015-10-05 18:22:10 -0700333 - src/core/channel/client_uchannel.c
Craig Tiller25834342015-09-25 08:08:24 -0700334 - src/core/channel/compress_filter.c
335 - src/core/channel/connected_channel.c
336 - src/core/channel/http_client_filter.c
337 - src/core/channel/http_server_filter.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800338 - src/core/channel/subchannel_call_holder.c
Craig Tiller25834342015-09-25 08:08:24 -0700339 - src/core/client_config/client_config.c
340 - src/core/client_config/connector.c
yang-ga6124122015-11-05 22:36:20 -0800341 - src/core/client_config/default_initial_connect_string.c
342 - src/core/client_config/initial_connect_string.c
Craig Tiller25834342015-09-25 08:08:24 -0700343 - src/core/client_config/lb_policies/pick_first.c
344 - src/core/client_config/lb_policies/round_robin.c
345 - src/core/client_config/lb_policy.c
346 - src/core/client_config/lb_policy_factory.c
347 - src/core/client_config/lb_policy_registry.c
348 - src/core/client_config/resolver.c
349 - src/core/client_config/resolver_factory.c
350 - src/core/client_config/resolver_registry.c
351 - src/core/client_config/resolvers/dns_resolver.c
352 - src/core/client_config/resolvers/sockaddr_resolver.c
353 - src/core/client_config/subchannel.c
354 - src/core/client_config/subchannel_factory.c
Craig Tiller694cf8b2016-01-15 21:13:25 -0800355 - src/core/client_config/subchannel_index.c
Craig Tiller25834342015-09-25 08:08:24 -0700356 - src/core/client_config/uri_parser.c
357 - src/core/compression/algorithm.c
358 - src/core/compression/message_compress.c
359 - src/core/debug/trace.c
360 - src/core/httpcli/format_request.c
361 - src/core/httpcli/httpcli.c
362 - src/core/httpcli/parser.c
Craig Tiller25834342015-09-25 08:08:24 -0700363 - src/core/iomgr/closure.c
364 - src/core/iomgr/endpoint.c
365 - src/core/iomgr/endpoint_pair_posix.c
366 - src/core/iomgr/endpoint_pair_windows.c
367 - src/core/iomgr/exec_ctx.c
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700368 - src/core/iomgr/executor.c
Craig Tiller25834342015-09-25 08:08:24 -0700369 - src/core/iomgr/fd_posix.c
370 - src/core/iomgr/iocp_windows.c
371 - src/core/iomgr/iomgr.c
372 - src/core/iomgr/iomgr_posix.c
373 - src/core/iomgr/iomgr_windows.c
374 - src/core/iomgr/pollset_multipoller_with_epoll.c
375 - src/core/iomgr/pollset_multipoller_with_poll_posix.c
376 - src/core/iomgr/pollset_posix.c
377 - src/core/iomgr/pollset_set_posix.c
378 - src/core/iomgr/pollset_set_windows.c
379 - src/core/iomgr/pollset_windows.c
380 - src/core/iomgr/resolve_address_posix.c
381 - src/core/iomgr/resolve_address_windows.c
382 - src/core/iomgr/sockaddr_utils.c
383 - src/core/iomgr/socket_utils_common_posix.c
384 - src/core/iomgr/socket_utils_linux.c
385 - src/core/iomgr/socket_utils_posix.c
386 - src/core/iomgr/socket_windows.c
387 - src/core/iomgr/tcp_client_posix.c
388 - src/core/iomgr/tcp_client_windows.c
389 - src/core/iomgr/tcp_posix.c
390 - src/core/iomgr/tcp_server_posix.c
391 - src/core/iomgr/tcp_server_windows.c
392 - src/core/iomgr/tcp_windows.c
393 - src/core/iomgr/time_averaged_stats.c
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700394 - src/core/iomgr/timer.c
395 - src/core/iomgr/timer_heap.c
Craig Tiller25834342015-09-25 08:08:24 -0700396 - src/core/iomgr/udp_server.c
397 - src/core/iomgr/wakeup_fd_eventfd.c
398 - src/core/iomgr/wakeup_fd_nospecial.c
399 - src/core/iomgr/wakeup_fd_pipe.c
400 - src/core/iomgr/wakeup_fd_posix.c
401 - src/core/iomgr/workqueue_posix.c
402 - src/core/iomgr/workqueue_windows.c
403 - src/core/json/json.c
404 - src/core/json/json_reader.c
405 - src/core/json/json_string.c
406 - src/core/json/json_writer.c
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100407 - src/core/surface/alarm.c
Craig Tiller2468ff52015-10-05 09:00:17 -0700408 - src/core/surface/api_trace.c
Craig Tiller25834342015-09-25 08:08:24 -0700409 - src/core/surface/byte_buffer.c
Craig Tiller25834342015-09-25 08:08:24 -0700410 - src/core/surface/byte_buffer_reader.c
411 - src/core/surface/call.c
412 - src/core/surface/call_details.c
413 - src/core/surface/call_log_batch.c
414 - src/core/surface/channel.c
415 - src/core/surface/channel_connectivity.c
416 - src/core/surface/channel_create.c
Craig Tiller26dab312015-12-07 14:43:47 -0800417 - src/core/surface/channel_ping.c
Craig Tiller25834342015-09-25 08:08:24 -0700418 - src/core/surface/completion_queue.c
419 - src/core/surface/event_string.c
420 - src/core/surface/init.c
421 - src/core/surface/lame_client.c
422 - src/core/surface/metadata_array.c
423 - src/core/surface/server.c
424 - src/core/surface/server_chttp2.c
425 - src/core/surface/server_create.c
murgatroid99c3910ca2016-01-06 13:14:23 -0800426 - src/core/surface/validate_metadata.c
Craig Tiller25834342015-09-25 08:08:24 -0700427 - src/core/surface/version.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800428 - src/core/transport/byte_stream.c
Craig Tiller25834342015-09-25 08:08:24 -0700429 - src/core/transport/chttp2/alpn.c
430 - src/core/transport/chttp2/bin_encoder.c
431 - src/core/transport/chttp2/frame_data.c
432 - src/core/transport/chttp2/frame_goaway.c
433 - src/core/transport/chttp2/frame_ping.c
434 - src/core/transport/chttp2/frame_rst_stream.c
435 - src/core/transport/chttp2/frame_settings.c
436 - src/core/transport/chttp2/frame_window_update.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800437 - src/core/transport/chttp2/hpack_encoder.c
Craig Tiller25834342015-09-25 08:08:24 -0700438 - src/core/transport/chttp2/hpack_parser.c
439 - src/core/transport/chttp2/hpack_table.c
440 - src/core/transport/chttp2/huffsyms.c
441 - src/core/transport/chttp2/incoming_metadata.c
442 - src/core/transport/chttp2/parsing.c
443 - src/core/transport/chttp2/status_conversion.c
Craig Tiller25834342015-09-25 08:08:24 -0700444 - src/core/transport/chttp2/stream_lists.c
445 - src/core/transport/chttp2/stream_map.c
446 - src/core/transport/chttp2/timeout_encoding.c
447 - src/core/transport/chttp2/varint.c
448 - src/core/transport/chttp2/writing.c
449 - src/core/transport/chttp2_transport.c
450 - src/core/transport/connectivity_state.c
451 - src/core/transport/metadata.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800452 - src/core/transport/metadata_batch.c
Craig Tiller2e7687c2015-11-18 14:56:46 -0800453 - src/core/transport/static_metadata.c
Craig Tiller25834342015-09-25 08:08:24 -0700454 - src/core/transport/transport.c
455 - src/core/transport/transport_op_string.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700456- name: grpc_test_util_base
Craig Tiller25834342015-09-25 08:08:24 -0700457 headers:
458 - test/core/end2end/cq_verifier.h
459 - test/core/end2end/fixtures/proxy.h
460 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700461 - test/core/util/grpc_profiler.h
462 - test/core/util/parse_hexstring.h
463 - test/core/util/port.h
464 - test/core/util/slice_splitter.h
465 src:
466 - test/core/end2end/cq_verifier.c
467 - test/core/end2end/fixtures/proxy.c
468 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700469 - test/core/util/grpc_profiler.c
470 - test/core/util/parse_hexstring.c
471 - test/core/util/port_posix.c
472 - test/core/util/port_windows.c
473 - test/core/util/slice_splitter.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100474libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800475- name: gpr
476 build: all
477 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800478 filegroups:
Craig Tiller1298afd2016-02-09 12:29:17 -0800479 - gpr
480 - gpr_codegen
Craig Tillerda179ce2016-02-09 12:01:53 -0800481 secure: false
482 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
483- name: gpr_test_util
484 build: private
485 language: c
486 headers:
487 - test/core/util/test_config.h
488 src:
489 - test/core/util/test_config.c
490 deps:
491 - gpr
492 secure: false
493 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700494- name: grpc
495 build: all
496 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700497 public_headers:
498 - include/grpc/grpc_security.h
499 headers:
500 - src/core/security/auth_filters.h
501 - src/core/security/base64.h
502 - src/core/security/credentials.h
503 - src/core/security/handshake.h
504 - src/core/security/json_token.h
505 - src/core/security/jwt_verifier.h
506 - src/core/security/secure_endpoint.h
507 - src/core/security/security_connector.h
508 - src/core/security/security_context.h
509 - src/core/tsi/fake_transport_security.h
510 - src/core/tsi/ssl_transport_security.h
Craig Tiller0fe5ee72015-12-22 12:50:36 -0800511 - src/core/tsi/ssl_types.h
Craig Tiller25834342015-09-25 08:08:24 -0700512 - src/core/tsi/transport_security.h
513 - src/core/tsi/transport_security_interface.h
514 src:
515 - src/core/httpcli/httpcli_security_connector.c
516 - src/core/security/base64.c
517 - src/core/security/client_auth_filter.c
518 - src/core/security/credentials.c
519 - src/core/security/credentials_metadata.c
520 - src/core/security/credentials_posix.c
521 - src/core/security/credentials_win32.c
522 - src/core/security/google_default_credentials.c
523 - src/core/security/handshake.c
524 - src/core/security/json_token.c
525 - src/core/security/jwt_verifier.c
526 - src/core/security/secure_endpoint.c
527 - src/core/security/security_connector.c
528 - src/core/security/security_context.c
529 - src/core/security/server_auth_filter.c
530 - src/core/security/server_secure_chttp2.c
531 - src/core/surface/init_secure.c
532 - src/core/surface/secure_channel_create.c
533 - src/core/tsi/fake_transport_security.c
534 - src/core/tsi/ssl_transport_security.c
535 - src/core/tsi/transport_security.c
Craig Tillerda179ce2016-02-09 12:01:53 -0800536 deps:
537 - gpr
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800538 - grpc_codegen_lib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700539 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800540 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700541 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700542 filegroups:
543 - grpc_base
544 - census
Craig Tillerbf4b2242015-08-31 15:53:53 -0700545 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700546 vs_packages:
547 - grpc.dependencies.openssl
548 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700549 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
550- name: grpc_test_util
551 build: private
552 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700553 headers:
554 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800555 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700556 src:
557 - test/core/end2end/data/server1_cert.c
558 - test/core/end2end/data/server1_key.c
559 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800560 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700561 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800562 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800563 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700564 - grpc
565 filegroups:
566 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700567 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
568- name: grpc_test_util_unsecure
569 build: private
570 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700571 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800572 - gpr
573 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800574 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700575 filegroups:
576 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700577 secure: false
578 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
579- name: grpc_unsecure
580 build: all
581 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700582 src:
583 - src/core/surface/init_unsecure.c
Craig Tillerda179ce2016-02-09 12:01:53 -0800584 deps:
585 - gpr
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800586 - grpc_codegen_lib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700587 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800588 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700589 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700590 filegroups:
591 - grpc_base
592 - census
Craig Tillerbf4b2242015-08-31 15:53:53 -0700593 secure: false
594 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
595- name: grpc_zookeeper
596 build: all
597 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700598 public_headers:
599 - include/grpc/grpc_zookeeper.h
600 headers:
601 - src/core/client_config/resolvers/zookeeper_resolver.h
602 src:
603 - src/core/client_config/resolvers/zookeeper_resolver.c
604 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800605 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700606 - grpc
607 external_deps:
608 - zookeeper
609 platforms:
610 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700611 secure: false
612- name: reconnect_server
613 build: private
614 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700615 headers:
616 - test/core/util/reconnect_server.h
617 src:
618 - test/core/util/reconnect_server.c
619 deps:
yang-gc9fca182015-11-06 16:41:33 -0800620 - test_tcp_server
621 - grpc_test_util
622 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800623 - gpr_test_util
624 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800625- name: test_tcp_server
626 build: private
627 language: c
628 headers:
629 - test/core/util/test_tcp_server.h
630 src:
631 - test/core/util/test_tcp_server.c
632 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700633 - grpc_test_util
634 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800635 - gpr_test_util
636 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700637- name: grpc++
638 build: all
639 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700640 headers:
641 - src/cpp/client/secure_credentials.h
642 - src/cpp/common/secure_auth_context.h
643 - src/cpp/server/secure_server_credentials.h
644 src:
Craig Tiller25834342015-09-25 08:08:24 -0700645 - src/cpp/client/secure_credentials.cc
David Garcia Quintasa37d9d82016-02-18 15:30:56 -0800646 - src/cpp/codegen/grpc_library.cc
Craig Tiller25834342015-09-25 08:08:24 -0700647 - src/cpp/common/auth_property_iterator.cc
648 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800649 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700650 - src/cpp/common/secure_create_auth_context.cc
651 - src/cpp/server/secure_server_credentials.cc
652 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700653 - grpc
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800654 - grpc++_codegen_lib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700655 baselib: true
656 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700657 filegroups:
658 - grpc++_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700659 secure: check
660 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800661- name: grpc++_codegen_lib
David Garcia Quintas4af3de22016-02-19 13:57:55 -0800662 build: private
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800663 language: c++
664 public_headers:
665 - include/grpc++/impl/codegen/async_stream.h
666 - include/grpc++/impl/codegen/async_unary_call.h
667 - include/grpc++/impl/codegen/call.h
668 - include/grpc++/impl/codegen/call_hook.h
669 - include/grpc++/impl/codegen/channel_interface.h
670 - include/grpc++/impl/codegen/client_context.h
671 - include/grpc++/impl/codegen/client_unary_call.h
672 - include/grpc++/impl/codegen/completion_queue.h
673 - include/grpc++/impl/codegen/completion_queue_tag.h
674 - include/grpc++/impl/codegen/config.h
675 - include/grpc++/impl/codegen/config_protobuf.h
676 - include/grpc++/impl/codegen/grpc_library.h
677 - include/grpc++/impl/codegen/method_handler_impl.h
678 - include/grpc++/impl/codegen/proto_utils.h
679 - include/grpc++/impl/codegen/rpc_method.h
680 - include/grpc++/impl/codegen/rpc_service_method.h
681 - include/grpc++/impl/codegen/security/auth_context.h
682 - include/grpc++/impl/codegen/serialization_traits.h
683 - include/grpc++/impl/codegen/server_context.h
684 - include/grpc++/impl/codegen/server_interface.h
685 - include/grpc++/impl/codegen/service_type.h
686 - include/grpc++/impl/codegen/status.h
687 - include/grpc++/impl/codegen/status_code_enum.h
688 - include/grpc++/impl/codegen/string_ref.h
689 - include/grpc++/impl/codegen/stub_options.h
690 - include/grpc++/impl/codegen/sync.h
691 - include/grpc++/impl/codegen/sync_cxx11.h
692 - include/grpc++/impl/codegen/sync_no_cxx11.h
693 - include/grpc++/impl/codegen/sync_stream.h
694 - include/grpc++/impl/codegen/time.h
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800695 headers: []
David Garcia Quintasa37d9d82016-02-18 15:30:56 -0800696 src: []
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800697 deps:
698 - grpc_codegen_lib
699 filegroups:
700 - gpr_codegen
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800701 secure: false
David Garcia Quintasaee7cf12016-02-19 14:05:47 -0800702 vs_project_guid: '{AAC6AF12-94C8-4A3C-A1BF-DAA4738F4500}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700703- name: grpc++_test_config
704 build: private
705 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700706 headers:
707 - test/cpp/util/test_config.h
708 src:
709 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700710- name: grpc++_test_util
711 build: private
712 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700713 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800714 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800715 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700716 - test/cpp/util/cli_call.h
717 - test/cpp/util/create_test_channel.h
718 - test/cpp/util/string_ref_helper.h
719 - test/cpp/util/subprocess.h
720 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800721 - src/proto/grpc/testing/echo_messages.proto
722 - src/proto/grpc/testing/echo.proto
723 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800724 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800725 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700726 - test/cpp/util/cli_call.cc
727 - test/cpp/util/create_test_channel.cc
728 - test/cpp/util/string_ref_helper.cc
729 - test/cpp/util/subprocess.cc
730 deps:
731 - grpc++
732 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700733- name: grpc++_unsecure
734 build: all
735 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700736 src:
737 - src/cpp/common/insecure_create_auth_context.cc
738 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800739 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700740 - grpc_unsecure
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800741 - grpc++_codegen_lib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700742 baselib: true
743 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700744 filegroups:
745 - grpc++_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700746 secure: false
747 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800748- name: grpc_codegen_lib
David Garcia Quintas4af3de22016-02-19 13:57:55 -0800749 build: private
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800750 language: c++
751 public_headers:
752 - include/grpc/impl/codegen/byte_buffer.h
753 - include/grpc/impl/codegen/compression_types.h
754 - include/grpc/impl/codegen/connectivity_state.h
755 - include/grpc/impl/codegen/grpc_types.h
756 - include/grpc/impl/codegen/propagation_bits.h
757 - include/grpc/impl/codegen/status.h
758 headers: []
759 src: []
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800760 filegroups:
761 - gpr_codegen
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800762 secure: false
David Garcia Quintasaee7cf12016-02-19 14:05:47 -0800763 vs_project_guid: '{A828FD72-44CE-4EA5-8966-6E4624458D58}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700764- name: grpc_plugin_support
765 build: protoc
766 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700767 headers:
768 - include/grpc++/support/config.h
769 - include/grpc++/support/config_protobuf.h
770 - src/compiler/config.h
771 - src/compiler/cpp_generator.h
772 - src/compiler/cpp_generator_helpers.h
773 - src/compiler/csharp_generator.h
774 - src/compiler/csharp_generator_helpers.h
775 - src/compiler/generator_helpers.h
776 - src/compiler/objective_c_generator.h
777 - src/compiler/objective_c_generator_helpers.h
778 - src/compiler/python_generator.h
779 - src/compiler/ruby_generator.h
780 - src/compiler/ruby_generator_helpers-inl.h
781 - src/compiler/ruby_generator_map-inl.h
782 - src/compiler/ruby_generator_string-inl.h
783 src:
784 - src/compiler/cpp_generator.cc
785 - src/compiler/csharp_generator.cc
786 - src/compiler/objective_c_generator.cc
787 - src/compiler/python_generator.cc
788 - src/compiler/ruby_generator.cc
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800789 deps:
790 - grpc_codegen_lib
791 - grpc++_codegen_lib
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800792 filegroups:
Craig Tillerad095982016-02-09 12:45:04 -0800793 - gpr_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700794 secure: false
795 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
796- name: interop_client_helper
797 build: private
798 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700799 headers:
800 - test/cpp/interop/client_helper.h
801 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800802 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -0700803 - test/cpp/interop/client_helper.cc
804 deps:
805 - grpc++_test_util
806 - grpc_test_util
807 - grpc++
808 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800809 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700810- name: interop_client_main
811 build: private
812 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700813 headers:
814 - test/cpp/interop/interop_client.h
815 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800816 - src/proto/grpc/testing/empty.proto
817 - src/proto/grpc/testing/messages.proto
818 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -0700819 - test/cpp/interop/client.cc
820 - test/cpp/interop/interop_client.cc
821 deps:
822 - interop_client_helper
823 - grpc++_test_util
824 - grpc_test_util
825 - grpc++
826 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800827 - gpr_test_util
828 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700829 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700830- name: interop_server_helper
831 build: private
832 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700833 headers:
834 - test/cpp/interop/server_helper.h
835 src:
836 - test/cpp/interop/server_helper.cc
837 deps:
838 - grpc_test_util
839 - grpc++
840 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800841 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700842- name: interop_server_main
843 build: private
844 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700845 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800846 - src/proto/grpc/testing/empty.proto
847 - src/proto/grpc/testing/messages.proto
848 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -0700849 - test/cpp/interop/server.cc
850 deps:
851 - interop_server_helper
852 - grpc++_test_util
853 - grpc_test_util
854 - grpc++
855 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800856 - gpr_test_util
857 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700858 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700859- name: qps
860 build: private
861 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700862 headers:
863 - test/cpp/qps/client.h
864 - test/cpp/qps/driver.h
865 - test/cpp/qps/histogram.h
866 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -0800867 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -0700868 - test/cpp/qps/perf_db_client.h
869 - test/cpp/qps/qps_worker.h
870 - test/cpp/qps/report.h
871 - test/cpp/qps/server.h
872 - test/cpp/qps/stats.h
873 - test/cpp/qps/timer.h
874 - test/cpp/util/benchmark_config.h
875 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800876 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800877 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800878 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800879 - src/proto/grpc/testing/control.proto
880 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800881 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -0700882 - test/cpp/qps/client_async.cc
883 - test/cpp/qps/client_sync.cc
884 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -0800885 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -0700886 - test/cpp/qps/perf_db_client.cc
887 - test/cpp/qps/qps_worker.cc
888 - test/cpp/qps/report.cc
889 - test/cpp/qps/server_async.cc
890 - test/cpp/qps/server_sync.cc
891 - test/cpp/qps/timer.cc
892 - test/cpp/util/benchmark_config.cc
893 deps:
894 - grpc_test_util
895 - grpc++_test_util
896 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -0700897- name: grpc_csharp_ext
898 build: all
899 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -0700900 src:
901 - src/csharp/ext/grpc_csharp_ext.c
902 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700903 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800904 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -0800905 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -0800906 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700907 dll: only
908 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -0700909 vs_packages:
910 - grpc.dependencies.openssl
911 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700912 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -0700913 vs_props:
914 - zlib
915 - openssl
916 - winsock
917 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700918targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100919- name: alarm_test
920 build: test
921 language: c
922 src:
923 - test/core/surface/alarm_test.c
924 deps:
925 - grpc_test_util
926 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -0800927 - gpr_test_util
928 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -0800929- name: algorithm_test
930 build: test
931 language: c
932 src:
933 - test/core/compression/algorithm_test.c
934 deps:
935 - grpc_test_util
936 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800937 - gpr_test_util
938 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -0800939- name: alloc_test
940 build: test
941 language: c
942 src:
943 - test/core/support/alloc_test.c
944 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800945 - gpr_test_util
946 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700947- name: alpn_test
948 build: test
949 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700950 src:
951 - test/core/transport/chttp2/alpn_test.c
952 deps:
953 - grpc_test_util
954 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800955 - gpr_test_util
956 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700957- name: bin_encoder_test
958 build: test
959 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700960 src:
961 - test/core/transport/chttp2/bin_encoder_test.c
962 deps:
963 - grpc_test_util
964 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -0800965- name: census_context_test
966 build: test
967 language: c
968 src:
969 - test/core/census/context_test.c
970 deps:
971 - grpc_test_util
972 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800973 - gpr_test_util
974 - gpr
Alistair Veitch85afe712016-02-02 17:58:15 -0800975- name: census_log_test
976 build: test
977 language: c
978 src:
979 - test/core/census/log_test.c
980 deps:
981 - grpc_test_util
982 - grpc
Alistair Veitch749250f2016-02-11 09:23:20 -0800983 - gpr_test_util
984 - gpr
yang-gc0ed5092015-12-09 08:48:08 -0800985- name: channel_create_test
986 build: test
987 language: c
988 src:
989 - test/core/surface/channel_create_test.c
990 deps:
991 - grpc_test_util
992 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800993 - gpr_test_util
994 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -0800995- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -0700996 build: test
997 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700998 src:
Craig Tillerca1593a2015-11-02 14:08:33 -0800999 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001000 deps:
1001 - grpc_test_util
1002 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001003 - gpr_test_util
1004 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001005- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001006 build: test
1007 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001008 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001009 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001010 deps:
1011 - grpc_test_util
1012 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001013 - gpr_test_util
1014 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001015- name: chttp2_stream_map_test
1016 build: test
1017 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001018 src:
1019 - test/core/transport/chttp2/stream_map_test.c
1020 deps:
1021 - grpc_test_util
1022 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001023 - gpr_test_util
1024 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001025- name: chttp2_varint_test
1026 build: test
1027 language: c
1028 src:
1029 - test/core/transport/chttp2/varint_test.c
1030 deps:
1031 - grpc_test_util
1032 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001033 - gpr_test_util
1034 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001035- name: compression_test
1036 build: test
1037 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001038 src:
1039 - test/core/compression/compression_test.c
1040 deps:
1041 - grpc_test_util
1042 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001043 - gpr_test_util
1044 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001045- name: dns_resolver_test
1046 build: test
1047 language: c
1048 src:
1049 - test/core/client_config/resolvers/dns_resolver_test.c
1050 deps:
1051 - grpc_test_util
1052 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001053 - gpr_test_util
1054 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001055- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001056 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001057 build: test
1058 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001059 src:
1060 - test/core/end2end/dualstack_socket_test.c
1061 deps:
1062 - grpc_test_util
1063 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001064 - gpr_test_util
1065 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001066 platforms:
1067 - mac
1068 - linux
1069 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001070- name: endpoint_pair_test
1071 build: test
1072 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001073 src:
1074 - test/core/iomgr/endpoint_pair_test.c
1075 deps:
1076 - grpc_test_util
1077 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001078 - gpr_test_util
1079 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001080- name: fd_conservation_posix_test
1081 build: test
1082 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001083 src:
1084 - test/core/iomgr/fd_conservation_posix_test.c
1085 deps:
1086 - grpc_test_util
1087 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001088 - gpr_test_util
1089 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001090 platforms:
1091 - mac
1092 - linux
1093 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001094- name: fd_posix_test
1095 build: test
1096 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001097 src:
1098 - test/core/iomgr/fd_posix_test.c
1099 deps:
1100 - grpc_test_util
1101 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001102 - gpr_test_util
1103 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001104 platforms:
1105 - mac
1106 - linux
1107 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001108- name: fling_client
1109 build: test
1110 run: false
1111 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001112 src:
1113 - test/core/fling/client.c
1114 deps:
1115 - grpc_test_util
1116 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001117 - gpr_test_util
1118 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001119- name: fling_server
1120 build: test
1121 run: false
1122 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001123 src:
1124 - test/core/fling/server.c
1125 deps:
1126 - grpc_test_util
1127 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001128 - gpr_test_util
1129 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001130- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001131 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001132 build: test
1133 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001134 src:
1135 - test/core/fling/fling_stream_test.c
1136 deps:
1137 - grpc_test_util
1138 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001139 - gpr_test_util
1140 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001141 platforms:
1142 - mac
1143 - linux
1144 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001145- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001146 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001147 build: test
1148 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001149 src:
1150 - test/core/fling/fling_test.c
1151 deps:
1152 - grpc_test_util
1153 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001154 - gpr_test_util
1155 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001156 platforms:
1157 - mac
1158 - linux
1159 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001160- name: gen_hpack_tables
1161 build: tool
1162 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001163 src:
1164 - tools/codegen/core/gen_hpack_tables.c
1165 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001166 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001167 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001168- name: gen_legal_metadata_characters
1169 build: tool
1170 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001171 src:
1172 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001173 deps: []
Craig Tillerfba79f22015-11-23 11:06:55 -08001174- name: gpr_avl_test
1175 build: test
1176 language: c
1177 src:
1178 - test/core/support/avl_test.c
1179 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001180 - gpr_test_util
1181 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001182- name: gpr_cmdline_test
1183 build: test
1184 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001185 src:
1186 - test/core/support/cmdline_test.c
1187 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001188 - gpr_test_util
1189 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001190- name: gpr_cpu_test
1191 build: test
1192 language: c
1193 src:
1194 - test/core/support/cpu_test.c
1195 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001196 - gpr_test_util
1197 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001198- name: gpr_env_test
1199 build: test
1200 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001201 src:
1202 - test/core/support/env_test.c
1203 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001204 - gpr_test_util
1205 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001206- name: gpr_file_test
1207 build: test
1208 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001209 src:
1210 - test/core/support/file_test.c
1211 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001212 - gpr_test_util
1213 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001214- name: gpr_histogram_test
1215 build: test
1216 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001217 src:
1218 - test/core/support/histogram_test.c
1219 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001220 - gpr_test_util
1221 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001222- name: gpr_host_port_test
1223 build: test
1224 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001225 src:
1226 - test/core/support/host_port_test.c
1227 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001228 - gpr_test_util
1229 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001230- name: gpr_log_test
1231 build: test
1232 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001233 src:
1234 - test/core/support/log_test.c
1235 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001236 - gpr_test_util
1237 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001238- name: gpr_slice_buffer_test
1239 build: test
1240 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001241 src:
1242 - test/core/support/slice_buffer_test.c
1243 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001244 - gpr_test_util
1245 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001246- name: gpr_slice_test
1247 build: test
1248 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001249 src:
1250 - test/core/support/slice_test.c
1251 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001252 - gpr_test_util
1253 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001254- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001255 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001256 build: test
1257 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001258 src:
1259 - test/core/support/stack_lockfree_test.c
1260 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001261 - gpr_test_util
1262 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001263- name: gpr_string_test
1264 build: test
1265 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001266 src:
1267 - test/core/support/string_test.c
1268 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001269 - gpr_test_util
1270 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001271- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001272 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001273 build: test
1274 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001275 src:
1276 - test/core/support/sync_test.c
1277 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001278 - gpr_test_util
1279 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001280- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001281 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001282 build: test
1283 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001284 src:
1285 - test/core/support/thd_test.c
1286 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001287 - gpr_test_util
1288 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001289- name: gpr_time_test
1290 build: test
1291 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001292 src:
1293 - test/core/support/time_test.c
1294 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001295 - gpr_test_util
1296 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001297- name: gpr_tls_test
1298 build: test
1299 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001300 src:
1301 - test/core/support/tls_test.c
1302 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001303 - gpr_test_util
1304 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001305- name: gpr_useful_test
1306 build: test
1307 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001308 src:
1309 - test/core/support/useful_test.c
1310 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001311 - gpr_test_util
1312 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001313- name: grpc_auth_context_test
1314 build: test
1315 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001316 src:
1317 - test/core/security/auth_context_test.c
1318 deps:
1319 - grpc_test_util
1320 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001321 - gpr_test_util
1322 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001323- name: grpc_base64_test
1324 build: test
1325 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001326 src:
1327 - test/core/security/base64_test.c
1328 deps:
1329 - grpc_test_util
1330 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001331 - gpr_test_util
1332 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001333- name: grpc_byte_buffer_reader_test
1334 build: test
1335 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001336 src:
1337 - test/core/surface/byte_buffer_reader_test.c
1338 deps:
1339 - grpc_test_util
1340 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001341 - gpr_test_util
1342 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001343- name: grpc_channel_args_test
1344 build: test
1345 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001346 src:
1347 - test/core/channel/channel_args_test.c
1348 deps:
1349 - grpc_test_util
1350 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001351 - gpr_test_util
1352 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001353- name: grpc_channel_stack_test
1354 build: test
1355 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001356 src:
1357 - test/core/channel/channel_stack_test.c
1358 deps:
1359 - grpc_test_util
1360 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001361 - gpr_test_util
1362 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001363- name: grpc_completion_queue_test
1364 build: test
1365 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001366 src:
1367 - test/core/surface/completion_queue_test.c
1368 deps:
1369 - grpc_test_util
1370 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001371 - gpr_test_util
1372 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001373- name: grpc_create_jwt
1374 build: tool
1375 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001376 src:
1377 - test/core/security/create_jwt.c
1378 deps:
1379 - grpc_test_util
1380 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001381 - gpr_test_util
1382 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001383- name: grpc_credentials_test
1384 build: test
1385 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001386 src:
1387 - test/core/security/credentials_test.c
1388 deps:
1389 - grpc_test_util
1390 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001391 - gpr_test_util
1392 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001393- name: grpc_fetch_oauth2
1394 build: tool
1395 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001396 src:
1397 - test/core/security/fetch_oauth2.c
1398 deps:
1399 - grpc_test_util
1400 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001401 - gpr_test_util
1402 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001403- name: grpc_invalid_channel_args_test
1404 build: test
1405 language: c
1406 src:
1407 - test/core/surface/invalid_channel_args_test.c
1408 deps:
1409 - grpc_test_util
1410 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001411 - gpr_test_util
1412 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001413- name: grpc_json_token_test
1414 build: test
1415 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001416 src:
1417 - test/core/security/json_token_test.c
1418 deps:
1419 - grpc_test_util
1420 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001421 - gpr_test_util
1422 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001423 platforms:
1424 - linux
1425 - posix
1426 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001427- name: grpc_jwt_verifier_test
1428 build: test
1429 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001430 src:
1431 - test/core/security/jwt_verifier_test.c
1432 deps:
1433 - grpc_test_util
1434 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001435 - gpr_test_util
1436 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001437- name: grpc_print_google_default_creds_token
1438 build: tool
1439 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001440 src:
1441 - test/core/security/print_google_default_creds_token.c
1442 deps:
1443 - grpc_test_util
1444 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001445 - gpr_test_util
1446 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001447- name: grpc_security_connector_test
1448 build: test
1449 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001450 src:
1451 - test/core/security/security_connector_test.c
1452 deps:
1453 - grpc_test_util
1454 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001455 - gpr_test_util
1456 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001457- name: grpc_verify_jwt
1458 build: tool
1459 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001460 src:
1461 - test/core/security/verify_jwt.c
1462 deps:
1463 - grpc_test_util
1464 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001465 - gpr_test_util
1466 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001467- name: hpack_parser_test
1468 build: test
1469 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001470 src:
1471 - test/core/transport/chttp2/hpack_parser_test.c
1472 deps:
1473 - grpc_test_util
1474 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001475 - gpr_test_util
1476 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001477- name: hpack_table_test
1478 build: test
1479 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001480 src:
1481 - test/core/transport/chttp2/hpack_table_test.c
1482 deps:
1483 - grpc_test_util
1484 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001485 - gpr_test_util
1486 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001487- name: httpcli_format_request_test
1488 build: test
1489 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001490 src:
1491 - test/core/httpcli/format_request_test.c
1492 deps:
1493 - grpc_test_util
1494 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001495 - gpr_test_util
1496 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001497- name: httpcli_parser_test
1498 build: test
1499 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001500 src:
1501 - test/core/httpcli/parser_test.c
1502 deps:
1503 - grpc_test_util
1504 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001505 - gpr_test_util
1506 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001507- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001508 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001509 build: test
1510 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001511 src:
1512 - test/core/httpcli/httpcli_test.c
1513 deps:
1514 - grpc_test_util
1515 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001516 - gpr_test_util
1517 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001518 platforms:
1519 - mac
1520 - linux
1521 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001522- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001523 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001524 build: test
1525 language: c
1526 src:
1527 - test/core/httpcli/httpscli_test.c
1528 deps:
1529 - grpc_test_util
1530 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001531 - gpr_test_util
1532 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001533 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001534 - linux
yang-gf1183302015-12-07 16:02:05 -08001535- name: init_test
1536 build: test
1537 language: c
1538 src:
1539 - test/core/surface/init_test.c
1540 deps:
1541 - grpc_test_util
1542 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001543 - gpr_test_util
1544 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001545- name: invalid_call_argument_test
1546 build: test
1547 language: c
1548 src:
1549 - test/core/end2end/invalid_call_argument_test.c
1550 deps:
1551 - grpc_test_util
1552 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001553 - gpr_test_util
1554 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001555- name: json_rewrite
1556 build: test
1557 run: false
1558 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001559 src:
1560 - test/core/json/json_rewrite.c
1561 deps:
1562 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001563 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001564- name: json_rewrite_test
1565 build: test
1566 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001567 src:
1568 - test/core/json/json_rewrite_test.c
1569 deps:
1570 - grpc_test_util
1571 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001572 - gpr_test_util
1573 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001574- name: json_stream_error_test
1575 build: test
1576 language: c
1577 src:
1578 - test/core/json/json_stream_error_test.c
1579 deps:
1580 - grpc_test_util
1581 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001582 - gpr_test_util
1583 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001584- name: json_test
1585 build: test
1586 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001587 src:
1588 - test/core/json/json_test.c
1589 deps:
1590 - grpc_test_util
1591 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001592 - gpr_test_util
1593 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001594- name: lame_client_test
1595 build: test
1596 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001597 src:
1598 - test/core/surface/lame_client_test.c
1599 deps:
1600 - grpc_test_util
1601 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001602 - gpr_test_util
1603 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001604- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001605 cpu_cost: 0.1
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001606 build: test
1607 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001608 src:
1609 - test/core/client_config/lb_policies_test.c
1610 deps:
1611 - grpc_test_util
1612 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001613 - gpr_test_util
1614 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001615- name: low_level_ping_pong_benchmark
1616 build: benchmark
1617 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001618 src:
1619 - test/core/network_benchmarks/low_level_ping_pong.c
1620 deps:
1621 - grpc_test_util
1622 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001623 - gpr_test_util
1624 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001625 platforms:
1626 - mac
1627 - linux
1628 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001629- name: message_compress_test
1630 build: test
1631 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001632 src:
1633 - test/core/compression/message_compress_test.c
1634 deps:
1635 - grpc_test_util
1636 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001637 - gpr_test_util
1638 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001639- name: multiple_server_queues_test
1640 build: test
1641 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001642 src:
1643 - test/core/end2end/multiple_server_queues_test.c
1644 deps:
1645 - grpc_test_util
1646 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001647 - gpr_test_util
1648 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001649- name: murmur_hash_test
1650 build: test
1651 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001652 src:
1653 - test/core/support/murmur_hash_test.c
1654 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001655 - gpr_test_util
1656 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001657- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001658 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001659 build: test
1660 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001661 src:
1662 - test/core/end2end/no_server_test.c
1663 deps:
1664 - grpc_test_util
1665 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001666 - gpr_test_util
1667 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001668- name: resolve_address_test
1669 build: test
1670 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001671 src:
1672 - test/core/iomgr/resolve_address_test.c
1673 deps:
1674 - grpc_test_util
1675 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001676 - gpr_test_util
1677 - gpr
yang-gd482e592015-12-10 14:04:00 -08001678- name: secure_channel_create_test
1679 build: test
1680 language: c
1681 src:
1682 - test/core/surface/secure_channel_create_test.c
1683 deps:
1684 - grpc_test_util
1685 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001686 - gpr_test_util
1687 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001688- name: secure_endpoint_test
1689 build: test
1690 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001691 src:
1692 - test/core/security/secure_endpoint_test.c
1693 deps:
1694 - grpc_test_util
1695 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001696 - gpr_test_util
1697 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08001698- name: server_chttp2_test
1699 build: test
1700 language: c
1701 src:
1702 - test/core/surface/server_chttp2_test.c
1703 deps:
1704 - grpc_test_util
1705 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001706 - gpr_test_util
1707 - gpr
yang-gc3d94fb2015-12-10 14:38:00 -08001708- name: server_test
1709 build: test
1710 language: c
1711 src:
1712 - test/core/surface/server_test.c
1713 deps:
1714 - grpc_test_util
1715 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001716 - gpr_test_util
1717 - gpr
yang-gc9fca182015-11-06 16:41:33 -08001718- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001719 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08001720 build: test
1721 language: c
1722 src:
1723 - test/core/client_config/set_initial_connect_string_test.c
1724 deps:
1725 - test_tcp_server
1726 - grpc_test_util
1727 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001728 - gpr_test_util
1729 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08001730- name: sockaddr_resolver_test
1731 build: test
1732 language: c
1733 src:
1734 - test/core/client_config/resolvers/sockaddr_resolver_test.c
1735 deps:
1736 - grpc_test_util
1737 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001738 - gpr_test_util
1739 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001740- name: sockaddr_utils_test
1741 build: test
1742 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001743 src:
1744 - test/core/iomgr/sockaddr_utils_test.c
1745 deps:
1746 - grpc_test_util
1747 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001748 - gpr_test_util
1749 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08001750- name: socket_utils_test
1751 build: test
1752 language: c
1753 src:
1754 - test/core/iomgr/socket_utils_test.c
1755 deps:
1756 - grpc_test_util
1757 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001758 - gpr_test_util
1759 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08001760 platforms:
1761 - mac
1762 - linux
1763 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001764- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001765 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001766 build: test
1767 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001768 src:
1769 - test/core/iomgr/tcp_client_posix_test.c
1770 deps:
1771 - grpc_test_util
1772 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001773 - gpr_test_util
1774 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001775 platforms:
1776 - mac
1777 - linux
1778 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001779- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001780 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001781 build: test
1782 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001783 src:
1784 - test/core/iomgr/tcp_posix_test.c
1785 deps:
1786 - grpc_test_util
1787 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001788 - gpr_test_util
1789 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001790 platforms:
1791 - mac
1792 - linux
1793 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001794- name: tcp_server_posix_test
1795 build: test
1796 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001797 src:
1798 - test/core/iomgr/tcp_server_posix_test.c
1799 deps:
1800 - grpc_test_util
1801 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001802 - gpr_test_util
1803 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001804 platforms:
1805 - mac
1806 - linux
1807 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001808- name: time_averaged_stats_test
1809 build: test
1810 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001811 src:
1812 - test/core/iomgr/time_averaged_stats_test.c
1813 deps:
1814 - grpc_test_util
1815 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001816 - gpr_test_util
1817 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001818- name: timeout_encoding_test
1819 build: test
1820 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001821 src:
1822 - test/core/transport/chttp2/timeout_encoding_test.c
1823 deps:
1824 - grpc_test_util
1825 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001826 - gpr_test_util
1827 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001828- name: timer_heap_test
1829 build: test
1830 language: c
1831 src:
1832 - test/core/iomgr/timer_heap_test.c
1833 deps:
1834 - grpc_test_util
1835 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001836 - gpr_test_util
1837 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001838- name: timer_list_test
1839 build: test
1840 language: c
1841 src:
1842 - test/core/iomgr/timer_list_test.c
1843 deps:
1844 - grpc_test_util
1845 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001846 - gpr_test_util
1847 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001848- name: timers_test
1849 build: test
1850 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001851 src:
1852 - test/core/profiling/timers_test.c
1853 deps:
1854 - grpc_test_util
1855 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001856 - gpr_test_util
1857 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08001858- name: transport_connectivity_state_test
1859 build: test
1860 language: c
1861 src:
1862 - test/core/transport/connectivity_state_test.c
1863 deps:
1864 - grpc_test_util
1865 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001866 - gpr_test_util
1867 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001868- name: transport_metadata_test
1869 build: test
1870 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001871 src:
1872 - test/core/transport/metadata_test.c
1873 deps:
1874 - grpc_test_util
1875 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001876 - gpr_test_util
1877 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001878- name: transport_security_test
1879 build: test
1880 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001881 src:
1882 - test/core/tsi/transport_security_test.c
1883 deps:
1884 - grpc_test_util
1885 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001886 - gpr_test_util
1887 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001888 platforms:
1889 - linux
1890 - posix
1891 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001892- name: udp_server_test
1893 build: test
1894 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001895 src:
1896 - test/core/iomgr/udp_server_test.c
1897 deps:
1898 - grpc_test_util
1899 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001900 - gpr_test_util
1901 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001902 platforms:
1903 - mac
1904 - linux
1905 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001906- name: uri_parser_test
1907 build: test
1908 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001909 src:
1910 - test/core/client_config/uri_parser_test.c
1911 deps:
1912 - grpc_test_util
1913 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001914 - gpr_test_util
1915 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07001916- name: workqueue_test
1917 build: test
1918 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001919 src:
1920 - test/core/iomgr/workqueue_test.c
1921 deps:
1922 - grpc_test_util
1923 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001924 - gpr_test_util
1925 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001926 platforms:
1927 - mac
1928 - linux
1929 - posix
vjpai04e992a2016-02-10 16:58:38 -08001930- name: alarm_cpp_test
1931 build: test
1932 language: c++
1933 src:
1934 - test/cpp/common/alarm_cpp_test.cc
1935 deps:
1936 - grpc++_test_util
1937 - grpc_test_util
1938 - grpc++
1939 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08001940 - gpr_test_util
1941 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001942- name: async_end2end_test
1943 build: test
1944 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001945 src:
1946 - test/cpp/end2end/async_end2end_test.cc
1947 deps:
1948 - grpc++_test_util
1949 - grpc_test_util
1950 - grpc++
1951 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001952 - gpr_test_util
1953 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001954- name: async_streaming_ping_pong_test
1955 build: test
1956 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001957 src:
1958 - test/cpp/qps/async_streaming_ping_pong_test.cc
1959 deps:
1960 - qps
1961 - grpc++_test_util
1962 - grpc_test_util
1963 - grpc++
1964 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001965 - gpr_test_util
1966 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001967 platforms:
1968 - mac
1969 - linux
1970 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001971- name: async_unary_ping_pong_test
1972 build: test
1973 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001974 src:
1975 - test/cpp/qps/async_unary_ping_pong_test.cc
1976 deps:
1977 - qps
1978 - grpc++_test_util
1979 - grpc_test_util
1980 - grpc++
1981 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001982 - gpr_test_util
1983 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001984 platforms:
1985 - mac
1986 - linux
1987 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001988- name: auth_property_iterator_test
1989 build: test
1990 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001991 src:
1992 - test/cpp/common/auth_property_iterator_test.cc
1993 deps:
1994 - grpc++_test_util
1995 - grpc_test_util
1996 - grpc++
1997 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001998 - gpr_test_util
1999 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002000- name: channel_arguments_test
2001 build: test
2002 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002003 src:
yang-g52705592015-11-25 11:45:33 -08002004 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002005 deps:
2006 - grpc++
2007 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002008 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002009- name: cli_call_test
2010 build: test
2011 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002012 src:
2013 - test/cpp/util/cli_call_test.cc
2014 deps:
2015 - grpc++_test_util
2016 - grpc_test_util
2017 - grpc++
2018 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002019 - gpr_test_util
2020 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002021- name: client_crash_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002022 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002023 build: test
2024 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002025 src:
2026 - test/cpp/end2end/client_crash_test.cc
2027 deps:
2028 - grpc++_test_util
2029 - grpc_test_util
2030 - grpc++
2031 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002032 - gpr_test_util
2033 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002034 platforms:
2035 - mac
2036 - linux
2037 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002038- name: client_crash_test_server
2039 build: test
2040 run: false
2041 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002042 src:
2043 - test/cpp/end2end/client_crash_test_server.cc
2044 deps:
2045 - grpc++_test_util
2046 - grpc_test_util
2047 - grpc++
2048 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002049 - gpr_test_util
2050 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002051- name: credentials_test
2052 build: test
2053 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002054 src:
2055 - test/cpp/client/credentials_test.cc
2056 deps:
2057 - grpc++
2058 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002059 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002060- name: cxx_byte_buffer_test
2061 build: test
2062 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002063 src:
2064 - test/cpp/util/byte_buffer_test.cc
2065 deps:
2066 - grpc_test_util
2067 - grpc++
2068 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002069 - gpr_test_util
2070 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002071- name: cxx_slice_test
2072 build: test
2073 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002074 src:
2075 - test/cpp/util/slice_test.cc
2076 deps:
2077 - grpc_test_util
2078 - grpc++
2079 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002080 - gpr_test_util
2081 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002082- name: cxx_string_ref_test
2083 build: test
2084 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002085 src:
2086 - test/cpp/util/string_ref_test.cc
2087 deps:
2088 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002089- name: cxx_time_test
2090 build: test
2091 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002092 src:
2093 - test/cpp/util/time_test.cc
2094 deps:
2095 - grpc_test_util
2096 - grpc++
2097 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002098 - gpr_test_util
2099 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002100- name: end2end_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002101 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002102 build: test
2103 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002104 src:
2105 - test/cpp/end2end/end2end_test.cc
2106 deps:
2107 - grpc++_test_util
2108 - grpc_test_util
2109 - grpc++
2110 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002111 - gpr_test_util
2112 - gpr
vjpai083dc622016-01-11 09:41:17 -08002113- name: generic_async_streaming_ping_pong_test
2114 build: test
2115 language: c++
2116 src:
2117 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2118 deps:
2119 - qps
2120 - grpc++_test_util
2121 - grpc_test_util
2122 - grpc++
2123 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002124 - gpr_test_util
2125 - gpr
vjpai083dc622016-01-11 09:41:17 -08002126 platforms:
2127 - mac
2128 - linux
2129 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002130- name: generic_end2end_test
2131 build: test
2132 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002133 src:
2134 - test/cpp/end2end/generic_end2end_test.cc
2135 deps:
2136 - grpc++_test_util
2137 - grpc_test_util
2138 - grpc++
2139 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002140 - gpr_test_util
2141 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002142- name: grpc_cli
2143 build: test
2144 run: false
2145 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002146 src:
2147 - test/cpp/util/grpc_cli.cc
2148 deps:
2149 - grpc++_test_util
2150 - grpc_test_util
2151 - grpc++
2152 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002153 - gpr_test_util
2154 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002155 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002156- name: grpc_cpp_plugin
2157 build: protoc
2158 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002159 src:
2160 - src/compiler/cpp_plugin.cc
2161 deps:
2162 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002163 secure: false
2164 vs_config_type: Application
2165 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2166- name: grpc_csharp_plugin
2167 build: protoc
2168 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002169 src:
2170 - src/compiler/csharp_plugin.cc
2171 deps:
2172 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002173 secure: false
2174 vs_config_type: Application
2175 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
2176- name: grpc_objective_c_plugin
2177 build: protoc
2178 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002179 src:
2180 - src/compiler/objective_c_plugin.cc
2181 deps:
2182 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002183 secure: false
2184 vs_config_type: Application
2185 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2186- name: grpc_python_plugin
2187 build: protoc
2188 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002189 src:
2190 - src/compiler/python_plugin.cc
2191 deps:
2192 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002193 secure: false
2194 vs_config_type: Application
2195 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2196- name: grpc_ruby_plugin
2197 build: protoc
2198 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002199 src:
2200 - src/compiler/ruby_plugin.cc
2201 deps:
2202 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002203 secure: false
2204 vs_config_type: Application
2205 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
yang-gbe5a2c42016-01-14 13:11:15 -08002206- name: hybrid_end2end_test
2207 build: test
2208 language: c++
2209 src:
2210 - test/cpp/end2end/hybrid_end2end_test.cc
2211 deps:
2212 - grpc++_test_util
2213 - grpc_test_util
2214 - grpc++
2215 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002216 - gpr_test_util
2217 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002218- name: interop_client
2219 build: test
2220 run: false
2221 language: c++
2222 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002223 deps:
2224 - interop_client_main
2225 - interop_client_helper
2226 - grpc++_test_util
2227 - grpc_test_util
2228 - grpc++
2229 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002230 - gpr_test_util
2231 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002232 - grpc++_test_config
2233 platforms:
2234 - mac
2235 - linux
2236 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002237- name: interop_server
2238 build: test
2239 run: false
2240 language: c++
2241 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002242 deps:
2243 - interop_server_main
2244 - interop_server_helper
2245 - grpc++_test_util
2246 - grpc_test_util
2247 - grpc++
2248 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002249 - gpr_test_util
2250 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002251 - grpc++_test_config
2252 platforms:
2253 - mac
2254 - linux
2255 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002256- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002257 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002258 build: test
2259 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002260 src:
2261 - test/cpp/interop/interop_test.cc
2262 deps:
2263 - grpc_test_util
2264 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002265 - gpr_test_util
2266 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002267 platforms:
2268 - mac
2269 - linux
2270 - posix
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002271- name: metrics_client
2272 build: test
2273 run: false
2274 language: c++
2275 headers:
2276 - test/cpp/util/metrics_server.h
2277 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002278 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002279 - test/cpp/interop/metrics_client.cc
2280 deps:
2281 - grpc++
2282 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002283 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002284 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002285- name: mock_test
2286 build: test
2287 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002288 src:
2289 - test/cpp/end2end/mock_test.cc
2290 deps:
2291 - grpc++_test_util
2292 - grpc_test_util
2293 - grpc++
2294 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002295 - gpr_test_util
2296 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002297- name: qps_driver
2298 build: benchmark
2299 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002300 src:
2301 - test/cpp/qps/qps_driver.cc
2302 deps:
2303 - qps
2304 - grpc++_test_util
2305 - grpc_test_util
2306 - grpc++
2307 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002308 - gpr_test_util
2309 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002310 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002311- name: qps_interarrival_test
2312 build: test
2313 run: false
2314 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002315 src:
2316 - test/cpp/qps/qps_interarrival_test.cc
2317 deps:
2318 - qps
2319 - grpc++_test_util
2320 - grpc_test_util
2321 - grpc++
2322 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002323 - gpr_test_util
2324 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002325 platforms:
2326 - mac
2327 - linux
2328 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002329- name: qps_openloop_test
2330 build: test
2331 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002332 src:
2333 - test/cpp/qps/qps_openloop_test.cc
2334 deps:
2335 - qps
2336 - grpc++_test_util
2337 - grpc_test_util
2338 - grpc++
2339 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002340 - gpr_test_util
2341 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002342 - grpc++_test_config
2343 platforms:
2344 - mac
2345 - linux
2346 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002347- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002348 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002349 build: test
2350 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002351 src:
2352 - test/cpp/qps/qps_test.cc
2353 deps:
2354 - qps
2355 - grpc++_test_util
2356 - grpc_test_util
2357 - grpc++
2358 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002359 - gpr_test_util
2360 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002361 - grpc++_test_config
2362 exclude_configs:
2363 - tsan
2364 platforms:
2365 - mac
2366 - linux
2367 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002368- name: qps_worker
2369 build: benchmark
2370 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002371 headers:
2372 - test/cpp/qps/client.h
2373 - test/cpp/qps/server.h
2374 src:
2375 - test/cpp/qps/worker.cc
2376 deps:
2377 - qps
2378 - grpc++_test_util
2379 - grpc_test_util
2380 - grpc++
2381 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002382 - gpr_test_util
2383 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002384 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002385- name: reconnect_interop_client
2386 build: test
2387 run: false
2388 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002389 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002390 - src/proto/grpc/testing/empty.proto
2391 - src/proto/grpc/testing/messages.proto
2392 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002393 - test/cpp/interop/reconnect_interop_client.cc
2394 deps:
2395 - grpc++_test_util
2396 - grpc_test_util
2397 - grpc++
2398 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002399 - gpr_test_util
2400 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002401 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002402- name: reconnect_interop_server
2403 build: test
2404 run: false
2405 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002406 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002407 - src/proto/grpc/testing/empty.proto
2408 - src/proto/grpc/testing/messages.proto
2409 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002410 - test/cpp/interop/reconnect_interop_server.cc
2411 deps:
2412 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002413 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002414 - grpc++_test_util
2415 - grpc_test_util
2416 - grpc++
2417 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002418 - gpr_test_util
2419 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002420 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002421- name: secure_auth_context_test
2422 build: test
2423 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002424 src:
2425 - test/cpp/common/secure_auth_context_test.cc
2426 deps:
2427 - grpc++_test_util
2428 - grpc_test_util
2429 - grpc++
2430 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002431 - gpr_test_util
2432 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002433- name: secure_sync_unary_ping_pong_test
2434 build: test
2435 language: c++
2436 src:
2437 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2438 deps:
2439 - qps
2440 - grpc++_test_util
2441 - grpc_test_util
2442 - grpc++
2443 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002444 - gpr_test_util
2445 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002446 platforms:
2447 - mac
2448 - linux
2449 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002450- name: server_crash_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002451 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002452 build: test
2453 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002454 src:
2455 - test/cpp/end2end/server_crash_test.cc
2456 deps:
2457 - grpc++_test_util
2458 - grpc_test_util
2459 - grpc++
2460 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002461 - gpr_test_util
2462 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002463 platforms:
2464 - mac
2465 - linux
2466 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002467- name: server_crash_test_client
2468 build: test
2469 run: false
2470 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002471 src:
2472 - test/cpp/end2end/server_crash_test_client.cc
2473 deps:
2474 - grpc++_test_util
2475 - grpc_test_util
2476 - grpc++
2477 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002478 - gpr_test_util
2479 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002480- name: shutdown_test
2481 build: test
2482 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002483 src:
2484 - test/cpp/end2end/shutdown_test.cc
2485 deps:
2486 - grpc++_test_util
2487 - grpc_test_util
2488 - grpc++
2489 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002490 - gpr_test_util
2491 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002492- name: status_test
2493 build: test
2494 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002495 src:
2496 - test/cpp/util/status_test.cc
2497 deps:
2498 - grpc_test_util
2499 - grpc++
2500 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002501 - gpr_test_util
2502 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002503- name: streaming_throughput_test
2504 build: test
2505 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002506 src:
2507 - test/cpp/end2end/streaming_throughput_test.cc
2508 deps:
2509 - grpc++_test_util
2510 - grpc_test_util
2511 - grpc++
2512 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002513 - gpr_test_util
2514 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002515 platforms:
2516 - mac
2517 - linux
2518 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002519- name: stress_test
2520 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07002521 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002522 language: c++
2523 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07002524 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002525 - test/cpp/interop/interop_client.h
2526 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002527 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002528 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002529 - src/proto/grpc/testing/empty.proto
2530 - src/proto/grpc/testing/messages.proto
2531 - src/proto/grpc/testing/metrics.proto
2532 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002533 - test/cpp/interop/interop_client.cc
2534 - test/cpp/interop/stress_interop_client.cc
2535 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002536 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002537 deps:
2538 - grpc++_test_util
2539 - grpc_test_util
2540 - grpc++
2541 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002542 - gpr_test_util
2543 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002544 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002545- name: sync_streaming_ping_pong_test
2546 build: test
2547 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002548 src:
2549 - test/cpp/qps/sync_streaming_ping_pong_test.cc
2550 deps:
2551 - qps
2552 - grpc++_test_util
2553 - grpc_test_util
2554 - grpc++
2555 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002556 - gpr_test_util
2557 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002558 platforms:
2559 - mac
2560 - linux
2561 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002562- name: sync_unary_ping_pong_test
2563 build: test
2564 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002565 src:
2566 - test/cpp/qps/sync_unary_ping_pong_test.cc
2567 deps:
2568 - qps
2569 - grpc++_test_util
2570 - grpc_test_util
2571 - grpc++
2572 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002573 - gpr_test_util
2574 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002575 platforms:
2576 - mac
2577 - linux
2578 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002579- name: thread_stress_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002580 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07002581 build: test
2582 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002583 src:
2584 - test/cpp/end2end/thread_stress_test.cc
2585 deps:
2586 - grpc++_test_util
2587 - grpc_test_util
2588 - grpc++
2589 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002590 - gpr_test_util
2591 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002592- name: zookeeper_test
2593 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07002594 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002595 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002596 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002597 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07002598 - test/cpp/end2end/zookeeper_test.cc
2599 deps:
2600 - grpc++_test_util
2601 - grpc_test_util
2602 - grpc++
2603 - grpc_zookeeper
2604 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002605 - gpr_test_util
2606 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002607 external_deps:
2608 - zookeeper
2609 platforms:
2610 - linux
Craig Tillerab230452016-01-04 08:18:43 -08002611- name: public_headers_must_be_c89
2612 build: test
2613 language: c89
2614 src:
2615 - test/core/surface/public_headers_must_be_c89.c
2616 deps:
2617 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002618 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002619vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07002620- linkage: static
2621 name: grpc.dependencies.zlib
2622 props: false
2623 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08002624 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08002625- linkage: static
2626 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07002627 props: true
2628 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08002629 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07002630- name: gflags
2631 props: false
2632 redist: false
2633 version: 2.1.2.1
2634- name: gtest
2635 props: false
2636 redist: false
2637 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08002638configs:
2639 asan:
2640 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002641 CPPFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002642 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002643 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002644 LD: clang
2645 LDFLAGS: -fsanitize=address
2646 LDXX: clang++
2647 compile_the_world: true
2648 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08002649 ASAN_OPTIONS: detect_leaks=1:color=always
2650 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Craig Tiller81df68d2016-01-21 13:59:50 -08002651 timeout_multiplier: 1.5
Craig Tillera0f85172016-01-20 15:56:06 -08002652 asan-noleaks:
2653 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002654 CPPFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002655 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002656 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002657 LD: clang
2658 LDFLAGS: -fsanitize=address
2659 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08002660 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08002661 test_environ:
2662 ASAN_OPTIONS: detect_leaks=0:color=always
Craig Tiller81df68d2016-01-21 13:59:50 -08002663 timeout_multiplier: 1.5
Craig Tillera0f85172016-01-20 15:56:06 -08002664 basicprof:
2665 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
2666 DEFINES: NDEBUG
2667 dbg:
2668 CPPFLAGS: -O0
2669 DEFINES: _DEBUG DEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08002670 gcov:
2671 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002672 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08002673 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08002674 DEFINES: _DEBUG DEBUG GPR_GCOV
2675 LD: gcc
2676 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
2677 LDXX: g++
2678 helgrind:
2679 CPPFLAGS: -O0
2680 DEFINES: _DEBUG DEBUG
2681 LDFLAGS: -rdynamic
2682 timeout_multiplier: 20
2683 valgrind: --tool=helgrind
2684 memcheck:
2685 CPPFLAGS: -O0
2686 DEFINES: _DEBUG DEBUG
2687 LDFLAGS: -rdynamic
2688 timeout_multiplier: 10
2689 valgrind: --tool=memcheck --leak-check=full
2690 msan:
2691 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002692 CPPFLAGS: -O0 -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer
Craig Tillera0f85172016-01-20 15:56:06 -08002693 -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002694 -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002695 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002696 DEFINES: NDEBUG
2697 LD: clang
2698 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
2699 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
2700 LDXX: clang++
2701 compile_the_world: true
Craig Tiller3e301a32016-01-27 15:36:52 -08002702 timeout_multiplier: 2
Craig Tillera0f85172016-01-20 15:56:06 -08002703 mutrace:
2704 CPPFLAGS: -O0
2705 DEFINES: _DEBUG DEBUG
2706 LDFLAGS: -rdynamic
2707 opt:
2708 CPPFLAGS: -O2
2709 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08002710 stapprof:
2711 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
2712 DEFINES: NDEBUG
2713 tsan:
2714 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002715 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002716 -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002717 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002718 LD: clang
2719 LDFLAGS: -fsanitize=thread -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
2720 LDXX: clang++
2721 compile_the_world: true
2722 test_environ:
2723 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
2724 timeout_multiplier: 2
2725 ubsan:
2726 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002727 CPPFLAGS: -O1 -fsanitize=undefined -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08002728 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002729 DEFINES: NDEBUG
2730 LD: clang
2731 LDFLAGS: -fsanitize=undefined
2732 LDXX: clang++
2733 compile_the_world: true
2734 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002735defaults:
2736 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01002737 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Nicolas "Pixel" Noble17230442016-01-29 01:46:19 +01002738 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002739 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01002740 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002741 global:
2742 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
2743 LDFLAGS: -g
2744 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01002745 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01002746 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08002747node_modules:
2748- deps:
2749 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002750 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08002751 - boringssl
2752 - z
murgatroid9994a75412015-11-19 14:04:53 -08002753 headers:
2754 - src/node/ext/byte_buffer.h
2755 - src/node/ext/call.h
2756 - src/node/ext/call_credentials.h
2757 - src/node/ext/channel.h
2758 - src/node/ext/channel_credentials.h
2759 - src/node/ext/completion_queue_async_worker.h
2760 - src/node/ext/server.h
2761 - src/node/ext/server_credentials.h
2762 - src/node/ext/timeval.h
2763 js:
2764 - src/node/index.js
2765 - src/node/src/client.js
2766 - src/node/src/common.js
2767 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08002768 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08002769 - src/node/src/metadata.js
2770 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08002771 name: grpc_node
2772 src:
2773 - src/node/ext/byte_buffer.cc
2774 - src/node/ext/call.cc
2775 - src/node/ext/call_credentials.cc
2776 - src/node/ext/channel.cc
2777 - src/node/ext/channel_credentials.cc
2778 - src/node/ext/completion_queue_async_worker.cc
2779 - src/node/ext/node_grpc.cc
2780 - src/node/ext/server.cc
2781 - src/node/ext/server_credentials.cc
2782 - src/node/ext/timeval.cc
Masood Malekghassemi116982e2015-12-11 15:53:38 -08002783python_dependencies:
2784 deps:
2785 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002786 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08002787 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08002788 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01002789ruby_gem:
2790 deps:
2791 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002792 - gpr
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01002793 - boringssl
2794 - z