blob: 8b2610c69e928e52624f460e1e372eae9e8a18f2 [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 Tiller27f59af2016-04-28 14:19:48 -0700168 - src/core/lib/iomgr/error.h
Craig Tiller8a034482016-03-28 16:09:04 -0700169 - src/core/lib/iomgr/ev_poll_and_epoll_posix.h
170 - 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 Tiller27f59af2016-04-28 14:19:48 -0700243 - src/core/lib/iomgr/error.c
Craig Tiller8a034482016-03-28 16:09:04 -0700244 - src/core/lib/iomgr/ev_poll_and_epoll_posix.c
245 - 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:
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700409 - src/core/lib/security/context/security_context.h
410 - src/core/lib/security/credentials/composite/composite_credentials.h
411 - src/core/lib/security/credentials/credentials.h
412 - src/core/lib/security/credentials/fake/fake_credentials.h
413 - src/core/lib/security/credentials/google_default/google_default_credentials.h
414 - src/core/lib/security/credentials/iam/iam_credentials.h
415 - src/core/lib/security/credentials/jwt/json_token.h
416 - src/core/lib/security/credentials/jwt/jwt_credentials.h
417 - src/core/lib/security/credentials/jwt/jwt_verifier.h
418 - src/core/lib/security/credentials/oauth2/oauth2_credentials.h
419 - src/core/lib/security/credentials/plugin/plugin_credentials.h
420 - src/core/lib/security/credentials/ssl/ssl_credentials.h
421 - src/core/lib/security/transport/auth_filters.h
422 - src/core/lib/security/transport/handshake.h
423 - src/core/lib/security/transport/secure_endpoint.h
424 - src/core/lib/security/transport/security_connector.h
Craig Tillerddad9782016-05-05 17:11:31 -0700425 - src/core/lib/security/transport/tsi_error.h
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700426 - src/core/lib/security/util/b64.h
427 - src/core/lib/security/util/json_util.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100428 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700429 - src/core/lib/http/httpcli_security_connector.c
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700430 - src/core/lib/security/context/security_context.c
431 - src/core/lib/security/credentials/composite/composite_credentials.c
432 - src/core/lib/security/credentials/credentials.c
433 - src/core/lib/security/credentials/credentials_metadata.c
434 - src/core/lib/security/credentials/fake/fake_credentials.c
435 - src/core/lib/security/credentials/google_default/credentials_posix.c
436 - src/core/lib/security/credentials/google_default/credentials_win32.c
437 - src/core/lib/security/credentials/google_default/google_default_credentials.c
438 - src/core/lib/security/credentials/iam/iam_credentials.c
439 - src/core/lib/security/credentials/jwt/json_token.c
440 - src/core/lib/security/credentials/jwt/jwt_credentials.c
441 - src/core/lib/security/credentials/jwt/jwt_verifier.c
442 - src/core/lib/security/credentials/oauth2/oauth2_credentials.c
443 - src/core/lib/security/credentials/plugin/plugin_credentials.c
444 - src/core/lib/security/credentials/ssl/ssl_credentials.c
445 - src/core/lib/security/transport/client_auth_filter.c
446 - src/core/lib/security/transport/handshake.c
447 - src/core/lib/security/transport/secure_endpoint.c
448 - src/core/lib/security/transport/security_connector.c
449 - src/core/lib/security/transport/server_auth_filter.c
Craig Tillerddad9782016-05-05 17:11:31 -0700450 - src/core/lib/security/transport/tsi_error.c
Julien Boeuf8ca294e2016-05-02 14:56:30 -0700451 - src/core/lib/security/util/b64.c
452 - src/core/lib/security/util/json_util.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700453 - src/core/lib/surface/init_secure.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700454 secure: true
Craig Tillerd1697d92016-04-05 16:05:46 -0700455 uses:
456 - grpc_base
457 - grpc_transport_chttp2_alpn
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700458 - tsi
Craig Tillerbf4b2242015-08-31 15:53:53 -0700459- name: grpc_test_util_base
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700460 build: test
Craig Tiller25834342015-09-25 08:08:24 -0700461 headers:
462 - test/core/end2end/cq_verifier.h
463 - test/core/end2end/fixtures/proxy.h
464 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700465 - test/core/util/grpc_profiler.h
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200466 - test/core/util/memory_counters.h
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700467 - test/core/util/mock_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700468 - test/core/util/parse_hexstring.h
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700469 - test/core/util/passthru_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700470 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700471 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700472 - test/core/util/slice_splitter.h
473 src:
474 - test/core/end2end/cq_verifier.c
475 - test/core/end2end/fixtures/proxy.c
476 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700477 - test/core/util/grpc_profiler.c
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200478 - test/core/util/memory_counters.c
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700479 - test/core/util/mock_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700480 - test/core/util/parse_hexstring.c
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700481 - test/core/util/passthru_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700482 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700483 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700484 - test/core/util/port_windows.c
485 - test/core/util/slice_splitter.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700486 deps:
487 - grpc
488 - gpr_test_util
Craig Tillerf0555b32016-03-28 10:19:24 -0700489- name: grpc_transport_chttp2
490 headers:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700491 - src/core/ext/transport/chttp2/transport/bin_encoder.h
Craig Tillerf0555b32016-03-28 10:19:24 -0700492 - src/core/ext/transport/chttp2/transport/chttp2_transport.h
493 - src/core/ext/transport/chttp2/transport/frame.h
494 - src/core/ext/transport/chttp2/transport/frame_data.h
495 - src/core/ext/transport/chttp2/transport/frame_goaway.h
496 - src/core/ext/transport/chttp2/transport/frame_ping.h
497 - src/core/ext/transport/chttp2/transport/frame_rst_stream.h
498 - src/core/ext/transport/chttp2/transport/frame_settings.h
499 - src/core/ext/transport/chttp2/transport/frame_window_update.h
500 - src/core/ext/transport/chttp2/transport/hpack_encoder.h
501 - src/core/ext/transport/chttp2/transport/hpack_parser.h
502 - src/core/ext/transport/chttp2/transport/hpack_table.h
503 - src/core/ext/transport/chttp2/transport/http2_errors.h
504 - src/core/ext/transport/chttp2/transport/huffsyms.h
505 - src/core/ext/transport/chttp2/transport/incoming_metadata.h
506 - src/core/ext/transport/chttp2/transport/internal.h
507 - src/core/ext/transport/chttp2/transport/status_conversion.h
508 - src/core/ext/transport/chttp2/transport/stream_map.h
509 - src/core/ext/transport/chttp2/transport/timeout_encoding.h
510 - src/core/ext/transport/chttp2/transport/varint.h
511 src:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700512 - src/core/ext/transport/chttp2/transport/bin_encoder.c
513 - src/core/ext/transport/chttp2/transport/chttp2_plugin.c
Craig Tillerf0555b32016-03-28 10:19:24 -0700514 - src/core/ext/transport/chttp2/transport/chttp2_transport.c
515 - src/core/ext/transport/chttp2/transport/frame_data.c
516 - src/core/ext/transport/chttp2/transport/frame_goaway.c
517 - src/core/ext/transport/chttp2/transport/frame_ping.c
518 - src/core/ext/transport/chttp2/transport/frame_rst_stream.c
519 - src/core/ext/transport/chttp2/transport/frame_settings.c
520 - src/core/ext/transport/chttp2/transport/frame_window_update.c
521 - src/core/ext/transport/chttp2/transport/hpack_encoder.c
522 - src/core/ext/transport/chttp2/transport/hpack_parser.c
523 - src/core/ext/transport/chttp2/transport/hpack_table.c
524 - src/core/ext/transport/chttp2/transport/huffsyms.c
525 - src/core/ext/transport/chttp2/transport/incoming_metadata.c
526 - src/core/ext/transport/chttp2/transport/parsing.c
527 - src/core/ext/transport/chttp2/transport/status_conversion.c
528 - src/core/ext/transport/chttp2/transport/stream_lists.c
529 - src/core/ext/transport/chttp2/transport/stream_map.c
530 - src/core/ext/transport/chttp2/transport/timeout_encoding.c
531 - src/core/ext/transport/chttp2/transport/varint.c
532 - src/core/ext/transport/chttp2/transport/writing.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700533 plugin: grpc_chttp2_plugin
Craig Tiller44cc10b2016-03-28 10:45:29 -0700534 uses:
535 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700536 - grpc_transport_chttp2_alpn
537- name: grpc_transport_chttp2_alpn
538 headers:
539 - src/core/ext/transport/chttp2/alpn/alpn.h
540 src:
541 - src/core/ext/transport/chttp2/alpn/alpn.c
542 deps:
543 - gpr
Craig Tillerf0555b32016-03-28 10:19:24 -0700544- name: grpc_transport_chttp2_client_insecure
545 src:
546 - src/core/ext/transport/chttp2/client/insecure/channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700547 uses:
548 - grpc_transport_chttp2
549 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700550 - grpc_client_config
Craig Tillerf0555b32016-03-28 10:19:24 -0700551- name: grpc_transport_chttp2_client_secure
552 src:
553 - src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700554 uses:
555 - grpc_transport_chttp2
556 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700557 - grpc_client_config
558 - grpc_secure
Craig Tillerf0555b32016-03-28 10:19:24 -0700559- name: grpc_transport_chttp2_server_insecure
560 src:
561 - src/core/ext/transport/chttp2/server/insecure/server_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700562 uses:
563 - grpc_transport_chttp2
564 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700565- name: grpc_transport_chttp2_server_secure
566 src:
567 - src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700568 uses:
569 - grpc_transport_chttp2
570 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700571 - grpc_secure
makdharmac2ec95b2016-05-11 16:26:15 -0700572- name: grpc_transport_cronet_client_secure
573 headers:
makdharmac2ec95b2016-05-11 16:26:15 -0700574 - third_party/objective_c/Cronet/cronet_c_for_grpc.h
575 src:
576 - src/core/ext/transport/cronet/client/secure/cronet_channel_create.c
577 - src/core/ext/transport/cronet/transport/cronet_api_dummy.c
578 - src/core/ext/transport/cronet/transport/cronet_transport.c
Makarand Dharmapurikard46efd72016-05-11 16:56:39 -0700579 filegroups:
580 - grpc_base
581 - grpc_transport_chttp2
Craig Tillereb841e22016-02-11 15:49:16 -0800582- name: nanopb
583 headers:
584 - third_party/nanopb/pb.h
585 - third_party/nanopb/pb_common.h
586 - third_party/nanopb/pb_decode.h
587 - third_party/nanopb/pb_encode.h
588 src:
589 - third_party/nanopb/pb_common.c
590 - third_party/nanopb/pb_decode.c
591 - third_party/nanopb/pb_encode.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700592- name: tsi
593 headers:
594 - src/core/lib/tsi/fake_transport_security.h
595 - src/core/lib/tsi/ssl_transport_security.h
596 - src/core/lib/tsi/ssl_types.h
597 - src/core/lib/tsi/transport_security.h
598 - src/core/lib/tsi/transport_security_interface.h
599 src:
600 - src/core/lib/tsi/fake_transport_security.c
601 - src/core/lib/tsi/ssl_transport_security.c
602 - src/core/lib/tsi/transport_security.c
603 deps:
604 - gpr
605 secure: true
606- name: grpc++_base
607 language: c++
608 public_headers:
609 - include/grpc++/alarm.h
610 - include/grpc++/channel.h
611 - include/grpc++/client_context.h
612 - include/grpc++/completion_queue.h
613 - include/grpc++/create_channel.h
614 - include/grpc++/generic/async_generic_service.h
615 - include/grpc++/generic/generic_stub.h
616 - include/grpc++/grpc++.h
617 - include/grpc++/impl/call.h
618 - include/grpc++/impl/client_unary_call.h
619 - include/grpc++/impl/grpc_library.h
620 - include/grpc++/impl/method_handler_impl.h
621 - include/grpc++/impl/proto_utils.h
622 - include/grpc++/impl/rpc_method.h
623 - include/grpc++/impl/rpc_service_method.h
624 - include/grpc++/impl/serialization_traits.h
625 - include/grpc++/impl/server_builder_option.h
Yuchen Zenga42ec212016-04-29 13:03:06 -0700626 - include/grpc++/impl/server_builder_plugin.h
627 - include/grpc++/impl/server_initializer.h
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700628 - include/grpc++/impl/service_type.h
629 - include/grpc++/impl/sync.h
630 - include/grpc++/impl/sync_cxx11.h
631 - include/grpc++/impl/sync_no_cxx11.h
632 - include/grpc++/impl/thd.h
633 - include/grpc++/impl/thd_cxx11.h
634 - include/grpc++/impl/thd_no_cxx11.h
635 - include/grpc++/security/auth_context.h
636 - include/grpc++/security/auth_metadata_processor.h
637 - include/grpc++/security/credentials.h
638 - include/grpc++/security/server_credentials.h
639 - include/grpc++/server.h
640 - include/grpc++/server_builder.h
641 - include/grpc++/server_context.h
642 - include/grpc++/support/async_stream.h
643 - include/grpc++/support/async_unary_call.h
644 - include/grpc++/support/byte_buffer.h
645 - include/grpc++/support/channel_arguments.h
646 - include/grpc++/support/slice.h
647 - include/grpc++/support/status.h
648 - include/grpc++/support/status_code_enum.h
649 - include/grpc++/support/string_ref.h
650 - include/grpc++/support/stub_options.h
651 - include/grpc++/support/sync_stream.h
652 - include/grpc++/support/time.h
653 headers:
654 - src/cpp/client/create_channel_internal.h
655 - src/cpp/common/core_codegen.h
656 - src/cpp/server/dynamic_thread_pool.h
657 - src/cpp/server/thread_pool_interface.h
658 src:
659 - src/cpp/client/channel.cc
660 - src/cpp/client/client_context.cc
661 - src/cpp/client/create_channel.cc
662 - src/cpp/client/create_channel_internal.cc
663 - src/cpp/client/credentials.cc
664 - src/cpp/client/generic_stub.cc
665 - src/cpp/client/insecure_credentials.cc
666 - src/cpp/common/channel_arguments.cc
667 - src/cpp/common/completion_queue.cc
668 - src/cpp/common/core_codegen.cc
669 - src/cpp/common/rpc_method.cc
670 - src/cpp/server/async_generic_service.cc
671 - src/cpp/server/create_default_thread_pool.cc
672 - src/cpp/server/dynamic_thread_pool.cc
673 - src/cpp/server/insecure_server_credentials.cc
674 - src/cpp/server/server.cc
675 - src/cpp/server/server_builder.cc
676 - src/cpp/server/server_context.cc
677 - src/cpp/server/server_credentials.cc
678 - src/cpp/util/byte_buffer.cc
679 - src/cpp/util/slice.cc
680 - src/cpp/util/status.cc
681 - src/cpp/util/string_ref.cc
682 - src/cpp/util/time.cc
683 deps:
684 - grpc
685 uses:
686 - grpc++_codegen
687 - grpc++_config
688- name: grpc++_codegen
689 language: c++
690 public_headers:
691 - include/grpc++/impl/codegen/async_stream.h
692 - include/grpc++/impl/codegen/async_unary_call.h
693 - include/grpc++/impl/codegen/call.h
694 - include/grpc++/impl/codegen/call_hook.h
695 - include/grpc++/impl/codegen/channel_interface.h
696 - include/grpc++/impl/codegen/client_context.h
697 - include/grpc++/impl/codegen/client_unary_call.h
698 - include/grpc++/impl/codegen/completion_queue.h
699 - include/grpc++/impl/codegen/completion_queue_tag.h
700 - include/grpc++/impl/codegen/core_codegen_interface.h
701 - include/grpc++/impl/codegen/create_auth_context.h
702 - include/grpc++/impl/codegen/grpc_library.h
703 - include/grpc++/impl/codegen/method_handler_impl.h
704 - include/grpc++/impl/codegen/proto_utils.h
705 - include/grpc++/impl/codegen/rpc_method.h
706 - include/grpc++/impl/codegen/rpc_service_method.h
707 - include/grpc++/impl/codegen/security/auth_context.h
708 - include/grpc++/impl/codegen/serialization_traits.h
709 - include/grpc++/impl/codegen/server_context.h
710 - include/grpc++/impl/codegen/server_interface.h
711 - include/grpc++/impl/codegen/service_type.h
712 - include/grpc++/impl/codegen/status.h
713 - include/grpc++/impl/codegen/status_code_enum.h
714 - include/grpc++/impl/codegen/string_ref.h
715 - include/grpc++/impl/codegen/stub_options.h
716 - include/grpc++/impl/codegen/sync.h
717 - include/grpc++/impl/codegen/sync_cxx11.h
718 - include/grpc++/impl/codegen/sync_no_cxx11.h
719 - include/grpc++/impl/codegen/sync_stream.h
720 - include/grpc++/impl/codegen/time.h
721 src:
722 - src/cpp/codegen/codegen_init.cc
723 uses:
724 - grpc_codegen
725 - grpc++_config_codegen
726- name: grpc++_config
727 language: c++
728 public_headers:
729 - include/grpc++/support/config.h
730 - include/grpc++/support/config_protobuf.h
731 uses:
732 - grpc++_config_codegen
733- name: grpc++_config_codegen
734 language: c++
735 public_headers:
736 - include/grpc++/impl/codegen/config.h
737 - include/grpc++/impl/codegen/config_protobuf.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100738libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800739- name: gpr
740 build: all
741 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800742 filegroups:
Craig Tillerd1697d92016-04-05 16:05:46 -0700743 - gpr_base
Craig Tillerda179ce2016-02-09 12:01:53 -0800744 secure: false
745 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
746- name: gpr_test_util
747 build: private
748 language: c
749 headers:
750 - test/core/util/test_config.h
751 src:
752 - test/core/util/test_config.c
753 deps:
754 - gpr
755 secure: false
756 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700757- name: grpc
758 build: all
759 language: c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700760 src:
761 - src/core/lib/surface/init.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700762 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800763 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700764 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700765 filegroups:
766 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700767 - grpc_transport_chttp2_server_secure
768 - grpc_transport_chttp2_client_secure
769 - grpc_transport_chttp2_server_insecure
770 - grpc_transport_chttp2_client_insecure
makdharmac2ec95b2016-05-11 16:26:15 -0700771 - grpc_transport_cronet_client_secure
Craig Tiller023caf12016-03-29 08:00:30 -0700772 - grpc_lb_policy_grpclb
773 - grpc_lb_policy_pick_first
774 - grpc_lb_policy_round_robin
Craig Tiller65938df2016-03-31 13:08:49 -0700775 - grpc_resolver_dns_native
776 - grpc_resolver_sockaddr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100777 - grpc_secure
Craig Tiller25834342015-09-25 08:08:24 -0700778 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700779 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700780 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700781 vs_packages:
782 - grpc.dependencies.openssl
783 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700784 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100785- name: grpc_dll
786 build: private
787 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100788 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100789 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100790 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100791 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100792 build_system:
793 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100794 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100795 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100796 vs_config_type: DynamicLibrary
797 vs_packages:
798 - grpc.dependencies.openssl
799 - grpc.dependencies.zlib
800 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
801 vs_props:
802 - zlib
803 - openssl
804 - winsock
805 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700806- name: grpc_test_util
807 build: private
808 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700809 headers:
810 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800811 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700812 src:
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700813 - test/core/end2end/data/client_certs.c
Craig Tiller25834342015-09-25 08:08:24 -0700814 - test/core/end2end/data/server1_cert.c
815 - test/core/end2end/data/server1_key.c
816 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800817 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700818 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800819 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800820 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700821 - grpc
822 filegroups:
823 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700824 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
825- name: grpc_test_util_unsecure
826 build: private
827 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700828 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800829 - gpr
830 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800831 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700832 filegroups:
833 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700834 secure: false
835 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
836- name: grpc_unsecure
837 build: all
838 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700839 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700840 - src/core/lib/surface/init.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700841 - src/core/lib/surface/init_unsecure.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700842 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800843 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700844 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700845 filegroups:
846 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700847 - grpc_transport_chttp2_server_insecure
848 - grpc_transport_chttp2_client_insecure
Craig Tiller65938df2016-03-31 13:08:49 -0700849 - grpc_resolver_dns_native
850 - grpc_resolver_sockaddr
Craig Tiller023caf12016-03-29 08:00:30 -0700851 - grpc_lb_policy_grpclb
852 - grpc_lb_policy_pick_first
853 - grpc_lb_policy_round_robin
Craig Tiller25834342015-09-25 08:08:24 -0700854 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700855 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700856 secure: false
857 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
858- name: grpc_zookeeper
859 build: all
860 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700861 public_headers:
862 - include/grpc/grpc_zookeeper.h
Craig Tiller25834342015-09-25 08:08:24 -0700863 src:
Craig Tillerb11b34a2016-04-01 12:30:06 -0700864 - src/core/ext/resolver/zookeeper/zookeeper_resolver.c
Craig Tiller25834342015-09-25 08:08:24 -0700865 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800866 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700867 - grpc
868 external_deps:
869 - zookeeper
870 platforms:
871 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700872 secure: false
873- name: reconnect_server
874 build: private
875 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700876 headers:
877 - test/core/util/reconnect_server.h
878 src:
879 - test/core/util/reconnect_server.c
880 deps:
yang-gc9fca182015-11-06 16:41:33 -0800881 - test_tcp_server
882 - grpc_test_util
883 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800884 - gpr_test_util
885 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800886- name: test_tcp_server
887 build: private
888 language: c
889 headers:
890 - test/core/util/test_tcp_server.h
891 src:
892 - test/core/util/test_tcp_server.c
893 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700894 - grpc_test_util
895 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800896 - gpr_test_util
897 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700898- name: grpc++
899 build: all
900 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700901 headers:
902 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800903 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700904 - src/cpp/common/secure_auth_context.h
905 - src/cpp/server/secure_server_credentials.h
906 src:
Craig Tiller25834342015-09-25 08:08:24 -0700907 - src/cpp/client/secure_credentials.cc
908 - src/cpp/common/auth_property_iterator.cc
909 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800910 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700911 - src/cpp/common/secure_create_auth_context.cc
912 - src/cpp/server/secure_server_credentials.cc
913 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700914 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700915 baselib: true
916 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700917 filegroups:
918 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800919 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700920 secure: check
921 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
922- name: grpc++_test_config
923 build: private
924 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700925 headers:
926 - test/cpp/util/test_config.h
927 src:
928 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700929- name: grpc++_test_util
930 build: private
931 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700932 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800933 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800934 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700935 - test/cpp/util/cli_call.h
936 - test/cpp/util/create_test_channel.h
937 - test/cpp/util/string_ref_helper.h
938 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800939 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700940 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800941 - src/proto/grpc/testing/echo_messages.proto
942 - src/proto/grpc/testing/echo.proto
943 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800944 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800945 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700946 - test/cpp/util/cli_call.cc
947 - test/cpp/util/create_test_channel.cc
948 - test/cpp/util/string_ref_helper.cc
949 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800950 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700951 deps:
952 - grpc++
953 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700954- name: grpc++_unsecure
955 build: all
956 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700957 src:
958 - src/cpp/common/insecure_create_auth_context.cc
959 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800960 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700961 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700962 baselib: true
963 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700964 filegroups:
965 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800966 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700967 secure: false
968 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
969- name: grpc_plugin_support
970 build: protoc
971 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700972 headers:
Craig Tiller25834342015-09-25 08:08:24 -0700973 - src/compiler/config.h
974 - src/compiler/cpp_generator.h
975 - src/compiler/cpp_generator_helpers.h
976 - src/compiler/csharp_generator.h
977 - src/compiler/csharp_generator_helpers.h
978 - src/compiler/generator_helpers.h
murgatroid99d2ee81f2016-02-26 11:10:33 -0800979 - src/compiler/node_generator.h
980 - src/compiler/node_generator_helpers.h
Craig Tiller25834342015-09-25 08:08:24 -0700981 - src/compiler/objective_c_generator.h
982 - src/compiler/objective_c_generator_helpers.h
983 - src/compiler/python_generator.h
984 - src/compiler/ruby_generator.h
985 - src/compiler/ruby_generator_helpers-inl.h
986 - src/compiler/ruby_generator_map-inl.h
987 - src/compiler/ruby_generator_string-inl.h
988 src:
989 - src/compiler/cpp_generator.cc
990 - src/compiler/csharp_generator.cc
murgatroid99d2ee81f2016-02-26 11:10:33 -0800991 - src/compiler/node_generator.cc
Craig Tiller25834342015-09-25 08:08:24 -0700992 - src/compiler/objective_c_generator.cc
993 - src/compiler/python_generator.cc
994 - src/compiler/ruby_generator.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800995 filegroups:
Craig Tiller03915e52016-04-07 09:15:10 -0700996 - grpc++_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700997 secure: false
998 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800999 vs_props:
1000 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001001- name: interop_client_helper
1002 build: private
1003 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001004 headers:
1005 - test/cpp/interop/client_helper.h
1006 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001007 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -07001008 - test/cpp/interop/client_helper.cc
1009 deps:
1010 - grpc++_test_util
1011 - grpc_test_util
1012 - grpc++
1013 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001014 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001015- name: interop_client_main
1016 build: private
1017 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001018 headers:
1019 - test/cpp/interop/interop_client.h
1020 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001021 - src/proto/grpc/testing/empty.proto
1022 - src/proto/grpc/testing/messages.proto
1023 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07001024 - test/cpp/interop/client.cc
1025 - test/cpp/interop/interop_client.cc
1026 deps:
1027 - interop_client_helper
1028 - grpc++_test_util
1029 - grpc_test_util
1030 - grpc++
1031 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001032 - gpr_test_util
1033 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001034 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001035- name: interop_server_helper
1036 build: private
1037 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001038 headers:
1039 - test/cpp/interop/server_helper.h
1040 src:
1041 - test/cpp/interop/server_helper.cc
1042 deps:
1043 - grpc_test_util
1044 - grpc++
1045 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001046 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001047- name: interop_server_main
1048 build: private
1049 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001050 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001051 - src/proto/grpc/testing/empty.proto
1052 - src/proto/grpc/testing/messages.proto
1053 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -08001054 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -07001055 deps:
1056 - interop_server_helper
1057 - grpc++_test_util
1058 - grpc_test_util
1059 - grpc++
1060 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001061 - gpr_test_util
1062 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001063 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001064- name: qps
1065 build: private
1066 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001067 headers:
1068 - test/cpp/qps/client.h
1069 - test/cpp/qps/driver.h
1070 - test/cpp/qps/histogram.h
1071 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -08001072 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -07001073 - test/cpp/qps/perf_db_client.h
1074 - test/cpp/qps/qps_worker.h
1075 - test/cpp/qps/report.h
1076 - test/cpp/qps/server.h
1077 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -08001078 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -07001079 - test/cpp/util/benchmark_config.h
1080 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001081 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001082 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001083 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -08001084 - src/proto/grpc/testing/control.proto
1085 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001086 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -07001087 - test/cpp/qps/client_async.cc
1088 - test/cpp/qps/client_sync.cc
1089 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -08001090 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -07001091 - test/cpp/qps/perf_db_client.cc
1092 - test/cpp/qps/qps_worker.cc
1093 - test/cpp/qps/report.cc
1094 - test/cpp/qps/server_async.cc
1095 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -08001096 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -07001097 - test/cpp/util/benchmark_config.cc
1098 deps:
1099 - grpc_test_util
1100 - grpc++_test_util
1101 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07001102- name: grpc_csharp_ext
1103 build: all
1104 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -07001105 src:
1106 - src/csharp/ext/grpc_csharp_ext.c
1107 deps:
Craig Tiller25834342015-09-25 08:08:24 -07001108 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001109 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -08001110 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -08001111 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -07001112 dll: only
1113 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -07001114 vs_packages:
1115 - grpc.dependencies.openssl
1116 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -07001117 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -07001118 vs_props:
1119 - zlib
1120 - openssl
1121 - winsock
1122 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -07001123targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001124- name: alarm_test
1125 build: test
1126 language: c
1127 src:
1128 - test/core/surface/alarm_test.c
1129 deps:
1130 - grpc_test_util
1131 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -08001132 - gpr_test_util
1133 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -08001134- name: algorithm_test
1135 build: test
1136 language: c
1137 src:
1138 - test/core/compression/algorithm_test.c
1139 deps:
1140 - grpc_test_util
1141 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001142 - gpr_test_util
1143 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -08001144- name: alloc_test
1145 build: test
1146 language: c
1147 src:
1148 - test/core/support/alloc_test.c
1149 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001150 - gpr_test_util
1151 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001152- name: alpn_test
1153 build: test
1154 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001155 src:
1156 - test/core/transport/chttp2/alpn_test.c
1157 deps:
1158 - grpc_test_util
1159 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001160 - gpr_test_util
1161 - gpr
Craig Tillerfc98f922016-04-13 08:45:06 -07001162- name: api_fuzzer
1163 build: fuzzer
1164 language: c
1165 src:
1166 - test/core/end2end/fuzzers/api_fuzzer.c
1167 deps:
1168 - grpc_test_util
1169 - grpc
1170 - gpr_test_util
1171 - gpr
1172 corpus_dirs:
1173 - test/core/end2end/fuzzers/api_fuzzer_corpus
Craig Tiller0477d7d2016-04-24 10:42:50 -07001174 dict: test/core/end2end/fuzzers/api_fuzzer.dictionary
Craig Tillerfc98f922016-04-13 08:45:06 -07001175 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001176- name: bin_encoder_test
1177 build: test
1178 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001179 src:
1180 - test/core/transport/chttp2/bin_encoder_test.c
1181 deps:
1182 - grpc_test_util
1183 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001184- name: census_context_test
1185 build: test
1186 language: c
1187 src:
1188 - test/core/census/context_test.c
1189 deps:
1190 - grpc_test_util
1191 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001192 - gpr_test_util
1193 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001194- name: channel_create_test
1195 build: test
1196 language: c
1197 src:
1198 - test/core/surface/channel_create_test.c
1199 deps:
1200 - grpc_test_util
1201 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001202 - gpr_test_util
1203 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001204- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001205 build: test
1206 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001207 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001208 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001209 deps:
1210 - grpc_test_util
1211 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001212 - gpr_test_util
1213 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001214- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001215 build: test
1216 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001217 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001218 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001219 deps:
1220 - grpc_test_util
1221 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001222 - gpr_test_util
1223 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001224- name: chttp2_stream_map_test
1225 build: test
1226 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001227 src:
1228 - test/core/transport/chttp2/stream_map_test.c
1229 deps:
1230 - grpc_test_util
1231 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001232 - gpr_test_util
1233 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001234- name: chttp2_varint_test
1235 build: test
1236 language: c
1237 src:
1238 - test/core/transport/chttp2/varint_test.c
1239 deps:
1240 - grpc_test_util
1241 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001242 - gpr_test_util
1243 - gpr
Craig Tiller845516e2016-04-11 20:49:20 -07001244- name: client_fuzzer
1245 build: fuzzer
1246 language: c
1247 src:
1248 - test/core/end2end/fuzzers/client_fuzzer.c
1249 deps:
1250 - grpc_test_util
1251 - grpc
1252 - gpr_test_util
1253 - gpr
1254 corpus_dirs:
1255 - test/core/end2end/fuzzers/client_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001256 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tiller845516e2016-04-11 20:49:20 -07001257 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001258- name: compression_test
1259 build: test
1260 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001261 src:
1262 - test/core/compression/compression_test.c
1263 deps:
1264 - grpc_test_util
1265 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001266 - gpr_test_util
1267 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001268- name: concurrent_connectivity_test
1269 build: test
1270 language: c
1271 src:
1272 - test/core/surface/concurrent_connectivity_test.c
1273 deps:
1274 - grpc_test_util
1275 - grpc
1276 - gpr_test_util
1277 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001278- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001279 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001280 build: test
1281 language: c
1282 src:
1283 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1284 deps:
1285 - grpc_test_util
1286 - grpc
1287 - gpr_test_util
1288 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001289- name: dns_resolver_test
1290 build: test
1291 language: c
1292 src:
1293 - test/core/client_config/resolvers/dns_resolver_test.c
1294 deps:
1295 - grpc_test_util
1296 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001297 - gpr_test_util
1298 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001299- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001300 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001301 build: test
1302 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001303 src:
1304 - test/core/end2end/dualstack_socket_test.c
1305 deps:
1306 - grpc_test_util
1307 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001308 - gpr_test_util
1309 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001310 platforms:
1311 - mac
1312 - linux
1313 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001314- name: endpoint_pair_test
1315 build: test
1316 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001317 src:
1318 - test/core/iomgr/endpoint_pair_test.c
1319 deps:
1320 - grpc_test_util
1321 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001322 - gpr_test_util
1323 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001324- name: fd_conservation_posix_test
1325 build: test
1326 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001327 src:
1328 - test/core/iomgr/fd_conservation_posix_test.c
1329 deps:
1330 - grpc_test_util
1331 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001332 - gpr_test_util
1333 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001334 platforms:
1335 - mac
1336 - linux
1337 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001338- name: fd_posix_test
1339 build: test
1340 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001341 src:
1342 - test/core/iomgr/fd_posix_test.c
1343 deps:
1344 - grpc_test_util
1345 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001346 - gpr_test_util
1347 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001348 platforms:
1349 - mac
1350 - linux
1351 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001352- name: fling_client
1353 build: test
1354 run: false
1355 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001356 src:
1357 - test/core/fling/client.c
1358 deps:
1359 - grpc_test_util
1360 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001361 - gpr_test_util
1362 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001363- name: fling_server
1364 build: test
1365 run: false
1366 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001367 src:
1368 - test/core/fling/server.c
1369 deps:
1370 - grpc_test_util
1371 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001372 - gpr_test_util
1373 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001374- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001375 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001376 build: test
1377 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001378 src:
1379 - test/core/fling/fling_stream_test.c
1380 deps:
1381 - grpc_test_util
1382 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001383 - gpr_test_util
1384 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001385 platforms:
1386 - mac
1387 - linux
1388 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001389- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001390 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001391 build: test
1392 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001393 src:
1394 - test/core/fling/fling_test.c
1395 deps:
1396 - grpc_test_util
1397 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001398 - gpr_test_util
1399 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001400 platforms:
1401 - mac
1402 - linux
1403 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001404- name: gen_hpack_tables
1405 build: tool
1406 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001407 src:
1408 - tools/codegen/core/gen_hpack_tables.c
1409 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001410 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001411 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001412- name: gen_legal_metadata_characters
1413 build: tool
1414 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001415 src:
1416 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001417 deps: []
Craig Tiller1b719582016-03-24 09:06:13 -07001418- name: goaway_server_test
1419 cpu_cost: 0.1
1420 build: test
1421 language: c
1422 src:
1423 - test/core/end2end/goaway_server_test.c
1424 deps:
1425 - grpc_test_util
1426 - grpc
1427 - gpr_test_util
1428 - gpr
1429 platforms:
1430 - mac
1431 - linux
1432 - posix
Craig Tillerfba79f22015-11-23 11:06:55 -08001433- name: gpr_avl_test
1434 build: test
1435 language: c
1436 src:
1437 - test/core/support/avl_test.c
1438 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001439 - gpr_test_util
1440 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001441- name: gpr_backoff_test
1442 build: test
1443 language: c
1444 src:
1445 - test/core/support/backoff_test.c
1446 deps:
1447 - gpr_test_util
1448 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001449- name: gpr_cmdline_test
1450 build: test
1451 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001452 src:
1453 - test/core/support/cmdline_test.c
1454 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001455 - gpr_test_util
1456 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001457- name: gpr_cpu_test
1458 build: test
1459 language: c
1460 src:
1461 - test/core/support/cpu_test.c
1462 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001463 - gpr_test_util
1464 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001465- name: gpr_env_test
1466 build: test
1467 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001468 src:
1469 - test/core/support/env_test.c
1470 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001471 - gpr_test_util
1472 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001473- name: gpr_histogram_test
1474 build: test
1475 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001476 src:
1477 - test/core/support/histogram_test.c
1478 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001479 - gpr_test_util
1480 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001481- name: gpr_host_port_test
1482 build: test
1483 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001484 src:
1485 - test/core/support/host_port_test.c
1486 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001487 - gpr_test_util
1488 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001489- name: gpr_load_file_test
1490 build: test
1491 language: c
1492 src:
1493 - test/core/support/load_file_test.c
1494 deps:
1495 - gpr_test_util
1496 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001497- name: gpr_log_test
1498 build: test
1499 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001500 src:
1501 - test/core/support/log_test.c
1502 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001503 - gpr_test_util
1504 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001505- name: gpr_slice_buffer_test
1506 build: test
1507 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001508 src:
1509 - test/core/support/slice_buffer_test.c
1510 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001511 - gpr_test_util
1512 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001513- name: gpr_slice_test
1514 build: test
1515 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001516 src:
1517 - test/core/support/slice_test.c
1518 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001519 - gpr_test_util
1520 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001521- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001522 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001523 build: test
1524 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001525 src:
1526 - test/core/support/stack_lockfree_test.c
1527 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001528 - gpr_test_util
1529 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001530- name: gpr_string_test
1531 build: test
1532 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001533 src:
1534 - test/core/support/string_test.c
1535 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001536 - gpr_test_util
1537 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001538- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001539 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001540 build: test
1541 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001542 src:
1543 - test/core/support/sync_test.c
1544 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001545 - gpr_test_util
1546 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001547- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001548 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001549 build: test
1550 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001551 src:
1552 - test/core/support/thd_test.c
1553 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001554 - gpr_test_util
1555 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001556- name: gpr_time_test
1557 build: test
1558 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001559 src:
1560 - test/core/support/time_test.c
1561 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001562 - gpr_test_util
1563 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001564- name: gpr_tls_test
1565 build: test
1566 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001567 src:
1568 - test/core/support/tls_test.c
1569 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001570 - gpr_test_util
1571 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001572- name: gpr_useful_test
1573 build: test
1574 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001575 src:
1576 - test/core/support/useful_test.c
1577 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001578 - gpr_test_util
1579 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001580- name: grpc_auth_context_test
1581 build: test
1582 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001583 src:
1584 - test/core/security/auth_context_test.c
1585 deps:
1586 - grpc_test_util
1587 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001588 - gpr_test_util
1589 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001590- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001591 build: test
1592 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001593 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001594 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001595 deps:
1596 - grpc_test_util
1597 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001598 - gpr_test_util
1599 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001600- name: grpc_byte_buffer_reader_test
1601 build: test
1602 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001603 src:
1604 - test/core/surface/byte_buffer_reader_test.c
1605 deps:
1606 - grpc_test_util
1607 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001608 - gpr_test_util
1609 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001610- name: grpc_channel_args_test
1611 build: test
1612 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001613 src:
1614 - test/core/channel/channel_args_test.c
1615 deps:
1616 - grpc_test_util
1617 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001618 - gpr_test_util
1619 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001620- name: grpc_channel_stack_test
1621 build: test
1622 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001623 src:
1624 - test/core/channel/channel_stack_test.c
1625 deps:
1626 - grpc_test_util
1627 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001628 - gpr_test_util
1629 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001630- name: grpc_completion_queue_test
1631 build: test
1632 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001633 src:
1634 - test/core/surface/completion_queue_test.c
1635 deps:
1636 - grpc_test_util
1637 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001638 - gpr_test_util
1639 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001640- name: grpc_create_jwt
1641 build: tool
1642 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001643 src:
1644 - test/core/security/create_jwt.c
1645 deps:
1646 - grpc_test_util
1647 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001648 - gpr_test_util
1649 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001650- name: grpc_credentials_test
1651 build: test
1652 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001653 src:
1654 - test/core/security/credentials_test.c
1655 deps:
1656 - grpc_test_util
1657 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001658 - gpr_test_util
1659 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001660- name: grpc_fetch_oauth2
1661 build: tool
1662 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001663 src:
1664 - test/core/security/fetch_oauth2.c
1665 deps:
1666 - grpc_test_util
1667 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001668 - gpr_test_util
1669 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001670- name: grpc_invalid_channel_args_test
1671 build: test
1672 language: c
1673 src:
1674 - test/core/surface/invalid_channel_args_test.c
1675 deps:
1676 - grpc_test_util
1677 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001678 - gpr_test_util
1679 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001680- name: grpc_json_token_test
1681 build: test
1682 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001683 src:
1684 - test/core/security/json_token_test.c
1685 deps:
1686 - grpc_test_util
1687 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001688 - gpr_test_util
1689 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001690 platforms:
1691 - linux
1692 - posix
1693 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001694- name: grpc_jwt_verifier_test
1695 build: test
1696 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001697 src:
1698 - test/core/security/jwt_verifier_test.c
1699 deps:
1700 - grpc_test_util
1701 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001702 - gpr_test_util
1703 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001704- name: grpc_print_google_default_creds_token
1705 build: tool
1706 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001707 src:
1708 - test/core/security/print_google_default_creds_token.c
1709 deps:
1710 - grpc_test_util
1711 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001712 - gpr_test_util
1713 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001714- name: grpc_security_connector_test
1715 build: test
1716 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001717 src:
1718 - test/core/security/security_connector_test.c
1719 deps:
1720 - grpc_test_util
1721 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001722 - gpr_test_util
1723 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001724- name: grpc_verify_jwt
1725 build: tool
1726 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001727 src:
1728 - test/core/security/verify_jwt.c
1729 deps:
1730 - grpc_test_util
1731 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001732 - gpr_test_util
1733 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001734- name: hpack_parser_fuzzer_test
1735 build: fuzzer
1736 language: c
1737 src:
1738 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1739 deps:
1740 - grpc_test_util
1741 - grpc
1742 - gpr_test_util
1743 - gpr
1744 corpus_dirs:
1745 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001746 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07001747 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001748- name: hpack_parser_test
1749 build: test
1750 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001751 src:
1752 - test/core/transport/chttp2/hpack_parser_test.c
1753 deps:
1754 - grpc_test_util
1755 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001756 - gpr_test_util
1757 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001758- name: hpack_table_test
1759 build: test
1760 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001761 src:
1762 - test/core/transport/chttp2/hpack_table_test.c
1763 deps:
1764 - grpc_test_util
1765 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001766 - gpr_test_util
1767 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001768- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001769 build: test
1770 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001771 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001772 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001773 deps:
1774 - grpc_test_util
1775 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001776 - gpr_test_util
1777 - gpr
Craig Tillerf707d622016-05-06 14:26:12 -07001778- name: http_request_fuzzer_test
1779 build: fuzzer
1780 language: c
1781 src:
1782 - test/core/http/request_fuzzer.c
1783 deps:
1784 - grpc_test_util
1785 - grpc
1786 - gpr_test_util
1787 - gpr
1788 corpus_dirs:
1789 - test/core/http/corpus
1790 maxlen: 2048
1791- name: http_response_fuzzer_test
1792 build: fuzzer
1793 language: c
1794 src:
1795 - test/core/http/response_fuzzer.c
1796 deps:
1797 - grpc_test_util
1798 - grpc
1799 - gpr_test_util
1800 - gpr
1801 corpus_dirs:
1802 - test/core/http/corpus
1803 maxlen: 2048
Matthew Iselin1824f052016-02-10 12:16:06 +11001804- name: httpcli_format_request_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001805 build: test
1806 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001807 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001808 - test/core/http/format_request_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001809 deps:
1810 - grpc_test_util
1811 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001812 - gpr_test_util
1813 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001814- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001815 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001816 build: test
1817 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001818 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001819 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001820 deps:
1821 - grpc_test_util
1822 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001823 - gpr_test_util
1824 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001825 platforms:
1826 - mac
1827 - linux
1828 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001829- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001830 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001831 build: test
1832 language: c
1833 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001834 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001835 deps:
1836 - grpc_test_util
1837 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001838 - gpr_test_util
1839 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001840 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001841 - linux
yang-gf1183302015-12-07 16:02:05 -08001842- name: init_test
1843 build: test
1844 language: c
1845 src:
1846 - test/core/surface/init_test.c
1847 deps:
1848 - grpc_test_util
1849 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001850 - gpr_test_util
1851 - gpr
Craig Tiller5cb79622016-03-15 14:46:54 -07001852- name: internal_api_canary_iomgr_test
1853 build: test
1854 run: false
1855 language: c
1856 src:
1857 - test/core/internal_api_canaries/iomgr.c
1858 deps:
1859 - grpc_test_util
1860 - grpc
1861 - gpr_test_util
1862 - gpr
1863- name: internal_api_canary_support_test
1864 build: test
1865 run: false
1866 language: c
1867 src:
1868 - test/core/internal_api_canaries/iomgr.c
1869 deps:
1870 - grpc_test_util
1871 - grpc
1872 - gpr_test_util
1873 - gpr
1874- name: internal_api_canary_transport_test
1875 build: test
1876 run: false
1877 language: c
1878 src:
1879 - test/core/internal_api_canaries/iomgr.c
1880 deps:
1881 - grpc_test_util
1882 - grpc
1883 - gpr_test_util
1884 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001885- name: invalid_call_argument_test
1886 build: test
1887 language: c
1888 src:
1889 - test/core/end2end/invalid_call_argument_test.c
1890 deps:
1891 - grpc_test_util
1892 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001893 - gpr_test_util
1894 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001895- name: json_fuzzer_test
1896 build: fuzzer
1897 language: c
1898 src:
1899 - test/core/json/fuzzer.c
1900 deps:
1901 - grpc_test_util
1902 - grpc
1903 - gpr_test_util
1904 - gpr
1905 corpus_dirs:
1906 - test/core/json/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001907 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001908- name: json_rewrite
1909 build: test
1910 run: false
1911 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001912 src:
1913 - test/core/json/json_rewrite.c
1914 deps:
1915 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001916 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001917- name: json_rewrite_test
1918 build: test
1919 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001920 src:
1921 - test/core/json/json_rewrite_test.c
1922 deps:
1923 - grpc_test_util
1924 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001925 - gpr_test_util
1926 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001927- name: json_stream_error_test
1928 build: test
1929 language: c
1930 src:
1931 - test/core/json/json_stream_error_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: json_test
1938 build: test
1939 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001940 src:
1941 - test/core/json/json_test.c
1942 deps:
1943 - grpc_test_util
1944 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001945 - gpr_test_util
1946 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001947- name: lame_client_test
1948 build: test
1949 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001950 src:
1951 - test/core/surface/lame_client_test.c
1952 deps:
1953 - grpc_test_util
1954 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001955 - gpr_test_util
1956 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001957- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001958 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001959 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001960 build: test
1961 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001962 src:
1963 - test/core/client_config/lb_policies_test.c
1964 deps:
1965 - grpc_test_util
1966 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001967 - gpr_test_util
1968 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001969- name: low_level_ping_pong_benchmark
1970 build: benchmark
1971 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001972 src:
1973 - test/core/network_benchmarks/low_level_ping_pong.c
1974 deps:
1975 - grpc_test_util
1976 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001977 - gpr_test_util
1978 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001979 platforms:
1980 - mac
1981 - linux
1982 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001983- name: message_compress_test
1984 build: test
1985 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001986 src:
1987 - test/core/compression/message_compress_test.c
1988 deps:
1989 - grpc_test_util
1990 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001991 - gpr_test_util
1992 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001993- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001994 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001995 build: test
1996 language: c
1997 src:
1998 - test/core/census/mlog_test.c
1999 deps:
2000 - grpc_test_util
2001 - grpc
2002 - gpr_test_util
2003 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002004- name: multiple_server_queues_test
2005 build: test
2006 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002007 src:
2008 - test/core/end2end/multiple_server_queues_test.c
2009 deps:
2010 - grpc_test_util
2011 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002012 - gpr_test_util
2013 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002014- name: murmur_hash_test
2015 build: test
2016 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002017 src:
2018 - test/core/support/murmur_hash_test.c
2019 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08002020 - gpr_test_util
2021 - gpr
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002022- name: nanopb_fuzzer_response_test
2023 build: fuzzer
2024 language: c
2025 src:
2026 - test/core/nanopb/fuzzer_response.c
2027 deps:
2028 - grpc_test_util
2029 - grpc
2030 - gpr_test_util
2031 - gpr
2032 corpus_dirs:
2033 - test/core/nanopb/corpus_response
Craig Tillerf64df112016-04-05 21:27:41 -07002034 maxlen: 128
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002035- name: nanopb_fuzzer_serverlist_test
2036 build: fuzzer
2037 language: c
2038 src:
2039 - test/core/nanopb/fuzzer_serverlist.c
2040 deps:
2041 - grpc_test_util
2042 - grpc
2043 - gpr_test_util
2044 - gpr
2045 corpus_dirs:
2046 - test/core/nanopb/corpus_serverlist
Craig Tillerf64df112016-04-05 21:27:41 -07002047 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002048- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002049 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002050 build: test
2051 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002052 src:
2053 - test/core/end2end/no_server_test.c
2054 deps:
2055 - grpc_test_util
2056 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002057 - gpr_test_util
2058 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002059- name: resolve_address_test
2060 build: test
2061 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002062 src:
2063 - test/core/iomgr/resolve_address_test.c
2064 deps:
2065 - grpc_test_util
2066 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002067 - gpr_test_util
2068 - gpr
yang-gd482e592015-12-10 14:04:00 -08002069- name: secure_channel_create_test
2070 build: test
2071 language: c
2072 src:
2073 - test/core/surface/secure_channel_create_test.c
2074 deps:
2075 - grpc_test_util
2076 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002077 - gpr_test_util
2078 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002079- name: secure_endpoint_test
2080 build: test
2081 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002082 src:
2083 - test/core/security/secure_endpoint_test.c
2084 deps:
2085 - grpc_test_util
2086 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002087 - gpr_test_util
2088 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08002089- name: server_chttp2_test
2090 build: test
2091 language: c
2092 src:
2093 - test/core/surface/server_chttp2_test.c
2094 deps:
2095 - grpc_test_util
2096 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002097 - gpr_test_util
2098 - gpr
Craig Tillerdf262c62016-04-02 13:53:49 -07002099- name: server_fuzzer
2100 build: fuzzer
2101 language: c
2102 src:
2103 - test/core/end2end/fuzzers/server_fuzzer.c
2104 deps:
2105 - grpc_test_util
2106 - grpc
2107 - gpr_test_util
2108 - gpr
2109 corpus_dirs:
2110 - test/core/end2end/fuzzers/server_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07002111 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07002112 maxlen: 2048
yang-gc3d94fb2015-12-10 14:38:00 -08002113- name: server_test
2114 build: test
2115 language: c
2116 src:
2117 - test/core/surface/server_test.c
2118 deps:
2119 - grpc_test_util
2120 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002121 - gpr_test_util
2122 - gpr
yang-gc9fca182015-11-06 16:41:33 -08002123- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002124 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08002125 build: test
2126 language: c
2127 src:
2128 - test/core/client_config/set_initial_connect_string_test.c
2129 deps:
2130 - test_tcp_server
2131 - grpc_test_util
2132 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002133 - gpr_test_util
2134 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08002135- name: sockaddr_resolver_test
2136 build: test
2137 language: c
2138 src:
2139 - test/core/client_config/resolvers/sockaddr_resolver_test.c
2140 deps:
2141 - grpc_test_util
2142 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002143 - gpr_test_util
2144 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002145- name: sockaddr_utils_test
2146 build: test
2147 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002148 src:
2149 - test/core/iomgr/sockaddr_utils_test.c
2150 deps:
2151 - grpc_test_util
2152 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002153 - gpr_test_util
2154 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002155- name: socket_utils_test
2156 build: test
2157 language: c
2158 src:
2159 - test/core/iomgr/socket_utils_test.c
2160 deps:
2161 - grpc_test_util
2162 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002163 - gpr_test_util
2164 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002165 platforms:
2166 - mac
2167 - linux
2168 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002169- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002170 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002171 build: test
2172 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002173 src:
2174 - test/core/iomgr/tcp_client_posix_test.c
2175 deps:
2176 - grpc_test_util
2177 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002178 - gpr_test_util
2179 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002180 platforms:
2181 - mac
2182 - linux
2183 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002184- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002185 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002186 build: test
2187 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002188 src:
2189 - test/core/iomgr/tcp_posix_test.c
2190 deps:
2191 - grpc_test_util
2192 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002193 - gpr_test_util
2194 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002195 platforms:
2196 - mac
2197 - linux
2198 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002199- name: tcp_server_posix_test
2200 build: test
2201 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002202 src:
2203 - test/core/iomgr/tcp_server_posix_test.c
2204 deps:
2205 - grpc_test_util
2206 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002207 - gpr_test_util
2208 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002209 platforms:
2210 - mac
2211 - linux
2212 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002213- name: time_averaged_stats_test
2214 build: test
2215 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002216 src:
2217 - test/core/iomgr/time_averaged_stats_test.c
2218 deps:
2219 - grpc_test_util
2220 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002221 - gpr_test_util
2222 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002223- name: timeout_encoding_test
2224 build: test
2225 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002226 src:
2227 - test/core/transport/chttp2/timeout_encoding_test.c
2228 deps:
2229 - grpc_test_util
2230 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002231 - gpr_test_util
2232 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002233- name: timer_heap_test
2234 build: test
2235 language: c
2236 src:
2237 - test/core/iomgr/timer_heap_test.c
2238 deps:
2239 - grpc_test_util
2240 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002241 - gpr_test_util
2242 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002243- name: timer_list_test
2244 build: test
2245 language: c
2246 src:
2247 - test/core/iomgr/timer_list_test.c
2248 deps:
2249 - grpc_test_util
2250 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002251 - gpr_test_util
2252 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002253- name: timers_test
2254 build: test
2255 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002256 src:
2257 - test/core/profiling/timers_test.c
2258 deps:
2259 - grpc_test_util
2260 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002261 - gpr_test_util
2262 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08002263- name: transport_connectivity_state_test
2264 build: test
2265 language: c
2266 src:
2267 - test/core/transport/connectivity_state_test.c
2268 deps:
2269 - grpc_test_util
2270 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002271 - gpr_test_util
2272 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002273- name: transport_metadata_test
2274 build: test
2275 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002276 src:
2277 - test/core/transport/metadata_test.c
2278 deps:
2279 - grpc_test_util
2280 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002281 - gpr_test_util
2282 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002283- name: transport_security_test
2284 build: test
2285 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002286 src:
2287 - test/core/tsi/transport_security_test.c
2288 deps:
2289 - grpc_test_util
2290 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002291 - gpr_test_util
2292 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002293 platforms:
2294 - linux
2295 - posix
2296 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002297- name: udp_server_test
2298 build: test
2299 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002300 src:
2301 - test/core/iomgr/udp_server_test.c
2302 deps:
2303 - grpc_test_util
2304 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002305 - gpr_test_util
2306 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002307 platforms:
2308 - mac
2309 - linux
2310 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002311- name: uri_fuzzer_test
2312 build: fuzzer
2313 language: c
2314 src:
2315 - test/core/client_config/uri_fuzzer_test.c
2316 deps:
2317 - grpc_test_util
2318 - grpc
2319 - gpr_test_util
2320 - gpr
2321 corpus_dirs:
2322 - test/core/client_config/uri_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002323 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002324- name: uri_parser_test
2325 build: test
2326 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002327 src:
2328 - test/core/client_config/uri_parser_test.c
2329 deps:
2330 - grpc_test_util
2331 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002332 - gpr_test_util
2333 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002334- name: workqueue_test
2335 build: test
2336 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002337 src:
2338 - test/core/iomgr/workqueue_test.c
2339 deps:
2340 - grpc_test_util
2341 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002342 - gpr_test_util
2343 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002344 platforms:
2345 - mac
2346 - linux
2347 - posix
vjpai04e992a2016-02-10 16:58:38 -08002348- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002349 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002350 build: test
2351 language: c++
2352 src:
2353 - test/cpp/common/alarm_cpp_test.cc
2354 deps:
2355 - grpc++_test_util
2356 - grpc_test_util
2357 - grpc++
2358 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002359 - gpr_test_util
2360 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002361- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002362 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002363 build: test
2364 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002365 src:
2366 - test/cpp/end2end/async_end2end_test.cc
2367 deps:
2368 - grpc++_test_util
2369 - grpc_test_util
2370 - grpc++
2371 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002372 - gpr_test_util
2373 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002374- name: async_streaming_ping_pong_test
2375 build: test
2376 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002377 src:
2378 - test/cpp/qps/async_streaming_ping_pong_test.cc
2379 deps:
2380 - qps
2381 - grpc++_test_util
2382 - grpc_test_util
2383 - grpc++
2384 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002385 - gpr_test_util
2386 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002387 platforms:
2388 - mac
2389 - linux
2390 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002391- name: async_unary_ping_pong_test
2392 build: test
2393 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002394 src:
2395 - test/cpp/qps/async_unary_ping_pong_test.cc
2396 deps:
2397 - qps
2398 - grpc++_test_util
2399 - grpc_test_util
2400 - grpc++
2401 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002402 - gpr_test_util
2403 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002404 platforms:
2405 - mac
2406 - linux
2407 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002408- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002409 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002410 build: test
2411 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002412 src:
2413 - test/cpp/common/auth_property_iterator_test.cc
2414 deps:
2415 - grpc++_test_util
2416 - grpc_test_util
2417 - grpc++
2418 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002419 - gpr_test_util
2420 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002421- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002422 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002423 build: test
2424 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002425 src:
yang-g52705592015-11-25 11:45:33 -08002426 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002427 deps:
2428 - grpc++
2429 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002430 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002431- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002432 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002433 build: test
2434 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002435 src:
2436 - test/cpp/util/cli_call_test.cc
2437 deps:
2438 - grpc++_test_util
2439 - grpc_test_util
2440 - grpc++
2441 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002442 - gpr_test_util
2443 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002444- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002445 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002446 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002447 build: test
2448 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002449 src:
2450 - test/cpp/end2end/client_crash_test.cc
2451 deps:
2452 - grpc++_test_util
2453 - grpc_test_util
2454 - grpc++
2455 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002456 - gpr_test_util
2457 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002458 platforms:
2459 - mac
2460 - linux
2461 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002462- name: client_crash_test_server
2463 build: test
2464 run: false
2465 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002466 src:
2467 - test/cpp/end2end/client_crash_test_server.cc
2468 deps:
2469 - grpc++_test_util
2470 - grpc_test_util
2471 - grpc++
2472 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002473 - gpr_test_util
2474 - gpr
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002475- name: codegen_test_full
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002476 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002477 build: test
2478 language: c++
2479 src:
2480 - src/proto/grpc/testing/control.proto
2481 - src/proto/grpc/testing/messages.proto
2482 - src/proto/grpc/testing/payloads.proto
2483 - src/proto/grpc/testing/perf_db.proto
2484 - src/proto/grpc/testing/services.proto
2485 - src/proto/grpc/testing/stats.proto
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002486 - test/cpp/codegen/codegen_test_full.cc
2487 deps:
2488 - grpc++
2489 - grpc
2490 - gpr
2491 filegroups:
2492 - grpc++_codegen
2493- name: codegen_test_minimal
2494 gtest: true
2495 build: test
2496 language: c++
2497 src:
2498 - src/proto/grpc/testing/control.proto
2499 - src/proto/grpc/testing/messages.proto
2500 - src/proto/grpc/testing/payloads.proto
2501 - src/proto/grpc/testing/perf_db.proto
2502 - src/proto/grpc/testing/services.proto
2503 - src/proto/grpc/testing/stats.proto
2504 - test/cpp/codegen/codegen_test_minimal.cc
Craig Tiller03d8f2f2016-04-07 08:02:16 -07002505 filegroups:
2506 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -07002507- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002508 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002509 build: test
2510 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002511 src:
2512 - test/cpp/client/credentials_test.cc
2513 deps:
2514 - grpc++
2515 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002516 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002517- name: cxx_byte_buffer_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/byte_buffer_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: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002530 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002531 build: test
2532 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002533 src:
2534 - test/cpp/util/slice_test.cc
2535 deps:
2536 - grpc_test_util
2537 - grpc++
2538 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002539 - gpr_test_util
2540 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002541- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002542 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002543 build: test
2544 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002545 src:
2546 - test/cpp/util/string_ref_test.cc
2547 deps:
2548 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002549- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002550 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002551 build: test
2552 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002553 src:
2554 - test/cpp/util/time_test.cc
2555 deps:
2556 - grpc_test_util
2557 - grpc++
2558 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002559 - gpr_test_util
2560 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002561- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002562 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002563 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002564 build: test
2565 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002566 src:
2567 - test/cpp/end2end/end2end_test.cc
2568 deps:
2569 - grpc++_test_util
2570 - grpc_test_util
2571 - grpc++
2572 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002573 - gpr_test_util
2574 - gpr
vjpai083dc622016-01-11 09:41:17 -08002575- name: generic_async_streaming_ping_pong_test
2576 build: test
2577 language: c++
2578 src:
2579 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2580 deps:
2581 - qps
2582 - grpc++_test_util
2583 - grpc_test_util
2584 - grpc++
2585 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002586 - gpr_test_util
2587 - gpr
vjpai083dc622016-01-11 09:41:17 -08002588 platforms:
2589 - mac
2590 - linux
2591 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002592- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002593 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002594 build: test
2595 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002596 src:
2597 - test/cpp/end2end/generic_end2end_test.cc
2598 deps:
2599 - grpc++_test_util
2600 - grpc_test_util
2601 - grpc++
2602 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002603 - gpr_test_util
2604 - gpr
yang-gb8aa58b2016-04-14 15:50:50 -07002605- name: golden_file_test
2606 gtest: true
2607 build: test
2608 language: c++
2609 src:
2610 - src/proto/grpc/testing/compiler_test.proto
2611 - test/cpp/codegen/golden_file_test.cc
2612 deps:
2613 - grpc++
2614 - grpc
2615 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002616- name: grpc_cli
2617 build: test
2618 run: false
2619 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002620 src:
2621 - test/cpp/util/grpc_cli.cc
2622 deps:
2623 - grpc++_test_util
2624 - grpc_test_util
2625 - grpc++
2626 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002627 - gpr_test_util
2628 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002629 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002630- name: grpc_cpp_plugin
2631 build: protoc
2632 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002633 src:
2634 - src/compiler/cpp_plugin.cc
2635 deps:
2636 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002637 secure: false
2638 vs_config_type: Application
2639 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2640- name: grpc_csharp_plugin
2641 build: protoc
2642 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002643 src:
2644 - src/compiler/csharp_plugin.cc
2645 deps:
2646 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002647 secure: false
2648 vs_config_type: Application
2649 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
murgatroid99d2ee81f2016-02-26 11:10:33 -08002650- name: grpc_node_plugin
2651 build: protoc
2652 language: c++
2653 src:
2654 - src/compiler/node_plugin.cc
2655 deps:
2656 - grpc_plugin_support
2657 secure: false
2658 vs_config_type: Application
Craig Tillerbf4b2242015-08-31 15:53:53 -07002659- name: grpc_objective_c_plugin
2660 build: protoc
2661 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002662 src:
2663 - src/compiler/objective_c_plugin.cc
2664 deps:
2665 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002666 secure: false
2667 vs_config_type: Application
2668 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2669- name: grpc_python_plugin
2670 build: protoc
2671 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002672 src:
2673 - src/compiler/python_plugin.cc
2674 deps:
2675 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002676 secure: false
2677 vs_config_type: Application
2678 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2679- name: grpc_ruby_plugin
2680 build: protoc
2681 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002682 src:
2683 - src/compiler/ruby_plugin.cc
2684 deps:
2685 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002686 secure: false
2687 vs_config_type: Application
2688 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002689- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002690 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002691 build: test
2692 language: c++
2693 src:
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002694 - src/proto/grpc/lb/v1/load_balancer.proto
Craig Tillereb841e22016-02-11 15:49:16 -08002695 - test/cpp/grpclb/grpclb_api_test.cc
2696 deps:
2697 - grpc++_test_util
2698 - grpc_test_util
2699 - grpc++
2700 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002701- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002702 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002703 build: test
2704 language: c++
2705 src:
2706 - test/cpp/end2end/hybrid_end2end_test.cc
2707 deps:
2708 - grpc++_test_util
2709 - grpc_test_util
2710 - grpc++
2711 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002712 - gpr_test_util
2713 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002714- name: interop_client
2715 build: test
2716 run: false
2717 language: c++
2718 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002719 deps:
2720 - interop_client_main
2721 - interop_client_helper
2722 - grpc++_test_util
2723 - grpc_test_util
2724 - grpc++
2725 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002726 - gpr_test_util
2727 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002728 - grpc++_test_config
2729 platforms:
2730 - mac
2731 - linux
2732 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002733- name: interop_server
2734 build: test
2735 run: false
2736 language: c++
2737 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002738 deps:
2739 - interop_server_main
2740 - interop_server_helper
2741 - grpc++_test_util
2742 - grpc_test_util
2743 - grpc++
2744 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002745 - gpr_test_util
2746 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002747 - grpc++_test_config
2748 platforms:
2749 - mac
2750 - linux
2751 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002752- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002753 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002754 build: test
2755 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002756 src:
2757 - test/cpp/interop/interop_test.cc
2758 deps:
2759 - grpc_test_util
2760 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002761 - gpr_test_util
2762 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002763 platforms:
2764 - mac
2765 - linux
2766 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002767- name: json_run_localhost
2768 build: test
2769 run: false
2770 language: c++
2771 src:
2772 - test/cpp/qps/json_run_localhost.cc
2773 deps:
2774 - grpc++_test_util
2775 - grpc_test_util
2776 - grpc++
2777 - grpc
2778 - gpr_test_util
2779 - gpr
2780 - grpc++_test_config
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002781- name: metrics_client
2782 build: test
2783 run: false
2784 language: c++
2785 headers:
2786 - test/cpp/util/metrics_server.h
2787 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002788 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002789 - test/cpp/interop/metrics_client.cc
2790 deps:
2791 - grpc++
2792 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002793 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002794 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002795- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002796 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002797 build: test
2798 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002799 src:
2800 - test/cpp/end2end/mock_test.cc
2801 deps:
2802 - grpc++_test_util
2803 - grpc_test_util
2804 - grpc++
2805 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002806 - gpr_test_util
2807 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002808- name: qps_interarrival_test
2809 build: test
2810 run: false
2811 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002812 src:
2813 - test/cpp/qps/qps_interarrival_test.cc
2814 deps:
2815 - qps
2816 - grpc++_test_util
2817 - grpc_test_util
2818 - grpc++
2819 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002820 - gpr_test_util
2821 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002822 platforms:
2823 - mac
2824 - linux
2825 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002826- name: qps_json_driver
2827 build: test
2828 run: false
2829 language: c++
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002830 headers:
2831 - test/cpp/qps/parse_json.h
Craig Tiller0bda0b32016-03-03 12:51:53 -08002832 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002833 - test/cpp/qps/parse_json.cc
Craig Tiller0bda0b32016-03-03 12:51:53 -08002834 - test/cpp/qps/qps_json_driver.cc
2835 deps:
2836 - qps
2837 - grpc++_test_util
2838 - grpc_test_util
2839 - grpc++
2840 - grpc
2841 - gpr_test_util
2842 - gpr
2843 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002844- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002845 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002846 build: test
2847 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002848 src:
2849 - test/cpp/qps/qps_openloop_test.cc
2850 deps:
2851 - qps
2852 - grpc++_test_util
2853 - grpc_test_util
2854 - grpc++
2855 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002856 - gpr_test_util
2857 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002858 - grpc++_test_config
2859 platforms:
2860 - mac
2861 - linux
2862 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002863- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002864 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002865 build: test
2866 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002867 src:
2868 - test/cpp/qps/qps_test.cc
2869 deps:
2870 - qps
2871 - grpc++_test_util
2872 - grpc_test_util
2873 - grpc++
2874 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002875 - gpr_test_util
2876 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002877 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002878 platforms:
2879 - mac
2880 - linux
2881 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002882- name: qps_worker
Craig Tiller0bda0b32016-03-03 12:51:53 -08002883 build: test
2884 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002885 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002886 headers:
2887 - test/cpp/qps/client.h
2888 - test/cpp/qps/server.h
2889 src:
2890 - test/cpp/qps/worker.cc
2891 deps:
2892 - qps
2893 - grpc++_test_util
2894 - grpc_test_util
2895 - grpc++
2896 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002897 - gpr_test_util
2898 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002899 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002900- name: reconnect_interop_client
2901 build: test
2902 run: false
2903 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002904 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002905 - src/proto/grpc/testing/empty.proto
2906 - src/proto/grpc/testing/messages.proto
2907 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002908 - test/cpp/interop/reconnect_interop_client.cc
2909 deps:
2910 - grpc++_test_util
2911 - grpc_test_util
2912 - grpc++
2913 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002914 - gpr_test_util
2915 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002916 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002917- name: reconnect_interop_server
2918 build: test
2919 run: false
2920 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002921 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002922 - src/proto/grpc/testing/empty.proto
2923 - src/proto/grpc/testing/messages.proto
2924 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002925 - test/cpp/interop/reconnect_interop_server.cc
2926 deps:
2927 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002928 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002929 - grpc++_test_util
2930 - grpc_test_util
2931 - grpc++
2932 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002933 - gpr_test_util
2934 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002935 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002936- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002937 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002938 build: test
2939 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002940 src:
2941 - test/cpp/common/secure_auth_context_test.cc
2942 deps:
2943 - grpc++_test_util
2944 - grpc_test_util
2945 - grpc++
2946 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002947 - gpr_test_util
2948 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002949- name: secure_sync_unary_ping_pong_test
2950 build: test
2951 language: c++
2952 src:
2953 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2954 deps:
2955 - qps
2956 - grpc++_test_util
2957 - grpc_test_util
2958 - grpc++
2959 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002960 - gpr_test_util
2961 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002962 platforms:
2963 - mac
2964 - linux
2965 - posix
Yuchen Zenga42ec212016-04-29 13:03:06 -07002966- name: server_builder_plugin_test
2967 gtest: true
2968 build: test
2969 language: c++
2970 src:
2971 - test/cpp/end2end/server_builder_plugin_test.cc
2972 deps:
2973 - grpc++_test_util
2974 - grpc_test_util
2975 - grpc++
2976 - grpc
2977 - gpr_test_util
2978 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002979- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002980 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002981 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002982 build: test
2983 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002984 src:
2985 - test/cpp/end2end/server_crash_test.cc
2986 deps:
2987 - grpc++_test_util
2988 - grpc_test_util
2989 - grpc++
2990 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002991 - gpr_test_util
2992 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002993 platforms:
2994 - mac
2995 - linux
2996 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002997- name: server_crash_test_client
2998 build: test
2999 run: false
3000 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003001 src:
3002 - test/cpp/end2end/server_crash_test_client.cc
3003 deps:
3004 - grpc++_test_util
3005 - grpc_test_util
3006 - grpc++
3007 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003008 - gpr_test_util
3009 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003010- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003011 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003012 build: test
3013 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003014 src:
3015 - test/cpp/end2end/shutdown_test.cc
3016 deps:
3017 - grpc++_test_util
3018 - grpc_test_util
3019 - grpc++
3020 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003021 - gpr_test_util
3022 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003023- name: status_test
3024 build: test
3025 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003026 src:
3027 - test/cpp/util/status_test.cc
3028 deps:
3029 - grpc_test_util
3030 - grpc++
3031 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003032 - gpr_test_util
3033 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003034- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003035 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003036 build: test
3037 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003038 src:
3039 - test/cpp/end2end/streaming_throughput_test.cc
3040 deps:
3041 - grpc++_test_util
3042 - grpc_test_util
3043 - grpc++
3044 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003045 - gpr_test_util
3046 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003047 platforms:
3048 - mac
3049 - linux
3050 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003051- name: stress_test
3052 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07003053 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003054 language: c++
3055 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07003056 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003057 - test/cpp/interop/interop_client.h
3058 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003059 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003060 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003061 - src/proto/grpc/testing/empty.proto
3062 - src/proto/grpc/testing/messages.proto
3063 - src/proto/grpc/testing/metrics.proto
3064 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003065 - test/cpp/interop/interop_client.cc
3066 - test/cpp/interop/stress_interop_client.cc
3067 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003068 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003069 deps:
3070 - grpc++_test_util
3071 - grpc_test_util
3072 - grpc++
3073 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003074 - gpr_test_util
3075 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003076 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07003077- name: sync_streaming_ping_pong_test
3078 build: test
3079 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003080 src:
3081 - test/cpp/qps/sync_streaming_ping_pong_test.cc
3082 deps:
3083 - qps
3084 - grpc++_test_util
3085 - grpc_test_util
3086 - grpc++
3087 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003088 - gpr_test_util
3089 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003090 platforms:
3091 - mac
3092 - linux
3093 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003094- name: sync_unary_ping_pong_test
3095 build: test
3096 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003097 src:
3098 - test/cpp/qps/sync_unary_ping_pong_test.cc
3099 deps:
3100 - qps
3101 - grpc++_test_util
3102 - grpc_test_util
3103 - grpc++
3104 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003105 - gpr_test_util
3106 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003107 platforms:
3108 - mac
3109 - linux
3110 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003111- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003112 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08003113 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07003114 build: test
3115 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003116 src:
3117 - test/cpp/end2end/thread_stress_test.cc
3118 deps:
3119 - grpc++_test_util
3120 - grpc_test_util
3121 - grpc++
3122 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003123 - gpr_test_util
3124 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003125- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003126 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003127 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07003128 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07003129 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003130 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003131 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07003132 - test/cpp/end2end/zookeeper_test.cc
3133 deps:
3134 - grpc++_test_util
3135 - grpc_test_util
3136 - grpc++
3137 - grpc_zookeeper
3138 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003139 - gpr_test_util
3140 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003141 external_deps:
3142 - zookeeper
3143 platforms:
3144 - linux
Craig Tillerab230452016-01-04 08:18:43 -08003145- name: public_headers_must_be_c89
3146 build: test
3147 language: c89
3148 src:
3149 - test/core/surface/public_headers_must_be_c89.c
3150 deps:
3151 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003152 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003153vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07003154- linkage: static
3155 name: grpc.dependencies.zlib
3156 props: false
3157 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003158 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08003159- linkage: static
3160 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07003161 props: true
3162 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003163 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07003164- name: gflags
3165 props: false
3166 redist: false
3167 version: 2.1.2.1
3168- name: gtest
3169 props: false
3170 redist: false
3171 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08003172configs:
3173 asan:
3174 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003175 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3176 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003177 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003178 LD: clang
3179 LDFLAGS: -fsanitize=address
3180 LDXX: clang++
3181 compile_the_world: true
3182 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08003183 ASAN_OPTIONS: detect_leaks=1:color=always
3184 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08003185 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003186 asan-noleaks:
3187 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003188 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3189 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003190 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003191 LD: clang
3192 LDFLAGS: -fsanitize=address
3193 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08003194 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08003195 test_environ:
3196 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08003197 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07003198 asan-trace-cmp:
3199 CC: clang
Craig Tillerff822392016-03-23 21:46:52 -07003200 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize-coverage=trace-cmp -fsanitize=address
3201 -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerae945942016-03-23 21:43:58 -07003202 CXX: clang++
3203 LD: clang
3204 LDFLAGS: -fsanitize=address
3205 LDXX: clang++
3206 compile_the_world: true
3207 test_environ:
3208 ASAN_OPTIONS: detect_leaks=1:color=always
3209 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3210 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003211 basicprof:
3212 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
3213 DEFINES: NDEBUG
3214 dbg:
3215 CPPFLAGS: -O0
3216 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08003217 easan:
3218 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003219 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3220 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tiller3af3f742016-02-28 21:53:13 -08003221 CXX: clang++
3222 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3223 LD: clang
3224 LDFLAGS: -fsanitize=address
3225 LDXX: clang++
3226 compile_the_world: true
3227 test_environ:
3228 ASAN_OPTIONS: detect_leaks=1:color=always
3229 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3230 timeout_multiplier: 3
3231 edbg:
3232 CPPFLAGS: -O0
3233 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3234 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08003235 CC: clang
3236 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003237 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08003238 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08003239 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08003240 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003241 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08003242 LDXX: clang++
3243 compile_the_world: true
3244 test_environ:
3245 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
3246 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003247 gcov:
3248 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003249 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08003250 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08003251 DEFINES: _DEBUG DEBUG GPR_GCOV
3252 LD: gcc
3253 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
3254 LDXX: g++
3255 helgrind:
3256 CPPFLAGS: -O0
3257 DEFINES: _DEBUG DEBUG
3258 LDFLAGS: -rdynamic
3259 timeout_multiplier: 20
3260 valgrind: --tool=helgrind
3261 memcheck:
3262 CPPFLAGS: -O0
3263 DEFINES: _DEBUG DEBUG
3264 LDFLAGS: -rdynamic
3265 timeout_multiplier: 10
3266 valgrind: --tool=memcheck --leak-check=full
3267 msan:
3268 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003269 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
3270 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3271 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003272 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003273 DEFINES: NDEBUG
3274 LD: clang
3275 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3276 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
3277 LDXX: clang++
3278 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08003279 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08003280 mutrace:
3281 CPPFLAGS: -O0
3282 DEFINES: _DEBUG DEBUG
3283 LDFLAGS: -rdynamic
3284 opt:
3285 CPPFLAGS: -O2
3286 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08003287 stapprof:
3288 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
3289 DEFINES: NDEBUG
3290 tsan:
3291 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003292 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003293 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003294 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003295 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003296 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08003297 LDXX: clang++
3298 compile_the_world: true
3299 test_environ:
3300 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08003301 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003302 ubsan:
3303 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003304 CPPFLAGS: -O1 -fsanitize-coverage=edge -fsanitize=undefined -fno-omit-frame-pointer
3305 -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08003306 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003307 DEFINES: NDEBUG
3308 LD: clang
3309 LDFLAGS: -fsanitize=undefined
3310 LDXX: clang++
3311 compile_the_world: true
3312 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003313defaults:
3314 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003315 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Craig Tiller78222f72016-05-10 09:55:38 -07003316 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003317 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003318 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003319 global:
3320 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
3321 LDFLAGS: -g
3322 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01003323 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01003324 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08003325node_modules:
3326- deps:
3327 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003328 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08003329 - boringssl
3330 - z
murgatroid9994a75412015-11-19 14:04:53 -08003331 headers:
3332 - src/node/ext/byte_buffer.h
3333 - src/node/ext/call.h
3334 - src/node/ext/call_credentials.h
3335 - src/node/ext/channel.h
3336 - src/node/ext/channel_credentials.h
3337 - src/node/ext/completion_queue_async_worker.h
3338 - src/node/ext/server.h
3339 - src/node/ext/server_credentials.h
3340 - src/node/ext/timeval.h
3341 js:
3342 - src/node/index.js
3343 - src/node/src/client.js
3344 - src/node/src/common.js
3345 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08003346 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08003347 - src/node/src/metadata.js
3348 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003349 name: grpc_node
3350 src:
3351 - src/node/ext/byte_buffer.cc
3352 - src/node/ext/call.cc
3353 - src/node/ext/call_credentials.cc
3354 - src/node/ext/channel.cc
3355 - src/node/ext/channel_credentials.cc
3356 - src/node/ext/completion_queue_async_worker.cc
3357 - src/node/ext/node_grpc.cc
3358 - src/node/ext/server.cc
3359 - src/node/ext/server_credentials.cc
3360 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003361openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003362 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003363 extraction_dir: openssl-1.0.2f
3364 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003365php_config_m4:
3366 deps:
3367 - grpc
3368 - gpr
3369 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003370 headers:
3371 - src/php/ext/grpc/byte_buffer.h
3372 - src/php/ext/grpc/call.h
3373 - src/php/ext/grpc/call_credentials.h
3374 - src/php/ext/grpc/channel.h
3375 - src/php/ext/grpc/channel_credentials.h
3376 - src/php/ext/grpc/completion_queue.h
3377 - src/php/ext/grpc/php_grpc.h
3378 - src/php/ext/grpc/server.h
3379 - src/php/ext/grpc/server_credentials.h
3380 - src/php/ext/grpc/timeval.h
3381 src:
3382 - src/php/ext/grpc/byte_buffer.c
3383 - src/php/ext/grpc/call.c
3384 - src/php/ext/grpc/call_credentials.c
3385 - src/php/ext/grpc/channel.c
3386 - src/php/ext/grpc/channel_credentials.c
3387 - src/php/ext/grpc/completion_queue.c
3388 - src/php/ext/grpc/php_grpc.c
3389 - src/php/ext/grpc/server.c
3390 - src/php/ext/grpc/server_credentials.c
3391 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003392python_dependencies:
3393 deps:
3394 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003395 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003396 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003397 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003398ruby_gem:
3399 deps:
3400 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003401 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003402 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003403 - z