blob: ac61612da4074462510463f7da4ceb6eaf36a436 [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}'
903- name: grpc++_test_config
904 build: private
905 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700906 headers:
907 - test/cpp/util/test_config.h
908 src:
909 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700910- name: grpc++_test_util
911 build: private
912 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700913 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800914 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800915 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700916 - test/cpp/util/cli_call.h
917 - test/cpp/util/create_test_channel.h
918 - test/cpp/util/string_ref_helper.h
919 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800920 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700921 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800922 - src/proto/grpc/testing/echo_messages.proto
923 - src/proto/grpc/testing/echo.proto
924 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800925 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800926 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700927 - test/cpp/util/cli_call.cc
928 - test/cpp/util/create_test_channel.cc
929 - test/cpp/util/string_ref_helper.cc
930 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800931 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700932 deps:
933 - grpc++
934 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700935- name: grpc++_unsecure
936 build: all
937 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700938 src:
939 - src/cpp/common/insecure_create_auth_context.cc
940 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800941 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700942 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700943 baselib: true
944 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700945 filegroups:
946 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800947 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700948 secure: false
949 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
950- name: grpc_plugin_support
951 build: protoc
952 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700953 headers:
Craig Tiller25834342015-09-25 08:08:24 -0700954 - src/compiler/config.h
955 - src/compiler/cpp_generator.h
956 - src/compiler/cpp_generator_helpers.h
957 - src/compiler/csharp_generator.h
958 - src/compiler/csharp_generator_helpers.h
959 - src/compiler/generator_helpers.h
murgatroid99d2ee81f2016-02-26 11:10:33 -0800960 - src/compiler/node_generator.h
961 - src/compiler/node_generator_helpers.h
Craig Tiller25834342015-09-25 08:08:24 -0700962 - src/compiler/objective_c_generator.h
963 - src/compiler/objective_c_generator_helpers.h
964 - src/compiler/python_generator.h
965 - src/compiler/ruby_generator.h
966 - src/compiler/ruby_generator_helpers-inl.h
967 - src/compiler/ruby_generator_map-inl.h
968 - src/compiler/ruby_generator_string-inl.h
969 src:
970 - src/compiler/cpp_generator.cc
971 - src/compiler/csharp_generator.cc
murgatroid99d2ee81f2016-02-26 11:10:33 -0800972 - src/compiler/node_generator.cc
Craig Tiller25834342015-09-25 08:08:24 -0700973 - src/compiler/objective_c_generator.cc
974 - src/compiler/python_generator.cc
975 - src/compiler/ruby_generator.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800976 filegroups:
Craig Tiller03915e52016-04-07 09:15:10 -0700977 - grpc++_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700978 secure: false
979 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800980 vs_props:
981 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700982- name: interop_client_helper
983 build: private
984 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700985 headers:
986 - test/cpp/interop/client_helper.h
987 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800988 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -0700989 - test/cpp/interop/client_helper.cc
990 deps:
991 - grpc++_test_util
992 - grpc_test_util
993 - grpc++
994 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800995 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700996- name: interop_client_main
997 build: private
998 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700999 headers:
1000 - test/cpp/interop/interop_client.h
1001 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001002 - src/proto/grpc/testing/empty.proto
1003 - src/proto/grpc/testing/messages.proto
1004 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07001005 - test/cpp/interop/client.cc
1006 - test/cpp/interop/interop_client.cc
1007 deps:
1008 - interop_client_helper
1009 - grpc++_test_util
1010 - grpc_test_util
1011 - grpc++
1012 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001013 - gpr_test_util
1014 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001015 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001016- name: interop_server_helper
1017 build: private
1018 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001019 headers:
1020 - test/cpp/interop/server_helper.h
1021 src:
1022 - test/cpp/interop/server_helper.cc
1023 deps:
1024 - grpc_test_util
1025 - grpc++
1026 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001027 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001028- name: interop_server_main
1029 build: private
1030 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001031 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001032 - src/proto/grpc/testing/empty.proto
1033 - src/proto/grpc/testing/messages.proto
1034 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -08001035 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -07001036 deps:
1037 - interop_server_helper
1038 - grpc++_test_util
1039 - grpc_test_util
1040 - grpc++
1041 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001042 - gpr_test_util
1043 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001044 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001045- name: qps
1046 build: private
1047 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001048 headers:
1049 - test/cpp/qps/client.h
1050 - test/cpp/qps/driver.h
1051 - test/cpp/qps/histogram.h
1052 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -08001053 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -07001054 - test/cpp/qps/perf_db_client.h
1055 - test/cpp/qps/qps_worker.h
1056 - test/cpp/qps/report.h
1057 - test/cpp/qps/server.h
1058 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -08001059 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -07001060 - test/cpp/util/benchmark_config.h
1061 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001062 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001063 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001064 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -08001065 - src/proto/grpc/testing/control.proto
1066 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001067 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -07001068 - test/cpp/qps/client_async.cc
1069 - test/cpp/qps/client_sync.cc
1070 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -08001071 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -07001072 - test/cpp/qps/perf_db_client.cc
1073 - test/cpp/qps/qps_worker.cc
1074 - test/cpp/qps/report.cc
1075 - test/cpp/qps/server_async.cc
1076 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -08001077 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -07001078 - test/cpp/util/benchmark_config.cc
1079 deps:
1080 - grpc_test_util
1081 - grpc++_test_util
1082 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07001083- name: grpc_csharp_ext
1084 build: all
1085 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -07001086 src:
1087 - src/csharp/ext/grpc_csharp_ext.c
1088 deps:
Craig Tiller25834342015-09-25 08:08:24 -07001089 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001090 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -08001091 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -08001092 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -07001093 dll: only
1094 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -07001095 vs_packages:
1096 - grpc.dependencies.openssl
1097 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -07001098 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -07001099 vs_props:
1100 - zlib
1101 - openssl
1102 - winsock
1103 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -07001104targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001105- name: alarm_test
1106 build: test
1107 language: c
1108 src:
1109 - test/core/surface/alarm_test.c
1110 deps:
1111 - grpc_test_util
1112 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -08001113 - gpr_test_util
1114 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -08001115- name: algorithm_test
1116 build: test
1117 language: c
1118 src:
1119 - test/core/compression/algorithm_test.c
1120 deps:
1121 - grpc_test_util
1122 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001123 - gpr_test_util
1124 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -08001125- name: alloc_test
1126 build: test
1127 language: c
1128 src:
1129 - test/core/support/alloc_test.c
1130 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001131 - gpr_test_util
1132 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001133- name: alpn_test
1134 build: test
1135 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001136 src:
1137 - test/core/transport/chttp2/alpn_test.c
1138 deps:
1139 - grpc_test_util
1140 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001141 - gpr_test_util
1142 - gpr
Craig Tillerfc98f922016-04-13 08:45:06 -07001143- name: api_fuzzer
1144 build: fuzzer
1145 language: c
1146 src:
1147 - test/core/end2end/fuzzers/api_fuzzer.c
1148 deps:
1149 - grpc_test_util
1150 - grpc
1151 - gpr_test_util
1152 - gpr
1153 corpus_dirs:
1154 - test/core/end2end/fuzzers/api_fuzzer_corpus
Craig Tiller0477d7d2016-04-24 10:42:50 -07001155 dict: test/core/end2end/fuzzers/api_fuzzer.dictionary
Craig Tillerfc98f922016-04-13 08:45:06 -07001156 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001157- name: bin_encoder_test
1158 build: test
1159 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001160 src:
1161 - test/core/transport/chttp2/bin_encoder_test.c
1162 deps:
1163 - grpc_test_util
1164 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001165- name: census_context_test
1166 build: test
1167 language: c
1168 src:
1169 - test/core/census/context_test.c
1170 deps:
1171 - grpc_test_util
1172 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001173 - gpr_test_util
1174 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001175- name: channel_create_test
1176 build: test
1177 language: c
1178 src:
1179 - test/core/surface/channel_create_test.c
1180 deps:
1181 - grpc_test_util
1182 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001183 - gpr_test_util
1184 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001185- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001186 build: test
1187 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001188 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001189 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001190 deps:
1191 - grpc_test_util
1192 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001193 - gpr_test_util
1194 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001195- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001196 build: test
1197 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001198 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001199 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001200 deps:
1201 - grpc_test_util
1202 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001203 - gpr_test_util
1204 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001205- name: chttp2_stream_map_test
1206 build: test
1207 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001208 src:
1209 - test/core/transport/chttp2/stream_map_test.c
1210 deps:
1211 - grpc_test_util
1212 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001213 - gpr_test_util
1214 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001215- name: chttp2_varint_test
1216 build: test
1217 language: c
1218 src:
1219 - test/core/transport/chttp2/varint_test.c
1220 deps:
1221 - grpc_test_util
1222 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001223 - gpr_test_util
1224 - gpr
Craig Tiller845516e2016-04-11 20:49:20 -07001225- name: client_fuzzer
1226 build: fuzzer
1227 language: c
1228 src:
1229 - test/core/end2end/fuzzers/client_fuzzer.c
1230 deps:
1231 - grpc_test_util
1232 - grpc
1233 - gpr_test_util
1234 - gpr
1235 corpus_dirs:
1236 - test/core/end2end/fuzzers/client_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001237 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tiller845516e2016-04-11 20:49:20 -07001238 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001239- name: compression_test
1240 build: test
1241 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001242 src:
1243 - test/core/compression/compression_test.c
1244 deps:
1245 - grpc_test_util
1246 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001247 - gpr_test_util
1248 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001249- name: concurrent_connectivity_test
1250 build: test
1251 language: c
1252 src:
1253 - test/core/surface/concurrent_connectivity_test.c
1254 deps:
1255 - grpc_test_util
1256 - grpc
1257 - gpr_test_util
1258 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001259- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001260 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001261 build: test
1262 language: c
1263 src:
1264 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1265 deps:
1266 - grpc_test_util
1267 - grpc
1268 - gpr_test_util
1269 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001270- name: dns_resolver_test
1271 build: test
1272 language: c
1273 src:
1274 - test/core/client_config/resolvers/dns_resolver_test.c
1275 deps:
1276 - grpc_test_util
1277 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001278 - gpr_test_util
1279 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001280- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001281 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001282 build: test
1283 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001284 src:
1285 - test/core/end2end/dualstack_socket_test.c
1286 deps:
1287 - grpc_test_util
1288 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001289 - gpr_test_util
1290 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001291 platforms:
1292 - mac
1293 - linux
1294 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001295- name: endpoint_pair_test
1296 build: test
1297 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001298 src:
1299 - test/core/iomgr/endpoint_pair_test.c
1300 deps:
1301 - grpc_test_util
1302 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001303 - gpr_test_util
1304 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001305- name: fd_conservation_posix_test
1306 build: test
1307 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001308 src:
1309 - test/core/iomgr/fd_conservation_posix_test.c
1310 deps:
1311 - grpc_test_util
1312 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001313 - gpr_test_util
1314 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001315 platforms:
1316 - mac
1317 - linux
1318 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001319- name: fd_posix_test
1320 build: test
1321 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001322 src:
1323 - test/core/iomgr/fd_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: fling_client
1334 build: test
1335 run: false
1336 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001337 src:
1338 - test/core/fling/client.c
1339 deps:
1340 - grpc_test_util
1341 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001342 - gpr_test_util
1343 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001344- name: fling_server
1345 build: test
1346 run: false
1347 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001348 src:
1349 - test/core/fling/server.c
1350 deps:
1351 - grpc_test_util
1352 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001353 - gpr_test_util
1354 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001355- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001356 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001357 build: test
1358 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001359 src:
1360 - test/core/fling/fling_stream_test.c
1361 deps:
1362 - grpc_test_util
1363 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001364 - gpr_test_util
1365 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001366 platforms:
1367 - mac
1368 - linux
1369 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001370- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001371 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001372 build: test
1373 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001374 src:
1375 - test/core/fling/fling_test.c
1376 deps:
1377 - grpc_test_util
1378 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001379 - gpr_test_util
1380 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001381 platforms:
1382 - mac
1383 - linux
1384 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001385- name: gen_hpack_tables
1386 build: tool
1387 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001388 src:
1389 - tools/codegen/core/gen_hpack_tables.c
1390 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001391 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001392 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001393- name: gen_legal_metadata_characters
1394 build: tool
1395 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001396 src:
1397 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001398 deps: []
Craig Tiller1b719582016-03-24 09:06:13 -07001399- name: goaway_server_test
1400 cpu_cost: 0.1
1401 build: test
1402 language: c
1403 src:
1404 - test/core/end2end/goaway_server_test.c
1405 deps:
1406 - grpc_test_util
1407 - grpc
1408 - gpr_test_util
1409 - gpr
1410 platforms:
1411 - mac
1412 - linux
1413 - posix
Craig Tillerfba79f22015-11-23 11:06:55 -08001414- name: gpr_avl_test
1415 build: test
1416 language: c
1417 src:
1418 - test/core/support/avl_test.c
1419 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001420 - gpr_test_util
1421 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001422- name: gpr_backoff_test
1423 build: test
1424 language: c
1425 src:
1426 - test/core/support/backoff_test.c
1427 deps:
1428 - gpr_test_util
1429 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001430- name: gpr_cmdline_test
1431 build: test
1432 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001433 src:
1434 - test/core/support/cmdline_test.c
1435 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001436 - gpr_test_util
1437 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001438- name: gpr_cpu_test
1439 build: test
1440 language: c
1441 src:
1442 - test/core/support/cpu_test.c
1443 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001444 - gpr_test_util
1445 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001446- name: gpr_env_test
1447 build: test
1448 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001449 src:
1450 - test/core/support/env_test.c
1451 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001452 - gpr_test_util
1453 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001454- name: gpr_histogram_test
1455 build: test
1456 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001457 src:
1458 - test/core/support/histogram_test.c
1459 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001460 - gpr_test_util
1461 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001462- name: gpr_host_port_test
1463 build: test
1464 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001465 src:
1466 - test/core/support/host_port_test.c
1467 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001468 - gpr_test_util
1469 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001470- name: gpr_load_file_test
1471 build: test
1472 language: c
1473 src:
1474 - test/core/support/load_file_test.c
1475 deps:
1476 - gpr_test_util
1477 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001478- name: gpr_log_test
1479 build: test
1480 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001481 src:
1482 - test/core/support/log_test.c
1483 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001484 - gpr_test_util
1485 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001486- name: gpr_slice_buffer_test
1487 build: test
1488 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001489 src:
1490 - test/core/support/slice_buffer_test.c
1491 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001492 - gpr_test_util
1493 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001494- name: gpr_slice_test
1495 build: test
1496 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001497 src:
1498 - test/core/support/slice_test.c
1499 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001500 - gpr_test_util
1501 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001502- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001503 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001504 build: test
1505 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001506 src:
1507 - test/core/support/stack_lockfree_test.c
1508 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001509 - gpr_test_util
1510 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001511- name: gpr_string_test
1512 build: test
1513 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001514 src:
1515 - test/core/support/string_test.c
1516 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001517 - gpr_test_util
1518 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001519- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001520 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001521 build: test
1522 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001523 src:
1524 - test/core/support/sync_test.c
1525 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001526 - gpr_test_util
1527 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001528- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001529 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001530 build: test
1531 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001532 src:
1533 - test/core/support/thd_test.c
1534 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001535 - gpr_test_util
1536 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001537- name: gpr_time_test
1538 build: test
1539 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001540 src:
1541 - test/core/support/time_test.c
1542 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001543 - gpr_test_util
1544 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001545- name: gpr_tls_test
1546 build: test
1547 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001548 src:
1549 - test/core/support/tls_test.c
1550 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001551 - gpr_test_util
1552 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001553- name: gpr_useful_test
1554 build: test
1555 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001556 src:
1557 - test/core/support/useful_test.c
1558 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001559 - gpr_test_util
1560 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001561- name: grpc_auth_context_test
1562 build: test
1563 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001564 src:
1565 - test/core/security/auth_context_test.c
1566 deps:
1567 - grpc_test_util
1568 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001569 - gpr_test_util
1570 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001571- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001572 build: test
1573 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001574 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001575 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001576 deps:
1577 - grpc_test_util
1578 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001579 - gpr_test_util
1580 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001581- name: grpc_byte_buffer_reader_test
1582 build: test
1583 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001584 src:
1585 - test/core/surface/byte_buffer_reader_test.c
1586 deps:
1587 - grpc_test_util
1588 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001589 - gpr_test_util
1590 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001591- name: grpc_channel_args_test
1592 build: test
1593 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001594 src:
1595 - test/core/channel/channel_args_test.c
1596 deps:
1597 - grpc_test_util
1598 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001599 - gpr_test_util
1600 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001601- name: grpc_channel_stack_test
1602 build: test
1603 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001604 src:
1605 - test/core/channel/channel_stack_test.c
1606 deps:
1607 - grpc_test_util
1608 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001609 - gpr_test_util
1610 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001611- name: grpc_completion_queue_test
1612 build: test
1613 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001614 src:
1615 - test/core/surface/completion_queue_test.c
1616 deps:
1617 - grpc_test_util
1618 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001619 - gpr_test_util
1620 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001621- name: grpc_create_jwt
1622 build: tool
1623 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001624 src:
1625 - test/core/security/create_jwt.c
1626 deps:
1627 - grpc_test_util
1628 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001629 - gpr_test_util
1630 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001631- name: grpc_credentials_test
1632 build: test
1633 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001634 src:
1635 - test/core/security/credentials_test.c
1636 deps:
1637 - grpc_test_util
1638 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001639 - gpr_test_util
1640 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001641- name: grpc_fetch_oauth2
1642 build: tool
1643 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001644 src:
1645 - test/core/security/fetch_oauth2.c
1646 deps:
1647 - grpc_test_util
1648 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001649 - gpr_test_util
1650 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001651- name: grpc_invalid_channel_args_test
1652 build: test
1653 language: c
1654 src:
1655 - test/core/surface/invalid_channel_args_test.c
1656 deps:
1657 - grpc_test_util
1658 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001659 - gpr_test_util
1660 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001661- name: grpc_json_token_test
1662 build: test
1663 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001664 src:
1665 - test/core/security/json_token_test.c
1666 deps:
1667 - grpc_test_util
1668 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001669 - gpr_test_util
1670 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001671 platforms:
1672 - linux
1673 - posix
1674 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001675- name: grpc_jwt_verifier_test
1676 build: test
1677 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001678 src:
1679 - test/core/security/jwt_verifier_test.c
1680 deps:
1681 - grpc_test_util
1682 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001683 - gpr_test_util
1684 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001685- name: grpc_print_google_default_creds_token
1686 build: tool
1687 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001688 src:
1689 - test/core/security/print_google_default_creds_token.c
1690 deps:
1691 - grpc_test_util
1692 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001693 - gpr_test_util
1694 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001695- name: grpc_security_connector_test
1696 build: test
1697 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001698 src:
1699 - test/core/security/security_connector_test.c
1700 deps:
1701 - grpc_test_util
1702 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001703 - gpr_test_util
1704 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001705- name: grpc_verify_jwt
1706 build: tool
1707 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001708 src:
1709 - test/core/security/verify_jwt.c
1710 deps:
1711 - grpc_test_util
1712 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001713 - gpr_test_util
1714 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001715- name: hpack_parser_fuzzer_test
1716 build: fuzzer
1717 language: c
1718 src:
1719 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1720 deps:
1721 - grpc_test_util
1722 - grpc
1723 - gpr_test_util
1724 - gpr
1725 corpus_dirs:
1726 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001727 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07001728 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001729- name: hpack_parser_test
1730 build: test
1731 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001732 src:
1733 - test/core/transport/chttp2/hpack_parser_test.c
1734 deps:
1735 - grpc_test_util
1736 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001737 - gpr_test_util
1738 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001739- name: hpack_table_test
1740 build: test
1741 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001742 src:
1743 - test/core/transport/chttp2/hpack_table_test.c
1744 deps:
1745 - grpc_test_util
1746 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001747 - gpr_test_util
1748 - gpr
Craig Tiller21239742016-03-23 16:33:28 -07001749- name: http_fuzzer_test
1750 build: fuzzer
1751 language: c
1752 src:
1753 - test/core/http/fuzzer.c
1754 deps:
1755 - grpc_test_util
1756 - grpc
1757 - gpr_test_util
1758 - gpr
1759 corpus_dirs:
1760 - test/core/http/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001761 maxlen: 2048
Matthew Iselin1824f052016-02-10 12:16:06 +11001762- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001763 build: test
1764 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001765 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001766 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001767 deps:
1768 - grpc_test_util
1769 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001770 - gpr_test_util
1771 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001772- name: httpcli_format_request_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001773 build: test
1774 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001775 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001776 - test/core/http/format_request_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001777 deps:
1778 - grpc_test_util
1779 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001780 - gpr_test_util
1781 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001782- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001783 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001784 build: test
1785 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001786 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001787 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001788 deps:
1789 - grpc_test_util
1790 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001791 - gpr_test_util
1792 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001793 platforms:
1794 - mac
1795 - linux
1796 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001797- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001798 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001799 build: test
1800 language: c
1801 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001802 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001803 deps:
1804 - grpc_test_util
1805 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001806 - gpr_test_util
1807 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001808 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001809 - linux
yang-gf1183302015-12-07 16:02:05 -08001810- name: init_test
1811 build: test
1812 language: c
1813 src:
1814 - test/core/surface/init_test.c
1815 deps:
1816 - grpc_test_util
1817 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001818 - gpr_test_util
1819 - gpr
Craig Tiller5cb79622016-03-15 14:46:54 -07001820- name: internal_api_canary_iomgr_test
1821 build: test
1822 run: false
1823 language: c
1824 src:
1825 - test/core/internal_api_canaries/iomgr.c
1826 deps:
1827 - grpc_test_util
1828 - grpc
1829 - gpr_test_util
1830 - gpr
1831- name: internal_api_canary_support_test
1832 build: test
1833 run: false
1834 language: c
1835 src:
1836 - test/core/internal_api_canaries/iomgr.c
1837 deps:
1838 - grpc_test_util
1839 - grpc
1840 - gpr_test_util
1841 - gpr
1842- name: internal_api_canary_transport_test
1843 build: test
1844 run: false
1845 language: c
1846 src:
1847 - test/core/internal_api_canaries/iomgr.c
1848 deps:
1849 - grpc_test_util
1850 - grpc
1851 - gpr_test_util
1852 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001853- name: invalid_call_argument_test
1854 build: test
1855 language: c
1856 src:
1857 - test/core/end2end/invalid_call_argument_test.c
1858 deps:
1859 - grpc_test_util
1860 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001861 - gpr_test_util
1862 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001863- name: json_fuzzer_test
1864 build: fuzzer
1865 language: c
1866 src:
1867 - test/core/json/fuzzer.c
1868 deps:
1869 - grpc_test_util
1870 - grpc
1871 - gpr_test_util
1872 - gpr
1873 corpus_dirs:
1874 - test/core/json/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001875 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001876- name: json_rewrite
1877 build: test
1878 run: false
1879 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001880 src:
1881 - test/core/json/json_rewrite.c
1882 deps:
1883 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001884 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001885- name: json_rewrite_test
1886 build: test
1887 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001888 src:
1889 - test/core/json/json_rewrite_test.c
1890 deps:
1891 - grpc_test_util
1892 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001893 - gpr_test_util
1894 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001895- name: json_stream_error_test
1896 build: test
1897 language: c
1898 src:
1899 - test/core/json/json_stream_error_test.c
1900 deps:
1901 - grpc_test_util
1902 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001903 - gpr_test_util
1904 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001905- name: json_test
1906 build: test
1907 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001908 src:
1909 - test/core/json/json_test.c
1910 deps:
1911 - grpc_test_util
1912 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001913 - gpr_test_util
1914 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001915- name: lame_client_test
1916 build: test
1917 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001918 src:
1919 - test/core/surface/lame_client_test.c
1920 deps:
1921 - grpc_test_util
1922 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001923 - gpr_test_util
1924 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001925- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001926 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001927 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001928 build: test
1929 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001930 src:
1931 - test/core/client_config/lb_policies_test.c
1932 deps:
1933 - grpc_test_util
1934 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001935 - gpr_test_util
1936 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001937- name: low_level_ping_pong_benchmark
1938 build: benchmark
1939 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001940 src:
1941 - test/core/network_benchmarks/low_level_ping_pong.c
1942 deps:
1943 - grpc_test_util
1944 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001945 - gpr_test_util
1946 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001947 platforms:
1948 - mac
1949 - linux
1950 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001951- name: message_compress_test
1952 build: test
1953 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001954 src:
1955 - test/core/compression/message_compress_test.c
1956 deps:
1957 - grpc_test_util
1958 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001959 - gpr_test_util
1960 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001961- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001962 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001963 build: test
1964 language: c
1965 src:
1966 - test/core/census/mlog_test.c
1967 deps:
1968 - grpc_test_util
1969 - grpc
1970 - gpr_test_util
1971 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001972- name: multiple_server_queues_test
1973 build: test
1974 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001975 src:
1976 - test/core/end2end/multiple_server_queues_test.c
1977 deps:
1978 - grpc_test_util
1979 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001980 - gpr_test_util
1981 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001982- name: murmur_hash_test
1983 build: test
1984 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001985 src:
1986 - test/core/support/murmur_hash_test.c
1987 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001988 - gpr_test_util
1989 - gpr
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07001990- name: nanopb_fuzzer_response_test
1991 build: fuzzer
1992 language: c
1993 src:
1994 - test/core/nanopb/fuzzer_response.c
1995 deps:
1996 - grpc_test_util
1997 - grpc
1998 - gpr_test_util
1999 - gpr
2000 corpus_dirs:
2001 - test/core/nanopb/corpus_response
Craig Tillerf64df112016-04-05 21:27:41 -07002002 maxlen: 128
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002003- name: nanopb_fuzzer_serverlist_test
2004 build: fuzzer
2005 language: c
2006 src:
2007 - test/core/nanopb/fuzzer_serverlist.c
2008 deps:
2009 - grpc_test_util
2010 - grpc
2011 - gpr_test_util
2012 - gpr
2013 corpus_dirs:
2014 - test/core/nanopb/corpus_serverlist
Craig Tillerf64df112016-04-05 21:27:41 -07002015 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002016- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002017 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002018 build: test
2019 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002020 src:
2021 - test/core/end2end/no_server_test.c
2022 deps:
2023 - grpc_test_util
2024 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002025 - gpr_test_util
2026 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002027- name: resolve_address_test
2028 build: test
2029 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002030 src:
2031 - test/core/iomgr/resolve_address_test.c
2032 deps:
2033 - grpc_test_util
2034 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002035 - gpr_test_util
2036 - gpr
yang-gd482e592015-12-10 14:04:00 -08002037- name: secure_channel_create_test
2038 build: test
2039 language: c
2040 src:
2041 - test/core/surface/secure_channel_create_test.c
2042 deps:
2043 - grpc_test_util
2044 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002045 - gpr_test_util
2046 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002047- name: secure_endpoint_test
2048 build: test
2049 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002050 src:
2051 - test/core/security/secure_endpoint_test.c
2052 deps:
2053 - grpc_test_util
2054 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002055 - gpr_test_util
2056 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08002057- name: server_chttp2_test
2058 build: test
2059 language: c
2060 src:
2061 - test/core/surface/server_chttp2_test.c
2062 deps:
2063 - grpc_test_util
2064 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002065 - gpr_test_util
2066 - gpr
Craig Tillerdf262c62016-04-02 13:53:49 -07002067- name: server_fuzzer
2068 build: fuzzer
2069 language: c
2070 src:
2071 - test/core/end2end/fuzzers/server_fuzzer.c
2072 deps:
2073 - grpc_test_util
2074 - grpc
2075 - gpr_test_util
2076 - gpr
2077 corpus_dirs:
2078 - test/core/end2end/fuzzers/server_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07002079 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07002080 maxlen: 2048
yang-gc3d94fb2015-12-10 14:38:00 -08002081- name: server_test
2082 build: test
2083 language: c
2084 src:
2085 - test/core/surface/server_test.c
2086 deps:
2087 - grpc_test_util
2088 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002089 - gpr_test_util
2090 - gpr
yang-gc9fca182015-11-06 16:41:33 -08002091- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002092 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08002093 build: test
2094 language: c
2095 src:
2096 - test/core/client_config/set_initial_connect_string_test.c
2097 deps:
2098 - test_tcp_server
2099 - grpc_test_util
2100 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002101 - gpr_test_util
2102 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08002103- name: sockaddr_resolver_test
2104 build: test
2105 language: c
2106 src:
2107 - test/core/client_config/resolvers/sockaddr_resolver_test.c
2108 deps:
2109 - grpc_test_util
2110 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002111 - gpr_test_util
2112 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002113- name: sockaddr_utils_test
2114 build: test
2115 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002116 src:
2117 - test/core/iomgr/sockaddr_utils_test.c
2118 deps:
2119 - grpc_test_util
2120 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002121 - gpr_test_util
2122 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002123- name: socket_utils_test
2124 build: test
2125 language: c
2126 src:
2127 - test/core/iomgr/socket_utils_test.c
2128 deps:
2129 - grpc_test_util
2130 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002131 - gpr_test_util
2132 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002133 platforms:
2134 - mac
2135 - linux
2136 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002137- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002138 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002139 build: test
2140 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002141 src:
2142 - test/core/iomgr/tcp_client_posix_test.c
2143 deps:
2144 - grpc_test_util
2145 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002146 - gpr_test_util
2147 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002148 platforms:
2149 - mac
2150 - linux
2151 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002152- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002153 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002154 build: test
2155 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002156 src:
2157 - test/core/iomgr/tcp_posix_test.c
2158 deps:
2159 - grpc_test_util
2160 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002161 - gpr_test_util
2162 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002163 platforms:
2164 - mac
2165 - linux
2166 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002167- name: tcp_server_posix_test
2168 build: test
2169 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002170 src:
2171 - test/core/iomgr/tcp_server_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: time_averaged_stats_test
2182 build: test
2183 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002184 src:
2185 - test/core/iomgr/time_averaged_stats_test.c
2186 deps:
2187 - grpc_test_util
2188 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002189 - gpr_test_util
2190 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002191- name: timeout_encoding_test
2192 build: test
2193 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002194 src:
2195 - test/core/transport/chttp2/timeout_encoding_test.c
2196 deps:
2197 - grpc_test_util
2198 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002199 - gpr_test_util
2200 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002201- name: timer_heap_test
2202 build: test
2203 language: c
2204 src:
2205 - test/core/iomgr/timer_heap_test.c
2206 deps:
2207 - grpc_test_util
2208 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002209 - gpr_test_util
2210 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002211- name: timer_list_test
2212 build: test
2213 language: c
2214 src:
2215 - test/core/iomgr/timer_list_test.c
2216 deps:
2217 - grpc_test_util
2218 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002219 - gpr_test_util
2220 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002221- name: timers_test
2222 build: test
2223 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002224 src:
2225 - test/core/profiling/timers_test.c
2226 deps:
2227 - grpc_test_util
2228 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002229 - gpr_test_util
2230 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08002231- name: transport_connectivity_state_test
2232 build: test
2233 language: c
2234 src:
2235 - test/core/transport/connectivity_state_test.c
2236 deps:
2237 - grpc_test_util
2238 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002239 - gpr_test_util
2240 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002241- name: transport_metadata_test
2242 build: test
2243 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002244 src:
2245 - test/core/transport/metadata_test.c
2246 deps:
2247 - grpc_test_util
2248 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002249 - gpr_test_util
2250 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002251- name: transport_security_test
2252 build: test
2253 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002254 src:
2255 - test/core/tsi/transport_security_test.c
2256 deps:
2257 - grpc_test_util
2258 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002259 - gpr_test_util
2260 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002261 platforms:
2262 - linux
2263 - posix
2264 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002265- name: udp_server_test
2266 build: test
2267 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002268 src:
2269 - test/core/iomgr/udp_server_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 - mac
2277 - linux
2278 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002279- name: uri_fuzzer_test
2280 build: fuzzer
2281 language: c
2282 src:
2283 - test/core/client_config/uri_fuzzer_test.c
2284 deps:
2285 - grpc_test_util
2286 - grpc
2287 - gpr_test_util
2288 - gpr
2289 corpus_dirs:
2290 - test/core/client_config/uri_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002291 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002292- name: uri_parser_test
2293 build: test
2294 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002295 src:
2296 - test/core/client_config/uri_parser_test.c
2297 deps:
2298 - grpc_test_util
2299 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002300 - gpr_test_util
2301 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002302- name: workqueue_test
2303 build: test
2304 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002305 src:
2306 - test/core/iomgr/workqueue_test.c
2307 deps:
2308 - grpc_test_util
2309 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002310 - gpr_test_util
2311 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002312 platforms:
2313 - mac
2314 - linux
2315 - posix
vjpai04e992a2016-02-10 16:58:38 -08002316- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002317 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002318 build: test
2319 language: c++
2320 src:
2321 - test/cpp/common/alarm_cpp_test.cc
2322 deps:
2323 - grpc++_test_util
2324 - grpc_test_util
2325 - grpc++
2326 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002327 - gpr_test_util
2328 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002329- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002330 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002331 build: test
2332 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002333 src:
2334 - test/cpp/end2end/async_end2end_test.cc
2335 deps:
2336 - grpc++_test_util
2337 - grpc_test_util
2338 - grpc++
2339 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002340 - gpr_test_util
2341 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002342- name: async_streaming_ping_pong_test
2343 build: test
2344 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002345 src:
2346 - test/cpp/qps/async_streaming_ping_pong_test.cc
2347 deps:
2348 - qps
2349 - grpc++_test_util
2350 - grpc_test_util
2351 - grpc++
2352 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002353 - gpr_test_util
2354 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002355 platforms:
2356 - mac
2357 - linux
2358 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002359- name: async_unary_ping_pong_test
2360 build: test
2361 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002362 src:
2363 - test/cpp/qps/async_unary_ping_pong_test.cc
2364 deps:
2365 - qps
2366 - grpc++_test_util
2367 - grpc_test_util
2368 - grpc++
2369 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002370 - gpr_test_util
2371 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002372 platforms:
2373 - mac
2374 - linux
2375 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002376- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002377 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002378 build: test
2379 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002380 src:
2381 - test/cpp/common/auth_property_iterator_test.cc
2382 deps:
2383 - grpc++_test_util
2384 - grpc_test_util
2385 - grpc++
2386 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002387 - gpr_test_util
2388 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002389- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002390 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002391 build: test
2392 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002393 src:
yang-g52705592015-11-25 11:45:33 -08002394 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002395 deps:
2396 - grpc++
2397 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002398 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002399- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002400 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002401 build: test
2402 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002403 src:
2404 - test/cpp/util/cli_call_test.cc
2405 deps:
2406 - grpc++_test_util
2407 - grpc_test_util
2408 - grpc++
2409 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002410 - gpr_test_util
2411 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002412- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002413 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002414 cpu_cost: 0.1
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/end2end/client_crash_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 Tiller25834342015-09-25 08:08:24 -07002426 platforms:
2427 - mac
2428 - linux
2429 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002430- name: client_crash_test_server
2431 build: test
2432 run: false
2433 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002434 src:
2435 - test/cpp/end2end/client_crash_test_server.cc
2436 deps:
2437 - grpc++_test_util
2438 - grpc_test_util
2439 - grpc++
2440 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002441 - gpr_test_util
2442 - gpr
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002443- name: codegen_test_full
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002444 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002445 build: test
2446 language: c++
2447 src:
2448 - src/proto/grpc/testing/control.proto
2449 - src/proto/grpc/testing/messages.proto
2450 - src/proto/grpc/testing/payloads.proto
2451 - src/proto/grpc/testing/perf_db.proto
2452 - src/proto/grpc/testing/services.proto
2453 - src/proto/grpc/testing/stats.proto
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002454 - test/cpp/codegen/codegen_test_full.cc
2455 deps:
2456 - grpc++
2457 - grpc
2458 - gpr
2459 filegroups:
2460 - grpc++_codegen
2461- name: codegen_test_minimal
2462 gtest: true
2463 build: test
2464 language: c++
2465 src:
2466 - src/proto/grpc/testing/control.proto
2467 - src/proto/grpc/testing/messages.proto
2468 - src/proto/grpc/testing/payloads.proto
2469 - src/proto/grpc/testing/perf_db.proto
2470 - src/proto/grpc/testing/services.proto
2471 - src/proto/grpc/testing/stats.proto
2472 - test/cpp/codegen/codegen_test_minimal.cc
Craig Tiller03d8f2f2016-04-07 08:02:16 -07002473 filegroups:
2474 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -07002475- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002476 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002477 build: test
2478 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002479 src:
2480 - test/cpp/client/credentials_test.cc
2481 deps:
2482 - grpc++
2483 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002484 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002485- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002486 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002487 build: test
2488 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002489 src:
2490 - test/cpp/util/byte_buffer_test.cc
2491 deps:
2492 - grpc_test_util
2493 - grpc++
2494 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002495 - gpr_test_util
2496 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002497- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002498 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002499 build: test
2500 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002501 src:
2502 - test/cpp/util/slice_test.cc
2503 deps:
2504 - grpc_test_util
2505 - grpc++
2506 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002507 - gpr_test_util
2508 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002509- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002510 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002511 build: test
2512 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002513 src:
2514 - test/cpp/util/string_ref_test.cc
2515 deps:
2516 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002517- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002518 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002519 build: test
2520 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002521 src:
2522 - test/cpp/util/time_test.cc
2523 deps:
2524 - grpc_test_util
2525 - grpc++
2526 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002527 - gpr_test_util
2528 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002529- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002530 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002531 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002532 build: test
2533 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002534 src:
2535 - test/cpp/end2end/end2end_test.cc
2536 deps:
2537 - grpc++_test_util
2538 - grpc_test_util
2539 - grpc++
2540 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002541 - gpr_test_util
2542 - gpr
vjpai083dc622016-01-11 09:41:17 -08002543- name: generic_async_streaming_ping_pong_test
2544 build: test
2545 language: c++
2546 src:
2547 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2548 deps:
2549 - qps
2550 - grpc++_test_util
2551 - grpc_test_util
2552 - grpc++
2553 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002554 - gpr_test_util
2555 - gpr
vjpai083dc622016-01-11 09:41:17 -08002556 platforms:
2557 - mac
2558 - linux
2559 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002560- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002561 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002562 build: test
2563 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002564 src:
2565 - test/cpp/end2end/generic_end2end_test.cc
2566 deps:
2567 - grpc++_test_util
2568 - grpc_test_util
2569 - grpc++
2570 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002571 - gpr_test_util
2572 - gpr
yang-gb8aa58b2016-04-14 15:50:50 -07002573- name: golden_file_test
2574 gtest: true
2575 build: test
2576 language: c++
2577 src:
2578 - src/proto/grpc/testing/compiler_test.proto
2579 - test/cpp/codegen/golden_file_test.cc
2580 deps:
2581 - grpc++
2582 - grpc
2583 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002584- name: grpc_cli
2585 build: test
2586 run: false
2587 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002588 src:
2589 - test/cpp/util/grpc_cli.cc
2590 deps:
2591 - grpc++_test_util
2592 - grpc_test_util
2593 - grpc++
2594 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002595 - gpr_test_util
2596 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002597 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002598- name: grpc_cpp_plugin
2599 build: protoc
2600 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002601 src:
2602 - src/compiler/cpp_plugin.cc
2603 deps:
2604 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002605 secure: false
2606 vs_config_type: Application
2607 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2608- name: grpc_csharp_plugin
2609 build: protoc
2610 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002611 src:
2612 - src/compiler/csharp_plugin.cc
2613 deps:
2614 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002615 secure: false
2616 vs_config_type: Application
2617 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
murgatroid99d2ee81f2016-02-26 11:10:33 -08002618- name: grpc_node_plugin
2619 build: protoc
2620 language: c++
2621 src:
2622 - src/compiler/node_plugin.cc
2623 deps:
2624 - grpc_plugin_support
2625 secure: false
2626 vs_config_type: Application
Craig Tillerbf4b2242015-08-31 15:53:53 -07002627- name: grpc_objective_c_plugin
2628 build: protoc
2629 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002630 src:
2631 - src/compiler/objective_c_plugin.cc
2632 deps:
2633 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002634 secure: false
2635 vs_config_type: Application
2636 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2637- name: grpc_python_plugin
2638 build: protoc
2639 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002640 src:
2641 - src/compiler/python_plugin.cc
2642 deps:
2643 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002644 secure: false
2645 vs_config_type: Application
2646 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2647- name: grpc_ruby_plugin
2648 build: protoc
2649 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002650 src:
2651 - src/compiler/ruby_plugin.cc
2652 deps:
2653 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002654 secure: false
2655 vs_config_type: Application
2656 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002657- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002658 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002659 build: test
2660 language: c++
2661 src:
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002662 - src/proto/grpc/lb/v1/load_balancer.proto
Craig Tillereb841e22016-02-11 15:49:16 -08002663 - test/cpp/grpclb/grpclb_api_test.cc
2664 deps:
2665 - grpc++_test_util
2666 - grpc_test_util
2667 - grpc++
2668 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002669- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002670 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002671 build: test
2672 language: c++
2673 src:
2674 - test/cpp/end2end/hybrid_end2end_test.cc
2675 deps:
2676 - grpc++_test_util
2677 - grpc_test_util
2678 - grpc++
2679 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002680 - gpr_test_util
2681 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002682- name: interop_client
2683 build: test
2684 run: false
2685 language: c++
2686 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002687 deps:
2688 - interop_client_main
2689 - interop_client_helper
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 Tiller25834342015-09-25 08:08:24 -07002696 - grpc++_test_config
2697 platforms:
2698 - mac
2699 - linux
2700 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002701- name: interop_server
2702 build: test
2703 run: false
2704 language: c++
2705 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002706 deps:
2707 - interop_server_main
2708 - interop_server_helper
2709 - grpc++_test_util
2710 - grpc_test_util
2711 - grpc++
2712 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002713 - gpr_test_util
2714 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002715 - grpc++_test_config
2716 platforms:
2717 - mac
2718 - linux
2719 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002720- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002721 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002722 build: test
2723 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002724 src:
2725 - test/cpp/interop/interop_test.cc
2726 deps:
2727 - grpc_test_util
2728 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002729 - gpr_test_util
2730 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002731 platforms:
2732 - mac
2733 - linux
2734 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002735- name: json_run_localhost
2736 build: test
2737 run: false
2738 language: c++
2739 src:
2740 - test/cpp/qps/json_run_localhost.cc
2741 deps:
2742 - grpc++_test_util
2743 - grpc_test_util
2744 - grpc++
2745 - grpc
2746 - gpr_test_util
2747 - gpr
2748 - grpc++_test_config
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002749- name: metrics_client
2750 build: test
2751 run: false
2752 language: c++
2753 headers:
2754 - test/cpp/util/metrics_server.h
2755 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002756 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002757 - test/cpp/interop/metrics_client.cc
2758 deps:
2759 - grpc++
2760 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002761 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002762 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002763- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002764 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002765 build: test
2766 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002767 src:
2768 - test/cpp/end2end/mock_test.cc
2769 deps:
2770 - grpc++_test_util
2771 - grpc_test_util
2772 - grpc++
2773 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002774 - gpr_test_util
2775 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002776- name: qps_interarrival_test
2777 build: test
2778 run: false
2779 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002780 src:
2781 - test/cpp/qps/qps_interarrival_test.cc
2782 deps:
2783 - qps
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
Craig Tiller25834342015-09-25 08:08:24 -07002790 platforms:
2791 - mac
2792 - linux
2793 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002794- name: qps_json_driver
2795 build: test
2796 run: false
2797 language: c++
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002798 headers:
2799 - test/cpp/qps/parse_json.h
Craig Tiller0bda0b32016-03-03 12:51:53 -08002800 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002801 - test/cpp/qps/parse_json.cc
Craig Tiller0bda0b32016-03-03 12:51:53 -08002802 - test/cpp/qps/qps_json_driver.cc
2803 deps:
2804 - qps
2805 - grpc++_test_util
2806 - grpc_test_util
2807 - grpc++
2808 - grpc
2809 - gpr_test_util
2810 - gpr
2811 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002812- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002813 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002814 build: test
2815 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002816 src:
2817 - test/cpp/qps/qps_openloop_test.cc
2818 deps:
2819 - qps
2820 - grpc++_test_util
2821 - grpc_test_util
2822 - grpc++
2823 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002824 - gpr_test_util
2825 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002826 - grpc++_test_config
2827 platforms:
2828 - mac
2829 - linux
2830 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002831- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002832 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002833 build: test
2834 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002835 src:
2836 - test/cpp/qps/qps_test.cc
2837 deps:
2838 - qps
2839 - grpc++_test_util
2840 - grpc_test_util
2841 - grpc++
2842 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002843 - gpr_test_util
2844 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002845 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002846 platforms:
2847 - mac
2848 - linux
2849 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002850- name: qps_worker
Craig Tiller0bda0b32016-03-03 12:51:53 -08002851 build: test
2852 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002853 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002854 headers:
2855 - test/cpp/qps/client.h
2856 - test/cpp/qps/server.h
2857 src:
2858 - test/cpp/qps/worker.cc
2859 deps:
2860 - qps
2861 - grpc++_test_util
2862 - grpc_test_util
2863 - grpc++
2864 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002865 - gpr_test_util
2866 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002867 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002868- name: reconnect_interop_client
2869 build: test
2870 run: false
2871 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002872 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002873 - src/proto/grpc/testing/empty.proto
2874 - src/proto/grpc/testing/messages.proto
2875 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002876 - test/cpp/interop/reconnect_interop_client.cc
2877 deps:
2878 - grpc++_test_util
2879 - grpc_test_util
2880 - grpc++
2881 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002882 - gpr_test_util
2883 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002884 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002885- name: reconnect_interop_server
2886 build: test
2887 run: false
2888 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002889 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002890 - src/proto/grpc/testing/empty.proto
2891 - src/proto/grpc/testing/messages.proto
2892 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002893 - test/cpp/interop/reconnect_interop_server.cc
2894 deps:
2895 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002896 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002897 - grpc++_test_util
2898 - grpc_test_util
2899 - grpc++
2900 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002901 - gpr_test_util
2902 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002903 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002904- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002905 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002906 build: test
2907 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002908 src:
2909 - test/cpp/common/secure_auth_context_test.cc
2910 deps:
2911 - grpc++_test_util
2912 - grpc_test_util
2913 - grpc++
2914 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002915 - gpr_test_util
2916 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002917- name: secure_sync_unary_ping_pong_test
2918 build: test
2919 language: c++
2920 src:
2921 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2922 deps:
2923 - qps
2924 - grpc++_test_util
2925 - grpc_test_util
2926 - grpc++
2927 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002928 - gpr_test_util
2929 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002930 platforms:
2931 - mac
2932 - linux
2933 - posix
Yuchen Zenga42ec212016-04-29 13:03:06 -07002934- name: server_builder_plugin_test
2935 gtest: true
2936 build: test
2937 language: c++
2938 src:
2939 - test/cpp/end2end/server_builder_plugin_test.cc
2940 deps:
2941 - grpc++_test_util
2942 - grpc_test_util
2943 - grpc++
2944 - grpc
2945 - gpr_test_util
2946 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002947- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002948 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002949 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002950 build: test
2951 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002952 src:
2953 - test/cpp/end2end/server_crash_test.cc
2954 deps:
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
Craig Tiller25834342015-09-25 08:08:24 -07002961 platforms:
2962 - mac
2963 - linux
2964 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002965- name: server_crash_test_client
2966 build: test
2967 run: false
2968 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002969 src:
2970 - test/cpp/end2end/server_crash_test_client.cc
2971 deps:
2972 - grpc++_test_util
2973 - grpc_test_util
2974 - grpc++
2975 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002976 - gpr_test_util
2977 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002978- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002979 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002980 build: test
2981 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002982 src:
2983 - test/cpp/end2end/shutdown_test.cc
2984 deps:
2985 - grpc++_test_util
2986 - grpc_test_util
2987 - grpc++
2988 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002989 - gpr_test_util
2990 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002991- name: status_test
2992 build: test
2993 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002994 src:
2995 - test/cpp/util/status_test.cc
2996 deps:
2997 - grpc_test_util
2998 - grpc++
2999 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003000 - gpr_test_util
3001 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003002- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003003 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003004 build: test
3005 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003006 src:
3007 - test/cpp/end2end/streaming_throughput_test.cc
3008 deps:
3009 - grpc++_test_util
3010 - grpc_test_util
3011 - grpc++
3012 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003013 - gpr_test_util
3014 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003015 platforms:
3016 - mac
3017 - linux
3018 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003019- name: stress_test
3020 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07003021 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003022 language: c++
3023 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07003024 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003025 - test/cpp/interop/interop_client.h
3026 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003027 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003028 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003029 - src/proto/grpc/testing/empty.proto
3030 - src/proto/grpc/testing/messages.proto
3031 - src/proto/grpc/testing/metrics.proto
3032 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003033 - test/cpp/interop/interop_client.cc
3034 - test/cpp/interop/stress_interop_client.cc
3035 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003036 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003037 deps:
3038 - grpc++_test_util
3039 - grpc_test_util
3040 - grpc++
3041 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003042 - gpr_test_util
3043 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003044 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07003045- name: sync_streaming_ping_pong_test
3046 build: test
3047 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003048 src:
3049 - test/cpp/qps/sync_streaming_ping_pong_test.cc
3050 deps:
3051 - qps
3052 - grpc++_test_util
3053 - grpc_test_util
3054 - grpc++
3055 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003056 - gpr_test_util
3057 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003058 platforms:
3059 - mac
3060 - linux
3061 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003062- name: sync_unary_ping_pong_test
3063 build: test
3064 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003065 src:
3066 - test/cpp/qps/sync_unary_ping_pong_test.cc
3067 deps:
3068 - qps
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
Craig Tiller25834342015-09-25 08:08:24 -07003075 platforms:
3076 - mac
3077 - linux
3078 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003079- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003080 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08003081 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07003082 build: test
3083 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003084 src:
3085 - test/cpp/end2end/thread_stress_test.cc
3086 deps:
3087 - grpc++_test_util
3088 - grpc_test_util
3089 - grpc++
3090 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003091 - gpr_test_util
3092 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003093- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003094 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003095 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07003096 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07003097 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003098 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003099 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07003100 - test/cpp/end2end/zookeeper_test.cc
3101 deps:
3102 - grpc++_test_util
3103 - grpc_test_util
3104 - grpc++
3105 - grpc_zookeeper
3106 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003107 - gpr_test_util
3108 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003109 external_deps:
3110 - zookeeper
3111 platforms:
3112 - linux
Craig Tillerab230452016-01-04 08:18:43 -08003113- name: public_headers_must_be_c89
3114 build: test
3115 language: c89
3116 src:
3117 - test/core/surface/public_headers_must_be_c89.c
3118 deps:
3119 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003120 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003121vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07003122- linkage: static
3123 name: grpc.dependencies.zlib
3124 props: false
3125 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003126 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08003127- linkage: static
3128 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07003129 props: true
3130 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003131 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07003132- name: gflags
3133 props: false
3134 redist: false
3135 version: 2.1.2.1
3136- name: gtest
3137 props: false
3138 redist: false
3139 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08003140configs:
3141 asan:
3142 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003143 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3144 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003145 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003146 LD: clang
3147 LDFLAGS: -fsanitize=address
3148 LDXX: clang++
3149 compile_the_world: true
3150 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08003151 ASAN_OPTIONS: detect_leaks=1:color=always
3152 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08003153 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003154 asan-noleaks:
3155 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003156 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3157 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003158 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003159 LD: clang
3160 LDFLAGS: -fsanitize=address
3161 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08003162 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08003163 test_environ:
3164 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08003165 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07003166 asan-trace-cmp:
3167 CC: clang
Craig Tillerff822392016-03-23 21:46:52 -07003168 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize-coverage=trace-cmp -fsanitize=address
3169 -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerae945942016-03-23 21:43:58 -07003170 CXX: clang++
3171 LD: clang
3172 LDFLAGS: -fsanitize=address
3173 LDXX: clang++
3174 compile_the_world: true
3175 test_environ:
3176 ASAN_OPTIONS: detect_leaks=1:color=always
3177 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3178 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003179 basicprof:
3180 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
3181 DEFINES: NDEBUG
3182 dbg:
3183 CPPFLAGS: -O0
3184 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08003185 easan:
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 Tiller3af3f742016-02-28 21:53:13 -08003189 CXX: clang++
3190 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3191 LD: clang
3192 LDFLAGS: -fsanitize=address
3193 LDXX: clang++
3194 compile_the_world: true
3195 test_environ:
3196 ASAN_OPTIONS: detect_leaks=1:color=always
3197 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3198 timeout_multiplier: 3
3199 edbg:
3200 CPPFLAGS: -O0
3201 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3202 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08003203 CC: clang
3204 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003205 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08003206 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08003207 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08003208 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003209 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08003210 LDXX: clang++
3211 compile_the_world: true
3212 test_environ:
3213 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
3214 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003215 gcov:
3216 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003217 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08003218 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08003219 DEFINES: _DEBUG DEBUG GPR_GCOV
3220 LD: gcc
3221 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
3222 LDXX: g++
3223 helgrind:
3224 CPPFLAGS: -O0
3225 DEFINES: _DEBUG DEBUG
3226 LDFLAGS: -rdynamic
3227 timeout_multiplier: 20
3228 valgrind: --tool=helgrind
3229 memcheck:
3230 CPPFLAGS: -O0
3231 DEFINES: _DEBUG DEBUG
3232 LDFLAGS: -rdynamic
3233 timeout_multiplier: 10
3234 valgrind: --tool=memcheck --leak-check=full
3235 msan:
3236 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003237 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
3238 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3239 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003240 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003241 DEFINES: NDEBUG
3242 LD: clang
3243 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3244 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
3245 LDXX: clang++
3246 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08003247 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08003248 mutrace:
3249 CPPFLAGS: -O0
3250 DEFINES: _DEBUG DEBUG
3251 LDFLAGS: -rdynamic
3252 opt:
3253 CPPFLAGS: -O2
3254 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08003255 stapprof:
3256 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
3257 DEFINES: NDEBUG
3258 tsan:
3259 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003260 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003261 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003262 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003263 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003264 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08003265 LDXX: clang++
3266 compile_the_world: true
3267 test_environ:
3268 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08003269 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003270 ubsan:
3271 CC: clang
yang-g6ce4d0b2016-05-12 16:43:17 -07003272 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=undefined,unsigned-integer-overflow
3273 -fno-omit-frame-pointer -Wno-unused-command-line-argument -Wvarargs
Craig Tillera0f85172016-01-20 15:56:06 -08003274 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003275 DEFINES: NDEBUG
3276 LD: clang
yang-g6ce4d0b2016-05-12 16:43:17 -07003277 LDFLAGS: -fsanitize=undefined,unsigned-integer-overflow
Craig Tillera0f85172016-01-20 15:56:06 -08003278 LDXX: clang++
3279 compile_the_world: true
yang-g6ce4d0b2016-05-12 16:43:17 -07003280 test_environ:
3281 UBSAN_OPTIONS: print_stacktrace=1
Craig Tillera0f85172016-01-20 15:56:06 -08003282 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003283defaults:
3284 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003285 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Craig Tiller78222f72016-05-10 09:55:38 -07003286 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003287 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003288 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003289 global:
3290 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
3291 LDFLAGS: -g
3292 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01003293 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01003294 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08003295node_modules:
3296- deps:
3297 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003298 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08003299 - boringssl
3300 - z
murgatroid9994a75412015-11-19 14:04:53 -08003301 headers:
3302 - src/node/ext/byte_buffer.h
3303 - src/node/ext/call.h
3304 - src/node/ext/call_credentials.h
3305 - src/node/ext/channel.h
3306 - src/node/ext/channel_credentials.h
3307 - src/node/ext/completion_queue_async_worker.h
3308 - src/node/ext/server.h
3309 - src/node/ext/server_credentials.h
3310 - src/node/ext/timeval.h
3311 js:
3312 - src/node/index.js
3313 - src/node/src/client.js
3314 - src/node/src/common.js
3315 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08003316 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08003317 - src/node/src/metadata.js
3318 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003319 name: grpc_node
3320 src:
3321 - src/node/ext/byte_buffer.cc
3322 - src/node/ext/call.cc
3323 - src/node/ext/call_credentials.cc
3324 - src/node/ext/channel.cc
3325 - src/node/ext/channel_credentials.cc
3326 - src/node/ext/completion_queue_async_worker.cc
3327 - src/node/ext/node_grpc.cc
3328 - src/node/ext/server.cc
3329 - src/node/ext/server_credentials.cc
3330 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003331openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003332 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003333 extraction_dir: openssl-1.0.2f
3334 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003335php_config_m4:
3336 deps:
3337 - grpc
3338 - gpr
3339 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003340 headers:
3341 - src/php/ext/grpc/byte_buffer.h
3342 - src/php/ext/grpc/call.h
3343 - src/php/ext/grpc/call_credentials.h
3344 - src/php/ext/grpc/channel.h
3345 - src/php/ext/grpc/channel_credentials.h
3346 - src/php/ext/grpc/completion_queue.h
3347 - src/php/ext/grpc/php_grpc.h
3348 - src/php/ext/grpc/server.h
3349 - src/php/ext/grpc/server_credentials.h
3350 - src/php/ext/grpc/timeval.h
3351 src:
3352 - src/php/ext/grpc/byte_buffer.c
3353 - src/php/ext/grpc/call.c
3354 - src/php/ext/grpc/call_credentials.c
3355 - src/php/ext/grpc/channel.c
3356 - src/php/ext/grpc/channel_credentials.c
3357 - src/php/ext/grpc/completion_queue.c
3358 - src/php/ext/grpc/php_grpc.c
3359 - src/php/ext/grpc/server.c
3360 - src/php/ext/grpc/server_credentials.c
3361 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003362python_dependencies:
3363 deps:
3364 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003365 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003366 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003367 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003368ruby_gem:
3369 deps:
3370 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003371 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003372 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003373 - z