blob: 65e80a99ad2df6f13a885cddd485e89e90221dc5 [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" Noble16caa502016-05-06 03:02:51 +020010 version: 0.15.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:
Craig Tiller8f8e9f92016-03-29 09:41:28 -070016 - src/core/ext/census/aggregation.h
17 - src/core/ext/census/census_interface.h
18 - src/core/ext/census/census_rpc_stats.h
19 - src/core/ext/census/grpc_filter.h
Craig Tiller8f8e9f92016-03-29 09:41:28 -070020 - src/core/ext/census/mlog.h
21 - src/core/ext/census/rpc_metric_id.h
Craig Tiller25834342015-09-25 08:08:24 -070022 src:
Craig Tiller8f8e9f92016-03-29 09:41:28 -070023 - src/core/ext/census/context.c
24 - src/core/ext/census/grpc_context.c
25 - src/core/ext/census/grpc_filter.c
26 - src/core/ext/census/grpc_plugin.c
27 - src/core/ext/census/initialize.c
28 - src/core/ext/census/mlog.c
29 - src/core/ext/census/operation.c
30 - src/core/ext/census/placeholders.c
31 - src/core/ext/census/tracing.c
32 plugin: census_grpc_plugin
Craig Tillerd1697d92016-04-05 16:05:46 -070033 uses:
34 - grpc_base
35- name: gpr_base
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010036 public_headers:
37 - include/grpc/support/alloc.h
38 - include/grpc/support/atm.h
39 - include/grpc/support/atm_gcc_atomic.h
40 - include/grpc/support/atm_gcc_sync.h
41 - include/grpc/support/atm_win32.h
42 - include/grpc/support/avl.h
43 - include/grpc/support/cmdline.h
44 - include/grpc/support/cpu.h
45 - include/grpc/support/histogram.h
46 - include/grpc/support/host_port.h
47 - include/grpc/support/log.h
48 - include/grpc/support/log_win32.h
49 - include/grpc/support/port_platform.h
50 - include/grpc/support/slice.h
51 - include/grpc/support/slice_buffer.h
52 - include/grpc/support/string_util.h
53 - include/grpc/support/subprocess.h
54 - include/grpc/support/sync.h
55 - include/grpc/support/sync_generic.h
56 - include/grpc/support/sync_posix.h
57 - include/grpc/support/sync_win32.h
58 - include/grpc/support/thd.h
59 - include/grpc/support/time.h
60 - include/grpc/support/tls.h
61 - include/grpc/support/tls_gcc.h
62 - include/grpc/support/tls_msvc.h
63 - include/grpc/support/tls_pthread.h
64 - include/grpc/support/useful.h
65 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -070066 - src/core/lib/profiling/timers.h
67 - src/core/lib/support/backoff.h
68 - src/core/lib/support/block_annotate.h
69 - src/core/lib/support/env.h
70 - src/core/lib/support/load_file.h
71 - src/core/lib/support/murmur_hash.h
72 - src/core/lib/support/stack_lockfree.h
73 - src/core/lib/support/string.h
74 - src/core/lib/support/string_win32.h
75 - src/core/lib/support/thd_internal.h
76 - src/core/lib/support/time_precise.h
77 - src/core/lib/support/tmpfile.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010078 src:
Craig Tillerf23078c2016-03-25 17:07:29 -070079 - src/core/lib/profiling/basic_timers.c
80 - src/core/lib/profiling/stap_timers.c
81 - src/core/lib/support/alloc.c
82 - src/core/lib/support/avl.c
83 - src/core/lib/support/backoff.c
84 - src/core/lib/support/cmdline.c
85 - src/core/lib/support/cpu_iphone.c
86 - src/core/lib/support/cpu_linux.c
87 - src/core/lib/support/cpu_posix.c
88 - src/core/lib/support/cpu_windows.c
89 - src/core/lib/support/env_linux.c
90 - src/core/lib/support/env_posix.c
91 - src/core/lib/support/env_win32.c
92 - src/core/lib/support/histogram.c
93 - src/core/lib/support/host_port.c
94 - src/core/lib/support/load_file.c
95 - src/core/lib/support/log.c
96 - src/core/lib/support/log_android.c
97 - src/core/lib/support/log_linux.c
98 - src/core/lib/support/log_posix.c
99 - src/core/lib/support/log_win32.c
100 - src/core/lib/support/murmur_hash.c
101 - src/core/lib/support/slice.c
102 - src/core/lib/support/slice_buffer.c
103 - src/core/lib/support/stack_lockfree.c
104 - src/core/lib/support/string.c
105 - src/core/lib/support/string_posix.c
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200106 - src/core/lib/support/string_util_win32.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700107 - src/core/lib/support/string_win32.c
108 - src/core/lib/support/subprocess_posix.c
109 - src/core/lib/support/subprocess_windows.c
110 - src/core/lib/support/sync.c
111 - src/core/lib/support/sync_posix.c
112 - src/core/lib/support/sync_win32.c
113 - src/core/lib/support/thd.c
114 - src/core/lib/support/thd_posix.c
115 - src/core/lib/support/thd_win32.c
116 - src/core/lib/support/time.c
117 - src/core/lib/support/time_posix.c
118 - src/core/lib/support/time_precise.c
119 - src/core/lib/support/time_win32.c
120 - src/core/lib/support/tls_pthread.c
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200121 - src/core/lib/support/tmpfile_msys.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700122 - src/core/lib/support/tmpfile_posix.c
123 - src/core/lib/support/tmpfile_win32.c
124 - src/core/lib/support/wrap_memcpy.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700125 uses:
126 - gpr_codegen
Craig Tiller1298afd2016-02-09 12:29:17 -0800127- name: gpr_codegen
128 public_headers:
129 - include/grpc/impl/codegen/alloc.h
130 - include/grpc/impl/codegen/atm.h
131 - include/grpc/impl/codegen/atm_gcc_atomic.h
132 - include/grpc/impl/codegen/atm_gcc_sync.h
133 - include/grpc/impl/codegen/atm_win32.h
134 - include/grpc/impl/codegen/log.h
135 - include/grpc/impl/codegen/port_platform.h
136 - include/grpc/impl/codegen/slice.h
137 - include/grpc/impl/codegen/slice_buffer.h
138 - include/grpc/impl/codegen/sync.h
139 - include/grpc/impl/codegen/sync_generic.h
140 - include/grpc/impl/codegen/sync_posix.h
141 - include/grpc/impl/codegen/sync_win32.h
142 - include/grpc/impl/codegen/time.h
Craig Tillerbf4b2242015-08-31 15:53:53 -0700143- name: grpc_base
Craig Tiller25834342015-09-25 08:08:24 -0700144 public_headers:
145 - include/grpc/byte_buffer.h
146 - include/grpc/byte_buffer_reader.h
147 - include/grpc/compression.h
148 - include/grpc/grpc.h
149 - include/grpc/status.h
150 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700151 - src/core/lib/channel/channel_args.h
152 - src/core/lib/channel/channel_stack.h
153 - src/core/lib/channel/channel_stack_builder.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700154 - src/core/lib/channel/compress_filter.h
155 - src/core/lib/channel/connected_channel.h
156 - src/core/lib/channel/context.h
157 - src/core/lib/channel/http_client_filter.h
158 - src/core/lib/channel/http_server_filter.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700159 - src/core/lib/compression/algorithm_metadata.h
160 - src/core/lib/compression/message_compress.h
161 - src/core/lib/debug/trace.h
162 - src/core/lib/http/format_request.h
163 - src/core/lib/http/httpcli.h
164 - src/core/lib/http/parser.h
165 - src/core/lib/iomgr/closure.h
166 - src/core/lib/iomgr/endpoint.h
167 - src/core/lib/iomgr/endpoint_pair.h
Craig Tiller8a034482016-03-28 16:09:04 -0700168 - src/core/lib/iomgr/ev_poll_and_epoll_posix.h
169 - src/core/lib/iomgr/ev_posix.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700170 - src/core/lib/iomgr/exec_ctx.h
171 - src/core/lib/iomgr/executor.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700172 - src/core/lib/iomgr/iocp_windows.h
173 - src/core/lib/iomgr/iomgr.h
174 - src/core/lib/iomgr/iomgr_internal.h
175 - src/core/lib/iomgr/iomgr_posix.h
176 - src/core/lib/iomgr/pollset.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700177 - src/core/lib/iomgr/pollset_set.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700178 - src/core/lib/iomgr/pollset_set_windows.h
179 - src/core/lib/iomgr/pollset_windows.h
180 - src/core/lib/iomgr/resolve_address.h
181 - src/core/lib/iomgr/sockaddr.h
182 - src/core/lib/iomgr/sockaddr_posix.h
183 - src/core/lib/iomgr/sockaddr_utils.h
184 - src/core/lib/iomgr/sockaddr_win32.h
185 - src/core/lib/iomgr/socket_utils_posix.h
186 - src/core/lib/iomgr/socket_windows.h
187 - src/core/lib/iomgr/tcp_client.h
188 - src/core/lib/iomgr/tcp_posix.h
189 - src/core/lib/iomgr/tcp_server.h
190 - src/core/lib/iomgr/tcp_windows.h
191 - src/core/lib/iomgr/time_averaged_stats.h
192 - src/core/lib/iomgr/timer.h
193 - src/core/lib/iomgr/timer_heap.h
194 - src/core/lib/iomgr/udp_server.h
195 - src/core/lib/iomgr/unix_sockets_posix.h
196 - src/core/lib/iomgr/wakeup_fd_pipe.h
197 - src/core/lib/iomgr/wakeup_fd_posix.h
198 - src/core/lib/iomgr/workqueue.h
199 - src/core/lib/iomgr/workqueue_posix.h
200 - src/core/lib/iomgr/workqueue_windows.h
201 - src/core/lib/json/json.h
202 - src/core/lib/json/json_common.h
203 - src/core/lib/json/json_reader.h
204 - src/core/lib/json/json_writer.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700205 - src/core/lib/surface/api_trace.h
206 - src/core/lib/surface/call.h
207 - src/core/lib/surface/call_test_only.h
208 - src/core/lib/surface/channel.h
209 - src/core/lib/surface/channel_init.h
210 - src/core/lib/surface/channel_stack_type.h
211 - src/core/lib/surface/completion_queue.h
212 - src/core/lib/surface/event_string.h
213 - src/core/lib/surface/init.h
214 - src/core/lib/surface/lame_client.h
215 - src/core/lib/surface/server.h
216 - src/core/lib/surface/surface_trace.h
217 - src/core/lib/transport/byte_stream.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700218 - src/core/lib/transport/connectivity_state.h
219 - src/core/lib/transport/metadata.h
220 - src/core/lib/transport/metadata_batch.h
221 - src/core/lib/transport/static_metadata.h
222 - src/core/lib/transport/transport.h
223 - src/core/lib/transport/transport_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700224 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700225 - src/core/lib/channel/channel_args.c
226 - src/core/lib/channel/channel_stack.c
227 - src/core/lib/channel/channel_stack_builder.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700228 - src/core/lib/channel/compress_filter.c
229 - src/core/lib/channel/connected_channel.c
230 - src/core/lib/channel/http_client_filter.c
231 - src/core/lib/channel/http_server_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700232 - src/core/lib/compression/compression_algorithm.c
233 - src/core/lib/compression/message_compress.c
234 - src/core/lib/debug/trace.c
235 - src/core/lib/http/format_request.c
236 - src/core/lib/http/httpcli.c
237 - src/core/lib/http/parser.c
238 - src/core/lib/iomgr/closure.c
239 - src/core/lib/iomgr/endpoint.c
240 - src/core/lib/iomgr/endpoint_pair_posix.c
241 - src/core/lib/iomgr/endpoint_pair_windows.c
Craig Tiller8a034482016-03-28 16:09:04 -0700242 - src/core/lib/iomgr/ev_poll_and_epoll_posix.c
243 - src/core/lib/iomgr/ev_posix.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700244 - src/core/lib/iomgr/exec_ctx.c
245 - src/core/lib/iomgr/executor.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700246 - src/core/lib/iomgr/iocp_windows.c
247 - src/core/lib/iomgr/iomgr.c
248 - src/core/lib/iomgr/iomgr_posix.c
249 - src/core/lib/iomgr/iomgr_windows.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700250 - src/core/lib/iomgr/pollset_set_windows.c
251 - src/core/lib/iomgr/pollset_windows.c
252 - src/core/lib/iomgr/resolve_address_posix.c
253 - src/core/lib/iomgr/resolve_address_windows.c
254 - src/core/lib/iomgr/sockaddr_utils.c
255 - src/core/lib/iomgr/socket_utils_common_posix.c
256 - src/core/lib/iomgr/socket_utils_linux.c
257 - src/core/lib/iomgr/socket_utils_posix.c
258 - src/core/lib/iomgr/socket_windows.c
259 - src/core/lib/iomgr/tcp_client_posix.c
260 - src/core/lib/iomgr/tcp_client_windows.c
261 - src/core/lib/iomgr/tcp_posix.c
262 - src/core/lib/iomgr/tcp_server_posix.c
263 - src/core/lib/iomgr/tcp_server_windows.c
264 - src/core/lib/iomgr/tcp_windows.c
265 - src/core/lib/iomgr/time_averaged_stats.c
266 - src/core/lib/iomgr/timer.c
267 - src/core/lib/iomgr/timer_heap.c
268 - src/core/lib/iomgr/udp_server.c
269 - src/core/lib/iomgr/unix_sockets_posix.c
270 - src/core/lib/iomgr/unix_sockets_posix_noop.c
271 - src/core/lib/iomgr/wakeup_fd_eventfd.c
272 - src/core/lib/iomgr/wakeup_fd_nospecial.c
273 - src/core/lib/iomgr/wakeup_fd_pipe.c
274 - src/core/lib/iomgr/wakeup_fd_posix.c
275 - src/core/lib/iomgr/workqueue_posix.c
276 - src/core/lib/iomgr/workqueue_windows.c
277 - src/core/lib/json/json.c
278 - src/core/lib/json/json_reader.c
279 - src/core/lib/json/json_string.c
280 - src/core/lib/json/json_writer.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700281 - src/core/lib/surface/alarm.c
282 - src/core/lib/surface/api_trace.c
283 - src/core/lib/surface/byte_buffer.c
284 - src/core/lib/surface/byte_buffer_reader.c
285 - src/core/lib/surface/call.c
286 - src/core/lib/surface/call_details.c
287 - src/core/lib/surface/call_log_batch.c
288 - src/core/lib/surface/channel.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700289 - src/core/lib/surface/channel_init.c
290 - src/core/lib/surface/channel_ping.c
291 - src/core/lib/surface/channel_stack_type.c
292 - src/core/lib/surface/completion_queue.c
293 - src/core/lib/surface/event_string.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700294 - src/core/lib/surface/lame_client.c
295 - src/core/lib/surface/metadata_array.c
296 - src/core/lib/surface/server.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700297 - src/core/lib/surface/validate_metadata.c
298 - src/core/lib/surface/version.c
299 - src/core/lib/transport/byte_stream.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700300 - src/core/lib/transport/connectivity_state.c
301 - src/core/lib/transport/metadata.c
302 - src/core/lib/transport/metadata_batch.c
303 - src/core/lib/transport/static_metadata.c
304 - src/core/lib/transport/transport.c
305 - src/core/lib/transport/transport_op_string.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700306 deps:
307 - gpr
308 uses:
309 - grpc_codegen
Craig Tiller016a81d2016-03-31 13:49:05 -0700310- name: grpc_client_config
311 headers:
312 - src/core/ext/client_config/client_channel.h
Craig Tiller74071cd2016-04-01 16:36:27 -0700313 - src/core/ext/client_config/client_channel_factory.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700314 - src/core/ext/client_config/client_config.h
315 - src/core/ext/client_config/connector.h
316 - src/core/ext/client_config/initial_connect_string.h
317 - src/core/ext/client_config/lb_policy.h
318 - src/core/ext/client_config/lb_policy_factory.h
319 - src/core/ext/client_config/lb_policy_registry.h
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700320 - src/core/ext/client_config/parse_address.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700321 - src/core/ext/client_config/resolver.h
322 - src/core/ext/client_config/resolver_factory.h
323 - src/core/ext/client_config/resolver_registry.h
324 - src/core/ext/client_config/subchannel.h
Craig Tillerb112f392016-04-05 12:44:04 -0700325 - src/core/ext/client_config/subchannel_call_holder.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700326 - src/core/ext/client_config/subchannel_index.h
327 - src/core/ext/client_config/uri_parser.h
328 src:
329 - src/core/ext/client_config/channel_connectivity.c
330 - src/core/ext/client_config/client_channel.c
Craig Tiller74071cd2016-04-01 16:36:27 -0700331 - src/core/ext/client_config/client_channel_factory.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700332 - src/core/ext/client_config/client_config.c
Craig Tiller0b541632016-04-05 17:21:05 -0700333 - src/core/ext/client_config/client_config_plugin.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700334 - src/core/ext/client_config/connector.c
335 - src/core/ext/client_config/default_initial_connect_string.c
336 - src/core/ext/client_config/initial_connect_string.c
337 - src/core/ext/client_config/lb_policy.c
338 - src/core/ext/client_config/lb_policy_factory.c
339 - src/core/ext/client_config/lb_policy_registry.c
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700340 - src/core/ext/client_config/parse_address.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700341 - src/core/ext/client_config/resolver.c
342 - src/core/ext/client_config/resolver_factory.c
343 - src/core/ext/client_config/resolver_registry.c
344 - src/core/ext/client_config/subchannel.c
Craig Tillerb112f392016-04-05 12:44:04 -0700345 - src/core/ext/client_config/subchannel_call_holder.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700346 - src/core/ext/client_config/subchannel_index.c
347 - src/core/ext/client_config/uri_parser.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700348 plugin: grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700349 uses:
350 - grpc_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800351- name: grpc_codegen
352 public_headers:
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800353 - include/grpc/impl/codegen/byte_buffer.h
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700354 - include/grpc/impl/codegen/byte_buffer_reader.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800355 - include/grpc/impl/codegen/compression_types.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800356 - include/grpc/impl/codegen/connectivity_state.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800357 - include/grpc/impl/codegen/grpc_types.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800358 - include/grpc/impl/codegen/propagation_bits.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800359 - include/grpc/impl/codegen/status.h
Craig Tiller03915e52016-04-07 09:15:10 -0700360 uses:
361 - gpr_codegen
Craig Tiller023caf12016-03-29 08:00:30 -0700362- name: grpc_lb_policy_grpclb
363 headers:
364 - src/core/ext/lb_policy/grpclb/load_balancer_api.h
Craig Tiller943cdf92016-03-29 13:27:56 -0700365 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h
Craig Tiller023caf12016-03-29 08:00:30 -0700366 src:
367 - src/core/ext/lb_policy/grpclb/load_balancer_api.c
Craig Tiller943cdf92016-03-29 13:27:56 -0700368 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c
Craig Tiller023caf12016-03-29 08:00:30 -0700369 uses:
370 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700371 - grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700372 - nanopb
Craig Tiller023caf12016-03-29 08:00:30 -0700373- name: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700374 src:
375 - src/core/ext/lb_policy/pick_first/pick_first.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700376 plugin: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700377 uses:
378 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700379 - grpc_client_config
Craig Tiller023caf12016-03-29 08:00:30 -0700380- name: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700381 src:
382 - src/core/ext/lb_policy/round_robin/round_robin.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700383 plugin: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700384 uses:
385 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700386 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700387- name: grpc_resolver_dns_native
388 src:
389 - src/core/ext/resolver/dns/native/dns_resolver.c
390 plugin: grpc_resolver_dns_native
391 uses:
392 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700393 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700394- name: grpc_resolver_sockaddr
395 src:
396 - src/core/ext/resolver/sockaddr/sockaddr_resolver.c
397 plugin: grpc_resolver_sockaddr
398 uses:
399 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700400 - grpc_client_config
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100401- name: grpc_secure
Craig Tillerd1697d92016-04-05 16:05:46 -0700402 public_headers:
403 - include/grpc/grpc_security.h
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700404 - include/grpc/grpc_security_constants.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100405 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700406 - src/core/lib/security/auth_filters.h
407 - src/core/lib/security/b64.h
408 - src/core/lib/security/credentials.h
409 - src/core/lib/security/handshake.h
410 - src/core/lib/security/json_token.h
411 - src/core/lib/security/jwt_verifier.h
412 - src/core/lib/security/secure_endpoint.h
413 - src/core/lib/security/security_connector.h
414 - src/core/lib/security/security_context.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100415 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700416 - src/core/lib/http/httpcli_security_connector.c
417 - src/core/lib/security/b64.c
418 - src/core/lib/security/client_auth_filter.c
419 - src/core/lib/security/credentials.c
420 - src/core/lib/security/credentials_metadata.c
421 - src/core/lib/security/credentials_posix.c
422 - src/core/lib/security/credentials_win32.c
423 - src/core/lib/security/google_default_credentials.c
424 - src/core/lib/security/handshake.c
425 - src/core/lib/security/json_token.c
426 - src/core/lib/security/jwt_verifier.c
427 - src/core/lib/security/secure_endpoint.c
428 - src/core/lib/security/security_connector.c
429 - src/core/lib/security/security_context.c
430 - src/core/lib/security/server_auth_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700431 - src/core/lib/surface/init_secure.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700432 secure: true
Craig Tillerd1697d92016-04-05 16:05:46 -0700433 uses:
434 - grpc_base
435 - grpc_transport_chttp2_alpn
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700436 - tsi
Craig Tillerbf4b2242015-08-31 15:53:53 -0700437- name: grpc_test_util_base
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700438 build: test
Craig Tiller25834342015-09-25 08:08:24 -0700439 headers:
440 - test/core/end2end/cq_verifier.h
441 - test/core/end2end/fixtures/proxy.h
442 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700443 - test/core/util/grpc_profiler.h
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200444 - test/core/util/memory_counters.h
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700445 - test/core/util/mock_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700446 - test/core/util/parse_hexstring.h
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700447 - test/core/util/passthru_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700448 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700449 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700450 - test/core/util/slice_splitter.h
451 src:
452 - test/core/end2end/cq_verifier.c
453 - test/core/end2end/fixtures/proxy.c
454 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700455 - test/core/util/grpc_profiler.c
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200456 - test/core/util/memory_counters.c
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700457 - test/core/util/mock_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700458 - test/core/util/parse_hexstring.c
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700459 - test/core/util/passthru_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700460 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700461 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700462 - test/core/util/port_windows.c
463 - test/core/util/slice_splitter.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700464 deps:
465 - grpc
466 - gpr_test_util
Craig Tillerf0555b32016-03-28 10:19:24 -0700467- name: grpc_transport_chttp2
468 headers:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700469 - src/core/ext/transport/chttp2/transport/bin_encoder.h
Craig Tillerf0555b32016-03-28 10:19:24 -0700470 - src/core/ext/transport/chttp2/transport/chttp2_transport.h
471 - src/core/ext/transport/chttp2/transport/frame.h
472 - src/core/ext/transport/chttp2/transport/frame_data.h
473 - src/core/ext/transport/chttp2/transport/frame_goaway.h
474 - src/core/ext/transport/chttp2/transport/frame_ping.h
475 - src/core/ext/transport/chttp2/transport/frame_rst_stream.h
476 - src/core/ext/transport/chttp2/transport/frame_settings.h
477 - src/core/ext/transport/chttp2/transport/frame_window_update.h
478 - src/core/ext/transport/chttp2/transport/hpack_encoder.h
479 - src/core/ext/transport/chttp2/transport/hpack_parser.h
480 - src/core/ext/transport/chttp2/transport/hpack_table.h
481 - src/core/ext/transport/chttp2/transport/http2_errors.h
482 - src/core/ext/transport/chttp2/transport/huffsyms.h
483 - src/core/ext/transport/chttp2/transport/incoming_metadata.h
484 - src/core/ext/transport/chttp2/transport/internal.h
485 - src/core/ext/transport/chttp2/transport/status_conversion.h
486 - src/core/ext/transport/chttp2/transport/stream_map.h
487 - src/core/ext/transport/chttp2/transport/timeout_encoding.h
488 - src/core/ext/transport/chttp2/transport/varint.h
489 src:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700490 - src/core/ext/transport/chttp2/transport/bin_encoder.c
491 - src/core/ext/transport/chttp2/transport/chttp2_plugin.c
Craig Tillerf0555b32016-03-28 10:19:24 -0700492 - src/core/ext/transport/chttp2/transport/chttp2_transport.c
493 - src/core/ext/transport/chttp2/transport/frame_data.c
494 - src/core/ext/transport/chttp2/transport/frame_goaway.c
495 - src/core/ext/transport/chttp2/transport/frame_ping.c
496 - src/core/ext/transport/chttp2/transport/frame_rst_stream.c
497 - src/core/ext/transport/chttp2/transport/frame_settings.c
498 - src/core/ext/transport/chttp2/transport/frame_window_update.c
499 - src/core/ext/transport/chttp2/transport/hpack_encoder.c
500 - src/core/ext/transport/chttp2/transport/hpack_parser.c
501 - src/core/ext/transport/chttp2/transport/hpack_table.c
502 - src/core/ext/transport/chttp2/transport/huffsyms.c
503 - src/core/ext/transport/chttp2/transport/incoming_metadata.c
504 - src/core/ext/transport/chttp2/transport/parsing.c
505 - src/core/ext/transport/chttp2/transport/status_conversion.c
506 - src/core/ext/transport/chttp2/transport/stream_lists.c
507 - src/core/ext/transport/chttp2/transport/stream_map.c
508 - src/core/ext/transport/chttp2/transport/timeout_encoding.c
509 - src/core/ext/transport/chttp2/transport/varint.c
510 - src/core/ext/transport/chttp2/transport/writing.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700511 plugin: grpc_chttp2_plugin
Craig Tiller44cc10b2016-03-28 10:45:29 -0700512 uses:
513 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700514 - grpc_transport_chttp2_alpn
515- name: grpc_transport_chttp2_alpn
516 headers:
517 - src/core/ext/transport/chttp2/alpn/alpn.h
518 src:
519 - src/core/ext/transport/chttp2/alpn/alpn.c
520 deps:
521 - gpr
Craig Tillerf0555b32016-03-28 10:19:24 -0700522- name: grpc_transport_chttp2_client_insecure
523 src:
524 - src/core/ext/transport/chttp2/client/insecure/channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700525 uses:
526 - grpc_transport_chttp2
527 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700528 - grpc_client_config
Craig Tillerf0555b32016-03-28 10:19:24 -0700529- name: grpc_transport_chttp2_client_secure
530 src:
531 - src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700532 uses:
533 - grpc_transport_chttp2
534 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700535 - grpc_client_config
536 - grpc_secure
Craig Tillerf0555b32016-03-28 10:19:24 -0700537- name: grpc_transport_chttp2_server_insecure
538 src:
539 - src/core/ext/transport/chttp2/server/insecure/server_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700540 uses:
541 - grpc_transport_chttp2
542 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700543- name: grpc_transport_chttp2_server_secure
544 src:
545 - src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700546 uses:
547 - grpc_transport_chttp2
548 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700549 - grpc_secure
Craig Tillereb841e22016-02-11 15:49:16 -0800550- name: nanopb
551 headers:
552 - third_party/nanopb/pb.h
553 - third_party/nanopb/pb_common.h
554 - third_party/nanopb/pb_decode.h
555 - third_party/nanopb/pb_encode.h
556 src:
557 - third_party/nanopb/pb_common.c
558 - third_party/nanopb/pb_decode.c
559 - third_party/nanopb/pb_encode.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700560- name: tsi
561 headers:
562 - src/core/lib/tsi/fake_transport_security.h
563 - src/core/lib/tsi/ssl_transport_security.h
564 - src/core/lib/tsi/ssl_types.h
565 - src/core/lib/tsi/transport_security.h
566 - src/core/lib/tsi/transport_security_interface.h
567 src:
568 - src/core/lib/tsi/fake_transport_security.c
569 - src/core/lib/tsi/ssl_transport_security.c
570 - src/core/lib/tsi/transport_security.c
571 deps:
572 - gpr
573 secure: true
574- name: grpc++_base
575 language: c++
576 public_headers:
577 - include/grpc++/alarm.h
578 - include/grpc++/channel.h
579 - include/grpc++/client_context.h
580 - include/grpc++/completion_queue.h
581 - include/grpc++/create_channel.h
582 - include/grpc++/generic/async_generic_service.h
583 - include/grpc++/generic/generic_stub.h
584 - include/grpc++/grpc++.h
585 - include/grpc++/impl/call.h
586 - include/grpc++/impl/client_unary_call.h
587 - include/grpc++/impl/grpc_library.h
588 - include/grpc++/impl/method_handler_impl.h
589 - include/grpc++/impl/proto_utils.h
590 - include/grpc++/impl/rpc_method.h
591 - include/grpc++/impl/rpc_service_method.h
592 - include/grpc++/impl/serialization_traits.h
593 - include/grpc++/impl/server_builder_option.h
594 - include/grpc++/impl/service_type.h
595 - include/grpc++/impl/sync.h
596 - include/grpc++/impl/sync_cxx11.h
597 - include/grpc++/impl/sync_no_cxx11.h
598 - include/grpc++/impl/thd.h
599 - include/grpc++/impl/thd_cxx11.h
600 - include/grpc++/impl/thd_no_cxx11.h
601 - include/grpc++/security/auth_context.h
602 - include/grpc++/security/auth_metadata_processor.h
603 - include/grpc++/security/credentials.h
604 - include/grpc++/security/server_credentials.h
605 - include/grpc++/server.h
606 - include/grpc++/server_builder.h
607 - include/grpc++/server_context.h
608 - include/grpc++/support/async_stream.h
609 - include/grpc++/support/async_unary_call.h
610 - include/grpc++/support/byte_buffer.h
611 - include/grpc++/support/channel_arguments.h
612 - include/grpc++/support/slice.h
613 - include/grpc++/support/status.h
614 - include/grpc++/support/status_code_enum.h
615 - include/grpc++/support/string_ref.h
616 - include/grpc++/support/stub_options.h
617 - include/grpc++/support/sync_stream.h
618 - include/grpc++/support/time.h
619 headers:
620 - src/cpp/client/create_channel_internal.h
621 - src/cpp/common/core_codegen.h
622 - src/cpp/server/dynamic_thread_pool.h
623 - src/cpp/server/thread_pool_interface.h
624 src:
625 - src/cpp/client/channel.cc
626 - src/cpp/client/client_context.cc
627 - src/cpp/client/create_channel.cc
628 - src/cpp/client/create_channel_internal.cc
629 - src/cpp/client/credentials.cc
630 - src/cpp/client/generic_stub.cc
631 - src/cpp/client/insecure_credentials.cc
632 - src/cpp/common/channel_arguments.cc
633 - src/cpp/common/completion_queue.cc
634 - src/cpp/common/core_codegen.cc
635 - src/cpp/common/rpc_method.cc
636 - src/cpp/server/async_generic_service.cc
637 - src/cpp/server/create_default_thread_pool.cc
638 - src/cpp/server/dynamic_thread_pool.cc
639 - src/cpp/server/insecure_server_credentials.cc
640 - src/cpp/server/server.cc
641 - src/cpp/server/server_builder.cc
642 - src/cpp/server/server_context.cc
643 - src/cpp/server/server_credentials.cc
644 - src/cpp/util/byte_buffer.cc
645 - src/cpp/util/slice.cc
646 - src/cpp/util/status.cc
647 - src/cpp/util/string_ref.cc
648 - src/cpp/util/time.cc
649 deps:
650 - grpc
651 uses:
652 - grpc++_codegen
653 - grpc++_config
654- name: grpc++_codegen
655 language: c++
656 public_headers:
657 - include/grpc++/impl/codegen/async_stream.h
658 - include/grpc++/impl/codegen/async_unary_call.h
659 - include/grpc++/impl/codegen/call.h
660 - include/grpc++/impl/codegen/call_hook.h
661 - include/grpc++/impl/codegen/channel_interface.h
662 - include/grpc++/impl/codegen/client_context.h
663 - include/grpc++/impl/codegen/client_unary_call.h
664 - include/grpc++/impl/codegen/completion_queue.h
665 - include/grpc++/impl/codegen/completion_queue_tag.h
666 - include/grpc++/impl/codegen/core_codegen_interface.h
667 - include/grpc++/impl/codegen/create_auth_context.h
668 - include/grpc++/impl/codegen/grpc_library.h
669 - include/grpc++/impl/codegen/method_handler_impl.h
670 - include/grpc++/impl/codegen/proto_utils.h
671 - include/grpc++/impl/codegen/rpc_method.h
672 - include/grpc++/impl/codegen/rpc_service_method.h
673 - include/grpc++/impl/codegen/security/auth_context.h
674 - include/grpc++/impl/codegen/serialization_traits.h
675 - include/grpc++/impl/codegen/server_context.h
676 - include/grpc++/impl/codegen/server_interface.h
677 - include/grpc++/impl/codegen/service_type.h
678 - include/grpc++/impl/codegen/status.h
679 - include/grpc++/impl/codegen/status_code_enum.h
680 - include/grpc++/impl/codegen/string_ref.h
681 - include/grpc++/impl/codegen/stub_options.h
682 - include/grpc++/impl/codegen/sync.h
683 - include/grpc++/impl/codegen/sync_cxx11.h
684 - include/grpc++/impl/codegen/sync_no_cxx11.h
685 - include/grpc++/impl/codegen/sync_stream.h
686 - include/grpc++/impl/codegen/time.h
687 src:
688 - src/cpp/codegen/codegen_init.cc
689 uses:
690 - grpc_codegen
691 - grpc++_config_codegen
692- name: grpc++_config
693 language: c++
694 public_headers:
695 - include/grpc++/support/config.h
696 - include/grpc++/support/config_protobuf.h
697 uses:
698 - grpc++_config_codegen
699- name: grpc++_config_codegen
700 language: c++
701 public_headers:
702 - include/grpc++/impl/codegen/config.h
703 - include/grpc++/impl/codegen/config_protobuf.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100704libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800705- name: gpr
706 build: all
707 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800708 filegroups:
Craig Tillerd1697d92016-04-05 16:05:46 -0700709 - gpr_base
Craig Tillerda179ce2016-02-09 12:01:53 -0800710 secure: false
711 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
712- name: gpr_test_util
713 build: private
714 language: c
715 headers:
716 - test/core/util/test_config.h
717 src:
718 - test/core/util/test_config.c
719 deps:
720 - gpr
721 secure: false
722 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700723- name: grpc
724 build: all
725 language: c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700726 src:
727 - src/core/lib/surface/init.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700728 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800729 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700730 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700731 filegroups:
732 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700733 - grpc_transport_chttp2_server_secure
734 - grpc_transport_chttp2_client_secure
735 - grpc_transport_chttp2_server_insecure
736 - grpc_transport_chttp2_client_insecure
Craig Tiller023caf12016-03-29 08:00:30 -0700737 - grpc_lb_policy_grpclb
738 - grpc_lb_policy_pick_first
739 - grpc_lb_policy_round_robin
Craig Tiller65938df2016-03-31 13:08:49 -0700740 - grpc_resolver_dns_native
741 - grpc_resolver_sockaddr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100742 - grpc_secure
Craig Tiller25834342015-09-25 08:08:24 -0700743 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700744 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700745 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700746 vs_packages:
747 - grpc.dependencies.openssl
748 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700749 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100750- name: grpc_dll
751 build: private
752 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100753 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100754 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100755 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100756 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100757 build_system:
758 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100759 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100760 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100761 vs_config_type: DynamicLibrary
762 vs_packages:
763 - grpc.dependencies.openssl
764 - grpc.dependencies.zlib
765 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
766 vs_props:
767 - zlib
768 - openssl
769 - winsock
770 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700771- name: grpc_test_util
772 build: private
773 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700774 headers:
775 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800776 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700777 src:
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700778 - test/core/end2end/data/client_certs.c
Craig Tiller25834342015-09-25 08:08:24 -0700779 - test/core/end2end/data/server1_cert.c
780 - test/core/end2end/data/server1_key.c
781 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800782 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700783 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800784 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800785 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700786 - grpc
787 filegroups:
788 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700789 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
790- name: grpc_test_util_unsecure
791 build: private
792 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700793 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800794 - gpr
795 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800796 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700797 filegroups:
798 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700799 secure: false
800 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
801- name: grpc_unsecure
802 build: all
803 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700804 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700805 - src/core/lib/surface/init.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700806 - src/core/lib/surface/init_unsecure.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700807 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800808 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700809 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700810 filegroups:
811 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700812 - grpc_transport_chttp2_server_insecure
813 - grpc_transport_chttp2_client_insecure
Craig Tiller65938df2016-03-31 13:08:49 -0700814 - grpc_resolver_dns_native
815 - grpc_resolver_sockaddr
Craig Tiller023caf12016-03-29 08:00:30 -0700816 - grpc_lb_policy_grpclb
817 - grpc_lb_policy_pick_first
818 - grpc_lb_policy_round_robin
Craig Tiller25834342015-09-25 08:08:24 -0700819 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700820 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700821 secure: false
822 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
823- name: grpc_zookeeper
824 build: all
825 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700826 public_headers:
827 - include/grpc/grpc_zookeeper.h
Craig Tiller25834342015-09-25 08:08:24 -0700828 src:
Craig Tillerb11b34a2016-04-01 12:30:06 -0700829 - src/core/ext/resolver/zookeeper/zookeeper_resolver.c
Craig Tiller25834342015-09-25 08:08:24 -0700830 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800831 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700832 - grpc
833 external_deps:
834 - zookeeper
835 platforms:
836 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700837 secure: false
838- name: reconnect_server
839 build: private
840 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700841 headers:
842 - test/core/util/reconnect_server.h
843 src:
844 - test/core/util/reconnect_server.c
845 deps:
yang-gc9fca182015-11-06 16:41:33 -0800846 - test_tcp_server
847 - grpc_test_util
848 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800849 - gpr_test_util
850 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800851- name: test_tcp_server
852 build: private
853 language: c
854 headers:
855 - test/core/util/test_tcp_server.h
856 src:
857 - test/core/util/test_tcp_server.c
858 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700859 - grpc_test_util
860 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800861 - gpr_test_util
862 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700863- name: grpc++
864 build: all
865 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700866 headers:
867 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800868 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700869 - src/cpp/common/secure_auth_context.h
870 - src/cpp/server/secure_server_credentials.h
871 src:
Craig Tiller25834342015-09-25 08:08:24 -0700872 - src/cpp/client/secure_credentials.cc
873 - src/cpp/common/auth_property_iterator.cc
874 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800875 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700876 - src/cpp/common/secure_create_auth_context.cc
877 - src/cpp/server/secure_server_credentials.cc
878 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700879 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700880 baselib: true
881 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700882 filegroups:
883 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800884 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700885 secure: check
886 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
887- name: grpc++_test_config
888 build: private
889 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700890 headers:
891 - test/cpp/util/test_config.h
892 src:
893 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700894- name: grpc++_test_util
895 build: private
896 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700897 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800898 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800899 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700900 - test/cpp/util/cli_call.h
901 - test/cpp/util/create_test_channel.h
902 - test/cpp/util/string_ref_helper.h
903 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800904 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700905 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800906 - src/proto/grpc/testing/echo_messages.proto
907 - src/proto/grpc/testing/echo.proto
908 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800909 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800910 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700911 - test/cpp/util/cli_call.cc
912 - test/cpp/util/create_test_channel.cc
913 - test/cpp/util/string_ref_helper.cc
914 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800915 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700916 deps:
917 - grpc++
918 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700919- name: grpc++_unsecure
920 build: all
921 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700922 src:
923 - src/cpp/common/insecure_create_auth_context.cc
924 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800925 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700926 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700927 baselib: true
928 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700929 filegroups:
930 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800931 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700932 secure: false
933 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
934- name: grpc_plugin_support
935 build: protoc
936 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700937 headers:
Craig Tiller25834342015-09-25 08:08:24 -0700938 - src/compiler/config.h
939 - src/compiler/cpp_generator.h
940 - src/compiler/cpp_generator_helpers.h
941 - src/compiler/csharp_generator.h
942 - src/compiler/csharp_generator_helpers.h
943 - src/compiler/generator_helpers.h
murgatroid99d2ee81f2016-02-26 11:10:33 -0800944 - src/compiler/node_generator.h
945 - src/compiler/node_generator_helpers.h
Craig Tiller25834342015-09-25 08:08:24 -0700946 - src/compiler/objective_c_generator.h
947 - src/compiler/objective_c_generator_helpers.h
948 - src/compiler/python_generator.h
949 - src/compiler/ruby_generator.h
950 - src/compiler/ruby_generator_helpers-inl.h
951 - src/compiler/ruby_generator_map-inl.h
952 - src/compiler/ruby_generator_string-inl.h
953 src:
954 - src/compiler/cpp_generator.cc
955 - src/compiler/csharp_generator.cc
murgatroid99d2ee81f2016-02-26 11:10:33 -0800956 - src/compiler/node_generator.cc
Craig Tiller25834342015-09-25 08:08:24 -0700957 - src/compiler/objective_c_generator.cc
958 - src/compiler/python_generator.cc
959 - src/compiler/ruby_generator.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800960 filegroups:
Craig Tiller03915e52016-04-07 09:15:10 -0700961 - grpc++_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700962 secure: false
963 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800964 vs_props:
965 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700966- name: interop_client_helper
967 build: private
968 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700969 headers:
970 - test/cpp/interop/client_helper.h
971 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800972 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -0700973 - test/cpp/interop/client_helper.cc
974 deps:
975 - grpc++_test_util
976 - grpc_test_util
977 - grpc++
978 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800979 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700980- name: interop_client_main
981 build: private
982 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700983 headers:
984 - test/cpp/interop/interop_client.h
985 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800986 - src/proto/grpc/testing/empty.proto
987 - src/proto/grpc/testing/messages.proto
988 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -0700989 - test/cpp/interop/client.cc
990 - test/cpp/interop/interop_client.cc
991 deps:
992 - interop_client_helper
993 - grpc++_test_util
994 - grpc_test_util
995 - grpc++
996 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800997 - gpr_test_util
998 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700999 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001000- name: interop_server_helper
1001 build: private
1002 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001003 headers:
1004 - test/cpp/interop/server_helper.h
1005 src:
1006 - test/cpp/interop/server_helper.cc
1007 deps:
1008 - grpc_test_util
1009 - grpc++
1010 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001011 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001012- name: interop_server_main
1013 build: private
1014 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001015 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001016 - src/proto/grpc/testing/empty.proto
1017 - src/proto/grpc/testing/messages.proto
1018 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -08001019 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -07001020 deps:
1021 - interop_server_helper
1022 - grpc++_test_util
1023 - grpc_test_util
1024 - grpc++
1025 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001026 - gpr_test_util
1027 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001028 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001029- name: qps
1030 build: private
1031 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001032 headers:
1033 - test/cpp/qps/client.h
1034 - test/cpp/qps/driver.h
1035 - test/cpp/qps/histogram.h
1036 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -08001037 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -07001038 - test/cpp/qps/perf_db_client.h
1039 - test/cpp/qps/qps_worker.h
1040 - test/cpp/qps/report.h
1041 - test/cpp/qps/server.h
1042 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -08001043 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -07001044 - test/cpp/util/benchmark_config.h
1045 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001046 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001047 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001048 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -08001049 - src/proto/grpc/testing/control.proto
1050 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001051 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -07001052 - test/cpp/qps/client_async.cc
1053 - test/cpp/qps/client_sync.cc
1054 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -08001055 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -07001056 - test/cpp/qps/perf_db_client.cc
1057 - test/cpp/qps/qps_worker.cc
1058 - test/cpp/qps/report.cc
1059 - test/cpp/qps/server_async.cc
1060 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -08001061 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -07001062 - test/cpp/util/benchmark_config.cc
1063 deps:
1064 - grpc_test_util
1065 - grpc++_test_util
1066 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07001067- name: grpc_csharp_ext
1068 build: all
1069 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -07001070 src:
1071 - src/csharp/ext/grpc_csharp_ext.c
1072 deps:
Craig Tiller25834342015-09-25 08:08:24 -07001073 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001074 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -08001075 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -08001076 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -07001077 dll: only
1078 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -07001079 vs_packages:
1080 - grpc.dependencies.openssl
1081 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -07001082 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -07001083 vs_props:
1084 - zlib
1085 - openssl
1086 - winsock
1087 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -07001088targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001089- name: alarm_test
1090 build: test
1091 language: c
1092 src:
1093 - test/core/surface/alarm_test.c
1094 deps:
1095 - grpc_test_util
1096 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -08001097 - gpr_test_util
1098 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -08001099- name: algorithm_test
1100 build: test
1101 language: c
1102 src:
1103 - test/core/compression/algorithm_test.c
1104 deps:
1105 - grpc_test_util
1106 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001107 - gpr_test_util
1108 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -08001109- name: alloc_test
1110 build: test
1111 language: c
1112 src:
1113 - test/core/support/alloc_test.c
1114 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001115 - gpr_test_util
1116 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001117- name: alpn_test
1118 build: test
1119 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001120 src:
1121 - test/core/transport/chttp2/alpn_test.c
1122 deps:
1123 - grpc_test_util
1124 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001125 - gpr_test_util
1126 - gpr
Craig Tillerfc98f922016-04-13 08:45:06 -07001127- name: api_fuzzer
1128 build: fuzzer
1129 language: c
1130 src:
1131 - test/core/end2end/fuzzers/api_fuzzer.c
1132 deps:
1133 - grpc_test_util
1134 - grpc
1135 - gpr_test_util
1136 - gpr
1137 corpus_dirs:
1138 - test/core/end2end/fuzzers/api_fuzzer_corpus
Craig Tiller0477d7d2016-04-24 10:42:50 -07001139 dict: test/core/end2end/fuzzers/api_fuzzer.dictionary
Craig Tillerfc98f922016-04-13 08:45:06 -07001140 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001141- name: bin_encoder_test
1142 build: test
1143 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001144 src:
1145 - test/core/transport/chttp2/bin_encoder_test.c
1146 deps:
1147 - grpc_test_util
1148 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001149- name: census_context_test
1150 build: test
1151 language: c
1152 src:
1153 - test/core/census/context_test.c
1154 deps:
1155 - grpc_test_util
1156 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001157 - gpr_test_util
1158 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001159- name: channel_create_test
1160 build: test
1161 language: c
1162 src:
1163 - test/core/surface/channel_create_test.c
1164 deps:
1165 - grpc_test_util
1166 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001167 - gpr_test_util
1168 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001169- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001170 build: test
1171 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001172 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001173 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001174 deps:
1175 - grpc_test_util
1176 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001177 - gpr_test_util
1178 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001179- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001180 build: test
1181 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001182 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001183 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001184 deps:
1185 - grpc_test_util
1186 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001187 - gpr_test_util
1188 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001189- name: chttp2_stream_map_test
1190 build: test
1191 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001192 src:
1193 - test/core/transport/chttp2/stream_map_test.c
1194 deps:
1195 - grpc_test_util
1196 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001197 - gpr_test_util
1198 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001199- name: chttp2_varint_test
1200 build: test
1201 language: c
1202 src:
1203 - test/core/transport/chttp2/varint_test.c
1204 deps:
1205 - grpc_test_util
1206 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001207 - gpr_test_util
1208 - gpr
Craig Tiller845516e2016-04-11 20:49:20 -07001209- name: client_fuzzer
1210 build: fuzzer
1211 language: c
1212 src:
1213 - test/core/end2end/fuzzers/client_fuzzer.c
1214 deps:
1215 - grpc_test_util
1216 - grpc
1217 - gpr_test_util
1218 - gpr
1219 corpus_dirs:
1220 - test/core/end2end/fuzzers/client_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001221 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tiller845516e2016-04-11 20:49:20 -07001222 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001223- name: compression_test
1224 build: test
1225 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001226 src:
1227 - test/core/compression/compression_test.c
1228 deps:
1229 - grpc_test_util
1230 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001231 - gpr_test_util
1232 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001233- name: concurrent_connectivity_test
1234 build: test
1235 language: c
1236 src:
1237 - test/core/surface/concurrent_connectivity_test.c
1238 deps:
1239 - grpc_test_util
1240 - grpc
1241 - gpr_test_util
1242 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001243- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001244 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001245 build: test
1246 language: c
1247 src:
1248 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1249 deps:
1250 - grpc_test_util
1251 - grpc
1252 - gpr_test_util
1253 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001254- name: dns_resolver_test
1255 build: test
1256 language: c
1257 src:
1258 - test/core/client_config/resolvers/dns_resolver_test.c
1259 deps:
1260 - grpc_test_util
1261 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001262 - gpr_test_util
1263 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001264- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001265 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001266 build: test
1267 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001268 src:
1269 - test/core/end2end/dualstack_socket_test.c
1270 deps:
1271 - grpc_test_util
1272 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001273 - gpr_test_util
1274 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001275 platforms:
1276 - mac
1277 - linux
1278 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001279- name: endpoint_pair_test
1280 build: test
1281 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001282 src:
1283 - test/core/iomgr/endpoint_pair_test.c
1284 deps:
1285 - grpc_test_util
1286 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001287 - gpr_test_util
1288 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001289- name: fd_conservation_posix_test
1290 build: test
1291 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001292 src:
1293 - test/core/iomgr/fd_conservation_posix_test.c
1294 deps:
1295 - grpc_test_util
1296 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001297 - gpr_test_util
1298 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001299 platforms:
1300 - mac
1301 - linux
1302 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001303- name: fd_posix_test
1304 build: test
1305 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001306 src:
1307 - test/core/iomgr/fd_posix_test.c
1308 deps:
1309 - grpc_test_util
1310 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001311 - gpr_test_util
1312 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001313 platforms:
1314 - mac
1315 - linux
1316 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001317- name: fling_client
1318 build: test
1319 run: false
1320 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001321 src:
1322 - test/core/fling/client.c
1323 deps:
1324 - grpc_test_util
1325 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001326 - gpr_test_util
1327 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001328- name: fling_server
1329 build: test
1330 run: false
1331 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001332 src:
1333 - test/core/fling/server.c
1334 deps:
1335 - grpc_test_util
1336 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001337 - gpr_test_util
1338 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001339- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001340 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001341 build: test
1342 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001343 src:
1344 - test/core/fling/fling_stream_test.c
1345 deps:
1346 - grpc_test_util
1347 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001348 - gpr_test_util
1349 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001350 platforms:
1351 - mac
1352 - linux
1353 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001354- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001355 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001356 build: test
1357 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001358 src:
1359 - test/core/fling/fling_test.c
1360 deps:
1361 - grpc_test_util
1362 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001363 - gpr_test_util
1364 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001365 platforms:
1366 - mac
1367 - linux
1368 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001369- name: gen_hpack_tables
1370 build: tool
1371 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001372 src:
1373 - tools/codegen/core/gen_hpack_tables.c
1374 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001375 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001376 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001377- name: gen_legal_metadata_characters
1378 build: tool
1379 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001380 src:
1381 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001382 deps: []
Craig Tiller1b719582016-03-24 09:06:13 -07001383- name: goaway_server_test
1384 cpu_cost: 0.1
1385 build: test
1386 language: c
1387 src:
1388 - test/core/end2end/goaway_server_test.c
1389 deps:
1390 - grpc_test_util
1391 - grpc
1392 - gpr_test_util
1393 - gpr
1394 platforms:
1395 - mac
1396 - linux
1397 - posix
Craig Tillerfba79f22015-11-23 11:06:55 -08001398- name: gpr_avl_test
1399 build: test
1400 language: c
1401 src:
1402 - test/core/support/avl_test.c
1403 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001404 - gpr_test_util
1405 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001406- name: gpr_backoff_test
1407 build: test
1408 language: c
1409 src:
1410 - test/core/support/backoff_test.c
1411 deps:
1412 - gpr_test_util
1413 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001414- name: gpr_cmdline_test
1415 build: test
1416 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001417 src:
1418 - test/core/support/cmdline_test.c
1419 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001420 - gpr_test_util
1421 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001422- name: gpr_cpu_test
1423 build: test
1424 language: c
1425 src:
1426 - test/core/support/cpu_test.c
1427 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001428 - gpr_test_util
1429 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001430- name: gpr_env_test
1431 build: test
1432 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001433 src:
1434 - test/core/support/env_test.c
1435 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001436 - gpr_test_util
1437 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001438- name: gpr_histogram_test
1439 build: test
1440 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001441 src:
1442 - test/core/support/histogram_test.c
1443 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001444 - gpr_test_util
1445 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001446- name: gpr_host_port_test
1447 build: test
1448 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001449 src:
1450 - test/core/support/host_port_test.c
1451 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001452 - gpr_test_util
1453 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001454- name: gpr_load_file_test
1455 build: test
1456 language: c
1457 src:
1458 - test/core/support/load_file_test.c
1459 deps:
1460 - gpr_test_util
1461 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001462- name: gpr_log_test
1463 build: test
1464 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001465 src:
1466 - test/core/support/log_test.c
1467 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001468 - gpr_test_util
1469 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001470- name: gpr_slice_buffer_test
1471 build: test
1472 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001473 src:
1474 - test/core/support/slice_buffer_test.c
1475 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001476 - gpr_test_util
1477 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001478- name: gpr_slice_test
1479 build: test
1480 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001481 src:
1482 - test/core/support/slice_test.c
1483 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001484 - gpr_test_util
1485 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001486- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001487 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001488 build: test
1489 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001490 src:
1491 - test/core/support/stack_lockfree_test.c
1492 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001493 - gpr_test_util
1494 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001495- name: gpr_string_test
1496 build: test
1497 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001498 src:
1499 - test/core/support/string_test.c
1500 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001501 - gpr_test_util
1502 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001503- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001504 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001505 build: test
1506 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001507 src:
1508 - test/core/support/sync_test.c
1509 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001510 - gpr_test_util
1511 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001512- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001513 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001514 build: test
1515 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001516 src:
1517 - test/core/support/thd_test.c
1518 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001519 - gpr_test_util
1520 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001521- name: gpr_time_test
1522 build: test
1523 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001524 src:
1525 - test/core/support/time_test.c
1526 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001527 - gpr_test_util
1528 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001529- name: gpr_tls_test
1530 build: test
1531 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001532 src:
1533 - test/core/support/tls_test.c
1534 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001535 - gpr_test_util
1536 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001537- name: gpr_useful_test
1538 build: test
1539 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001540 src:
1541 - test/core/support/useful_test.c
1542 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001543 - gpr_test_util
1544 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001545- name: grpc_auth_context_test
1546 build: test
1547 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001548 src:
1549 - test/core/security/auth_context_test.c
1550 deps:
1551 - grpc_test_util
1552 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001553 - gpr_test_util
1554 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001555- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001556 build: test
1557 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001558 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001559 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001560 deps:
1561 - grpc_test_util
1562 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001563 - gpr_test_util
1564 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001565- name: grpc_byte_buffer_reader_test
1566 build: test
1567 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001568 src:
1569 - test/core/surface/byte_buffer_reader_test.c
1570 deps:
1571 - grpc_test_util
1572 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001573 - gpr_test_util
1574 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001575- name: grpc_channel_args_test
1576 build: test
1577 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001578 src:
1579 - test/core/channel/channel_args_test.c
1580 deps:
1581 - grpc_test_util
1582 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001583 - gpr_test_util
1584 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001585- name: grpc_channel_stack_test
1586 build: test
1587 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001588 src:
1589 - test/core/channel/channel_stack_test.c
1590 deps:
1591 - grpc_test_util
1592 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001593 - gpr_test_util
1594 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001595- name: grpc_completion_queue_test
1596 build: test
1597 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001598 src:
1599 - test/core/surface/completion_queue_test.c
1600 deps:
1601 - grpc_test_util
1602 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001603 - gpr_test_util
1604 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001605- name: grpc_create_jwt
1606 build: tool
1607 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001608 src:
1609 - test/core/security/create_jwt.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: grpc_credentials_test
1616 build: test
1617 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001618 src:
1619 - test/core/security/credentials_test.c
1620 deps:
1621 - grpc_test_util
1622 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001623 - gpr_test_util
1624 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001625- name: grpc_fetch_oauth2
1626 build: tool
1627 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001628 src:
1629 - test/core/security/fetch_oauth2.c
1630 deps:
1631 - grpc_test_util
1632 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001633 - gpr_test_util
1634 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001635- name: grpc_invalid_channel_args_test
1636 build: test
1637 language: c
1638 src:
1639 - test/core/surface/invalid_channel_args_test.c
1640 deps:
1641 - grpc_test_util
1642 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001643 - gpr_test_util
1644 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001645- name: grpc_json_token_test
1646 build: test
1647 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001648 src:
1649 - test/core/security/json_token_test.c
1650 deps:
1651 - grpc_test_util
1652 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001653 - gpr_test_util
1654 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001655 platforms:
1656 - linux
1657 - posix
1658 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001659- name: grpc_jwt_verifier_test
1660 build: test
1661 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001662 src:
1663 - test/core/security/jwt_verifier_test.c
1664 deps:
1665 - grpc_test_util
1666 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001667 - gpr_test_util
1668 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001669- name: grpc_print_google_default_creds_token
1670 build: tool
1671 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001672 src:
1673 - test/core/security/print_google_default_creds_token.c
1674 deps:
1675 - grpc_test_util
1676 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001677 - gpr_test_util
1678 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001679- name: grpc_security_connector_test
1680 build: test
1681 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001682 src:
1683 - test/core/security/security_connector_test.c
1684 deps:
1685 - grpc_test_util
1686 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001687 - gpr_test_util
1688 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001689- name: grpc_verify_jwt
1690 build: tool
1691 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001692 src:
1693 - test/core/security/verify_jwt.c
1694 deps:
1695 - grpc_test_util
1696 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001697 - gpr_test_util
1698 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001699- name: hpack_parser_fuzzer_test
1700 build: fuzzer
1701 language: c
1702 src:
1703 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1704 deps:
1705 - grpc_test_util
1706 - grpc
1707 - gpr_test_util
1708 - gpr
1709 corpus_dirs:
1710 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001711 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07001712 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001713- name: hpack_parser_test
1714 build: test
1715 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001716 src:
1717 - test/core/transport/chttp2/hpack_parser_test.c
1718 deps:
1719 - grpc_test_util
1720 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001721 - gpr_test_util
1722 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001723- name: hpack_table_test
1724 build: test
1725 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001726 src:
1727 - test/core/transport/chttp2/hpack_table_test.c
1728 deps:
1729 - grpc_test_util
1730 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001731 - gpr_test_util
1732 - gpr
Craig Tiller21239742016-03-23 16:33:28 -07001733- name: http_fuzzer_test
1734 build: fuzzer
1735 language: c
1736 src:
1737 - test/core/http/fuzzer.c
1738 deps:
1739 - grpc_test_util
1740 - grpc
1741 - gpr_test_util
1742 - gpr
1743 corpus_dirs:
1744 - test/core/http/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001745 maxlen: 2048
Matthew Iselin1824f052016-02-10 12:16:06 +11001746- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001747 build: test
1748 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001749 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001750 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001751 deps:
1752 - grpc_test_util
1753 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001754 - gpr_test_util
1755 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001756- name: httpcli_format_request_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001757 build: test
1758 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001759 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001760 - test/core/http/format_request_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001761 deps:
1762 - grpc_test_util
1763 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001764 - gpr_test_util
1765 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001766- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001767 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001768 build: test
1769 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001770 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001771 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001772 deps:
1773 - grpc_test_util
1774 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001775 - gpr_test_util
1776 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001777 platforms:
1778 - mac
1779 - linux
1780 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001781- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001782 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001783 build: test
1784 language: c
1785 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001786 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001787 deps:
1788 - grpc_test_util
1789 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001790 - gpr_test_util
1791 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001792 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001793 - linux
yang-gf1183302015-12-07 16:02:05 -08001794- name: init_test
1795 build: test
1796 language: c
1797 src:
1798 - test/core/surface/init_test.c
1799 deps:
1800 - grpc_test_util
1801 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001802 - gpr_test_util
1803 - gpr
Craig Tiller5cb79622016-03-15 14:46:54 -07001804- name: internal_api_canary_iomgr_test
1805 build: test
1806 run: false
1807 language: c
1808 src:
1809 - test/core/internal_api_canaries/iomgr.c
1810 deps:
1811 - grpc_test_util
1812 - grpc
1813 - gpr_test_util
1814 - gpr
1815- name: internal_api_canary_support_test
1816 build: test
1817 run: false
1818 language: c
1819 src:
1820 - test/core/internal_api_canaries/iomgr.c
1821 deps:
1822 - grpc_test_util
1823 - grpc
1824 - gpr_test_util
1825 - gpr
1826- name: internal_api_canary_transport_test
1827 build: test
1828 run: false
1829 language: c
1830 src:
1831 - test/core/internal_api_canaries/iomgr.c
1832 deps:
1833 - grpc_test_util
1834 - grpc
1835 - gpr_test_util
1836 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001837- name: invalid_call_argument_test
1838 build: test
1839 language: c
1840 src:
1841 - test/core/end2end/invalid_call_argument_test.c
1842 deps:
1843 - grpc_test_util
1844 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001845 - gpr_test_util
1846 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001847- name: json_fuzzer_test
1848 build: fuzzer
1849 language: c
1850 src:
1851 - test/core/json/fuzzer.c
1852 deps:
1853 - grpc_test_util
1854 - grpc
1855 - gpr_test_util
1856 - gpr
1857 corpus_dirs:
1858 - test/core/json/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001859 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001860- name: json_rewrite
1861 build: test
1862 run: false
1863 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001864 src:
1865 - test/core/json/json_rewrite.c
1866 deps:
1867 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001868 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001869- name: json_rewrite_test
1870 build: test
1871 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001872 src:
1873 - test/core/json/json_rewrite_test.c
1874 deps:
1875 - grpc_test_util
1876 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001877 - gpr_test_util
1878 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001879- name: json_stream_error_test
1880 build: test
1881 language: c
1882 src:
1883 - test/core/json/json_stream_error_test.c
1884 deps:
1885 - grpc_test_util
1886 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001887 - gpr_test_util
1888 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001889- name: json_test
1890 build: test
1891 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001892 src:
1893 - test/core/json/json_test.c
1894 deps:
1895 - grpc_test_util
1896 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001897 - gpr_test_util
1898 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001899- name: lame_client_test
1900 build: test
1901 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001902 src:
1903 - test/core/surface/lame_client_test.c
1904 deps:
1905 - grpc_test_util
1906 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001907 - gpr_test_util
1908 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001909- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001910 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001911 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001912 build: test
1913 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001914 src:
1915 - test/core/client_config/lb_policies_test.c
1916 deps:
1917 - grpc_test_util
1918 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001919 - gpr_test_util
1920 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001921- name: low_level_ping_pong_benchmark
1922 build: benchmark
1923 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001924 src:
1925 - test/core/network_benchmarks/low_level_ping_pong.c
1926 deps:
1927 - grpc_test_util
1928 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001929 - gpr_test_util
1930 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001931 platforms:
1932 - mac
1933 - linux
1934 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001935- name: message_compress_test
1936 build: test
1937 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001938 src:
1939 - test/core/compression/message_compress_test.c
1940 deps:
1941 - grpc_test_util
1942 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001943 - gpr_test_util
1944 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001945- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001946 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001947 build: test
1948 language: c
1949 src:
1950 - test/core/census/mlog_test.c
1951 deps:
1952 - grpc_test_util
1953 - grpc
1954 - gpr_test_util
1955 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001956- name: multiple_server_queues_test
1957 build: test
1958 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001959 src:
1960 - test/core/end2end/multiple_server_queues_test.c
1961 deps:
1962 - grpc_test_util
1963 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001964 - gpr_test_util
1965 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001966- name: murmur_hash_test
1967 build: test
1968 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001969 src:
1970 - test/core/support/murmur_hash_test.c
1971 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001972 - gpr_test_util
1973 - gpr
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07001974- name: nanopb_fuzzer_response_test
1975 build: fuzzer
1976 language: c
1977 src:
1978 - test/core/nanopb/fuzzer_response.c
1979 deps:
1980 - grpc_test_util
1981 - grpc
1982 - gpr_test_util
1983 - gpr
1984 corpus_dirs:
1985 - test/core/nanopb/corpus_response
Craig Tillerf64df112016-04-05 21:27:41 -07001986 maxlen: 128
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07001987- name: nanopb_fuzzer_serverlist_test
1988 build: fuzzer
1989 language: c
1990 src:
1991 - test/core/nanopb/fuzzer_serverlist.c
1992 deps:
1993 - grpc_test_util
1994 - grpc
1995 - gpr_test_util
1996 - gpr
1997 corpus_dirs:
1998 - test/core/nanopb/corpus_serverlist
Craig Tillerf64df112016-04-05 21:27:41 -07001999 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002000- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002001 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002002 build: test
2003 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002004 src:
2005 - test/core/end2end/no_server_test.c
2006 deps:
2007 - grpc_test_util
2008 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002009 - gpr_test_util
2010 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002011- name: resolve_address_test
2012 build: test
2013 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002014 src:
2015 - test/core/iomgr/resolve_address_test.c
2016 deps:
2017 - grpc_test_util
2018 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002019 - gpr_test_util
2020 - gpr
yang-gd482e592015-12-10 14:04:00 -08002021- name: secure_channel_create_test
2022 build: test
2023 language: c
2024 src:
2025 - test/core/surface/secure_channel_create_test.c
2026 deps:
2027 - grpc_test_util
2028 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002029 - gpr_test_util
2030 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002031- name: secure_endpoint_test
2032 build: test
2033 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002034 src:
2035 - test/core/security/secure_endpoint_test.c
2036 deps:
2037 - grpc_test_util
2038 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002039 - gpr_test_util
2040 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08002041- name: server_chttp2_test
2042 build: test
2043 language: c
2044 src:
2045 - test/core/surface/server_chttp2_test.c
2046 deps:
2047 - grpc_test_util
2048 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002049 - gpr_test_util
2050 - gpr
Craig Tillerdf262c62016-04-02 13:53:49 -07002051- name: server_fuzzer
2052 build: fuzzer
2053 language: c
2054 src:
2055 - test/core/end2end/fuzzers/server_fuzzer.c
2056 deps:
2057 - grpc_test_util
2058 - grpc
2059 - gpr_test_util
2060 - gpr
2061 corpus_dirs:
2062 - test/core/end2end/fuzzers/server_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07002063 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07002064 maxlen: 2048
yang-gc3d94fb2015-12-10 14:38:00 -08002065- name: server_test
2066 build: test
2067 language: c
2068 src:
2069 - test/core/surface/server_test.c
2070 deps:
2071 - grpc_test_util
2072 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002073 - gpr_test_util
2074 - gpr
yang-gc9fca182015-11-06 16:41:33 -08002075- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002076 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08002077 build: test
2078 language: c
2079 src:
2080 - test/core/client_config/set_initial_connect_string_test.c
2081 deps:
2082 - test_tcp_server
2083 - grpc_test_util
2084 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002085 - gpr_test_util
2086 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08002087- name: sockaddr_resolver_test
2088 build: test
2089 language: c
2090 src:
2091 - test/core/client_config/resolvers/sockaddr_resolver_test.c
2092 deps:
2093 - grpc_test_util
2094 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002095 - gpr_test_util
2096 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002097- name: sockaddr_utils_test
2098 build: test
2099 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002100 src:
2101 - test/core/iomgr/sockaddr_utils_test.c
2102 deps:
2103 - grpc_test_util
2104 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002105 - gpr_test_util
2106 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002107- name: socket_utils_test
2108 build: test
2109 language: c
2110 src:
2111 - test/core/iomgr/socket_utils_test.c
2112 deps:
2113 - grpc_test_util
2114 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002115 - gpr_test_util
2116 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002117 platforms:
2118 - mac
2119 - linux
2120 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002121- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002122 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002123 build: test
2124 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002125 src:
2126 - test/core/iomgr/tcp_client_posix_test.c
2127 deps:
2128 - grpc_test_util
2129 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002130 - gpr_test_util
2131 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002132 platforms:
2133 - mac
2134 - linux
2135 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002136- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002137 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002138 build: test
2139 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002140 src:
2141 - test/core/iomgr/tcp_posix_test.c
2142 deps:
2143 - grpc_test_util
2144 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002145 - gpr_test_util
2146 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002147 platforms:
2148 - mac
2149 - linux
2150 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002151- name: tcp_server_posix_test
2152 build: test
2153 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002154 src:
2155 - test/core/iomgr/tcp_server_posix_test.c
2156 deps:
2157 - grpc_test_util
2158 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002159 - gpr_test_util
2160 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002161 platforms:
2162 - mac
2163 - linux
2164 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002165- name: time_averaged_stats_test
2166 build: test
2167 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002168 src:
2169 - test/core/iomgr/time_averaged_stats_test.c
2170 deps:
2171 - grpc_test_util
2172 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002173 - gpr_test_util
2174 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002175- name: timeout_encoding_test
2176 build: test
2177 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002178 src:
2179 - test/core/transport/chttp2/timeout_encoding_test.c
2180 deps:
2181 - grpc_test_util
2182 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002183 - gpr_test_util
2184 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002185- name: timer_heap_test
2186 build: test
2187 language: c
2188 src:
2189 - test/core/iomgr/timer_heap_test.c
2190 deps:
2191 - grpc_test_util
2192 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002193 - gpr_test_util
2194 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002195- name: timer_list_test
2196 build: test
2197 language: c
2198 src:
2199 - test/core/iomgr/timer_list_test.c
2200 deps:
2201 - grpc_test_util
2202 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002203 - gpr_test_util
2204 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002205- name: timers_test
2206 build: test
2207 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002208 src:
2209 - test/core/profiling/timers_test.c
2210 deps:
2211 - grpc_test_util
2212 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002213 - gpr_test_util
2214 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08002215- name: transport_connectivity_state_test
2216 build: test
2217 language: c
2218 src:
2219 - test/core/transport/connectivity_state_test.c
2220 deps:
2221 - grpc_test_util
2222 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002223 - gpr_test_util
2224 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002225- name: transport_metadata_test
2226 build: test
2227 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002228 src:
2229 - test/core/transport/metadata_test.c
2230 deps:
2231 - grpc_test_util
2232 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002233 - gpr_test_util
2234 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002235- name: transport_security_test
2236 build: test
2237 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002238 src:
2239 - test/core/tsi/transport_security_test.c
2240 deps:
2241 - grpc_test_util
2242 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002243 - gpr_test_util
2244 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002245 platforms:
2246 - linux
2247 - posix
2248 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002249- name: udp_server_test
2250 build: test
2251 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002252 src:
2253 - test/core/iomgr/udp_server_test.c
2254 deps:
2255 - grpc_test_util
2256 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002257 - gpr_test_util
2258 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002259 platforms:
2260 - mac
2261 - linux
2262 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002263- name: uri_fuzzer_test
2264 build: fuzzer
2265 language: c
2266 src:
2267 - test/core/client_config/uri_fuzzer_test.c
2268 deps:
2269 - grpc_test_util
2270 - grpc
2271 - gpr_test_util
2272 - gpr
2273 corpus_dirs:
2274 - test/core/client_config/uri_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002275 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002276- name: uri_parser_test
2277 build: test
2278 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002279 src:
2280 - test/core/client_config/uri_parser_test.c
2281 deps:
2282 - grpc_test_util
2283 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002284 - gpr_test_util
2285 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002286- name: workqueue_test
2287 build: test
2288 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002289 src:
2290 - test/core/iomgr/workqueue_test.c
2291 deps:
2292 - grpc_test_util
2293 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002294 - gpr_test_util
2295 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002296 platforms:
2297 - mac
2298 - linux
2299 - posix
vjpai04e992a2016-02-10 16:58:38 -08002300- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002301 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002302 build: test
2303 language: c++
2304 src:
2305 - test/cpp/common/alarm_cpp_test.cc
2306 deps:
2307 - grpc++_test_util
2308 - grpc_test_util
2309 - grpc++
2310 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002311 - gpr_test_util
2312 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002313- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002314 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002315 build: test
2316 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002317 src:
2318 - test/cpp/end2end/async_end2end_test.cc
2319 deps:
2320 - grpc++_test_util
2321 - grpc_test_util
2322 - grpc++
2323 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002324 - gpr_test_util
2325 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002326- name: async_streaming_ping_pong_test
2327 build: test
2328 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002329 src:
2330 - test/cpp/qps/async_streaming_ping_pong_test.cc
2331 deps:
2332 - qps
2333 - grpc++_test_util
2334 - grpc_test_util
2335 - grpc++
2336 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002337 - gpr_test_util
2338 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002339 platforms:
2340 - mac
2341 - linux
2342 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002343- name: async_unary_ping_pong_test
2344 build: test
2345 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002346 src:
2347 - test/cpp/qps/async_unary_ping_pong_test.cc
2348 deps:
2349 - qps
2350 - grpc++_test_util
2351 - grpc_test_util
2352 - grpc++
2353 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002354 - gpr_test_util
2355 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002356 platforms:
2357 - mac
2358 - linux
2359 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002360- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002361 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002362 build: test
2363 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002364 src:
2365 - test/cpp/common/auth_property_iterator_test.cc
2366 deps:
2367 - grpc++_test_util
2368 - grpc_test_util
2369 - grpc++
2370 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002371 - gpr_test_util
2372 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002373- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002374 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002375 build: test
2376 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002377 src:
yang-g52705592015-11-25 11:45:33 -08002378 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002379 deps:
2380 - grpc++
2381 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002382 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002383- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002384 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002385 build: test
2386 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002387 src:
2388 - test/cpp/util/cli_call_test.cc
2389 deps:
2390 - grpc++_test_util
2391 - grpc_test_util
2392 - grpc++
2393 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002394 - gpr_test_util
2395 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002396- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002397 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002398 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002399 build: test
2400 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002401 src:
2402 - test/cpp/end2end/client_crash_test.cc
2403 deps:
2404 - grpc++_test_util
2405 - grpc_test_util
2406 - grpc++
2407 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002408 - gpr_test_util
2409 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002410 platforms:
2411 - mac
2412 - linux
2413 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002414- name: client_crash_test_server
2415 build: test
2416 run: false
2417 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002418 src:
2419 - test/cpp/end2end/client_crash_test_server.cc
2420 deps:
2421 - grpc++_test_util
2422 - grpc_test_util
2423 - grpc++
2424 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002425 - gpr_test_util
2426 - gpr
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002427- name: codegen_test_full
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002428 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002429 build: test
2430 language: c++
2431 src:
2432 - src/proto/grpc/testing/control.proto
2433 - src/proto/grpc/testing/messages.proto
2434 - src/proto/grpc/testing/payloads.proto
2435 - src/proto/grpc/testing/perf_db.proto
2436 - src/proto/grpc/testing/services.proto
2437 - src/proto/grpc/testing/stats.proto
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002438 - test/cpp/codegen/codegen_test_full.cc
2439 deps:
2440 - grpc++
2441 - grpc
2442 - gpr
2443 filegroups:
2444 - grpc++_codegen
2445- name: codegen_test_minimal
2446 gtest: true
2447 build: test
2448 language: c++
2449 src:
2450 - src/proto/grpc/testing/control.proto
2451 - src/proto/grpc/testing/messages.proto
2452 - src/proto/grpc/testing/payloads.proto
2453 - src/proto/grpc/testing/perf_db.proto
2454 - src/proto/grpc/testing/services.proto
2455 - src/proto/grpc/testing/stats.proto
2456 - test/cpp/codegen/codegen_test_minimal.cc
Craig Tiller03d8f2f2016-04-07 08:02:16 -07002457 filegroups:
2458 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -07002459- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002460 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002461 build: test
2462 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002463 src:
2464 - test/cpp/client/credentials_test.cc
2465 deps:
2466 - grpc++
2467 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002468 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002469- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002470 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002471 build: test
2472 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002473 src:
2474 - test/cpp/util/byte_buffer_test.cc
2475 deps:
2476 - grpc_test_util
2477 - grpc++
2478 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002479 - gpr_test_util
2480 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002481- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002482 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002483 build: test
2484 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002485 src:
2486 - test/cpp/util/slice_test.cc
2487 deps:
2488 - grpc_test_util
2489 - grpc++
2490 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002491 - gpr_test_util
2492 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002493- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002494 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002495 build: test
2496 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002497 src:
2498 - test/cpp/util/string_ref_test.cc
2499 deps:
2500 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002501- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002502 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002503 build: test
2504 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002505 src:
2506 - test/cpp/util/time_test.cc
2507 deps:
2508 - grpc_test_util
2509 - grpc++
2510 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002511 - gpr_test_util
2512 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002513- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002514 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002515 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002516 build: test
2517 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002518 src:
2519 - test/cpp/end2end/end2end_test.cc
2520 deps:
2521 - grpc++_test_util
2522 - grpc_test_util
2523 - grpc++
2524 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002525 - gpr_test_util
2526 - gpr
vjpai083dc622016-01-11 09:41:17 -08002527- name: generic_async_streaming_ping_pong_test
2528 build: test
2529 language: c++
2530 src:
2531 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2532 deps:
2533 - qps
2534 - grpc++_test_util
2535 - grpc_test_util
2536 - grpc++
2537 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002538 - gpr_test_util
2539 - gpr
vjpai083dc622016-01-11 09:41:17 -08002540 platforms:
2541 - mac
2542 - linux
2543 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002544- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002545 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002546 build: test
2547 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002548 src:
2549 - test/cpp/end2end/generic_end2end_test.cc
2550 deps:
2551 - grpc++_test_util
2552 - grpc_test_util
2553 - grpc++
2554 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002555 - gpr_test_util
2556 - gpr
yang-gb8aa58b2016-04-14 15:50:50 -07002557- name: golden_file_test
2558 gtest: true
2559 build: test
2560 language: c++
2561 src:
2562 - src/proto/grpc/testing/compiler_test.proto
2563 - test/cpp/codegen/golden_file_test.cc
2564 deps:
2565 - grpc++
2566 - grpc
2567 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002568- name: grpc_cli
2569 build: test
2570 run: false
2571 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002572 src:
2573 - test/cpp/util/grpc_cli.cc
2574 deps:
2575 - grpc++_test_util
2576 - grpc_test_util
2577 - grpc++
2578 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002579 - gpr_test_util
2580 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002581 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002582- name: grpc_cpp_plugin
2583 build: protoc
2584 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002585 src:
2586 - src/compiler/cpp_plugin.cc
2587 deps:
2588 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002589 secure: false
2590 vs_config_type: Application
2591 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2592- name: grpc_csharp_plugin
2593 build: protoc
2594 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002595 src:
2596 - src/compiler/csharp_plugin.cc
2597 deps:
2598 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002599 secure: false
2600 vs_config_type: Application
2601 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
murgatroid99d2ee81f2016-02-26 11:10:33 -08002602- name: grpc_node_plugin
2603 build: protoc
2604 language: c++
2605 src:
2606 - src/compiler/node_plugin.cc
2607 deps:
2608 - grpc_plugin_support
2609 secure: false
2610 vs_config_type: Application
Craig Tillerbf4b2242015-08-31 15:53:53 -07002611- name: grpc_objective_c_plugin
2612 build: protoc
2613 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002614 src:
2615 - src/compiler/objective_c_plugin.cc
2616 deps:
2617 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002618 secure: false
2619 vs_config_type: Application
2620 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2621- name: grpc_python_plugin
2622 build: protoc
2623 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002624 src:
2625 - src/compiler/python_plugin.cc
2626 deps:
2627 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002628 secure: false
2629 vs_config_type: Application
2630 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2631- name: grpc_ruby_plugin
2632 build: protoc
2633 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002634 src:
2635 - src/compiler/ruby_plugin.cc
2636 deps:
2637 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002638 secure: false
2639 vs_config_type: Application
2640 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002641- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002642 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002643 build: test
2644 language: c++
2645 src:
2646 - src/proto/grpc/lb/v0/load_balancer.proto
2647 - test/cpp/grpclb/grpclb_api_test.cc
2648 deps:
2649 - grpc++_test_util
2650 - grpc_test_util
2651 - grpc++
2652 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002653- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002654 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002655 build: test
2656 language: c++
2657 src:
2658 - test/cpp/end2end/hybrid_end2end_test.cc
2659 deps:
2660 - grpc++_test_util
2661 - grpc_test_util
2662 - grpc++
2663 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002664 - gpr_test_util
2665 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002666- name: interop_client
2667 build: test
2668 run: false
2669 language: c++
2670 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002671 deps:
2672 - interop_client_main
2673 - interop_client_helper
2674 - grpc++_test_util
2675 - grpc_test_util
2676 - grpc++
2677 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002678 - gpr_test_util
2679 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002680 - grpc++_test_config
2681 platforms:
2682 - mac
2683 - linux
2684 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002685- name: interop_server
2686 build: test
2687 run: false
2688 language: c++
2689 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002690 deps:
2691 - interop_server_main
2692 - interop_server_helper
2693 - grpc++_test_util
2694 - grpc_test_util
2695 - grpc++
2696 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002697 - gpr_test_util
2698 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002699 - grpc++_test_config
2700 platforms:
2701 - mac
2702 - linux
2703 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002704- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002705 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002706 build: test
2707 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002708 src:
2709 - test/cpp/interop/interop_test.cc
2710 deps:
2711 - grpc_test_util
2712 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002713 - gpr_test_util
2714 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002715 platforms:
2716 - mac
2717 - linux
2718 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002719- name: json_run_localhost
2720 build: test
2721 run: false
2722 language: c++
2723 src:
2724 - test/cpp/qps/json_run_localhost.cc
2725 deps:
2726 - grpc++_test_util
2727 - grpc_test_util
2728 - grpc++
2729 - grpc
2730 - gpr_test_util
2731 - gpr
2732 - grpc++_test_config
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002733- name: metrics_client
2734 build: test
2735 run: false
2736 language: c++
2737 headers:
2738 - test/cpp/util/metrics_server.h
2739 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002740 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002741 - test/cpp/interop/metrics_client.cc
2742 deps:
2743 - grpc++
2744 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002745 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002746 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002747- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002748 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002749 build: test
2750 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002751 src:
2752 - test/cpp/end2end/mock_test.cc
2753 deps:
2754 - grpc++_test_util
2755 - grpc_test_util
2756 - grpc++
2757 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002758 - gpr_test_util
2759 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002760- name: qps_interarrival_test
2761 build: test
2762 run: false
2763 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002764 src:
2765 - test/cpp/qps/qps_interarrival_test.cc
2766 deps:
2767 - qps
2768 - grpc++_test_util
2769 - grpc_test_util
2770 - grpc++
2771 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002772 - gpr_test_util
2773 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002774 platforms:
2775 - mac
2776 - linux
2777 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002778- name: qps_json_driver
2779 build: test
2780 run: false
2781 language: c++
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002782 headers:
2783 - test/cpp/qps/parse_json.h
Craig Tiller0bda0b32016-03-03 12:51:53 -08002784 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002785 - test/cpp/qps/parse_json.cc
Craig Tiller0bda0b32016-03-03 12:51:53 -08002786 - test/cpp/qps/qps_json_driver.cc
2787 deps:
2788 - qps
2789 - grpc++_test_util
2790 - grpc_test_util
2791 - grpc++
2792 - grpc
2793 - gpr_test_util
2794 - gpr
2795 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002796- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002797 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002798 build: test
2799 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002800 src:
2801 - test/cpp/qps/qps_openloop_test.cc
2802 deps:
2803 - qps
2804 - grpc++_test_util
2805 - grpc_test_util
2806 - grpc++
2807 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002808 - gpr_test_util
2809 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002810 - grpc++_test_config
2811 platforms:
2812 - mac
2813 - linux
2814 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002815- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002816 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002817 build: test
2818 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002819 src:
2820 - test/cpp/qps/qps_test.cc
2821 deps:
2822 - qps
2823 - grpc++_test_util
2824 - grpc_test_util
2825 - grpc++
2826 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002827 - gpr_test_util
2828 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002829 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002830 platforms:
2831 - mac
2832 - linux
2833 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002834- name: qps_worker
Craig Tiller0bda0b32016-03-03 12:51:53 -08002835 build: test
2836 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002837 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002838 headers:
2839 - test/cpp/qps/client.h
2840 - test/cpp/qps/server.h
2841 src:
2842 - test/cpp/qps/worker.cc
2843 deps:
2844 - qps
2845 - grpc++_test_util
2846 - grpc_test_util
2847 - grpc++
2848 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002849 - gpr_test_util
2850 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002851 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002852- name: reconnect_interop_client
2853 build: test
2854 run: false
2855 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002856 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002857 - src/proto/grpc/testing/empty.proto
2858 - src/proto/grpc/testing/messages.proto
2859 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002860 - test/cpp/interop/reconnect_interop_client.cc
2861 deps:
2862 - grpc++_test_util
2863 - grpc_test_util
2864 - grpc++
2865 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002866 - gpr_test_util
2867 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002868 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002869- name: reconnect_interop_server
2870 build: test
2871 run: false
2872 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002873 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002874 - src/proto/grpc/testing/empty.proto
2875 - src/proto/grpc/testing/messages.proto
2876 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002877 - test/cpp/interop/reconnect_interop_server.cc
2878 deps:
2879 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002880 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002881 - grpc++_test_util
2882 - grpc_test_util
2883 - grpc++
2884 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002885 - gpr_test_util
2886 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002887 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002888- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002889 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002890 build: test
2891 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002892 src:
2893 - test/cpp/common/secure_auth_context_test.cc
2894 deps:
2895 - grpc++_test_util
2896 - grpc_test_util
2897 - grpc++
2898 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002899 - gpr_test_util
2900 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002901- name: secure_sync_unary_ping_pong_test
2902 build: test
2903 language: c++
2904 src:
2905 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2906 deps:
2907 - qps
2908 - grpc++_test_util
2909 - grpc_test_util
2910 - grpc++
2911 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002912 - gpr_test_util
2913 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002914 platforms:
2915 - mac
2916 - linux
2917 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002918- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002919 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002920 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002921 build: test
2922 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002923 src:
2924 - test/cpp/end2end/server_crash_test.cc
2925 deps:
2926 - grpc++_test_util
2927 - grpc_test_util
2928 - grpc++
2929 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002930 - gpr_test_util
2931 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002932 platforms:
2933 - mac
2934 - linux
2935 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002936- name: server_crash_test_client
2937 build: test
2938 run: false
2939 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002940 src:
2941 - test/cpp/end2end/server_crash_test_client.cc
2942 deps:
2943 - grpc++_test_util
2944 - grpc_test_util
2945 - grpc++
2946 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002947 - gpr_test_util
2948 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002949- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002950 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002951 build: test
2952 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002953 src:
2954 - test/cpp/end2end/shutdown_test.cc
2955 deps:
2956 - grpc++_test_util
2957 - grpc_test_util
2958 - grpc++
2959 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002960 - gpr_test_util
2961 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002962- name: status_test
2963 build: test
2964 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002965 src:
2966 - test/cpp/util/status_test.cc
2967 deps:
2968 - grpc_test_util
2969 - grpc++
2970 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002971 - gpr_test_util
2972 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002973- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002974 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002975 build: test
2976 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002977 src:
2978 - test/cpp/end2end/streaming_throughput_test.cc
2979 deps:
2980 - grpc++_test_util
2981 - grpc_test_util
2982 - grpc++
2983 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002984 - gpr_test_util
2985 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002986 platforms:
2987 - mac
2988 - linux
2989 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002990- name: stress_test
2991 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07002992 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002993 language: c++
2994 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07002995 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002996 - test/cpp/interop/interop_client.h
2997 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002998 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002999 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003000 - src/proto/grpc/testing/empty.proto
3001 - src/proto/grpc/testing/messages.proto
3002 - src/proto/grpc/testing/metrics.proto
3003 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003004 - test/cpp/interop/interop_client.cc
3005 - test/cpp/interop/stress_interop_client.cc
3006 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003007 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003008 deps:
3009 - grpc++_test_util
3010 - grpc_test_util
3011 - grpc++
3012 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003013 - gpr_test_util
3014 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003015 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07003016- name: sync_streaming_ping_pong_test
3017 build: test
3018 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003019 src:
3020 - test/cpp/qps/sync_streaming_ping_pong_test.cc
3021 deps:
3022 - qps
3023 - grpc++_test_util
3024 - grpc_test_util
3025 - grpc++
3026 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003027 - gpr_test_util
3028 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003029 platforms:
3030 - mac
3031 - linux
3032 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003033- name: sync_unary_ping_pong_test
3034 build: test
3035 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003036 src:
3037 - test/cpp/qps/sync_unary_ping_pong_test.cc
3038 deps:
3039 - qps
3040 - grpc++_test_util
3041 - grpc_test_util
3042 - grpc++
3043 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003044 - gpr_test_util
3045 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003046 platforms:
3047 - mac
3048 - linux
3049 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003050- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003051 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08003052 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07003053 build: test
3054 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003055 src:
3056 - test/cpp/end2end/thread_stress_test.cc
3057 deps:
3058 - grpc++_test_util
3059 - grpc_test_util
3060 - grpc++
3061 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003062 - gpr_test_util
3063 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003064- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003065 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003066 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07003067 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07003068 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003069 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003070 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07003071 - test/cpp/end2end/zookeeper_test.cc
3072 deps:
3073 - grpc++_test_util
3074 - grpc_test_util
3075 - grpc++
3076 - grpc_zookeeper
3077 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003078 - gpr_test_util
3079 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003080 external_deps:
3081 - zookeeper
3082 platforms:
3083 - linux
Craig Tillerab230452016-01-04 08:18:43 -08003084- name: public_headers_must_be_c89
3085 build: test
3086 language: c89
3087 src:
3088 - test/core/surface/public_headers_must_be_c89.c
3089 deps:
3090 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003091 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003092vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07003093- linkage: static
3094 name: grpc.dependencies.zlib
3095 props: false
3096 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003097 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08003098- linkage: static
3099 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07003100 props: true
3101 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003102 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07003103- name: gflags
3104 props: false
3105 redist: false
3106 version: 2.1.2.1
3107- name: gtest
3108 props: false
3109 redist: false
3110 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08003111configs:
3112 asan:
3113 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003114 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3115 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003116 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003117 LD: clang
3118 LDFLAGS: -fsanitize=address
3119 LDXX: clang++
3120 compile_the_world: true
3121 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08003122 ASAN_OPTIONS: detect_leaks=1:color=always
3123 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08003124 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003125 asan-noleaks:
3126 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003127 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3128 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003129 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003130 LD: clang
3131 LDFLAGS: -fsanitize=address
3132 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08003133 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08003134 test_environ:
3135 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08003136 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07003137 asan-trace-cmp:
3138 CC: clang
Craig Tillerff822392016-03-23 21:46:52 -07003139 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize-coverage=trace-cmp -fsanitize=address
3140 -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerae945942016-03-23 21:43:58 -07003141 CXX: clang++
3142 LD: clang
3143 LDFLAGS: -fsanitize=address
3144 LDXX: clang++
3145 compile_the_world: true
3146 test_environ:
3147 ASAN_OPTIONS: detect_leaks=1:color=always
3148 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3149 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003150 basicprof:
3151 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
3152 DEFINES: NDEBUG
3153 dbg:
3154 CPPFLAGS: -O0
3155 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08003156 easan:
3157 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003158 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3159 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tiller3af3f742016-02-28 21:53:13 -08003160 CXX: clang++
3161 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3162 LD: clang
3163 LDFLAGS: -fsanitize=address
3164 LDXX: clang++
3165 compile_the_world: true
3166 test_environ:
3167 ASAN_OPTIONS: detect_leaks=1:color=always
3168 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3169 timeout_multiplier: 3
3170 edbg:
3171 CPPFLAGS: -O0
3172 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3173 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08003174 CC: clang
3175 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003176 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08003177 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08003178 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08003179 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003180 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08003181 LDXX: clang++
3182 compile_the_world: true
3183 test_environ:
3184 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
3185 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003186 gcov:
3187 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003188 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08003189 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08003190 DEFINES: _DEBUG DEBUG GPR_GCOV
3191 LD: gcc
3192 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
3193 LDXX: g++
3194 helgrind:
3195 CPPFLAGS: -O0
3196 DEFINES: _DEBUG DEBUG
3197 LDFLAGS: -rdynamic
3198 timeout_multiplier: 20
3199 valgrind: --tool=helgrind
3200 memcheck:
3201 CPPFLAGS: -O0
3202 DEFINES: _DEBUG DEBUG
3203 LDFLAGS: -rdynamic
3204 timeout_multiplier: 10
3205 valgrind: --tool=memcheck --leak-check=full
3206 msan:
3207 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003208 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
3209 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3210 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003211 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003212 DEFINES: NDEBUG
3213 LD: clang
3214 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3215 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
3216 LDXX: clang++
3217 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08003218 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08003219 mutrace:
3220 CPPFLAGS: -O0
3221 DEFINES: _DEBUG DEBUG
3222 LDFLAGS: -rdynamic
3223 opt:
3224 CPPFLAGS: -O2
3225 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08003226 stapprof:
3227 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
3228 DEFINES: NDEBUG
3229 tsan:
3230 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003231 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003232 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003233 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003234 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003235 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08003236 LDXX: clang++
3237 compile_the_world: true
3238 test_environ:
3239 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08003240 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003241 ubsan:
3242 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003243 CPPFLAGS: -O1 -fsanitize-coverage=edge -fsanitize=undefined -fno-omit-frame-pointer
3244 -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08003245 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003246 DEFINES: NDEBUG
3247 LD: clang
3248 LDFLAGS: -fsanitize=undefined
3249 LDXX: clang++
3250 compile_the_world: true
3251 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003252defaults:
3253 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003254 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Craig Tiller78222f72016-05-10 09:55:38 -07003255 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003256 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003257 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003258 global:
3259 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
3260 LDFLAGS: -g
3261 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01003262 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01003263 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08003264node_modules:
3265- deps:
3266 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003267 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08003268 - boringssl
3269 - z
murgatroid9994a75412015-11-19 14:04:53 -08003270 headers:
3271 - src/node/ext/byte_buffer.h
3272 - src/node/ext/call.h
3273 - src/node/ext/call_credentials.h
3274 - src/node/ext/channel.h
3275 - src/node/ext/channel_credentials.h
3276 - src/node/ext/completion_queue_async_worker.h
3277 - src/node/ext/server.h
3278 - src/node/ext/server_credentials.h
3279 - src/node/ext/timeval.h
3280 js:
3281 - src/node/index.js
3282 - src/node/src/client.js
3283 - src/node/src/common.js
3284 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08003285 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08003286 - src/node/src/metadata.js
3287 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003288 name: grpc_node
3289 src:
3290 - src/node/ext/byte_buffer.cc
3291 - src/node/ext/call.cc
3292 - src/node/ext/call_credentials.cc
3293 - src/node/ext/channel.cc
3294 - src/node/ext/channel_credentials.cc
3295 - src/node/ext/completion_queue_async_worker.cc
3296 - src/node/ext/node_grpc.cc
3297 - src/node/ext/server.cc
3298 - src/node/ext/server_credentials.cc
3299 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003300openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003301 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003302 extraction_dir: openssl-1.0.2f
3303 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003304php_config_m4:
3305 deps:
3306 - grpc
3307 - gpr
3308 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003309 headers:
3310 - src/php/ext/grpc/byte_buffer.h
3311 - src/php/ext/grpc/call.h
3312 - src/php/ext/grpc/call_credentials.h
3313 - src/php/ext/grpc/channel.h
3314 - src/php/ext/grpc/channel_credentials.h
3315 - src/php/ext/grpc/completion_queue.h
3316 - src/php/ext/grpc/php_grpc.h
3317 - src/php/ext/grpc/server.h
3318 - src/php/ext/grpc/server_credentials.h
3319 - src/php/ext/grpc/timeval.h
3320 src:
3321 - src/php/ext/grpc/byte_buffer.c
3322 - src/php/ext/grpc/call.c
3323 - src/php/ext/grpc/call_credentials.c
3324 - src/php/ext/grpc/channel.c
3325 - src/php/ext/grpc/channel_credentials.c
3326 - src/php/ext/grpc/completion_queue.c
3327 - src/php/ext/grpc/php_grpc.c
3328 - src/php/ext/grpc/server.c
3329 - src/php/ext/grpc/server_credentials.c
3330 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003331python_dependencies:
3332 deps:
3333 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003334 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003335 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003336 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003337ruby_gem:
3338 deps:
3339 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003340 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003341 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003342 - z