blob: 5465c3b8820c9fcf4a801bb30e3f0207946337b5 [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
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700169 - src/core/lib/iomgr/ev_poll_posix.h
Craig Tiller8a034482016-03-28 16:09:04 -0700170 - src/core/lib/iomgr/ev_posix.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700171 - src/core/lib/iomgr/exec_ctx.h
172 - src/core/lib/iomgr/executor.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700173 - src/core/lib/iomgr/iocp_windows.h
174 - src/core/lib/iomgr/iomgr.h
175 - src/core/lib/iomgr/iomgr_internal.h
176 - src/core/lib/iomgr/iomgr_posix.h
177 - src/core/lib/iomgr/pollset.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700178 - src/core/lib/iomgr/pollset_set.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700179 - src/core/lib/iomgr/pollset_set_windows.h
180 - src/core/lib/iomgr/pollset_windows.h
181 - src/core/lib/iomgr/resolve_address.h
182 - src/core/lib/iomgr/sockaddr.h
183 - src/core/lib/iomgr/sockaddr_posix.h
184 - src/core/lib/iomgr/sockaddr_utils.h
185 - src/core/lib/iomgr/sockaddr_win32.h
186 - src/core/lib/iomgr/socket_utils_posix.h
187 - src/core/lib/iomgr/socket_windows.h
188 - src/core/lib/iomgr/tcp_client.h
189 - src/core/lib/iomgr/tcp_posix.h
190 - src/core/lib/iomgr/tcp_server.h
191 - src/core/lib/iomgr/tcp_windows.h
192 - src/core/lib/iomgr/time_averaged_stats.h
193 - src/core/lib/iomgr/timer.h
194 - src/core/lib/iomgr/timer_heap.h
195 - src/core/lib/iomgr/udp_server.h
196 - src/core/lib/iomgr/unix_sockets_posix.h
197 - src/core/lib/iomgr/wakeup_fd_pipe.h
198 - src/core/lib/iomgr/wakeup_fd_posix.h
199 - src/core/lib/iomgr/workqueue.h
200 - src/core/lib/iomgr/workqueue_posix.h
201 - src/core/lib/iomgr/workqueue_windows.h
202 - src/core/lib/json/json.h
203 - src/core/lib/json/json_common.h
204 - src/core/lib/json/json_reader.h
205 - src/core/lib/json/json_writer.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700206 - src/core/lib/surface/api_trace.h
207 - src/core/lib/surface/call.h
208 - src/core/lib/surface/call_test_only.h
209 - src/core/lib/surface/channel.h
210 - src/core/lib/surface/channel_init.h
211 - src/core/lib/surface/channel_stack_type.h
212 - src/core/lib/surface/completion_queue.h
213 - src/core/lib/surface/event_string.h
214 - src/core/lib/surface/init.h
215 - src/core/lib/surface/lame_client.h
216 - src/core/lib/surface/server.h
217 - src/core/lib/surface/surface_trace.h
218 - src/core/lib/transport/byte_stream.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700219 - src/core/lib/transport/connectivity_state.h
220 - src/core/lib/transport/metadata.h
221 - src/core/lib/transport/metadata_batch.h
222 - src/core/lib/transport/static_metadata.h
223 - src/core/lib/transport/transport.h
224 - src/core/lib/transport/transport_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700225 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700226 - src/core/lib/channel/channel_args.c
227 - src/core/lib/channel/channel_stack.c
228 - src/core/lib/channel/channel_stack_builder.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700229 - src/core/lib/channel/compress_filter.c
230 - src/core/lib/channel/connected_channel.c
231 - src/core/lib/channel/http_client_filter.c
232 - src/core/lib/channel/http_server_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700233 - src/core/lib/compression/compression_algorithm.c
234 - src/core/lib/compression/message_compress.c
235 - src/core/lib/debug/trace.c
236 - src/core/lib/http/format_request.c
237 - src/core/lib/http/httpcli.c
238 - src/core/lib/http/parser.c
239 - src/core/lib/iomgr/closure.c
240 - src/core/lib/iomgr/endpoint.c
241 - src/core/lib/iomgr/endpoint_pair_posix.c
242 - src/core/lib/iomgr/endpoint_pair_windows.c
Craig Tiller8a034482016-03-28 16:09:04 -0700243 - src/core/lib/iomgr/ev_poll_and_epoll_posix.c
Craig Tillerd9a60bb2016-03-28 23:13:19 -0700244 - src/core/lib/iomgr/ev_poll_posix.c
Craig Tiller8a034482016-03-28 16:09:04 -0700245 - src/core/lib/iomgr/ev_posix.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700246 - src/core/lib/iomgr/exec_ctx.c
247 - src/core/lib/iomgr/executor.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700248 - src/core/lib/iomgr/iocp_windows.c
249 - src/core/lib/iomgr/iomgr.c
250 - src/core/lib/iomgr/iomgr_posix.c
251 - src/core/lib/iomgr/iomgr_windows.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700252 - src/core/lib/iomgr/pollset_set_windows.c
253 - src/core/lib/iomgr/pollset_windows.c
254 - src/core/lib/iomgr/resolve_address_posix.c
255 - src/core/lib/iomgr/resolve_address_windows.c
256 - src/core/lib/iomgr/sockaddr_utils.c
257 - src/core/lib/iomgr/socket_utils_common_posix.c
258 - src/core/lib/iomgr/socket_utils_linux.c
259 - src/core/lib/iomgr/socket_utils_posix.c
260 - src/core/lib/iomgr/socket_windows.c
261 - src/core/lib/iomgr/tcp_client_posix.c
262 - src/core/lib/iomgr/tcp_client_windows.c
263 - src/core/lib/iomgr/tcp_posix.c
264 - src/core/lib/iomgr/tcp_server_posix.c
265 - src/core/lib/iomgr/tcp_server_windows.c
266 - src/core/lib/iomgr/tcp_windows.c
267 - src/core/lib/iomgr/time_averaged_stats.c
268 - src/core/lib/iomgr/timer.c
269 - src/core/lib/iomgr/timer_heap.c
270 - src/core/lib/iomgr/udp_server.c
271 - src/core/lib/iomgr/unix_sockets_posix.c
272 - src/core/lib/iomgr/unix_sockets_posix_noop.c
273 - src/core/lib/iomgr/wakeup_fd_eventfd.c
274 - src/core/lib/iomgr/wakeup_fd_nospecial.c
275 - src/core/lib/iomgr/wakeup_fd_pipe.c
276 - src/core/lib/iomgr/wakeup_fd_posix.c
277 - src/core/lib/iomgr/workqueue_posix.c
278 - src/core/lib/iomgr/workqueue_windows.c
279 - src/core/lib/json/json.c
280 - src/core/lib/json/json_reader.c
281 - src/core/lib/json/json_string.c
282 - src/core/lib/json/json_writer.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700283 - src/core/lib/surface/alarm.c
284 - src/core/lib/surface/api_trace.c
285 - src/core/lib/surface/byte_buffer.c
286 - src/core/lib/surface/byte_buffer_reader.c
287 - src/core/lib/surface/call.c
288 - src/core/lib/surface/call_details.c
289 - src/core/lib/surface/call_log_batch.c
290 - src/core/lib/surface/channel.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700291 - src/core/lib/surface/channel_init.c
292 - src/core/lib/surface/channel_ping.c
293 - src/core/lib/surface/channel_stack_type.c
294 - src/core/lib/surface/completion_queue.c
295 - src/core/lib/surface/event_string.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700296 - src/core/lib/surface/lame_client.c
297 - src/core/lib/surface/metadata_array.c
298 - src/core/lib/surface/server.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700299 - src/core/lib/surface/validate_metadata.c
300 - src/core/lib/surface/version.c
301 - src/core/lib/transport/byte_stream.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700302 - src/core/lib/transport/connectivity_state.c
303 - src/core/lib/transport/metadata.c
304 - src/core/lib/transport/metadata_batch.c
305 - src/core/lib/transport/static_metadata.c
306 - src/core/lib/transport/transport.c
307 - src/core/lib/transport/transport_op_string.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700308 deps:
309 - gpr
310 uses:
311 - grpc_codegen
Craig Tiller016a81d2016-03-31 13:49:05 -0700312- name: grpc_client_config
313 headers:
314 - src/core/ext/client_config/client_channel.h
Craig Tiller74071cd2016-04-01 16:36:27 -0700315 - src/core/ext/client_config/client_channel_factory.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700316 - src/core/ext/client_config/client_config.h
317 - src/core/ext/client_config/connector.h
318 - src/core/ext/client_config/initial_connect_string.h
319 - src/core/ext/client_config/lb_policy.h
320 - src/core/ext/client_config/lb_policy_factory.h
321 - src/core/ext/client_config/lb_policy_registry.h
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700322 - src/core/ext/client_config/parse_address.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700323 - src/core/ext/client_config/resolver.h
324 - src/core/ext/client_config/resolver_factory.h
325 - src/core/ext/client_config/resolver_registry.h
326 - src/core/ext/client_config/subchannel.h
Craig Tillerb112f392016-04-05 12:44:04 -0700327 - src/core/ext/client_config/subchannel_call_holder.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700328 - src/core/ext/client_config/subchannel_index.h
329 - src/core/ext/client_config/uri_parser.h
330 src:
331 - src/core/ext/client_config/channel_connectivity.c
332 - src/core/ext/client_config/client_channel.c
Craig Tiller74071cd2016-04-01 16:36:27 -0700333 - src/core/ext/client_config/client_channel_factory.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700334 - src/core/ext/client_config/client_config.c
Craig Tiller0b541632016-04-05 17:21:05 -0700335 - src/core/ext/client_config/client_config_plugin.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700336 - src/core/ext/client_config/connector.c
337 - src/core/ext/client_config/default_initial_connect_string.c
338 - src/core/ext/client_config/initial_connect_string.c
339 - src/core/ext/client_config/lb_policy.c
340 - src/core/ext/client_config/lb_policy_factory.c
341 - src/core/ext/client_config/lb_policy_registry.c
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700342 - src/core/ext/client_config/parse_address.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700343 - src/core/ext/client_config/resolver.c
344 - src/core/ext/client_config/resolver_factory.c
345 - src/core/ext/client_config/resolver_registry.c
346 - src/core/ext/client_config/subchannel.c
Craig Tillerb112f392016-04-05 12:44:04 -0700347 - src/core/ext/client_config/subchannel_call_holder.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700348 - src/core/ext/client_config/subchannel_index.c
349 - src/core/ext/client_config/uri_parser.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700350 plugin: grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700351 uses:
352 - grpc_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800353- name: grpc_codegen
354 public_headers:
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800355 - include/grpc/impl/codegen/byte_buffer.h
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700356 - include/grpc/impl/codegen/byte_buffer_reader.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800357 - include/grpc/impl/codegen/compression_types.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800358 - include/grpc/impl/codegen/connectivity_state.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800359 - include/grpc/impl/codegen/grpc_types.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800360 - include/grpc/impl/codegen/propagation_bits.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800361 - include/grpc/impl/codegen/status.h
Craig Tiller03915e52016-04-07 09:15:10 -0700362 uses:
363 - gpr_codegen
Craig Tiller023caf12016-03-29 08:00:30 -0700364- name: grpc_lb_policy_grpclb
365 headers:
366 - src/core/ext/lb_policy/grpclb/load_balancer_api.h
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700367 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h
Craig Tiller023caf12016-03-29 08:00:30 -0700368 src:
369 - src/core/ext/lb_policy/grpclb/load_balancer_api.c
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700370 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c
Craig Tiller023caf12016-03-29 08:00:30 -0700371 uses:
372 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700373 - grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700374 - nanopb
Craig Tiller023caf12016-03-29 08:00:30 -0700375- name: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700376 src:
377 - src/core/ext/lb_policy/pick_first/pick_first.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700378 plugin: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700379 uses:
380 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700381 - grpc_client_config
Craig Tiller023caf12016-03-29 08:00:30 -0700382- name: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700383 src:
384 - src/core/ext/lb_policy/round_robin/round_robin.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700385 plugin: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700386 uses:
387 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700388 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700389- name: grpc_resolver_dns_native
390 src:
391 - src/core/ext/resolver/dns/native/dns_resolver.c
392 plugin: grpc_resolver_dns_native
393 uses:
394 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700395 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700396- name: grpc_resolver_sockaddr
397 src:
398 - src/core/ext/resolver/sockaddr/sockaddr_resolver.c
399 plugin: grpc_resolver_sockaddr
400 uses:
401 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700402 - grpc_client_config
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100403- name: grpc_secure
Craig Tillerd1697d92016-04-05 16:05:46 -0700404 public_headers:
makdharmac2ec95b2016-05-11 16:26:15 -0700405 - include/grpc/grpc_cronet.h
Craig Tillerd1697d92016-04-05 16:05:46 -0700406 - include/grpc/grpc_security.h
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700407 - include/grpc/grpc_security_constants.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100408 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700409 - src/core/lib/security/auth_filters.h
410 - src/core/lib/security/b64.h
411 - src/core/lib/security/credentials.h
412 - src/core/lib/security/handshake.h
413 - src/core/lib/security/json_token.h
414 - src/core/lib/security/jwt_verifier.h
415 - src/core/lib/security/secure_endpoint.h
416 - src/core/lib/security/security_connector.h
417 - src/core/lib/security/security_context.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100418 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700419 - src/core/lib/http/httpcli_security_connector.c
420 - src/core/lib/security/b64.c
421 - src/core/lib/security/client_auth_filter.c
422 - src/core/lib/security/credentials.c
423 - src/core/lib/security/credentials_metadata.c
424 - src/core/lib/security/credentials_posix.c
425 - src/core/lib/security/credentials_win32.c
426 - src/core/lib/security/google_default_credentials.c
427 - src/core/lib/security/handshake.c
428 - src/core/lib/security/json_token.c
429 - src/core/lib/security/jwt_verifier.c
430 - src/core/lib/security/secure_endpoint.c
431 - src/core/lib/security/security_connector.c
432 - src/core/lib/security/security_context.c
433 - src/core/lib/security/server_auth_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700434 - src/core/lib/surface/init_secure.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700435 secure: true
Craig Tillerd1697d92016-04-05 16:05:46 -0700436 uses:
437 - grpc_base
438 - grpc_transport_chttp2_alpn
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700439 - tsi
Craig Tillerbf4b2242015-08-31 15:53:53 -0700440- name: grpc_test_util_base
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700441 build: test
Craig Tiller25834342015-09-25 08:08:24 -0700442 headers:
443 - test/core/end2end/cq_verifier.h
444 - test/core/end2end/fixtures/proxy.h
445 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700446 - test/core/util/grpc_profiler.h
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200447 - test/core/util/memory_counters.h
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700448 - test/core/util/mock_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700449 - test/core/util/parse_hexstring.h
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700450 - test/core/util/passthru_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700451 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700452 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700453 - test/core/util/slice_splitter.h
454 src:
455 - test/core/end2end/cq_verifier.c
456 - test/core/end2end/fixtures/proxy.c
457 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700458 - test/core/util/grpc_profiler.c
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200459 - test/core/util/memory_counters.c
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700460 - test/core/util/mock_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700461 - test/core/util/parse_hexstring.c
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700462 - test/core/util/passthru_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700463 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700464 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700465 - test/core/util/port_windows.c
466 - test/core/util/slice_splitter.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700467 deps:
468 - grpc
469 - gpr_test_util
Craig Tillerf0555b32016-03-28 10:19:24 -0700470- name: grpc_transport_chttp2
471 headers:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700472 - src/core/ext/transport/chttp2/transport/bin_encoder.h
Craig Tillerf0555b32016-03-28 10:19:24 -0700473 - src/core/ext/transport/chttp2/transport/chttp2_transport.h
474 - src/core/ext/transport/chttp2/transport/frame.h
475 - src/core/ext/transport/chttp2/transport/frame_data.h
476 - src/core/ext/transport/chttp2/transport/frame_goaway.h
477 - src/core/ext/transport/chttp2/transport/frame_ping.h
478 - src/core/ext/transport/chttp2/transport/frame_rst_stream.h
479 - src/core/ext/transport/chttp2/transport/frame_settings.h
480 - src/core/ext/transport/chttp2/transport/frame_window_update.h
481 - src/core/ext/transport/chttp2/transport/hpack_encoder.h
482 - src/core/ext/transport/chttp2/transport/hpack_parser.h
483 - src/core/ext/transport/chttp2/transport/hpack_table.h
484 - src/core/ext/transport/chttp2/transport/http2_errors.h
485 - src/core/ext/transport/chttp2/transport/huffsyms.h
486 - src/core/ext/transport/chttp2/transport/incoming_metadata.h
487 - src/core/ext/transport/chttp2/transport/internal.h
488 - src/core/ext/transport/chttp2/transport/status_conversion.h
489 - src/core/ext/transport/chttp2/transport/stream_map.h
490 - src/core/ext/transport/chttp2/transport/timeout_encoding.h
491 - src/core/ext/transport/chttp2/transport/varint.h
492 src:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700493 - src/core/ext/transport/chttp2/transport/bin_encoder.c
494 - src/core/ext/transport/chttp2/transport/chttp2_plugin.c
Craig Tillerf0555b32016-03-28 10:19:24 -0700495 - src/core/ext/transport/chttp2/transport/chttp2_transport.c
496 - src/core/ext/transport/chttp2/transport/frame_data.c
497 - src/core/ext/transport/chttp2/transport/frame_goaway.c
498 - src/core/ext/transport/chttp2/transport/frame_ping.c
499 - src/core/ext/transport/chttp2/transport/frame_rst_stream.c
500 - src/core/ext/transport/chttp2/transport/frame_settings.c
501 - src/core/ext/transport/chttp2/transport/frame_window_update.c
502 - src/core/ext/transport/chttp2/transport/hpack_encoder.c
503 - src/core/ext/transport/chttp2/transport/hpack_parser.c
504 - src/core/ext/transport/chttp2/transport/hpack_table.c
505 - src/core/ext/transport/chttp2/transport/huffsyms.c
506 - src/core/ext/transport/chttp2/transport/incoming_metadata.c
507 - src/core/ext/transport/chttp2/transport/parsing.c
508 - src/core/ext/transport/chttp2/transport/status_conversion.c
509 - src/core/ext/transport/chttp2/transport/stream_lists.c
510 - src/core/ext/transport/chttp2/transport/stream_map.c
511 - src/core/ext/transport/chttp2/transport/timeout_encoding.c
512 - src/core/ext/transport/chttp2/transport/varint.c
513 - src/core/ext/transport/chttp2/transport/writing.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700514 plugin: grpc_chttp2_plugin
Craig Tiller44cc10b2016-03-28 10:45:29 -0700515 uses:
516 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700517 - grpc_transport_chttp2_alpn
518- name: grpc_transport_chttp2_alpn
519 headers:
520 - src/core/ext/transport/chttp2/alpn/alpn.h
521 src:
522 - src/core/ext/transport/chttp2/alpn/alpn.c
523 deps:
524 - gpr
Craig Tillerf0555b32016-03-28 10:19:24 -0700525- name: grpc_transport_chttp2_client_insecure
526 src:
527 - src/core/ext/transport/chttp2/client/insecure/channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700528 uses:
529 - grpc_transport_chttp2
530 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700531 - grpc_client_config
Craig Tillerf0555b32016-03-28 10:19:24 -0700532- name: grpc_transport_chttp2_client_secure
533 src:
534 - src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700535 uses:
536 - grpc_transport_chttp2
537 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700538 - grpc_client_config
539 - grpc_secure
Craig Tillerf0555b32016-03-28 10:19:24 -0700540- name: grpc_transport_chttp2_server_insecure
541 src:
542 - src/core/ext/transport/chttp2/server/insecure/server_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700543 uses:
544 - grpc_transport_chttp2
545 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700546- name: grpc_transport_chttp2_server_secure
547 src:
548 - src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700549 uses:
550 - grpc_transport_chttp2
551 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700552 - grpc_secure
makdharmac2ec95b2016-05-11 16:26:15 -0700553- name: grpc_transport_cronet_client_secure
554 headers:
makdharmac2ec95b2016-05-11 16:26:15 -0700555 - third_party/objective_c/Cronet/cronet_c_for_grpc.h
556 src:
557 - src/core/ext/transport/cronet/client/secure/cronet_channel_create.c
558 - src/core/ext/transport/cronet/transport/cronet_api_dummy.c
559 - src/core/ext/transport/cronet/transport/cronet_transport.c
Makarand Dharmapurikard46efd72016-05-11 16:56:39 -0700560 filegroups:
561 - grpc_base
562 - grpc_transport_chttp2
Craig Tillereb841e22016-02-11 15:49:16 -0800563- name: nanopb
564 headers:
565 - third_party/nanopb/pb.h
566 - third_party/nanopb/pb_common.h
567 - third_party/nanopb/pb_decode.h
568 - third_party/nanopb/pb_encode.h
569 src:
570 - third_party/nanopb/pb_common.c
571 - third_party/nanopb/pb_decode.c
572 - third_party/nanopb/pb_encode.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700573- name: tsi
574 headers:
575 - src/core/lib/tsi/fake_transport_security.h
576 - src/core/lib/tsi/ssl_transport_security.h
577 - src/core/lib/tsi/ssl_types.h
578 - src/core/lib/tsi/transport_security.h
579 - src/core/lib/tsi/transport_security_interface.h
580 src:
581 - src/core/lib/tsi/fake_transport_security.c
582 - src/core/lib/tsi/ssl_transport_security.c
583 - src/core/lib/tsi/transport_security.c
584 deps:
585 - gpr
586 secure: true
587- name: grpc++_base
588 language: c++
589 public_headers:
590 - include/grpc++/alarm.h
591 - include/grpc++/channel.h
592 - include/grpc++/client_context.h
593 - include/grpc++/completion_queue.h
594 - include/grpc++/create_channel.h
595 - include/grpc++/generic/async_generic_service.h
596 - include/grpc++/generic/generic_stub.h
597 - include/grpc++/grpc++.h
598 - include/grpc++/impl/call.h
599 - include/grpc++/impl/client_unary_call.h
600 - include/grpc++/impl/grpc_library.h
601 - include/grpc++/impl/method_handler_impl.h
602 - include/grpc++/impl/proto_utils.h
603 - include/grpc++/impl/rpc_method.h
604 - include/grpc++/impl/rpc_service_method.h
605 - include/grpc++/impl/serialization_traits.h
606 - include/grpc++/impl/server_builder_option.h
Yuchen Zenga42ec212016-04-29 13:03:06 -0700607 - include/grpc++/impl/server_builder_plugin.h
608 - include/grpc++/impl/server_initializer.h
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700609 - include/grpc++/impl/service_type.h
610 - include/grpc++/impl/sync.h
611 - include/grpc++/impl/sync_cxx11.h
612 - include/grpc++/impl/sync_no_cxx11.h
613 - include/grpc++/impl/thd.h
614 - include/grpc++/impl/thd_cxx11.h
615 - include/grpc++/impl/thd_no_cxx11.h
616 - include/grpc++/security/auth_context.h
617 - include/grpc++/security/auth_metadata_processor.h
618 - include/grpc++/security/credentials.h
619 - include/grpc++/security/server_credentials.h
620 - include/grpc++/server.h
621 - include/grpc++/server_builder.h
622 - include/grpc++/server_context.h
623 - include/grpc++/support/async_stream.h
624 - include/grpc++/support/async_unary_call.h
625 - include/grpc++/support/byte_buffer.h
626 - include/grpc++/support/channel_arguments.h
627 - include/grpc++/support/slice.h
628 - include/grpc++/support/status.h
629 - include/grpc++/support/status_code_enum.h
630 - include/grpc++/support/string_ref.h
631 - include/grpc++/support/stub_options.h
632 - include/grpc++/support/sync_stream.h
633 - include/grpc++/support/time.h
634 headers:
635 - src/cpp/client/create_channel_internal.h
636 - src/cpp/common/core_codegen.h
637 - src/cpp/server/dynamic_thread_pool.h
638 - src/cpp/server/thread_pool_interface.h
639 src:
640 - src/cpp/client/channel.cc
641 - src/cpp/client/client_context.cc
642 - src/cpp/client/create_channel.cc
643 - src/cpp/client/create_channel_internal.cc
644 - src/cpp/client/credentials.cc
645 - src/cpp/client/generic_stub.cc
646 - src/cpp/client/insecure_credentials.cc
647 - src/cpp/common/channel_arguments.cc
648 - src/cpp/common/completion_queue.cc
649 - src/cpp/common/core_codegen.cc
650 - src/cpp/common/rpc_method.cc
651 - src/cpp/server/async_generic_service.cc
652 - src/cpp/server/create_default_thread_pool.cc
653 - src/cpp/server/dynamic_thread_pool.cc
654 - src/cpp/server/insecure_server_credentials.cc
655 - src/cpp/server/server.cc
656 - src/cpp/server/server_builder.cc
657 - src/cpp/server/server_context.cc
658 - src/cpp/server/server_credentials.cc
659 - src/cpp/util/byte_buffer.cc
660 - src/cpp/util/slice.cc
661 - src/cpp/util/status.cc
662 - src/cpp/util/string_ref.cc
663 - src/cpp/util/time.cc
664 deps:
665 - grpc
666 uses:
667 - grpc++_codegen
668 - grpc++_config
669- name: grpc++_codegen
670 language: c++
671 public_headers:
672 - include/grpc++/impl/codegen/async_stream.h
673 - include/grpc++/impl/codegen/async_unary_call.h
674 - include/grpc++/impl/codegen/call.h
675 - include/grpc++/impl/codegen/call_hook.h
676 - include/grpc++/impl/codegen/channel_interface.h
677 - include/grpc++/impl/codegen/client_context.h
678 - include/grpc++/impl/codegen/client_unary_call.h
679 - include/grpc++/impl/codegen/completion_queue.h
680 - include/grpc++/impl/codegen/completion_queue_tag.h
681 - include/grpc++/impl/codegen/core_codegen_interface.h
682 - include/grpc++/impl/codegen/create_auth_context.h
683 - include/grpc++/impl/codegen/grpc_library.h
684 - include/grpc++/impl/codegen/method_handler_impl.h
685 - include/grpc++/impl/codegen/proto_utils.h
686 - include/grpc++/impl/codegen/rpc_method.h
687 - include/grpc++/impl/codegen/rpc_service_method.h
688 - include/grpc++/impl/codegen/security/auth_context.h
689 - include/grpc++/impl/codegen/serialization_traits.h
690 - include/grpc++/impl/codegen/server_context.h
691 - include/grpc++/impl/codegen/server_interface.h
692 - include/grpc++/impl/codegen/service_type.h
693 - include/grpc++/impl/codegen/status.h
694 - include/grpc++/impl/codegen/status_code_enum.h
695 - include/grpc++/impl/codegen/string_ref.h
696 - include/grpc++/impl/codegen/stub_options.h
697 - include/grpc++/impl/codegen/sync.h
698 - include/grpc++/impl/codegen/sync_cxx11.h
699 - include/grpc++/impl/codegen/sync_no_cxx11.h
700 - include/grpc++/impl/codegen/sync_stream.h
701 - include/grpc++/impl/codegen/time.h
702 src:
703 - src/cpp/codegen/codegen_init.cc
704 uses:
705 - grpc_codegen
706 - grpc++_config_codegen
707- name: grpc++_config
708 language: c++
709 public_headers:
710 - include/grpc++/support/config.h
711 - include/grpc++/support/config_protobuf.h
712 uses:
713 - grpc++_config_codegen
714- name: grpc++_config_codegen
715 language: c++
716 public_headers:
717 - include/grpc++/impl/codegen/config.h
718 - include/grpc++/impl/codegen/config_protobuf.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100719libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800720- name: gpr
721 build: all
722 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800723 filegroups:
Craig Tillerd1697d92016-04-05 16:05:46 -0700724 - gpr_base
Craig Tillerda179ce2016-02-09 12:01:53 -0800725 secure: false
726 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
727- name: gpr_test_util
728 build: private
729 language: c
730 headers:
731 - test/core/util/test_config.h
732 src:
733 - test/core/util/test_config.c
734 deps:
735 - gpr
736 secure: false
737 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700738- name: grpc
739 build: all
740 language: c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700741 src:
742 - src/core/lib/surface/init.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700743 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800744 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700745 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700746 filegroups:
747 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700748 - grpc_transport_chttp2_server_secure
749 - grpc_transport_chttp2_client_secure
750 - grpc_transport_chttp2_server_insecure
751 - grpc_transport_chttp2_client_insecure
makdharmac2ec95b2016-05-11 16:26:15 -0700752 - grpc_transport_cronet_client_secure
Craig Tiller023caf12016-03-29 08:00:30 -0700753 - grpc_lb_policy_grpclb
754 - grpc_lb_policy_pick_first
755 - grpc_lb_policy_round_robin
Craig Tiller65938df2016-03-31 13:08:49 -0700756 - grpc_resolver_dns_native
757 - grpc_resolver_sockaddr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100758 - grpc_secure
Craig Tiller25834342015-09-25 08:08:24 -0700759 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700760 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700761 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700762 vs_packages:
763 - grpc.dependencies.openssl
764 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700765 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100766- name: grpc_dll
767 build: private
768 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100769 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100770 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100771 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100772 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100773 build_system:
774 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100775 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100776 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100777 vs_config_type: DynamicLibrary
778 vs_packages:
779 - grpc.dependencies.openssl
780 - grpc.dependencies.zlib
781 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
782 vs_props:
783 - zlib
784 - openssl
785 - winsock
786 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700787- name: grpc_test_util
788 build: private
789 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700790 headers:
791 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800792 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700793 src:
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700794 - test/core/end2end/data/client_certs.c
Craig Tiller25834342015-09-25 08:08:24 -0700795 - test/core/end2end/data/server1_cert.c
796 - test/core/end2end/data/server1_key.c
797 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800798 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700799 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800800 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800801 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700802 - grpc
803 filegroups:
804 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700805 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
806- name: grpc_test_util_unsecure
807 build: private
808 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700809 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800810 - gpr
811 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800812 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700813 filegroups:
814 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700815 secure: false
816 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
817- name: grpc_unsecure
818 build: all
819 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700820 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700821 - src/core/lib/surface/init.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700822 - src/core/lib/surface/init_unsecure.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700823 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800824 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700825 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700826 filegroups:
827 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700828 - grpc_transport_chttp2_server_insecure
829 - grpc_transport_chttp2_client_insecure
Craig Tiller65938df2016-03-31 13:08:49 -0700830 - grpc_resolver_dns_native
831 - grpc_resolver_sockaddr
Craig Tiller023caf12016-03-29 08:00:30 -0700832 - grpc_lb_policy_grpclb
833 - grpc_lb_policy_pick_first
834 - grpc_lb_policy_round_robin
Craig Tiller25834342015-09-25 08:08:24 -0700835 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700836 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700837 secure: false
838 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
839- name: grpc_zookeeper
840 build: all
841 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700842 public_headers:
843 - include/grpc/grpc_zookeeper.h
Craig Tiller25834342015-09-25 08:08:24 -0700844 src:
Craig Tillerb11b34a2016-04-01 12:30:06 -0700845 - src/core/ext/resolver/zookeeper/zookeeper_resolver.c
Craig Tiller25834342015-09-25 08:08:24 -0700846 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800847 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700848 - grpc
849 external_deps:
850 - zookeeper
851 platforms:
852 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700853 secure: false
854- name: reconnect_server
855 build: private
856 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700857 headers:
858 - test/core/util/reconnect_server.h
859 src:
860 - test/core/util/reconnect_server.c
861 deps:
yang-gc9fca182015-11-06 16:41:33 -0800862 - test_tcp_server
863 - grpc_test_util
864 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800865 - gpr_test_util
866 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800867- name: test_tcp_server
868 build: private
869 language: c
870 headers:
871 - test/core/util/test_tcp_server.h
872 src:
873 - test/core/util/test_tcp_server.c
874 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700875 - grpc_test_util
876 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800877 - gpr_test_util
878 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700879- name: grpc++
880 build: all
881 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700882 headers:
883 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800884 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700885 - src/cpp/common/secure_auth_context.h
886 - src/cpp/server/secure_server_credentials.h
887 src:
Craig Tiller25834342015-09-25 08:08:24 -0700888 - src/cpp/client/secure_credentials.cc
889 - src/cpp/common/auth_property_iterator.cc
890 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800891 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700892 - src/cpp/common/secure_create_auth_context.cc
893 - src/cpp/server/secure_server_credentials.cc
894 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700895 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700896 baselib: true
897 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700898 filegroups:
899 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800900 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700901 secure: check
902 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
Yuchen Zengc84ed682016-05-04 16:30:11 -0700903- name: grpc++_reflection
904 build: all
905 language: c++
906 public_headers:
907 - extensions/include/grpc++/impl/proto_server_reflection_plugin.h
908 - extensions/include/grpc++/impl/reflection.grpc.pb.h
909 - extensions/include/grpc++/impl/reflection.pb.h
910 headers:
911 - extensions/reflection/proto_server_reflection.h
912 src:
913 - extensions/reflection/proto_server_reflection.cc
914 - extensions/reflection/proto_server_reflection_plugin.cc
915 - extensions/reflection/reflection.grpc.pb.cc
916 - extensions/reflection/reflection.pb.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700917- name: grpc++_test_config
918 build: private
919 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700920 headers:
921 - test/cpp/util/test_config.h
922 src:
923 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700924- name: grpc++_test_util
925 build: private
926 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700927 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800928 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800929 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700930 - test/cpp/util/cli_call.h
931 - test/cpp/util/create_test_channel.h
932 - test/cpp/util/string_ref_helper.h
933 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800934 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700935 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800936 - src/proto/grpc/testing/echo_messages.proto
937 - src/proto/grpc/testing/echo.proto
938 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800939 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800940 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700941 - test/cpp/util/cli_call.cc
942 - test/cpp/util/create_test_channel.cc
943 - test/cpp/util/string_ref_helper.cc
944 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800945 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700946 deps:
947 - grpc++
948 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700949- name: grpc++_unsecure
950 build: all
951 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700952 src:
953 - src/cpp/common/insecure_create_auth_context.cc
954 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800955 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700956 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700957 baselib: true
958 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700959 filegroups:
960 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800961 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700962 secure: false
963 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
964- name: grpc_plugin_support
965 build: protoc
966 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700967 headers:
Craig Tiller25834342015-09-25 08:08:24 -0700968 - src/compiler/config.h
969 - src/compiler/cpp_generator.h
970 - src/compiler/cpp_generator_helpers.h
971 - src/compiler/csharp_generator.h
972 - src/compiler/csharp_generator_helpers.h
973 - src/compiler/generator_helpers.h
murgatroid99d2ee81f2016-02-26 11:10:33 -0800974 - src/compiler/node_generator.h
975 - src/compiler/node_generator_helpers.h
Craig Tiller25834342015-09-25 08:08:24 -0700976 - src/compiler/objective_c_generator.h
977 - src/compiler/objective_c_generator_helpers.h
978 - src/compiler/python_generator.h
979 - src/compiler/ruby_generator.h
980 - src/compiler/ruby_generator_helpers-inl.h
981 - src/compiler/ruby_generator_map-inl.h
982 - src/compiler/ruby_generator_string-inl.h
983 src:
984 - src/compiler/cpp_generator.cc
985 - src/compiler/csharp_generator.cc
murgatroid99d2ee81f2016-02-26 11:10:33 -0800986 - src/compiler/node_generator.cc
Craig Tiller25834342015-09-25 08:08:24 -0700987 - src/compiler/objective_c_generator.cc
988 - src/compiler/python_generator.cc
989 - src/compiler/ruby_generator.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800990 filegroups:
Craig Tiller03915e52016-04-07 09:15:10 -0700991 - grpc++_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700992 secure: false
993 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800994 vs_props:
995 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700996- name: interop_client_helper
997 build: private
998 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700999 headers:
1000 - test/cpp/interop/client_helper.h
1001 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001002 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -07001003 - test/cpp/interop/client_helper.cc
1004 deps:
1005 - grpc++_test_util
1006 - grpc_test_util
1007 - grpc++
1008 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001009 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001010- name: interop_client_main
1011 build: private
1012 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001013 headers:
1014 - test/cpp/interop/interop_client.h
1015 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 Tiller25834342015-09-25 08:08:24 -07001019 - test/cpp/interop/client.cc
1020 - test/cpp/interop/interop_client.cc
1021 deps:
1022 - interop_client_helper
1023 - grpc++_test_util
1024 - grpc_test_util
1025 - grpc++
1026 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001027 - gpr_test_util
1028 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001029 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001030- name: interop_server_helper
1031 build: private
1032 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001033 headers:
1034 - test/cpp/interop/server_helper.h
1035 src:
1036 - test/cpp/interop/server_helper.cc
1037 deps:
1038 - grpc_test_util
1039 - grpc++
1040 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001041 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001042- name: interop_server_main
1043 build: private
1044 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001045 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001046 - src/proto/grpc/testing/empty.proto
1047 - src/proto/grpc/testing/messages.proto
1048 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -08001049 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -07001050 deps:
1051 - interop_server_helper
1052 - grpc++_test_util
1053 - grpc_test_util
1054 - grpc++
1055 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001056 - gpr_test_util
1057 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001058 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001059- name: qps
1060 build: private
1061 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001062 headers:
1063 - test/cpp/qps/client.h
1064 - test/cpp/qps/driver.h
1065 - test/cpp/qps/histogram.h
1066 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -08001067 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -07001068 - test/cpp/qps/perf_db_client.h
1069 - test/cpp/qps/qps_worker.h
1070 - test/cpp/qps/report.h
1071 - test/cpp/qps/server.h
1072 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -08001073 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -07001074 - test/cpp/util/benchmark_config.h
1075 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001076 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001077 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001078 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -08001079 - src/proto/grpc/testing/control.proto
1080 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001081 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -07001082 - test/cpp/qps/client_async.cc
1083 - test/cpp/qps/client_sync.cc
1084 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -08001085 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -07001086 - test/cpp/qps/perf_db_client.cc
1087 - test/cpp/qps/qps_worker.cc
1088 - test/cpp/qps/report.cc
1089 - test/cpp/qps/server_async.cc
1090 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -08001091 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -07001092 - test/cpp/util/benchmark_config.cc
1093 deps:
1094 - grpc_test_util
1095 - grpc++_test_util
1096 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07001097- name: grpc_csharp_ext
1098 build: all
1099 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -07001100 src:
1101 - src/csharp/ext/grpc_csharp_ext.c
1102 deps:
Craig Tiller25834342015-09-25 08:08:24 -07001103 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001104 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -08001105 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -08001106 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -07001107 dll: only
1108 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -07001109 vs_packages:
1110 - grpc.dependencies.openssl
1111 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -07001112 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -07001113 vs_props:
1114 - zlib
1115 - openssl
1116 - winsock
1117 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -07001118targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001119- name: alarm_test
1120 build: test
1121 language: c
1122 src:
1123 - test/core/surface/alarm_test.c
1124 deps:
1125 - grpc_test_util
1126 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -08001127 - gpr_test_util
1128 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -08001129- name: algorithm_test
1130 build: test
1131 language: c
1132 src:
1133 - test/core/compression/algorithm_test.c
1134 deps:
1135 - grpc_test_util
1136 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001137 - gpr_test_util
1138 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -08001139- name: alloc_test
1140 build: test
1141 language: c
1142 src:
1143 - test/core/support/alloc_test.c
1144 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001145 - gpr_test_util
1146 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001147- name: alpn_test
1148 build: test
1149 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001150 src:
1151 - test/core/transport/chttp2/alpn_test.c
1152 deps:
1153 - grpc_test_util
1154 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001155 - gpr_test_util
1156 - gpr
Craig Tillerfc98f922016-04-13 08:45:06 -07001157- name: api_fuzzer
1158 build: fuzzer
1159 language: c
1160 src:
1161 - test/core/end2end/fuzzers/api_fuzzer.c
1162 deps:
1163 - grpc_test_util
1164 - grpc
1165 - gpr_test_util
1166 - gpr
1167 corpus_dirs:
1168 - test/core/end2end/fuzzers/api_fuzzer_corpus
Craig Tiller0477d7d2016-04-24 10:42:50 -07001169 dict: test/core/end2end/fuzzers/api_fuzzer.dictionary
Craig Tillerfc98f922016-04-13 08:45:06 -07001170 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001171- name: bin_encoder_test
1172 build: test
1173 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001174 src:
1175 - test/core/transport/chttp2/bin_encoder_test.c
1176 deps:
1177 - grpc_test_util
1178 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001179- name: census_context_test
1180 build: test
1181 language: c
1182 src:
1183 - test/core/census/context_test.c
1184 deps:
1185 - grpc_test_util
1186 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001187 - gpr_test_util
1188 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001189- name: channel_create_test
1190 build: test
1191 language: c
1192 src:
1193 - test/core/surface/channel_create_test.c
1194 deps:
1195 - grpc_test_util
1196 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001197 - gpr_test_util
1198 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001199- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001200 build: test
1201 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001202 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001203 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001204 deps:
1205 - grpc_test_util
1206 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001207 - gpr_test_util
1208 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001209- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001210 build: test
1211 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001212 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001213 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001214 deps:
1215 - grpc_test_util
1216 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001217 - gpr_test_util
1218 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001219- name: chttp2_stream_map_test
1220 build: test
1221 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001222 src:
1223 - test/core/transport/chttp2/stream_map_test.c
1224 deps:
1225 - grpc_test_util
1226 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001227 - gpr_test_util
1228 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001229- name: chttp2_varint_test
1230 build: test
1231 language: c
1232 src:
1233 - test/core/transport/chttp2/varint_test.c
1234 deps:
1235 - grpc_test_util
1236 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001237 - gpr_test_util
1238 - gpr
Craig Tiller845516e2016-04-11 20:49:20 -07001239- name: client_fuzzer
1240 build: fuzzer
1241 language: c
1242 src:
1243 - test/core/end2end/fuzzers/client_fuzzer.c
1244 deps:
1245 - grpc_test_util
1246 - grpc
1247 - gpr_test_util
1248 - gpr
1249 corpus_dirs:
1250 - test/core/end2end/fuzzers/client_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001251 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tiller845516e2016-04-11 20:49:20 -07001252 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001253- name: compression_test
1254 build: test
1255 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001256 src:
1257 - test/core/compression/compression_test.c
1258 deps:
1259 - grpc_test_util
1260 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001261 - gpr_test_util
1262 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001263- name: concurrent_connectivity_test
1264 build: test
1265 language: c
1266 src:
1267 - test/core/surface/concurrent_connectivity_test.c
1268 deps:
1269 - grpc_test_util
1270 - grpc
1271 - gpr_test_util
1272 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001273- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001274 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001275 build: test
1276 language: c
1277 src:
1278 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1279 deps:
1280 - grpc_test_util
1281 - grpc
1282 - gpr_test_util
1283 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001284- name: dns_resolver_test
1285 build: test
1286 language: c
1287 src:
1288 - test/core/client_config/resolvers/dns_resolver_test.c
1289 deps:
1290 - grpc_test_util
1291 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001292 - gpr_test_util
1293 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001294- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001295 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001296 build: test
1297 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001298 src:
1299 - test/core/end2end/dualstack_socket_test.c
1300 deps:
1301 - grpc_test_util
1302 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001303 - gpr_test_util
1304 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001305 platforms:
1306 - mac
1307 - linux
1308 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001309- name: endpoint_pair_test
1310 build: test
1311 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001312 src:
1313 - test/core/iomgr/endpoint_pair_test.c
1314 deps:
1315 - grpc_test_util
1316 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001317 - gpr_test_util
1318 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001319- name: fd_conservation_posix_test
1320 build: test
1321 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001322 src:
1323 - test/core/iomgr/fd_conservation_posix_test.c
1324 deps:
1325 - grpc_test_util
1326 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001327 - gpr_test_util
1328 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001329 platforms:
1330 - mac
1331 - linux
1332 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001333- name: fd_posix_test
1334 build: test
1335 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001336 src:
1337 - test/core/iomgr/fd_posix_test.c
1338 deps:
1339 - grpc_test_util
1340 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001341 - gpr_test_util
1342 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001343 platforms:
1344 - mac
1345 - linux
1346 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001347- name: fling_client
1348 build: test
1349 run: false
1350 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001351 src:
1352 - test/core/fling/client.c
1353 deps:
1354 - grpc_test_util
1355 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001356 - gpr_test_util
1357 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001358- name: fling_server
1359 build: test
1360 run: false
1361 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001362 src:
1363 - test/core/fling/server.c
1364 deps:
1365 - grpc_test_util
1366 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001367 - gpr_test_util
1368 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001369- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001370 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001371 build: test
1372 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001373 src:
1374 - test/core/fling/fling_stream_test.c
1375 deps:
1376 - grpc_test_util
1377 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001378 - gpr_test_util
1379 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001380 platforms:
1381 - mac
1382 - linux
1383 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001384- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001385 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001386 build: test
1387 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001388 src:
1389 - test/core/fling/fling_test.c
1390 deps:
1391 - grpc_test_util
1392 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001393 - gpr_test_util
1394 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001395 platforms:
1396 - mac
1397 - linux
1398 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001399- name: gen_hpack_tables
1400 build: tool
1401 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001402 src:
1403 - tools/codegen/core/gen_hpack_tables.c
1404 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001405 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001406 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001407- name: gen_legal_metadata_characters
1408 build: tool
1409 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001410 src:
1411 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001412 deps: []
Craig Tiller1b719582016-03-24 09:06:13 -07001413- name: goaway_server_test
1414 cpu_cost: 0.1
1415 build: test
1416 language: c
1417 src:
1418 - test/core/end2end/goaway_server_test.c
1419 deps:
1420 - grpc_test_util
1421 - grpc
1422 - gpr_test_util
1423 - gpr
1424 platforms:
1425 - mac
1426 - linux
1427 - posix
Craig Tillerfba79f22015-11-23 11:06:55 -08001428- name: gpr_avl_test
1429 build: test
1430 language: c
1431 src:
1432 - test/core/support/avl_test.c
1433 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001434 - gpr_test_util
1435 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001436- name: gpr_backoff_test
1437 build: test
1438 language: c
1439 src:
1440 - test/core/support/backoff_test.c
1441 deps:
1442 - gpr_test_util
1443 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001444- name: gpr_cmdline_test
1445 build: test
1446 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001447 src:
1448 - test/core/support/cmdline_test.c
1449 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001450 - gpr_test_util
1451 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001452- name: gpr_cpu_test
1453 build: test
1454 language: c
1455 src:
1456 - test/core/support/cpu_test.c
1457 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001458 - gpr_test_util
1459 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001460- name: gpr_env_test
1461 build: test
1462 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001463 src:
1464 - test/core/support/env_test.c
1465 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001466 - gpr_test_util
1467 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001468- name: gpr_histogram_test
1469 build: test
1470 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001471 src:
1472 - test/core/support/histogram_test.c
1473 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001474 - gpr_test_util
1475 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001476- name: gpr_host_port_test
1477 build: test
1478 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001479 src:
1480 - test/core/support/host_port_test.c
1481 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001482 - gpr_test_util
1483 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001484- name: gpr_load_file_test
1485 build: test
1486 language: c
1487 src:
1488 - test/core/support/load_file_test.c
1489 deps:
1490 - gpr_test_util
1491 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001492- name: gpr_log_test
1493 build: test
1494 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001495 src:
1496 - test/core/support/log_test.c
1497 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001498 - gpr_test_util
1499 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001500- name: gpr_slice_buffer_test
1501 build: test
1502 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001503 src:
1504 - test/core/support/slice_buffer_test.c
1505 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001506 - gpr_test_util
1507 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001508- name: gpr_slice_test
1509 build: test
1510 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001511 src:
1512 - test/core/support/slice_test.c
1513 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001514 - gpr_test_util
1515 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001516- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001517 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001518 build: test
1519 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001520 src:
1521 - test/core/support/stack_lockfree_test.c
1522 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001523 - gpr_test_util
1524 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001525- name: gpr_string_test
1526 build: test
1527 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001528 src:
1529 - test/core/support/string_test.c
1530 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001531 - gpr_test_util
1532 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001533- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001534 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001535 build: test
1536 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001537 src:
1538 - test/core/support/sync_test.c
1539 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001540 - gpr_test_util
1541 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001542- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001543 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001544 build: test
1545 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001546 src:
1547 - test/core/support/thd_test.c
1548 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001549 - gpr_test_util
1550 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001551- name: gpr_time_test
1552 build: test
1553 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001554 src:
1555 - test/core/support/time_test.c
1556 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001557 - gpr_test_util
1558 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001559- name: gpr_tls_test
1560 build: test
1561 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001562 src:
1563 - test/core/support/tls_test.c
1564 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001565 - gpr_test_util
1566 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001567- name: gpr_useful_test
1568 build: test
1569 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001570 src:
1571 - test/core/support/useful_test.c
1572 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001573 - gpr_test_util
1574 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001575- name: grpc_auth_context_test
1576 build: test
1577 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001578 src:
1579 - test/core/security/auth_context_test.c
1580 deps:
1581 - grpc_test_util
1582 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001583 - gpr_test_util
1584 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001585- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001586 build: test
1587 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001588 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001589 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001590 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_byte_buffer_reader_test
1596 build: test
1597 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001598 src:
1599 - test/core/surface/byte_buffer_reader_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_channel_args_test
1606 build: test
1607 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001608 src:
1609 - test/core/channel/channel_args_test.c
1610 deps:
1611 - grpc_test_util
1612 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001613 - gpr_test_util
1614 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001615- name: grpc_channel_stack_test
1616 build: test
1617 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001618 src:
1619 - test/core/channel/channel_stack_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_completion_queue_test
1626 build: test
1627 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001628 src:
1629 - test/core/surface/completion_queue_test.c
1630 deps:
1631 - grpc_test_util
1632 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001633 - gpr_test_util
1634 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001635- name: grpc_create_jwt
1636 build: tool
1637 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001638 src:
1639 - test/core/security/create_jwt.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_credentials_test
1646 build: test
1647 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001648 src:
1649 - test/core/security/credentials_test.c
1650 deps:
1651 - grpc_test_util
1652 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001653 - gpr_test_util
1654 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001655- name: grpc_fetch_oauth2
1656 build: tool
1657 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001658 src:
1659 - test/core/security/fetch_oauth2.c
1660 deps:
1661 - grpc_test_util
1662 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001663 - gpr_test_util
1664 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001665- name: grpc_invalid_channel_args_test
1666 build: test
1667 language: c
1668 src:
1669 - test/core/surface/invalid_channel_args_test.c
1670 deps:
1671 - grpc_test_util
1672 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001673 - gpr_test_util
1674 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001675- name: grpc_json_token_test
1676 build: test
1677 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001678 src:
1679 - test/core/security/json_token_test.c
1680 deps:
1681 - grpc_test_util
1682 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001683 - gpr_test_util
1684 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001685 platforms:
1686 - linux
1687 - posix
1688 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001689- name: grpc_jwt_verifier_test
1690 build: test
1691 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001692 src:
1693 - test/core/security/jwt_verifier_test.c
1694 deps:
1695 - grpc_test_util
1696 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001697 - gpr_test_util
1698 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001699- name: grpc_print_google_default_creds_token
1700 build: tool
1701 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001702 src:
1703 - test/core/security/print_google_default_creds_token.c
1704 deps:
1705 - grpc_test_util
1706 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001707 - gpr_test_util
1708 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001709- name: grpc_security_connector_test
1710 build: test
1711 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001712 src:
1713 - test/core/security/security_connector_test.c
1714 deps:
1715 - grpc_test_util
1716 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001717 - gpr_test_util
1718 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001719- name: grpc_verify_jwt
1720 build: tool
1721 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001722 src:
1723 - test/core/security/verify_jwt.c
1724 deps:
1725 - grpc_test_util
1726 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001727 - gpr_test_util
1728 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001729- name: hpack_parser_fuzzer_test
1730 build: fuzzer
1731 language: c
1732 src:
1733 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1734 deps:
1735 - grpc_test_util
1736 - grpc
1737 - gpr_test_util
1738 - gpr
1739 corpus_dirs:
1740 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001741 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07001742 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001743- name: hpack_parser_test
1744 build: test
1745 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001746 src:
1747 - test/core/transport/chttp2/hpack_parser_test.c
1748 deps:
1749 - grpc_test_util
1750 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001751 - gpr_test_util
1752 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001753- name: hpack_table_test
1754 build: test
1755 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001756 src:
1757 - test/core/transport/chttp2/hpack_table_test.c
1758 deps:
1759 - grpc_test_util
1760 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001761 - gpr_test_util
1762 - gpr
Craig Tiller21239742016-03-23 16:33:28 -07001763- name: http_fuzzer_test
1764 build: fuzzer
1765 language: c
1766 src:
1767 - test/core/http/fuzzer.c
1768 deps:
1769 - grpc_test_util
1770 - grpc
1771 - gpr_test_util
1772 - gpr
1773 corpus_dirs:
1774 - test/core/http/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001775 maxlen: 2048
Matthew Iselin1824f052016-02-10 12:16:06 +11001776- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001777 build: test
1778 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001779 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001780 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001781 deps:
1782 - grpc_test_util
1783 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001784 - gpr_test_util
1785 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001786- name: httpcli_format_request_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001787 build: test
1788 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001789 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001790 - test/core/http/format_request_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001791 deps:
1792 - grpc_test_util
1793 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001794 - gpr_test_util
1795 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001796- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001797 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001798 build: test
1799 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001800 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001801 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001802 deps:
1803 - grpc_test_util
1804 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001805 - gpr_test_util
1806 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001807 platforms:
1808 - mac
1809 - linux
1810 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001811- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001812 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001813 build: test
1814 language: c
1815 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001816 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001817 deps:
1818 - grpc_test_util
1819 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001820 - gpr_test_util
1821 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001822 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001823 - linux
yang-gf1183302015-12-07 16:02:05 -08001824- name: init_test
1825 build: test
1826 language: c
1827 src:
1828 - test/core/surface/init_test.c
1829 deps:
1830 - grpc_test_util
1831 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001832 - gpr_test_util
1833 - gpr
Craig Tiller5cb79622016-03-15 14:46:54 -07001834- name: internal_api_canary_iomgr_test
1835 build: test
1836 run: false
1837 language: c
1838 src:
1839 - test/core/internal_api_canaries/iomgr.c
1840 deps:
1841 - grpc_test_util
1842 - grpc
1843 - gpr_test_util
1844 - gpr
1845- name: internal_api_canary_support_test
1846 build: test
1847 run: false
1848 language: c
1849 src:
1850 - test/core/internal_api_canaries/iomgr.c
1851 deps:
1852 - grpc_test_util
1853 - grpc
1854 - gpr_test_util
1855 - gpr
1856- name: internal_api_canary_transport_test
1857 build: test
1858 run: false
1859 language: c
1860 src:
1861 - test/core/internal_api_canaries/iomgr.c
1862 deps:
1863 - grpc_test_util
1864 - grpc
1865 - gpr_test_util
1866 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001867- name: invalid_call_argument_test
1868 build: test
1869 language: c
1870 src:
1871 - test/core/end2end/invalid_call_argument_test.c
1872 deps:
1873 - grpc_test_util
1874 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001875 - gpr_test_util
1876 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001877- name: json_fuzzer_test
1878 build: fuzzer
1879 language: c
1880 src:
1881 - test/core/json/fuzzer.c
1882 deps:
1883 - grpc_test_util
1884 - grpc
1885 - gpr_test_util
1886 - gpr
1887 corpus_dirs:
1888 - test/core/json/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001889 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001890- name: json_rewrite
1891 build: test
1892 run: false
1893 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001894 src:
1895 - test/core/json/json_rewrite.c
1896 deps:
1897 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001898 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001899- name: json_rewrite_test
1900 build: test
1901 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001902 src:
1903 - test/core/json/json_rewrite_test.c
1904 deps:
1905 - grpc_test_util
1906 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001907 - gpr_test_util
1908 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001909- name: json_stream_error_test
1910 build: test
1911 language: c
1912 src:
1913 - test/core/json/json_stream_error_test.c
1914 deps:
1915 - grpc_test_util
1916 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001917 - gpr_test_util
1918 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001919- name: json_test
1920 build: test
1921 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001922 src:
1923 - test/core/json/json_test.c
1924 deps:
1925 - grpc_test_util
1926 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001927 - gpr_test_util
1928 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001929- name: lame_client_test
1930 build: test
1931 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001932 src:
1933 - test/core/surface/lame_client_test.c
1934 deps:
1935 - grpc_test_util
1936 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001937 - gpr_test_util
1938 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001939- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001940 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001941 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001942 build: test
1943 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001944 src:
1945 - test/core/client_config/lb_policies_test.c
1946 deps:
1947 - grpc_test_util
1948 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001949 - gpr_test_util
1950 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001951- name: low_level_ping_pong_benchmark
1952 build: benchmark
1953 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001954 src:
1955 - test/core/network_benchmarks/low_level_ping_pong.c
1956 deps:
1957 - grpc_test_util
1958 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001959 - gpr_test_util
1960 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001961 platforms:
1962 - mac
1963 - linux
1964 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001965- name: message_compress_test
1966 build: test
1967 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001968 src:
1969 - test/core/compression/message_compress_test.c
1970 deps:
1971 - grpc_test_util
1972 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001973 - gpr_test_util
1974 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001975- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001976 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001977 build: test
1978 language: c
1979 src:
1980 - test/core/census/mlog_test.c
1981 deps:
1982 - grpc_test_util
1983 - grpc
1984 - gpr_test_util
1985 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001986- name: multiple_server_queues_test
1987 build: test
1988 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001989 src:
1990 - test/core/end2end/multiple_server_queues_test.c
1991 deps:
1992 - grpc_test_util
1993 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001994 - gpr_test_util
1995 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001996- name: murmur_hash_test
1997 build: test
1998 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001999 src:
2000 - test/core/support/murmur_hash_test.c
2001 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08002002 - gpr_test_util
2003 - gpr
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002004- name: nanopb_fuzzer_response_test
2005 build: fuzzer
2006 language: c
2007 src:
2008 - test/core/nanopb/fuzzer_response.c
2009 deps:
2010 - grpc_test_util
2011 - grpc
2012 - gpr_test_util
2013 - gpr
2014 corpus_dirs:
2015 - test/core/nanopb/corpus_response
Craig Tillerf64df112016-04-05 21:27:41 -07002016 maxlen: 128
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002017- name: nanopb_fuzzer_serverlist_test
2018 build: fuzzer
2019 language: c
2020 src:
2021 - test/core/nanopb/fuzzer_serverlist.c
2022 deps:
2023 - grpc_test_util
2024 - grpc
2025 - gpr_test_util
2026 - gpr
2027 corpus_dirs:
2028 - test/core/nanopb/corpus_serverlist
Craig Tillerf64df112016-04-05 21:27:41 -07002029 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002030- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002031 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002032 build: test
2033 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002034 src:
2035 - test/core/end2end/no_server_test.c
2036 deps:
2037 - grpc_test_util
2038 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002039 - gpr_test_util
2040 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002041- name: resolve_address_test
2042 build: test
2043 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002044 src:
2045 - test/core/iomgr/resolve_address_test.c
2046 deps:
2047 - grpc_test_util
2048 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002049 - gpr_test_util
2050 - gpr
yang-gd482e592015-12-10 14:04:00 -08002051- name: secure_channel_create_test
2052 build: test
2053 language: c
2054 src:
2055 - test/core/surface/secure_channel_create_test.c
2056 deps:
2057 - grpc_test_util
2058 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002059 - gpr_test_util
2060 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002061- name: secure_endpoint_test
2062 build: test
2063 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002064 src:
2065 - test/core/security/secure_endpoint_test.c
2066 deps:
2067 - grpc_test_util
2068 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002069 - gpr_test_util
2070 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08002071- name: server_chttp2_test
2072 build: test
2073 language: c
2074 src:
2075 - test/core/surface/server_chttp2_test.c
2076 deps:
2077 - grpc_test_util
2078 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002079 - gpr_test_util
2080 - gpr
Craig Tillerdf262c62016-04-02 13:53:49 -07002081- name: server_fuzzer
2082 build: fuzzer
2083 language: c
2084 src:
2085 - test/core/end2end/fuzzers/server_fuzzer.c
2086 deps:
2087 - grpc_test_util
2088 - grpc
2089 - gpr_test_util
2090 - gpr
2091 corpus_dirs:
2092 - test/core/end2end/fuzzers/server_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07002093 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07002094 maxlen: 2048
yang-gc3d94fb2015-12-10 14:38:00 -08002095- name: server_test
2096 build: test
2097 language: c
2098 src:
2099 - test/core/surface/server_test.c
2100 deps:
2101 - grpc_test_util
2102 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002103 - gpr_test_util
2104 - gpr
yang-gc9fca182015-11-06 16:41:33 -08002105- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002106 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08002107 build: test
2108 language: c
2109 src:
2110 - test/core/client_config/set_initial_connect_string_test.c
2111 deps:
2112 - test_tcp_server
2113 - grpc_test_util
2114 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002115 - gpr_test_util
2116 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08002117- name: sockaddr_resolver_test
2118 build: test
2119 language: c
2120 src:
2121 - test/core/client_config/resolvers/sockaddr_resolver_test.c
2122 deps:
2123 - grpc_test_util
2124 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002125 - gpr_test_util
2126 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002127- name: sockaddr_utils_test
2128 build: test
2129 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002130 src:
2131 - test/core/iomgr/sockaddr_utils_test.c
2132 deps:
2133 - grpc_test_util
2134 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002135 - gpr_test_util
2136 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002137- name: socket_utils_test
2138 build: test
2139 language: c
2140 src:
2141 - test/core/iomgr/socket_utils_test.c
2142 deps:
2143 - grpc_test_util
2144 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002145 - gpr_test_util
2146 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002147 platforms:
2148 - mac
2149 - linux
2150 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002151- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002152 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002153 build: test
2154 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002155 src:
2156 - test/core/iomgr/tcp_client_posix_test.c
2157 deps:
2158 - grpc_test_util
2159 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002160 - gpr_test_util
2161 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002162 platforms:
2163 - mac
2164 - linux
2165 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002166- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002167 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002168 build: test
2169 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002170 src:
2171 - test/core/iomgr/tcp_posix_test.c
2172 deps:
2173 - grpc_test_util
2174 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002175 - gpr_test_util
2176 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002177 platforms:
2178 - mac
2179 - linux
2180 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002181- name: tcp_server_posix_test
2182 build: test
2183 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002184 src:
2185 - test/core/iomgr/tcp_server_posix_test.c
2186 deps:
2187 - grpc_test_util
2188 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002189 - gpr_test_util
2190 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002191 platforms:
2192 - mac
2193 - linux
2194 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002195- name: time_averaged_stats_test
2196 build: test
2197 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002198 src:
2199 - test/core/iomgr/time_averaged_stats_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: timeout_encoding_test
2206 build: test
2207 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002208 src:
2209 - test/core/transport/chttp2/timeout_encoding_test.c
2210 deps:
2211 - grpc_test_util
2212 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002213 - gpr_test_util
2214 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002215- name: timer_heap_test
2216 build: test
2217 language: c
2218 src:
2219 - test/core/iomgr/timer_heap_test.c
2220 deps:
2221 - grpc_test_util
2222 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002223 - gpr_test_util
2224 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002225- name: timer_list_test
2226 build: test
2227 language: c
2228 src:
2229 - test/core/iomgr/timer_list_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: timers_test
2236 build: test
2237 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002238 src:
2239 - test/core/profiling/timers_test.c
2240 deps:
2241 - grpc_test_util
2242 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002243 - gpr_test_util
2244 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08002245- name: transport_connectivity_state_test
2246 build: test
2247 language: c
2248 src:
2249 - test/core/transport/connectivity_state_test.c
2250 deps:
2251 - grpc_test_util
2252 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002253 - gpr_test_util
2254 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002255- name: transport_metadata_test
2256 build: test
2257 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002258 src:
2259 - test/core/transport/metadata_test.c
2260 deps:
2261 - grpc_test_util
2262 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002263 - gpr_test_util
2264 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002265- name: transport_security_test
2266 build: test
2267 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002268 src:
2269 - test/core/tsi/transport_security_test.c
2270 deps:
2271 - grpc_test_util
2272 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002273 - gpr_test_util
2274 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002275 platforms:
2276 - linux
2277 - posix
2278 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002279- name: udp_server_test
2280 build: test
2281 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002282 src:
2283 - test/core/iomgr/udp_server_test.c
2284 deps:
2285 - grpc_test_util
2286 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002287 - gpr_test_util
2288 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002289 platforms:
2290 - mac
2291 - linux
2292 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002293- name: uri_fuzzer_test
2294 build: fuzzer
2295 language: c
2296 src:
2297 - test/core/client_config/uri_fuzzer_test.c
2298 deps:
2299 - grpc_test_util
2300 - grpc
2301 - gpr_test_util
2302 - gpr
2303 corpus_dirs:
2304 - test/core/client_config/uri_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002305 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002306- name: uri_parser_test
2307 build: test
2308 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002309 src:
2310 - test/core/client_config/uri_parser_test.c
2311 deps:
2312 - grpc_test_util
2313 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002314 - gpr_test_util
2315 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002316- name: workqueue_test
2317 build: test
2318 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002319 src:
2320 - test/core/iomgr/workqueue_test.c
2321 deps:
2322 - grpc_test_util
2323 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002324 - gpr_test_util
2325 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002326 platforms:
2327 - mac
2328 - linux
2329 - posix
vjpai04e992a2016-02-10 16:58:38 -08002330- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002331 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002332 build: test
2333 language: c++
2334 src:
2335 - test/cpp/common/alarm_cpp_test.cc
2336 deps:
2337 - grpc++_test_util
2338 - grpc_test_util
2339 - grpc++
2340 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002341 - gpr_test_util
2342 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002343- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002344 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002345 build: test
2346 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002347 src:
2348 - test/cpp/end2end/async_end2end_test.cc
2349 deps:
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 Tillerbf4b2242015-08-31 15:53:53 -07002356- name: async_streaming_ping_pong_test
2357 build: test
2358 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002359 src:
2360 - test/cpp/qps/async_streaming_ping_pong_test.cc
2361 deps:
2362 - qps
2363 - grpc++_test_util
2364 - grpc_test_util
2365 - grpc++
2366 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002367 - gpr_test_util
2368 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002369 platforms:
2370 - mac
2371 - linux
2372 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002373- name: async_unary_ping_pong_test
2374 build: test
2375 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002376 src:
2377 - test/cpp/qps/async_unary_ping_pong_test.cc
2378 deps:
2379 - qps
2380 - grpc++_test_util
2381 - grpc_test_util
2382 - grpc++
2383 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002384 - gpr_test_util
2385 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002386 platforms:
2387 - mac
2388 - linux
2389 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002390- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002391 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002392 build: test
2393 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002394 src:
2395 - test/cpp/common/auth_property_iterator_test.cc
2396 deps:
2397 - grpc++_test_util
2398 - grpc_test_util
2399 - grpc++
2400 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002401 - gpr_test_util
2402 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002403- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002404 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002405 build: test
2406 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002407 src:
yang-g52705592015-11-25 11:45:33 -08002408 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002409 deps:
2410 - grpc++
2411 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002412 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002413- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002414 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002415 build: test
2416 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002417 src:
2418 - test/cpp/util/cli_call_test.cc
2419 deps:
2420 - grpc++_test_util
2421 - grpc_test_util
2422 - grpc++
2423 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002424 - gpr_test_util
2425 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002426- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002427 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002428 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002429 build: test
2430 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002431 src:
2432 - test/cpp/end2end/client_crash_test.cc
2433 deps:
2434 - grpc++_test_util
2435 - grpc_test_util
2436 - grpc++
2437 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002438 - gpr_test_util
2439 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002440 platforms:
2441 - mac
2442 - linux
2443 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002444- name: client_crash_test_server
2445 build: test
2446 run: false
2447 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002448 src:
2449 - test/cpp/end2end/client_crash_test_server.cc
2450 deps:
2451 - grpc++_test_util
2452 - grpc_test_util
2453 - grpc++
2454 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002455 - gpr_test_util
2456 - gpr
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002457- name: codegen_test_full
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002458 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002459 build: test
2460 language: c++
2461 src:
2462 - src/proto/grpc/testing/control.proto
2463 - src/proto/grpc/testing/messages.proto
2464 - src/proto/grpc/testing/payloads.proto
2465 - src/proto/grpc/testing/perf_db.proto
2466 - src/proto/grpc/testing/services.proto
2467 - src/proto/grpc/testing/stats.proto
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002468 - test/cpp/codegen/codegen_test_full.cc
2469 deps:
2470 - grpc++
2471 - grpc
2472 - gpr
2473 filegroups:
2474 - grpc++_codegen
2475- name: codegen_test_minimal
2476 gtest: true
2477 build: test
2478 language: c++
2479 src:
2480 - src/proto/grpc/testing/control.proto
2481 - src/proto/grpc/testing/messages.proto
2482 - src/proto/grpc/testing/payloads.proto
2483 - src/proto/grpc/testing/perf_db.proto
2484 - src/proto/grpc/testing/services.proto
2485 - src/proto/grpc/testing/stats.proto
2486 - test/cpp/codegen/codegen_test_minimal.cc
Craig Tiller03d8f2f2016-04-07 08:02:16 -07002487 filegroups:
2488 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -07002489- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002490 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002491 build: test
2492 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002493 src:
2494 - test/cpp/client/credentials_test.cc
2495 deps:
2496 - grpc++
2497 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002498 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002499- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002500 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002501 build: test
2502 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002503 src:
2504 - test/cpp/util/byte_buffer_test.cc
2505 deps:
2506 - grpc_test_util
2507 - grpc++
2508 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002509 - gpr_test_util
2510 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002511- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002512 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002513 build: test
2514 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002515 src:
2516 - test/cpp/util/slice_test.cc
2517 deps:
2518 - grpc_test_util
2519 - grpc++
2520 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002521 - gpr_test_util
2522 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002523- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002524 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002525 build: test
2526 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002527 src:
2528 - test/cpp/util/string_ref_test.cc
2529 deps:
2530 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002531- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002532 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002533 build: test
2534 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002535 src:
2536 - test/cpp/util/time_test.cc
2537 deps:
2538 - grpc_test_util
2539 - grpc++
2540 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002541 - gpr_test_util
2542 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002543- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002544 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002545 cpu_cost: 0.5
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/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
vjpai083dc622016-01-11 09:41:17 -08002557- name: generic_async_streaming_ping_pong_test
2558 build: test
2559 language: c++
2560 src:
2561 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2562 deps:
2563 - qps
2564 - grpc++_test_util
2565 - grpc_test_util
2566 - grpc++
2567 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002568 - gpr_test_util
2569 - gpr
vjpai083dc622016-01-11 09:41:17 -08002570 platforms:
2571 - mac
2572 - linux
2573 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002574- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002575 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002576 build: test
2577 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002578 src:
2579 - test/cpp/end2end/generic_end2end_test.cc
2580 deps:
2581 - grpc++_test_util
2582 - grpc_test_util
2583 - grpc++
2584 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002585 - gpr_test_util
2586 - gpr
yang-gb8aa58b2016-04-14 15:50:50 -07002587- name: golden_file_test
2588 gtest: true
2589 build: test
2590 language: c++
2591 src:
2592 - src/proto/grpc/testing/compiler_test.proto
2593 - test/cpp/codegen/golden_file_test.cc
2594 deps:
2595 - grpc++
2596 - grpc
2597 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002598- name: grpc_cli
2599 build: test
2600 run: false
2601 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002602 src:
2603 - test/cpp/util/grpc_cli.cc
2604 deps:
2605 - grpc++_test_util
2606 - grpc_test_util
2607 - grpc++
2608 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002609 - gpr_test_util
2610 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002611 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002612- name: grpc_cpp_plugin
2613 build: protoc
2614 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002615 src:
2616 - src/compiler/cpp_plugin.cc
2617 deps:
2618 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002619 secure: false
2620 vs_config_type: Application
2621 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2622- name: grpc_csharp_plugin
2623 build: protoc
2624 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002625 src:
2626 - src/compiler/csharp_plugin.cc
2627 deps:
2628 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002629 secure: false
2630 vs_config_type: Application
2631 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
murgatroid99d2ee81f2016-02-26 11:10:33 -08002632- name: grpc_node_plugin
2633 build: protoc
2634 language: c++
2635 src:
2636 - src/compiler/node_plugin.cc
2637 deps:
2638 - grpc_plugin_support
2639 secure: false
2640 vs_config_type: Application
Craig Tillerbf4b2242015-08-31 15:53:53 -07002641- name: grpc_objective_c_plugin
2642 build: protoc
2643 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002644 src:
2645 - src/compiler/objective_c_plugin.cc
2646 deps:
2647 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002648 secure: false
2649 vs_config_type: Application
2650 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2651- name: grpc_python_plugin
2652 build: protoc
2653 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002654 src:
2655 - src/compiler/python_plugin.cc
2656 deps:
2657 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002658 secure: false
2659 vs_config_type: Application
2660 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2661- name: grpc_ruby_plugin
2662 build: protoc
2663 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002664 src:
2665 - src/compiler/ruby_plugin.cc
2666 deps:
2667 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002668 secure: false
2669 vs_config_type: Application
2670 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002671- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002672 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002673 build: test
2674 language: c++
2675 src:
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002676 - src/proto/grpc/lb/v1/load_balancer.proto
Craig Tillereb841e22016-02-11 15:49:16 -08002677 - test/cpp/grpclb/grpclb_api_test.cc
2678 deps:
2679 - grpc++_test_util
2680 - grpc_test_util
2681 - grpc++
2682 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002683- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002684 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002685 build: test
2686 language: c++
2687 src:
2688 - test/cpp/end2end/hybrid_end2end_test.cc
2689 deps:
2690 - grpc++_test_util
2691 - grpc_test_util
2692 - grpc++
2693 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002694 - gpr_test_util
2695 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002696- name: interop_client
2697 build: test
2698 run: false
2699 language: c++
2700 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002701 deps:
2702 - interop_client_main
2703 - interop_client_helper
2704 - grpc++_test_util
2705 - grpc_test_util
2706 - grpc++
2707 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002708 - gpr_test_util
2709 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002710 - grpc++_test_config
2711 platforms:
2712 - mac
2713 - linux
2714 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002715- name: interop_server
2716 build: test
2717 run: false
2718 language: c++
2719 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002720 deps:
2721 - interop_server_main
2722 - interop_server_helper
2723 - grpc++_test_util
2724 - grpc_test_util
2725 - grpc++
2726 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002727 - gpr_test_util
2728 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002729 - grpc++_test_config
2730 platforms:
2731 - mac
2732 - linux
2733 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002734- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002735 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002736 build: test
2737 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002738 src:
2739 - test/cpp/interop/interop_test.cc
2740 deps:
2741 - grpc_test_util
2742 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002743 - gpr_test_util
2744 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002745 platforms:
2746 - mac
2747 - linux
2748 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002749- name: json_run_localhost
2750 build: test
2751 run: false
2752 language: c++
2753 src:
2754 - test/cpp/qps/json_run_localhost.cc
2755 deps:
2756 - grpc++_test_util
2757 - grpc_test_util
2758 - grpc++
2759 - grpc
2760 - gpr_test_util
2761 - gpr
2762 - grpc++_test_config
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002763- name: metrics_client
2764 build: test
2765 run: false
2766 language: c++
2767 headers:
2768 - test/cpp/util/metrics_server.h
2769 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002770 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002771 - test/cpp/interop/metrics_client.cc
2772 deps:
2773 - grpc++
2774 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002775 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002776 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002777- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002778 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002779 build: test
2780 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002781 src:
2782 - test/cpp/end2end/mock_test.cc
2783 deps:
2784 - grpc++_test_util
2785 - grpc_test_util
2786 - grpc++
2787 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002788 - gpr_test_util
2789 - gpr
Yuchen Zeng91c51a72016-05-20 14:46:49 -07002790- name: proto_server_reflection_test
2791 gtest: true
2792 build: test
2793 language: c++
2794 headers:
2795 - test/cpp/util/proto_reflection_descriptor_database.h
2796 src:
2797 - test/cpp/end2end/proto_server_reflection_test.cc
2798 - test/cpp/util/proto_reflection_descriptor_database.cc
2799 deps:
2800 - grpc++_reflection
2801 - grpc++_test_util
2802 - grpc_test_util
2803 - grpc++
2804 - grpc
2805 - gpr_test_util
2806 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002807- name: qps_interarrival_test
2808 build: test
2809 run: false
2810 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002811 src:
2812 - test/cpp/qps/qps_interarrival_test.cc
2813 deps:
2814 - qps
2815 - grpc++_test_util
2816 - grpc_test_util
2817 - grpc++
2818 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002819 - gpr_test_util
2820 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002821 platforms:
2822 - mac
2823 - linux
2824 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002825- name: qps_json_driver
2826 build: test
2827 run: false
2828 language: c++
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002829 headers:
2830 - test/cpp/qps/parse_json.h
Craig Tiller0bda0b32016-03-03 12:51:53 -08002831 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002832 - test/cpp/qps/parse_json.cc
Craig Tiller0bda0b32016-03-03 12:51:53 -08002833 - test/cpp/qps/qps_json_driver.cc
2834 deps:
2835 - qps
2836 - grpc++_test_util
2837 - grpc_test_util
2838 - grpc++
2839 - grpc
2840 - gpr_test_util
2841 - gpr
2842 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002843- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002844 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002845 build: test
2846 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002847 src:
2848 - test/cpp/qps/qps_openloop_test.cc
2849 deps:
2850 - qps
2851 - grpc++_test_util
2852 - grpc_test_util
2853 - grpc++
2854 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002855 - gpr_test_util
2856 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002857 - grpc++_test_config
2858 platforms:
2859 - mac
2860 - linux
2861 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002862- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002863 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002864 build: test
2865 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002866 src:
2867 - test/cpp/qps/qps_test.cc
2868 deps:
2869 - qps
2870 - grpc++_test_util
2871 - grpc_test_util
2872 - grpc++
2873 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002874 - gpr_test_util
2875 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002876 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002877 platforms:
2878 - mac
2879 - linux
2880 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002881- name: qps_worker
Craig Tiller0bda0b32016-03-03 12:51:53 -08002882 build: test
2883 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002884 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002885 headers:
2886 - test/cpp/qps/client.h
2887 - test/cpp/qps/server.h
2888 src:
2889 - test/cpp/qps/worker.cc
2890 deps:
2891 - qps
2892 - grpc++_test_util
2893 - grpc_test_util
2894 - grpc++
2895 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002896 - gpr_test_util
2897 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002898 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002899- name: reconnect_interop_client
2900 build: test
2901 run: false
2902 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002903 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002904 - src/proto/grpc/testing/empty.proto
2905 - src/proto/grpc/testing/messages.proto
2906 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002907 - test/cpp/interop/reconnect_interop_client.cc
2908 deps:
2909 - grpc++_test_util
2910 - grpc_test_util
2911 - grpc++
2912 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002913 - gpr_test_util
2914 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002915 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002916- name: reconnect_interop_server
2917 build: test
2918 run: false
2919 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002920 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002921 - src/proto/grpc/testing/empty.proto
2922 - src/proto/grpc/testing/messages.proto
2923 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002924 - test/cpp/interop/reconnect_interop_server.cc
2925 deps:
2926 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002927 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002928 - grpc++_test_util
2929 - grpc_test_util
2930 - grpc++
2931 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002932 - gpr_test_util
2933 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002934 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002935- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002936 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002937 build: test
2938 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002939 src:
2940 - test/cpp/common/secure_auth_context_test.cc
2941 deps:
2942 - grpc++_test_util
2943 - grpc_test_util
2944 - grpc++
2945 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002946 - gpr_test_util
2947 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002948- name: secure_sync_unary_ping_pong_test
2949 build: test
2950 language: c++
2951 src:
2952 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2953 deps:
2954 - qps
2955 - grpc++_test_util
2956 - grpc_test_util
2957 - grpc++
2958 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002959 - gpr_test_util
2960 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002961 platforms:
2962 - mac
2963 - linux
2964 - posix
Yuchen Zenga42ec212016-04-29 13:03:06 -07002965- name: server_builder_plugin_test
2966 gtest: true
2967 build: test
2968 language: c++
2969 src:
2970 - test/cpp/end2end/server_builder_plugin_test.cc
2971 deps:
2972 - grpc++_test_util
2973 - grpc_test_util
2974 - grpc++
2975 - grpc
2976 - gpr_test_util
2977 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002978- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002979 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002980 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002981 build: test
2982 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002983 src:
2984 - test/cpp/end2end/server_crash_test.cc
2985 deps:
2986 - grpc++_test_util
2987 - grpc_test_util
2988 - grpc++
2989 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002990 - gpr_test_util
2991 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002992 platforms:
2993 - mac
2994 - linux
2995 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002996- name: server_crash_test_client
2997 build: test
2998 run: false
2999 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003000 src:
3001 - test/cpp/end2end/server_crash_test_client.cc
3002 deps:
3003 - grpc++_test_util
3004 - grpc_test_util
3005 - grpc++
3006 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003007 - gpr_test_util
3008 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003009- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003010 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003011 build: test
3012 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003013 src:
3014 - test/cpp/end2end/shutdown_test.cc
3015 deps:
3016 - grpc++_test_util
3017 - grpc_test_util
3018 - grpc++
3019 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003020 - gpr_test_util
3021 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003022- name: status_test
3023 build: test
3024 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003025 src:
3026 - test/cpp/util/status_test.cc
3027 deps:
3028 - grpc_test_util
3029 - grpc++
3030 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003031 - gpr_test_util
3032 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003033- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003034 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003035 build: test
3036 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003037 src:
3038 - test/cpp/end2end/streaming_throughput_test.cc
3039 deps:
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
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003050- name: stress_test
3051 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07003052 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003053 language: c++
3054 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07003055 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003056 - test/cpp/interop/interop_client.h
3057 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003058 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003059 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003060 - src/proto/grpc/testing/empty.proto
3061 - src/proto/grpc/testing/messages.proto
3062 - src/proto/grpc/testing/metrics.proto
3063 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003064 - test/cpp/interop/interop_client.cc
3065 - test/cpp/interop/stress_interop_client.cc
3066 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003067 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003068 deps:
3069 - grpc++_test_util
3070 - grpc_test_util
3071 - grpc++
3072 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003073 - gpr_test_util
3074 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003075 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07003076- name: sync_streaming_ping_pong_test
3077 build: test
3078 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003079 src:
3080 - test/cpp/qps/sync_streaming_ping_pong_test.cc
3081 deps:
3082 - qps
3083 - grpc++_test_util
3084 - grpc_test_util
3085 - grpc++
3086 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003087 - gpr_test_util
3088 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003089 platforms:
3090 - mac
3091 - linux
3092 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003093- name: sync_unary_ping_pong_test
3094 build: test
3095 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003096 src:
3097 - test/cpp/qps/sync_unary_ping_pong_test.cc
3098 deps:
3099 - qps
3100 - grpc++_test_util
3101 - grpc_test_util
3102 - grpc++
3103 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003104 - gpr_test_util
3105 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003106 platforms:
3107 - mac
3108 - linux
3109 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003110- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003111 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08003112 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07003113 build: test
3114 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003115 src:
3116 - test/cpp/end2end/thread_stress_test.cc
3117 deps:
3118 - grpc++_test_util
3119 - grpc_test_util
3120 - grpc++
3121 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003122 - gpr_test_util
3123 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003124- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003125 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003126 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07003127 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07003128 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003129 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003130 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07003131 - test/cpp/end2end/zookeeper_test.cc
3132 deps:
3133 - grpc++_test_util
3134 - grpc_test_util
3135 - grpc++
3136 - grpc_zookeeper
3137 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003138 - gpr_test_util
3139 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003140 external_deps:
3141 - zookeeper
3142 platforms:
3143 - linux
Craig Tillerab230452016-01-04 08:18:43 -08003144- name: public_headers_must_be_c89
3145 build: test
3146 language: c89
3147 src:
3148 - test/core/surface/public_headers_must_be_c89.c
3149 deps:
3150 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003151 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003152vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07003153- linkage: static
3154 name: grpc.dependencies.zlib
3155 props: false
3156 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003157 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08003158- linkage: static
3159 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07003160 props: true
3161 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003162 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07003163- name: gflags
3164 props: false
3165 redist: false
3166 version: 2.1.2.1
3167- name: gtest
3168 props: false
3169 redist: false
3170 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08003171configs:
3172 asan:
3173 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003174 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3175 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003176 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003177 LD: clang
3178 LDFLAGS: -fsanitize=address
3179 LDXX: clang++
3180 compile_the_world: true
3181 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08003182 ASAN_OPTIONS: detect_leaks=1:color=always
3183 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08003184 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003185 asan-noleaks:
3186 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003187 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3188 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003189 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003190 LD: clang
3191 LDFLAGS: -fsanitize=address
3192 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08003193 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08003194 test_environ:
3195 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08003196 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07003197 asan-trace-cmp:
3198 CC: clang
Craig Tillerff822392016-03-23 21:46:52 -07003199 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize-coverage=trace-cmp -fsanitize=address
3200 -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerae945942016-03-23 21:43:58 -07003201 CXX: clang++
3202 LD: clang
3203 LDFLAGS: -fsanitize=address
3204 LDXX: clang++
3205 compile_the_world: true
3206 test_environ:
3207 ASAN_OPTIONS: detect_leaks=1:color=always
3208 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3209 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003210 basicprof:
3211 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
3212 DEFINES: NDEBUG
3213 dbg:
3214 CPPFLAGS: -O0
3215 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08003216 easan:
3217 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003218 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3219 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tiller3af3f742016-02-28 21:53:13 -08003220 CXX: clang++
3221 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3222 LD: clang
3223 LDFLAGS: -fsanitize=address
3224 LDXX: clang++
3225 compile_the_world: true
3226 test_environ:
3227 ASAN_OPTIONS: detect_leaks=1:color=always
3228 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3229 timeout_multiplier: 3
3230 edbg:
3231 CPPFLAGS: -O0
3232 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3233 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08003234 CC: clang
3235 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003236 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08003237 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08003238 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08003239 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003240 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08003241 LDXX: clang++
3242 compile_the_world: true
3243 test_environ:
3244 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
3245 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003246 gcov:
3247 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003248 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08003249 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08003250 DEFINES: _DEBUG DEBUG GPR_GCOV
3251 LD: gcc
3252 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
3253 LDXX: g++
3254 helgrind:
3255 CPPFLAGS: -O0
3256 DEFINES: _DEBUG DEBUG
3257 LDFLAGS: -rdynamic
3258 timeout_multiplier: 20
3259 valgrind: --tool=helgrind
3260 memcheck:
3261 CPPFLAGS: -O0
3262 DEFINES: _DEBUG DEBUG
3263 LDFLAGS: -rdynamic
3264 timeout_multiplier: 10
3265 valgrind: --tool=memcheck --leak-check=full
3266 msan:
3267 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003268 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
3269 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3270 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003271 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003272 DEFINES: NDEBUG
3273 LD: clang
3274 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3275 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
3276 LDXX: clang++
3277 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08003278 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08003279 mutrace:
3280 CPPFLAGS: -O0
3281 DEFINES: _DEBUG DEBUG
3282 LDFLAGS: -rdynamic
3283 opt:
3284 CPPFLAGS: -O2
3285 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08003286 stapprof:
3287 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
3288 DEFINES: NDEBUG
3289 tsan:
3290 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003291 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003292 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003293 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003294 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003295 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08003296 LDXX: clang++
3297 compile_the_world: true
3298 test_environ:
3299 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08003300 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003301 ubsan:
3302 CC: clang
yang-g6ce4d0b2016-05-12 16:43:17 -07003303 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=undefined,unsigned-integer-overflow
3304 -fno-omit-frame-pointer -Wno-unused-command-line-argument -Wvarargs
Craig Tillera0f85172016-01-20 15:56:06 -08003305 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003306 DEFINES: NDEBUG
3307 LD: clang
yang-g6ce4d0b2016-05-12 16:43:17 -07003308 LDFLAGS: -fsanitize=undefined,unsigned-integer-overflow
Craig Tillera0f85172016-01-20 15:56:06 -08003309 LDXX: clang++
3310 compile_the_world: true
yang-g6ce4d0b2016-05-12 16:43:17 -07003311 test_environ:
3312 UBSAN_OPTIONS: print_stacktrace=1
Craig Tillera0f85172016-01-20 15:56:06 -08003313 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003314defaults:
3315 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003316 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Craig Tiller78222f72016-05-10 09:55:38 -07003317 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003318 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003319 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003320 global:
3321 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
3322 LDFLAGS: -g
3323 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01003324 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01003325 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08003326node_modules:
3327- deps:
3328 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003329 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08003330 - boringssl
3331 - z
murgatroid9994a75412015-11-19 14:04:53 -08003332 headers:
3333 - src/node/ext/byte_buffer.h
3334 - src/node/ext/call.h
3335 - src/node/ext/call_credentials.h
3336 - src/node/ext/channel.h
3337 - src/node/ext/channel_credentials.h
3338 - src/node/ext/completion_queue_async_worker.h
3339 - src/node/ext/server.h
3340 - src/node/ext/server_credentials.h
3341 - src/node/ext/timeval.h
3342 js:
3343 - src/node/index.js
3344 - src/node/src/client.js
3345 - src/node/src/common.js
3346 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08003347 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08003348 - src/node/src/metadata.js
3349 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003350 name: grpc_node
3351 src:
3352 - src/node/ext/byte_buffer.cc
3353 - src/node/ext/call.cc
3354 - src/node/ext/call_credentials.cc
3355 - src/node/ext/channel.cc
3356 - src/node/ext/channel_credentials.cc
3357 - src/node/ext/completion_queue_async_worker.cc
3358 - src/node/ext/node_grpc.cc
3359 - src/node/ext/server.cc
3360 - src/node/ext/server_credentials.cc
3361 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003362openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003363 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003364 extraction_dir: openssl-1.0.2f
3365 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003366php_config_m4:
3367 deps:
3368 - grpc
3369 - gpr
3370 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003371 headers:
3372 - src/php/ext/grpc/byte_buffer.h
3373 - src/php/ext/grpc/call.h
3374 - src/php/ext/grpc/call_credentials.h
3375 - src/php/ext/grpc/channel.h
3376 - src/php/ext/grpc/channel_credentials.h
3377 - src/php/ext/grpc/completion_queue.h
3378 - src/php/ext/grpc/php_grpc.h
3379 - src/php/ext/grpc/server.h
3380 - src/php/ext/grpc/server_credentials.h
3381 - src/php/ext/grpc/timeval.h
3382 src:
3383 - src/php/ext/grpc/byte_buffer.c
3384 - src/php/ext/grpc/call.c
3385 - src/php/ext/grpc/call_credentials.c
3386 - src/php/ext/grpc/channel.c
3387 - src/php/ext/grpc/channel_credentials.c
3388 - src/php/ext/grpc/completion_queue.c
3389 - src/php/ext/grpc/php_grpc.c
3390 - src/php/ext/grpc/server.c
3391 - src/php/ext/grpc/server_credentials.c
3392 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003393python_dependencies:
3394 deps:
3395 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003396 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003397 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003398 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003399ruby_gem:
3400 deps:
3401 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003402 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003403 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003404 - z