blob: aeb31003e728d449b9c96f8ae3eb77f24e99c6a2 [file] [log] [blame]
Craig Tillerbf4b2242015-08-31 15:53:53 -07001'#1': This file describes the list of targets and dependencies.
2'#2': It is used among other things to generate all of our project files.
3'#3': Please refer to the templates directory for more information.
4settings:
Craig Tillerf008f062016-02-08 12:48:03 -08005 '#1': The public version number of the library.
6 '#2': Master always has a "-dev" suffix
7 '#3': Use "-preN" suffixes to identify pre-release versions
Craig Tiller719a9a02016-02-08 15:06:54 -08008 '#4': Per-language overrides are possible with (eg) ruby_version tag here
Craig Tillerf008f062016-02-08 12:48:03 -08009 '#5': See the expand_version.py for all the quirks here
Nicolas "Pixel" Noble16caa502016-05-06 03:02:51 +020010 version: 0.15.0-dev
Craig Tillerbf4b2242015-08-31 15:53:53 -070011filegroups:
12- name: census
Craig Tiller25834342015-09-25 08:08:24 -070013 public_headers:
14 - include/grpc/census.h
15 headers:
Craig Tiller8f8e9f92016-03-29 09:41:28 -070016 - src/core/ext/census/aggregation.h
17 - src/core/ext/census/census_interface.h
18 - src/core/ext/census/census_rpc_stats.h
19 - src/core/ext/census/grpc_filter.h
Craig Tiller8f8e9f92016-03-29 09:41:28 -070020 - src/core/ext/census/mlog.h
21 - src/core/ext/census/rpc_metric_id.h
Craig Tiller25834342015-09-25 08:08:24 -070022 src:
Craig Tiller8f8e9f92016-03-29 09:41:28 -070023 - src/core/ext/census/context.c
24 - src/core/ext/census/grpc_context.c
25 - src/core/ext/census/grpc_filter.c
26 - src/core/ext/census/grpc_plugin.c
27 - src/core/ext/census/initialize.c
28 - src/core/ext/census/mlog.c
29 - src/core/ext/census/operation.c
30 - src/core/ext/census/placeholders.c
31 - src/core/ext/census/tracing.c
32 plugin: census_grpc_plugin
Craig Tillerd1697d92016-04-05 16:05:46 -070033 uses:
34 - grpc_base
35- name: gpr_base
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010036 public_headers:
37 - include/grpc/support/alloc.h
38 - include/grpc/support/atm.h
39 - include/grpc/support/atm_gcc_atomic.h
40 - include/grpc/support/atm_gcc_sync.h
41 - include/grpc/support/atm_win32.h
42 - include/grpc/support/avl.h
43 - include/grpc/support/cmdline.h
44 - include/grpc/support/cpu.h
45 - include/grpc/support/histogram.h
46 - include/grpc/support/host_port.h
47 - include/grpc/support/log.h
48 - include/grpc/support/log_win32.h
49 - include/grpc/support/port_platform.h
50 - include/grpc/support/slice.h
51 - include/grpc/support/slice_buffer.h
52 - include/grpc/support/string_util.h
53 - include/grpc/support/subprocess.h
54 - include/grpc/support/sync.h
55 - include/grpc/support/sync_generic.h
56 - include/grpc/support/sync_posix.h
57 - include/grpc/support/sync_win32.h
58 - include/grpc/support/thd.h
59 - include/grpc/support/time.h
60 - include/grpc/support/tls.h
61 - include/grpc/support/tls_gcc.h
62 - include/grpc/support/tls_msvc.h
63 - include/grpc/support/tls_pthread.h
64 - include/grpc/support/useful.h
65 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -070066 - src/core/lib/profiling/timers.h
67 - src/core/lib/support/backoff.h
68 - src/core/lib/support/block_annotate.h
69 - src/core/lib/support/env.h
70 - src/core/lib/support/load_file.h
71 - src/core/lib/support/murmur_hash.h
72 - src/core/lib/support/stack_lockfree.h
73 - src/core/lib/support/string.h
74 - src/core/lib/support/string_win32.h
75 - src/core/lib/support/thd_internal.h
76 - src/core/lib/support/time_precise.h
77 - src/core/lib/support/tmpfile.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010078 src:
Craig Tillerf23078c2016-03-25 17:07:29 -070079 - src/core/lib/profiling/basic_timers.c
80 - src/core/lib/profiling/stap_timers.c
81 - src/core/lib/support/alloc.c
82 - src/core/lib/support/avl.c
83 - src/core/lib/support/backoff.c
84 - src/core/lib/support/cmdline.c
85 - src/core/lib/support/cpu_iphone.c
86 - src/core/lib/support/cpu_linux.c
87 - src/core/lib/support/cpu_posix.c
88 - src/core/lib/support/cpu_windows.c
89 - src/core/lib/support/env_linux.c
90 - src/core/lib/support/env_posix.c
91 - src/core/lib/support/env_win32.c
92 - src/core/lib/support/histogram.c
93 - src/core/lib/support/host_port.c
94 - src/core/lib/support/load_file.c
95 - src/core/lib/support/log.c
96 - src/core/lib/support/log_android.c
97 - src/core/lib/support/log_linux.c
98 - src/core/lib/support/log_posix.c
99 - src/core/lib/support/log_win32.c
100 - src/core/lib/support/murmur_hash.c
101 - src/core/lib/support/slice.c
102 - src/core/lib/support/slice_buffer.c
103 - src/core/lib/support/stack_lockfree.c
104 - src/core/lib/support/string.c
105 - src/core/lib/support/string_posix.c
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200106 - src/core/lib/support/string_util_win32.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700107 - src/core/lib/support/string_win32.c
108 - src/core/lib/support/subprocess_posix.c
109 - src/core/lib/support/subprocess_windows.c
110 - src/core/lib/support/sync.c
111 - src/core/lib/support/sync_posix.c
112 - src/core/lib/support/sync_win32.c
113 - src/core/lib/support/thd.c
114 - src/core/lib/support/thd_posix.c
115 - src/core/lib/support/thd_win32.c
116 - src/core/lib/support/time.c
117 - src/core/lib/support/time_posix.c
118 - src/core/lib/support/time_precise.c
119 - src/core/lib/support/time_win32.c
120 - src/core/lib/support/tls_pthread.c
Nicolas "Pixel" Noblec4b18a52016-04-15 04:53:54 +0200121 - src/core/lib/support/tmpfile_msys.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700122 - src/core/lib/support/tmpfile_posix.c
123 - src/core/lib/support/tmpfile_win32.c
124 - src/core/lib/support/wrap_memcpy.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700125 uses:
126 - gpr_codegen
Craig Tiller1298afd2016-02-09 12:29:17 -0800127- name: gpr_codegen
128 public_headers:
129 - include/grpc/impl/codegen/alloc.h
130 - include/grpc/impl/codegen/atm.h
131 - include/grpc/impl/codegen/atm_gcc_atomic.h
132 - include/grpc/impl/codegen/atm_gcc_sync.h
133 - include/grpc/impl/codegen/atm_win32.h
134 - include/grpc/impl/codegen/log.h
135 - include/grpc/impl/codegen/port_platform.h
136 - include/grpc/impl/codegen/slice.h
137 - include/grpc/impl/codegen/slice_buffer.h
138 - include/grpc/impl/codegen/sync.h
139 - include/grpc/impl/codegen/sync_generic.h
140 - include/grpc/impl/codegen/sync_posix.h
141 - include/grpc/impl/codegen/sync_win32.h
142 - include/grpc/impl/codegen/time.h
Craig Tillerbf4b2242015-08-31 15:53:53 -0700143- name: grpc_base
Craig Tiller25834342015-09-25 08:08:24 -0700144 public_headers:
145 - include/grpc/byte_buffer.h
146 - include/grpc/byte_buffer_reader.h
147 - include/grpc/compression.h
148 - include/grpc/grpc.h
149 - include/grpc/status.h
150 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700151 - src/core/lib/channel/channel_args.h
152 - src/core/lib/channel/channel_stack.h
153 - src/core/lib/channel/channel_stack_builder.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700154 - src/core/lib/channel/compress_filter.h
155 - src/core/lib/channel/connected_channel.h
156 - src/core/lib/channel/context.h
157 - src/core/lib/channel/http_client_filter.h
158 - src/core/lib/channel/http_server_filter.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700159 - src/core/lib/compression/algorithm_metadata.h
160 - src/core/lib/compression/message_compress.h
161 - src/core/lib/debug/trace.h
162 - src/core/lib/http/format_request.h
163 - src/core/lib/http/httpcli.h
164 - src/core/lib/http/parser.h
165 - src/core/lib/iomgr/closure.h
166 - src/core/lib/iomgr/endpoint.h
167 - src/core/lib/iomgr/endpoint_pair.h
Craig Tiller8a034482016-03-28 16:09:04 -0700168 - src/core/lib/iomgr/ev_poll_and_epoll_posix.h
169 - src/core/lib/iomgr/ev_posix.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700170 - src/core/lib/iomgr/exec_ctx.h
171 - src/core/lib/iomgr/executor.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700172 - src/core/lib/iomgr/iocp_windows.h
173 - src/core/lib/iomgr/iomgr.h
174 - src/core/lib/iomgr/iomgr_internal.h
175 - src/core/lib/iomgr/iomgr_posix.h
176 - src/core/lib/iomgr/pollset.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700177 - src/core/lib/iomgr/pollset_set.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700178 - src/core/lib/iomgr/pollset_set_windows.h
179 - src/core/lib/iomgr/pollset_windows.h
180 - src/core/lib/iomgr/resolve_address.h
181 - src/core/lib/iomgr/sockaddr.h
182 - src/core/lib/iomgr/sockaddr_posix.h
183 - src/core/lib/iomgr/sockaddr_utils.h
184 - src/core/lib/iomgr/sockaddr_win32.h
185 - src/core/lib/iomgr/socket_utils_posix.h
186 - src/core/lib/iomgr/socket_windows.h
187 - src/core/lib/iomgr/tcp_client.h
188 - src/core/lib/iomgr/tcp_posix.h
189 - src/core/lib/iomgr/tcp_server.h
190 - src/core/lib/iomgr/tcp_windows.h
191 - src/core/lib/iomgr/time_averaged_stats.h
192 - src/core/lib/iomgr/timer.h
193 - src/core/lib/iomgr/timer_heap.h
194 - src/core/lib/iomgr/udp_server.h
195 - src/core/lib/iomgr/unix_sockets_posix.h
196 - src/core/lib/iomgr/wakeup_fd_pipe.h
197 - src/core/lib/iomgr/wakeup_fd_posix.h
198 - src/core/lib/iomgr/workqueue.h
199 - src/core/lib/iomgr/workqueue_posix.h
200 - src/core/lib/iomgr/workqueue_windows.h
201 - src/core/lib/json/json.h
202 - src/core/lib/json/json_common.h
203 - src/core/lib/json/json_reader.h
204 - src/core/lib/json/json_writer.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700205 - src/core/lib/surface/api_trace.h
206 - src/core/lib/surface/call.h
207 - src/core/lib/surface/call_test_only.h
208 - src/core/lib/surface/channel.h
209 - src/core/lib/surface/channel_init.h
210 - src/core/lib/surface/channel_stack_type.h
211 - src/core/lib/surface/completion_queue.h
212 - src/core/lib/surface/event_string.h
213 - src/core/lib/surface/init.h
214 - src/core/lib/surface/lame_client.h
215 - src/core/lib/surface/server.h
216 - src/core/lib/surface/surface_trace.h
217 - src/core/lib/transport/byte_stream.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700218 - src/core/lib/transport/connectivity_state.h
219 - src/core/lib/transport/metadata.h
220 - src/core/lib/transport/metadata_batch.h
221 - src/core/lib/transport/static_metadata.h
222 - src/core/lib/transport/transport.h
223 - src/core/lib/transport/transport_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700224 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700225 - src/core/lib/channel/channel_args.c
226 - src/core/lib/channel/channel_stack.c
227 - src/core/lib/channel/channel_stack_builder.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700228 - src/core/lib/channel/compress_filter.c
229 - src/core/lib/channel/connected_channel.c
230 - src/core/lib/channel/http_client_filter.c
231 - src/core/lib/channel/http_server_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700232 - src/core/lib/compression/compression_algorithm.c
233 - src/core/lib/compression/message_compress.c
234 - src/core/lib/debug/trace.c
235 - src/core/lib/http/format_request.c
236 - src/core/lib/http/httpcli.c
237 - src/core/lib/http/parser.c
238 - src/core/lib/iomgr/closure.c
239 - src/core/lib/iomgr/endpoint.c
240 - src/core/lib/iomgr/endpoint_pair_posix.c
241 - src/core/lib/iomgr/endpoint_pair_windows.c
Craig Tiller8a034482016-03-28 16:09:04 -0700242 - src/core/lib/iomgr/ev_poll_and_epoll_posix.c
243 - src/core/lib/iomgr/ev_posix.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700244 - src/core/lib/iomgr/exec_ctx.c
245 - src/core/lib/iomgr/executor.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700246 - src/core/lib/iomgr/iocp_windows.c
247 - src/core/lib/iomgr/iomgr.c
248 - src/core/lib/iomgr/iomgr_posix.c
249 - src/core/lib/iomgr/iomgr_windows.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700250 - src/core/lib/iomgr/pollset_set_windows.c
251 - src/core/lib/iomgr/pollset_windows.c
252 - src/core/lib/iomgr/resolve_address_posix.c
253 - src/core/lib/iomgr/resolve_address_windows.c
254 - src/core/lib/iomgr/sockaddr_utils.c
255 - src/core/lib/iomgr/socket_utils_common_posix.c
256 - src/core/lib/iomgr/socket_utils_linux.c
257 - src/core/lib/iomgr/socket_utils_posix.c
258 - src/core/lib/iomgr/socket_windows.c
259 - src/core/lib/iomgr/tcp_client_posix.c
260 - src/core/lib/iomgr/tcp_client_windows.c
261 - src/core/lib/iomgr/tcp_posix.c
262 - src/core/lib/iomgr/tcp_server_posix.c
263 - src/core/lib/iomgr/tcp_server_windows.c
264 - src/core/lib/iomgr/tcp_windows.c
265 - src/core/lib/iomgr/time_averaged_stats.c
266 - src/core/lib/iomgr/timer.c
267 - src/core/lib/iomgr/timer_heap.c
268 - src/core/lib/iomgr/udp_server.c
269 - src/core/lib/iomgr/unix_sockets_posix.c
270 - src/core/lib/iomgr/unix_sockets_posix_noop.c
271 - src/core/lib/iomgr/wakeup_fd_eventfd.c
272 - src/core/lib/iomgr/wakeup_fd_nospecial.c
273 - src/core/lib/iomgr/wakeup_fd_pipe.c
274 - src/core/lib/iomgr/wakeup_fd_posix.c
275 - src/core/lib/iomgr/workqueue_posix.c
276 - src/core/lib/iomgr/workqueue_windows.c
277 - src/core/lib/json/json.c
278 - src/core/lib/json/json_reader.c
279 - src/core/lib/json/json_string.c
280 - src/core/lib/json/json_writer.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700281 - src/core/lib/surface/alarm.c
282 - src/core/lib/surface/api_trace.c
283 - src/core/lib/surface/byte_buffer.c
284 - src/core/lib/surface/byte_buffer_reader.c
285 - src/core/lib/surface/call.c
286 - src/core/lib/surface/call_details.c
287 - src/core/lib/surface/call_log_batch.c
288 - src/core/lib/surface/channel.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700289 - src/core/lib/surface/channel_init.c
290 - src/core/lib/surface/channel_ping.c
291 - src/core/lib/surface/channel_stack_type.c
292 - src/core/lib/surface/completion_queue.c
293 - src/core/lib/surface/event_string.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700294 - src/core/lib/surface/lame_client.c
295 - src/core/lib/surface/metadata_array.c
296 - src/core/lib/surface/server.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700297 - src/core/lib/surface/validate_metadata.c
298 - src/core/lib/surface/version.c
299 - src/core/lib/transport/byte_stream.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700300 - src/core/lib/transport/connectivity_state.c
301 - src/core/lib/transport/metadata.c
302 - src/core/lib/transport/metadata_batch.c
303 - src/core/lib/transport/static_metadata.c
304 - src/core/lib/transport/transport.c
305 - src/core/lib/transport/transport_op_string.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700306 deps:
307 - gpr
308 uses:
309 - grpc_codegen
Craig Tiller016a81d2016-03-31 13:49:05 -0700310- name: grpc_client_config
311 headers:
312 - src/core/ext/client_config/client_channel.h
Craig Tiller74071cd2016-04-01 16:36:27 -0700313 - src/core/ext/client_config/client_channel_factory.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700314 - src/core/ext/client_config/client_config.h
315 - src/core/ext/client_config/connector.h
316 - src/core/ext/client_config/initial_connect_string.h
317 - src/core/ext/client_config/lb_policy.h
318 - src/core/ext/client_config/lb_policy_factory.h
319 - src/core/ext/client_config/lb_policy_registry.h
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700320 - src/core/ext/client_config/parse_address.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700321 - src/core/ext/client_config/resolver.h
322 - src/core/ext/client_config/resolver_factory.h
323 - src/core/ext/client_config/resolver_registry.h
324 - src/core/ext/client_config/subchannel.h
Craig Tillerb112f392016-04-05 12:44:04 -0700325 - src/core/ext/client_config/subchannel_call_holder.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700326 - src/core/ext/client_config/subchannel_index.h
327 - src/core/ext/client_config/uri_parser.h
328 src:
329 - src/core/ext/client_config/channel_connectivity.c
330 - src/core/ext/client_config/client_channel.c
Craig Tiller74071cd2016-04-01 16:36:27 -0700331 - src/core/ext/client_config/client_channel_factory.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700332 - src/core/ext/client_config/client_config.c
Craig Tiller0b541632016-04-05 17:21:05 -0700333 - src/core/ext/client_config/client_config_plugin.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700334 - src/core/ext/client_config/connector.c
335 - src/core/ext/client_config/default_initial_connect_string.c
336 - src/core/ext/client_config/initial_connect_string.c
337 - src/core/ext/client_config/lb_policy.c
338 - src/core/ext/client_config/lb_policy_factory.c
339 - src/core/ext/client_config/lb_policy_registry.c
David Garcia Quintas9885bff2016-04-07 17:31:29 -0700340 - src/core/ext/client_config/parse_address.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700341 - src/core/ext/client_config/resolver.c
342 - src/core/ext/client_config/resolver_factory.c
343 - src/core/ext/client_config/resolver_registry.c
344 - src/core/ext/client_config/subchannel.c
Craig Tillerb112f392016-04-05 12:44:04 -0700345 - src/core/ext/client_config/subchannel_call_holder.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700346 - src/core/ext/client_config/subchannel_index.c
347 - src/core/ext/client_config/uri_parser.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700348 plugin: grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700349 uses:
350 - grpc_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800351- name: grpc_codegen
352 public_headers:
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800353 - include/grpc/impl/codegen/byte_buffer.h
David Garcia Quintas1b2db632016-04-27 15:06:54 -0700354 - include/grpc/impl/codegen/byte_buffer_reader.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800355 - include/grpc/impl/codegen/compression_types.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800356 - include/grpc/impl/codegen/connectivity_state.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800357 - include/grpc/impl/codegen/grpc_types.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800358 - include/grpc/impl/codegen/propagation_bits.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800359 - include/grpc/impl/codegen/status.h
Craig Tiller03915e52016-04-07 09:15:10 -0700360 uses:
361 - gpr_codegen
Craig Tiller023caf12016-03-29 08:00:30 -0700362- name: grpc_lb_policy_grpclb
363 headers:
364 - src/core/ext/lb_policy/grpclb/load_balancer_api.h
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700365 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.h
Craig Tiller023caf12016-03-29 08:00:30 -0700366 src:
367 - src/core/ext/lb_policy/grpclb/load_balancer_api.c
David Garcia Quintas7f0793a2016-04-25 12:35:58 -0700368 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c
Craig Tiller023caf12016-03-29 08:00:30 -0700369 uses:
370 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700371 - grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700372 - nanopb
Craig Tiller023caf12016-03-29 08:00:30 -0700373- name: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700374 src:
375 - src/core/ext/lb_policy/pick_first/pick_first.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700376 plugin: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700377 uses:
378 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700379 - grpc_client_config
Craig Tiller023caf12016-03-29 08:00:30 -0700380- name: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700381 src:
382 - src/core/ext/lb_policy/round_robin/round_robin.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700383 plugin: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700384 uses:
385 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700386 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700387- name: grpc_resolver_dns_native
388 src:
389 - src/core/ext/resolver/dns/native/dns_resolver.c
390 plugin: grpc_resolver_dns_native
391 uses:
392 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700393 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700394- name: grpc_resolver_sockaddr
395 src:
396 - src/core/ext/resolver/sockaddr/sockaddr_resolver.c
397 plugin: grpc_resolver_sockaddr
398 uses:
399 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700400 - grpc_client_config
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100401- name: grpc_secure
Craig Tillerd1697d92016-04-05 16:05:46 -0700402 public_headers:
makdharmac2ec95b2016-05-11 16:26:15 -0700403 - include/grpc/grpc_cronet.h
Craig Tillerd1697d92016-04-05 16:05:46 -0700404 - include/grpc/grpc_security.h
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700405 - include/grpc/grpc_security_constants.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100406 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700407 - src/core/lib/security/auth_filters.h
408 - src/core/lib/security/b64.h
409 - src/core/lib/security/credentials.h
410 - src/core/lib/security/handshake.h
411 - src/core/lib/security/json_token.h
412 - src/core/lib/security/jwt_verifier.h
413 - src/core/lib/security/secure_endpoint.h
414 - src/core/lib/security/security_connector.h
415 - src/core/lib/security/security_context.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100416 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700417 - src/core/lib/http/httpcli_security_connector.c
418 - src/core/lib/security/b64.c
419 - src/core/lib/security/client_auth_filter.c
420 - src/core/lib/security/credentials.c
421 - src/core/lib/security/credentials_metadata.c
422 - src/core/lib/security/credentials_posix.c
423 - src/core/lib/security/credentials_win32.c
424 - src/core/lib/security/google_default_credentials.c
425 - src/core/lib/security/handshake.c
426 - src/core/lib/security/json_token.c
427 - src/core/lib/security/jwt_verifier.c
428 - src/core/lib/security/secure_endpoint.c
429 - src/core/lib/security/security_connector.c
430 - src/core/lib/security/security_context.c
431 - src/core/lib/security/server_auth_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700432 - src/core/lib/surface/init_secure.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700433 secure: true
Craig Tillerd1697d92016-04-05 16:05:46 -0700434 uses:
435 - grpc_base
436 - grpc_transport_chttp2_alpn
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700437 - tsi
Craig Tillerbf4b2242015-08-31 15:53:53 -0700438- name: grpc_test_util_base
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700439 build: test
Craig Tiller25834342015-09-25 08:08:24 -0700440 headers:
441 - test/core/end2end/cq_verifier.h
442 - test/core/end2end/fixtures/proxy.h
443 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700444 - test/core/util/grpc_profiler.h
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200445 - test/core/util/memory_counters.h
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700446 - test/core/util/mock_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700447 - test/core/util/parse_hexstring.h
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700448 - test/core/util/passthru_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700449 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700450 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700451 - test/core/util/slice_splitter.h
452 src:
453 - test/core/end2end/cq_verifier.c
454 - test/core/end2end/fixtures/proxy.c
455 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700456 - test/core/util/grpc_profiler.c
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200457 - test/core/util/memory_counters.c
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700458 - test/core/util/mock_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700459 - test/core/util/parse_hexstring.c
Craig Tiller62c7a5a2016-04-13 22:25:03 -0700460 - test/core/util/passthru_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700461 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700462 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700463 - test/core/util/port_windows.c
464 - test/core/util/slice_splitter.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700465 deps:
466 - grpc
467 - gpr_test_util
Craig Tillerf0555b32016-03-28 10:19:24 -0700468- name: grpc_transport_chttp2
469 headers:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700470 - src/core/ext/transport/chttp2/transport/bin_encoder.h
Craig Tillerf0555b32016-03-28 10:19:24 -0700471 - src/core/ext/transport/chttp2/transport/chttp2_transport.h
472 - src/core/ext/transport/chttp2/transport/frame.h
473 - src/core/ext/transport/chttp2/transport/frame_data.h
474 - src/core/ext/transport/chttp2/transport/frame_goaway.h
475 - src/core/ext/transport/chttp2/transport/frame_ping.h
476 - src/core/ext/transport/chttp2/transport/frame_rst_stream.h
477 - src/core/ext/transport/chttp2/transport/frame_settings.h
478 - src/core/ext/transport/chttp2/transport/frame_window_update.h
479 - src/core/ext/transport/chttp2/transport/hpack_encoder.h
480 - src/core/ext/transport/chttp2/transport/hpack_parser.h
481 - src/core/ext/transport/chttp2/transport/hpack_table.h
482 - src/core/ext/transport/chttp2/transport/http2_errors.h
483 - src/core/ext/transport/chttp2/transport/huffsyms.h
484 - src/core/ext/transport/chttp2/transport/incoming_metadata.h
485 - src/core/ext/transport/chttp2/transport/internal.h
486 - src/core/ext/transport/chttp2/transport/status_conversion.h
487 - src/core/ext/transport/chttp2/transport/stream_map.h
488 - src/core/ext/transport/chttp2/transport/timeout_encoding.h
489 - src/core/ext/transport/chttp2/transport/varint.h
490 src:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700491 - src/core/ext/transport/chttp2/transport/bin_encoder.c
492 - src/core/ext/transport/chttp2/transport/chttp2_plugin.c
Craig Tillerf0555b32016-03-28 10:19:24 -0700493 - src/core/ext/transport/chttp2/transport/chttp2_transport.c
494 - src/core/ext/transport/chttp2/transport/frame_data.c
495 - src/core/ext/transport/chttp2/transport/frame_goaway.c
496 - src/core/ext/transport/chttp2/transport/frame_ping.c
497 - src/core/ext/transport/chttp2/transport/frame_rst_stream.c
498 - src/core/ext/transport/chttp2/transport/frame_settings.c
499 - src/core/ext/transport/chttp2/transport/frame_window_update.c
500 - src/core/ext/transport/chttp2/transport/hpack_encoder.c
501 - src/core/ext/transport/chttp2/transport/hpack_parser.c
502 - src/core/ext/transport/chttp2/transport/hpack_table.c
503 - src/core/ext/transport/chttp2/transport/huffsyms.c
504 - src/core/ext/transport/chttp2/transport/incoming_metadata.c
505 - src/core/ext/transport/chttp2/transport/parsing.c
506 - src/core/ext/transport/chttp2/transport/status_conversion.c
507 - src/core/ext/transport/chttp2/transport/stream_lists.c
508 - src/core/ext/transport/chttp2/transport/stream_map.c
509 - src/core/ext/transport/chttp2/transport/timeout_encoding.c
510 - src/core/ext/transport/chttp2/transport/varint.c
511 - src/core/ext/transport/chttp2/transport/writing.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700512 plugin: grpc_chttp2_plugin
Craig Tiller44cc10b2016-03-28 10:45:29 -0700513 uses:
514 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700515 - grpc_transport_chttp2_alpn
516- name: grpc_transport_chttp2_alpn
517 headers:
518 - src/core/ext/transport/chttp2/alpn/alpn.h
519 src:
520 - src/core/ext/transport/chttp2/alpn/alpn.c
521 deps:
522 - gpr
Craig Tillerf0555b32016-03-28 10:19:24 -0700523- name: grpc_transport_chttp2_client_insecure
524 src:
525 - src/core/ext/transport/chttp2/client/insecure/channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700526 uses:
527 - grpc_transport_chttp2
528 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700529 - grpc_client_config
Craig Tillerf0555b32016-03-28 10:19:24 -0700530- name: grpc_transport_chttp2_client_secure
531 src:
532 - src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700533 uses:
534 - grpc_transport_chttp2
535 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700536 - grpc_client_config
537 - grpc_secure
Craig Tillerf0555b32016-03-28 10:19:24 -0700538- name: grpc_transport_chttp2_server_insecure
539 src:
540 - src/core/ext/transport/chttp2/server/insecure/server_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700541 uses:
542 - grpc_transport_chttp2
543 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700544- name: grpc_transport_chttp2_server_secure
545 src:
546 - src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.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_secure
makdharmac2ec95b2016-05-11 16:26:15 -0700551- name: grpc_transport_cronet_client_secure
552 headers:
553 - include/grpc/byte_buffer.h
554 - include/grpc/grpc.h
555 - include/grpc/impl/codegen/alloc.h
556 - include/grpc/impl/codegen/atm.h
557 - include/grpc/impl/codegen/atm_gcc_atomic.h
558 - include/grpc/impl/codegen/atm_gcc_sync.h
559 - include/grpc/impl/codegen/atm_win32.h
560 - include/grpc/impl/codegen/byte_buffer.h
561 - include/grpc/impl/codegen/compression_types.h
562 - include/grpc/impl/codegen/connectivity_state.h
563 - include/grpc/impl/codegen/grpc_types.h
564 - include/grpc/impl/codegen/log.h
565 - include/grpc/impl/codegen/port_platform.h
566 - include/grpc/impl/codegen/propagation_bits.h
567 - include/grpc/impl/codegen/slice.h
568 - include/grpc/impl/codegen/slice_buffer.h
569 - include/grpc/impl/codegen/status.h
570 - include/grpc/impl/codegen/sync.h
571 - include/grpc/impl/codegen/sync_generic.h
572 - include/grpc/impl/codegen/sync_posix.h
573 - include/grpc/impl/codegen/sync_win32.h
574 - include/grpc/impl/codegen/time.h
575 - include/grpc/status.h
576 - include/grpc/support/alloc.h
577 - include/grpc/support/atm.h
578 - include/grpc/support/host_port.h
579 - include/grpc/support/log.h
580 - include/grpc/support/port_platform.h
581 - include/grpc/support/slice.h
582 - include/grpc/support/slice_buffer.h
583 - include/grpc/support/string_util.h
584 - include/grpc/support/sync.h
585 - include/grpc/support/time.h
586 - include/grpc/support/useful.h
587 - src/core/ext/transport/chttp2/transport/incoming_metadata.h
588 - src/core/lib/channel/channel_stack.h
589 - src/core/lib/channel/context.h
590 - src/core/lib/debug/trace.h
591 - src/core/lib/iomgr/closure.h
592 - src/core/lib/iomgr/exec_ctx.h
593 - src/core/lib/iomgr/pollset.h
594 - src/core/lib/iomgr/pollset_set.h
595 - src/core/lib/support/string.h
596 - src/core/lib/surface/channel.h
597 - src/core/lib/surface/channel_stack_type.h
598 - src/core/lib/transport/byte_stream.h
599 - src/core/lib/transport/metadata.h
600 - src/core/lib/transport/metadata_batch.h
601 - src/core/lib/transport/transport.h
602 - src/core/lib/transport/transport_impl.h
603 - third_party/objective_c/Cronet/cronet_c_for_grpc.h
604 src:
605 - src/core/ext/transport/cronet/client/secure/cronet_channel_create.c
606 - src/core/ext/transport/cronet/transport/cronet_api_dummy.c
607 - src/core/ext/transport/cronet/transport/cronet_transport.c
Craig Tillereb841e22016-02-11 15:49:16 -0800608- name: nanopb
609 headers:
610 - third_party/nanopb/pb.h
611 - third_party/nanopb/pb_common.h
612 - third_party/nanopb/pb_decode.h
613 - third_party/nanopb/pb_encode.h
614 src:
615 - third_party/nanopb/pb_common.c
616 - third_party/nanopb/pb_decode.c
617 - third_party/nanopb/pb_encode.c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700618- name: tsi
619 headers:
620 - src/core/lib/tsi/fake_transport_security.h
621 - src/core/lib/tsi/ssl_transport_security.h
622 - src/core/lib/tsi/ssl_types.h
623 - src/core/lib/tsi/transport_security.h
624 - src/core/lib/tsi/transport_security_interface.h
625 src:
626 - src/core/lib/tsi/fake_transport_security.c
627 - src/core/lib/tsi/ssl_transport_security.c
628 - src/core/lib/tsi/transport_security.c
629 deps:
630 - gpr
631 secure: true
632- name: grpc++_base
633 language: c++
634 public_headers:
635 - include/grpc++/alarm.h
636 - include/grpc++/channel.h
637 - include/grpc++/client_context.h
638 - include/grpc++/completion_queue.h
639 - include/grpc++/create_channel.h
640 - include/grpc++/generic/async_generic_service.h
641 - include/grpc++/generic/generic_stub.h
642 - include/grpc++/grpc++.h
643 - include/grpc++/impl/call.h
644 - include/grpc++/impl/client_unary_call.h
645 - include/grpc++/impl/grpc_library.h
646 - include/grpc++/impl/method_handler_impl.h
647 - include/grpc++/impl/proto_utils.h
648 - include/grpc++/impl/rpc_method.h
649 - include/grpc++/impl/rpc_service_method.h
650 - include/grpc++/impl/serialization_traits.h
651 - include/grpc++/impl/server_builder_option.h
652 - include/grpc++/impl/service_type.h
653 - include/grpc++/impl/sync.h
654 - include/grpc++/impl/sync_cxx11.h
655 - include/grpc++/impl/sync_no_cxx11.h
656 - include/grpc++/impl/thd.h
657 - include/grpc++/impl/thd_cxx11.h
658 - include/grpc++/impl/thd_no_cxx11.h
659 - include/grpc++/security/auth_context.h
660 - include/grpc++/security/auth_metadata_processor.h
661 - include/grpc++/security/credentials.h
662 - include/grpc++/security/server_credentials.h
663 - include/grpc++/server.h
664 - include/grpc++/server_builder.h
665 - include/grpc++/server_context.h
666 - include/grpc++/support/async_stream.h
667 - include/grpc++/support/async_unary_call.h
668 - include/grpc++/support/byte_buffer.h
669 - include/grpc++/support/channel_arguments.h
670 - include/grpc++/support/slice.h
671 - include/grpc++/support/status.h
672 - include/grpc++/support/status_code_enum.h
673 - include/grpc++/support/string_ref.h
674 - include/grpc++/support/stub_options.h
675 - include/grpc++/support/sync_stream.h
676 - include/grpc++/support/time.h
677 headers:
678 - src/cpp/client/create_channel_internal.h
679 - src/cpp/common/core_codegen.h
680 - src/cpp/server/dynamic_thread_pool.h
681 - src/cpp/server/thread_pool_interface.h
682 src:
683 - src/cpp/client/channel.cc
684 - src/cpp/client/client_context.cc
685 - src/cpp/client/create_channel.cc
686 - src/cpp/client/create_channel_internal.cc
687 - src/cpp/client/credentials.cc
688 - src/cpp/client/generic_stub.cc
689 - src/cpp/client/insecure_credentials.cc
690 - src/cpp/common/channel_arguments.cc
691 - src/cpp/common/completion_queue.cc
692 - src/cpp/common/core_codegen.cc
693 - src/cpp/common/rpc_method.cc
694 - src/cpp/server/async_generic_service.cc
695 - src/cpp/server/create_default_thread_pool.cc
696 - src/cpp/server/dynamic_thread_pool.cc
697 - src/cpp/server/insecure_server_credentials.cc
698 - src/cpp/server/server.cc
699 - src/cpp/server/server_builder.cc
700 - src/cpp/server/server_context.cc
701 - src/cpp/server/server_credentials.cc
702 - src/cpp/util/byte_buffer.cc
703 - src/cpp/util/slice.cc
704 - src/cpp/util/status.cc
705 - src/cpp/util/string_ref.cc
706 - src/cpp/util/time.cc
707 deps:
708 - grpc
709 uses:
710 - grpc++_codegen
711 - grpc++_config
712- name: grpc++_codegen
713 language: c++
714 public_headers:
715 - include/grpc++/impl/codegen/async_stream.h
716 - include/grpc++/impl/codegen/async_unary_call.h
717 - include/grpc++/impl/codegen/call.h
718 - include/grpc++/impl/codegen/call_hook.h
719 - include/grpc++/impl/codegen/channel_interface.h
720 - include/grpc++/impl/codegen/client_context.h
721 - include/grpc++/impl/codegen/client_unary_call.h
722 - include/grpc++/impl/codegen/completion_queue.h
723 - include/grpc++/impl/codegen/completion_queue_tag.h
724 - include/grpc++/impl/codegen/core_codegen_interface.h
725 - include/grpc++/impl/codegen/create_auth_context.h
726 - include/grpc++/impl/codegen/grpc_library.h
727 - include/grpc++/impl/codegen/method_handler_impl.h
728 - include/grpc++/impl/codegen/proto_utils.h
729 - include/grpc++/impl/codegen/rpc_method.h
730 - include/grpc++/impl/codegen/rpc_service_method.h
731 - include/grpc++/impl/codegen/security/auth_context.h
732 - include/grpc++/impl/codegen/serialization_traits.h
733 - include/grpc++/impl/codegen/server_context.h
734 - include/grpc++/impl/codegen/server_interface.h
735 - include/grpc++/impl/codegen/service_type.h
736 - include/grpc++/impl/codegen/status.h
737 - include/grpc++/impl/codegen/status_code_enum.h
738 - include/grpc++/impl/codegen/string_ref.h
739 - include/grpc++/impl/codegen/stub_options.h
740 - include/grpc++/impl/codegen/sync.h
741 - include/grpc++/impl/codegen/sync_cxx11.h
742 - include/grpc++/impl/codegen/sync_no_cxx11.h
743 - include/grpc++/impl/codegen/sync_stream.h
744 - include/grpc++/impl/codegen/time.h
745 src:
746 - src/cpp/codegen/codegen_init.cc
747 uses:
748 - grpc_codegen
749 - grpc++_config_codegen
750- name: grpc++_config
751 language: c++
752 public_headers:
753 - include/grpc++/support/config.h
754 - include/grpc++/support/config_protobuf.h
755 uses:
756 - grpc++_config_codegen
757- name: grpc++_config_codegen
758 language: c++
759 public_headers:
760 - include/grpc++/impl/codegen/config.h
761 - include/grpc++/impl/codegen/config_protobuf.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100762libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800763- name: gpr
764 build: all
765 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800766 filegroups:
Craig Tillerd1697d92016-04-05 16:05:46 -0700767 - gpr_base
Craig Tillerda179ce2016-02-09 12:01:53 -0800768 secure: false
769 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
770- name: gpr_test_util
771 build: private
772 language: c
773 headers:
774 - test/core/util/test_config.h
775 src:
776 - test/core/util/test_config.c
777 deps:
778 - gpr
779 secure: false
780 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700781- name: grpc
782 build: all
783 language: c
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700784 src:
785 - src/core/lib/surface/init.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700786 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800787 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700788 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700789 filegroups:
790 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700791 - grpc_transport_chttp2_server_secure
792 - grpc_transport_chttp2_client_secure
793 - grpc_transport_chttp2_server_insecure
794 - grpc_transport_chttp2_client_insecure
makdharmac2ec95b2016-05-11 16:26:15 -0700795 - grpc_transport_cronet_client_secure
Craig Tiller023caf12016-03-29 08:00:30 -0700796 - grpc_lb_policy_grpclb
797 - grpc_lb_policy_pick_first
798 - grpc_lb_policy_round_robin
Craig Tiller65938df2016-03-31 13:08:49 -0700799 - grpc_resolver_dns_native
800 - grpc_resolver_sockaddr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100801 - grpc_secure
Craig Tiller25834342015-09-25 08:08:24 -0700802 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700803 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700804 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700805 vs_packages:
806 - grpc.dependencies.openssl
807 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700808 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100809- name: grpc_dll
810 build: private
811 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100812 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100813 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100814 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100815 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100816 build_system:
817 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100818 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100819 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100820 vs_config_type: DynamicLibrary
821 vs_packages:
822 - grpc.dependencies.openssl
823 - grpc.dependencies.zlib
824 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
825 vs_props:
826 - zlib
827 - openssl
828 - winsock
829 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700830- name: grpc_test_util
831 build: private
832 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700833 headers:
834 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800835 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700836 src:
Deepak Lukosedba4c5f2016-03-25 12:54:25 -0700837 - test/core/end2end/data/client_certs.c
Craig Tiller25834342015-09-25 08:08:24 -0700838 - test/core/end2end/data/server1_cert.c
839 - test/core/end2end/data/server1_key.c
840 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800841 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700842 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800843 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800844 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700845 - grpc
846 filegroups:
847 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700848 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
849- name: grpc_test_util_unsecure
850 build: private
851 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700852 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800853 - gpr
854 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800855 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700856 filegroups:
857 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700858 secure: false
859 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
860- name: grpc_unsecure
861 build: all
862 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700863 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -0700864 - src/core/lib/surface/init.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700865 - src/core/lib/surface/init_unsecure.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700866 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800867 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700868 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700869 filegroups:
870 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700871 - grpc_transport_chttp2_server_insecure
872 - grpc_transport_chttp2_client_insecure
Craig Tiller65938df2016-03-31 13:08:49 -0700873 - grpc_resolver_dns_native
874 - grpc_resolver_sockaddr
Craig Tiller023caf12016-03-29 08:00:30 -0700875 - grpc_lb_policy_grpclb
876 - grpc_lb_policy_pick_first
877 - grpc_lb_policy_round_robin
Craig Tiller25834342015-09-25 08:08:24 -0700878 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700879 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700880 secure: false
881 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
882- name: grpc_zookeeper
883 build: all
884 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700885 public_headers:
886 - include/grpc/grpc_zookeeper.h
Craig Tiller25834342015-09-25 08:08:24 -0700887 src:
Craig Tillerb11b34a2016-04-01 12:30:06 -0700888 - src/core/ext/resolver/zookeeper/zookeeper_resolver.c
Craig Tiller25834342015-09-25 08:08:24 -0700889 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800890 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700891 - grpc
892 external_deps:
893 - zookeeper
894 platforms:
895 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700896 secure: false
897- name: reconnect_server
898 build: private
899 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700900 headers:
901 - test/core/util/reconnect_server.h
902 src:
903 - test/core/util/reconnect_server.c
904 deps:
yang-gc9fca182015-11-06 16:41:33 -0800905 - test_tcp_server
906 - grpc_test_util
907 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800908 - gpr_test_util
909 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800910- name: test_tcp_server
911 build: private
912 language: c
913 headers:
914 - test/core/util/test_tcp_server.h
915 src:
916 - test/core/util/test_tcp_server.c
917 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700918 - grpc_test_util
919 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800920 - gpr_test_util
921 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700922- name: grpc++
923 build: all
924 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700925 headers:
926 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800927 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700928 - src/cpp/common/secure_auth_context.h
929 - src/cpp/server/secure_server_credentials.h
930 src:
Craig Tiller25834342015-09-25 08:08:24 -0700931 - src/cpp/client/secure_credentials.cc
932 - src/cpp/common/auth_property_iterator.cc
933 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800934 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700935 - src/cpp/common/secure_create_auth_context.cc
936 - src/cpp/server/secure_server_credentials.cc
937 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700938 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700939 baselib: true
940 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700941 filegroups:
942 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800943 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700944 secure: check
945 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
946- name: grpc++_test_config
947 build: private
948 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700949 headers:
950 - test/cpp/util/test_config.h
951 src:
952 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700953- name: grpc++_test_util
954 build: private
955 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700956 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800957 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800958 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700959 - test/cpp/util/cli_call.h
960 - test/cpp/util/create_test_channel.h
961 - test/cpp/util/string_ref_helper.h
962 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800963 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700964 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800965 - src/proto/grpc/testing/echo_messages.proto
966 - src/proto/grpc/testing/echo.proto
967 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800968 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800969 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700970 - test/cpp/util/cli_call.cc
971 - test/cpp/util/create_test_channel.cc
972 - test/cpp/util/string_ref_helper.cc
973 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800974 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700975 deps:
976 - grpc++
977 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700978- name: grpc++_unsecure
979 build: all
980 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700981 src:
982 - src/cpp/common/insecure_create_auth_context.cc
983 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800984 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700985 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700986 baselib: true
987 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700988 filegroups:
989 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800990 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700991 secure: false
992 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
993- name: grpc_plugin_support
994 build: protoc
995 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700996 headers:
Craig Tiller25834342015-09-25 08:08:24 -0700997 - src/compiler/config.h
998 - src/compiler/cpp_generator.h
999 - src/compiler/cpp_generator_helpers.h
1000 - src/compiler/csharp_generator.h
1001 - src/compiler/csharp_generator_helpers.h
1002 - src/compiler/generator_helpers.h
murgatroid99d2ee81f2016-02-26 11:10:33 -08001003 - src/compiler/node_generator.h
1004 - src/compiler/node_generator_helpers.h
Craig Tiller25834342015-09-25 08:08:24 -07001005 - src/compiler/objective_c_generator.h
1006 - src/compiler/objective_c_generator_helpers.h
1007 - src/compiler/python_generator.h
1008 - src/compiler/ruby_generator.h
1009 - src/compiler/ruby_generator_helpers-inl.h
1010 - src/compiler/ruby_generator_map-inl.h
1011 - src/compiler/ruby_generator_string-inl.h
1012 src:
1013 - src/compiler/cpp_generator.cc
1014 - src/compiler/csharp_generator.cc
murgatroid99d2ee81f2016-02-26 11:10:33 -08001015 - src/compiler/node_generator.cc
Craig Tiller25834342015-09-25 08:08:24 -07001016 - src/compiler/objective_c_generator.cc
1017 - src/compiler/python_generator.cc
1018 - src/compiler/ruby_generator.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -08001019 filegroups:
Craig Tiller03915e52016-04-07 09:15:10 -07001020 - grpc++_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001021 secure: false
1022 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -08001023 vs_props:
1024 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001025- name: interop_client_helper
1026 build: private
1027 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001028 headers:
1029 - test/cpp/interop/client_helper.h
1030 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001031 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -07001032 - test/cpp/interop/client_helper.cc
1033 deps:
1034 - grpc++_test_util
1035 - grpc_test_util
1036 - grpc++
1037 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001038 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001039- name: interop_client_main
1040 build: private
1041 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001042 headers:
1043 - test/cpp/interop/interop_client.h
1044 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001045 - src/proto/grpc/testing/empty.proto
1046 - src/proto/grpc/testing/messages.proto
1047 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07001048 - test/cpp/interop/client.cc
1049 - test/cpp/interop/interop_client.cc
1050 deps:
1051 - interop_client_helper
1052 - grpc++_test_util
1053 - grpc_test_util
1054 - grpc++
1055 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001056 - gpr_test_util
1057 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001058 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001059- name: interop_server_helper
1060 build: private
1061 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001062 headers:
1063 - test/cpp/interop/server_helper.h
1064 src:
1065 - test/cpp/interop/server_helper.cc
1066 deps:
1067 - grpc_test_util
1068 - grpc++
1069 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001070 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001071- name: interop_server_main
1072 build: private
1073 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001074 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001075 - src/proto/grpc/testing/empty.proto
1076 - src/proto/grpc/testing/messages.proto
1077 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -08001078 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -07001079 deps:
1080 - interop_server_helper
1081 - grpc++_test_util
1082 - grpc_test_util
1083 - grpc++
1084 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001085 - gpr_test_util
1086 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001087 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001088- name: qps
1089 build: private
1090 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001091 headers:
1092 - test/cpp/qps/client.h
1093 - test/cpp/qps/driver.h
1094 - test/cpp/qps/histogram.h
1095 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -08001096 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -07001097 - test/cpp/qps/perf_db_client.h
1098 - test/cpp/qps/qps_worker.h
1099 - test/cpp/qps/report.h
1100 - test/cpp/qps/server.h
1101 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -08001102 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -07001103 - test/cpp/util/benchmark_config.h
1104 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001105 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001106 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001107 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -08001108 - src/proto/grpc/testing/control.proto
1109 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001110 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -07001111 - test/cpp/qps/client_async.cc
1112 - test/cpp/qps/client_sync.cc
1113 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -08001114 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -07001115 - test/cpp/qps/perf_db_client.cc
1116 - test/cpp/qps/qps_worker.cc
1117 - test/cpp/qps/report.cc
1118 - test/cpp/qps/server_async.cc
1119 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -08001120 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -07001121 - test/cpp/util/benchmark_config.cc
1122 deps:
1123 - grpc_test_util
1124 - grpc++_test_util
1125 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07001126- name: grpc_csharp_ext
1127 build: all
1128 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -07001129 src:
1130 - src/csharp/ext/grpc_csharp_ext.c
1131 deps:
Craig Tiller25834342015-09-25 08:08:24 -07001132 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001133 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -08001134 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -08001135 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -07001136 dll: only
1137 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -07001138 vs_packages:
1139 - grpc.dependencies.openssl
1140 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -07001141 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -07001142 vs_props:
1143 - zlib
1144 - openssl
1145 - winsock
1146 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -07001147targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001148- name: alarm_test
1149 build: test
1150 language: c
1151 src:
1152 - test/core/surface/alarm_test.c
1153 deps:
1154 - grpc_test_util
1155 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -08001156 - gpr_test_util
1157 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -08001158- name: algorithm_test
1159 build: test
1160 language: c
1161 src:
1162 - test/core/compression/algorithm_test.c
1163 deps:
1164 - grpc_test_util
1165 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001166 - gpr_test_util
1167 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -08001168- name: alloc_test
1169 build: test
1170 language: c
1171 src:
1172 - test/core/support/alloc_test.c
1173 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001174 - gpr_test_util
1175 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001176- name: alpn_test
1177 build: test
1178 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001179 src:
1180 - test/core/transport/chttp2/alpn_test.c
1181 deps:
1182 - grpc_test_util
1183 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001184 - gpr_test_util
1185 - gpr
Craig Tillerfc98f922016-04-13 08:45:06 -07001186- name: api_fuzzer
1187 build: fuzzer
1188 language: c
1189 src:
1190 - test/core/end2end/fuzzers/api_fuzzer.c
1191 deps:
1192 - grpc_test_util
1193 - grpc
1194 - gpr_test_util
1195 - gpr
1196 corpus_dirs:
1197 - test/core/end2end/fuzzers/api_fuzzer_corpus
Craig Tiller0477d7d2016-04-24 10:42:50 -07001198 dict: test/core/end2end/fuzzers/api_fuzzer.dictionary
Craig Tillerfc98f922016-04-13 08:45:06 -07001199 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001200- name: bin_encoder_test
1201 build: test
1202 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001203 src:
1204 - test/core/transport/chttp2/bin_encoder_test.c
1205 deps:
1206 - grpc_test_util
1207 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001208- name: census_context_test
1209 build: test
1210 language: c
1211 src:
1212 - test/core/census/context_test.c
1213 deps:
1214 - grpc_test_util
1215 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001216 - gpr_test_util
1217 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001218- name: channel_create_test
1219 build: test
1220 language: c
1221 src:
1222 - test/core/surface/channel_create_test.c
1223 deps:
1224 - grpc_test_util
1225 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001226 - gpr_test_util
1227 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001228- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001229 build: test
1230 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001231 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001232 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001233 deps:
1234 - grpc_test_util
1235 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001236 - gpr_test_util
1237 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001238- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001239 build: test
1240 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001241 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001242 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001243 deps:
1244 - grpc_test_util
1245 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001246 - gpr_test_util
1247 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001248- name: chttp2_stream_map_test
1249 build: test
1250 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001251 src:
1252 - test/core/transport/chttp2/stream_map_test.c
1253 deps:
1254 - grpc_test_util
1255 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001256 - gpr_test_util
1257 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001258- name: chttp2_varint_test
1259 build: test
1260 language: c
1261 src:
1262 - test/core/transport/chttp2/varint_test.c
1263 deps:
1264 - grpc_test_util
1265 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001266 - gpr_test_util
1267 - gpr
Craig Tiller845516e2016-04-11 20:49:20 -07001268- name: client_fuzzer
1269 build: fuzzer
1270 language: c
1271 src:
1272 - test/core/end2end/fuzzers/client_fuzzer.c
1273 deps:
1274 - grpc_test_util
1275 - grpc
1276 - gpr_test_util
1277 - gpr
1278 corpus_dirs:
1279 - test/core/end2end/fuzzers/client_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001280 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tiller845516e2016-04-11 20:49:20 -07001281 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001282- name: compression_test
1283 build: test
1284 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001285 src:
1286 - test/core/compression/compression_test.c
1287 deps:
1288 - grpc_test_util
1289 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001290 - gpr_test_util
1291 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001292- name: concurrent_connectivity_test
1293 build: test
1294 language: c
1295 src:
1296 - test/core/surface/concurrent_connectivity_test.c
1297 deps:
1298 - grpc_test_util
1299 - grpc
1300 - gpr_test_util
1301 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001302- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001303 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001304 build: test
1305 language: c
1306 src:
1307 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1308 deps:
1309 - grpc_test_util
1310 - grpc
1311 - gpr_test_util
1312 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001313- name: dns_resolver_test
1314 build: test
1315 language: c
1316 src:
1317 - test/core/client_config/resolvers/dns_resolver_test.c
1318 deps:
1319 - grpc_test_util
1320 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001321 - gpr_test_util
1322 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001323- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001324 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001325 build: test
1326 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001327 src:
1328 - test/core/end2end/dualstack_socket_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 Tillere0b8a422015-08-31 16:03:39 -07001338- name: endpoint_pair_test
1339 build: test
1340 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001341 src:
1342 - test/core/iomgr/endpoint_pair_test.c
1343 deps:
1344 - grpc_test_util
1345 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001346 - gpr_test_util
1347 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001348- name: fd_conservation_posix_test
1349 build: test
1350 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001351 src:
1352 - test/core/iomgr/fd_conservation_posix_test.c
1353 deps:
1354 - grpc_test_util
1355 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001356 - gpr_test_util
1357 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001358 platforms:
1359 - mac
1360 - linux
1361 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001362- name: fd_posix_test
1363 build: test
1364 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001365 src:
1366 - test/core/iomgr/fd_posix_test.c
1367 deps:
1368 - grpc_test_util
1369 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001370 - gpr_test_util
1371 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001372 platforms:
1373 - mac
1374 - linux
1375 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001376- name: fling_client
1377 build: test
1378 run: false
1379 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001380 src:
1381 - test/core/fling/client.c
1382 deps:
1383 - grpc_test_util
1384 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001385 - gpr_test_util
1386 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001387- name: fling_server
1388 build: test
1389 run: false
1390 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001391 src:
1392 - test/core/fling/server.c
1393 deps:
1394 - grpc_test_util
1395 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001396 - gpr_test_util
1397 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001398- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001399 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001400 build: test
1401 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001402 src:
1403 - test/core/fling/fling_stream_test.c
1404 deps:
1405 - grpc_test_util
1406 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001407 - gpr_test_util
1408 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001409 platforms:
1410 - mac
1411 - linux
1412 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001413- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001414 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001415 build: test
1416 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001417 src:
1418 - test/core/fling/fling_test.c
1419 deps:
1420 - grpc_test_util
1421 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001422 - gpr_test_util
1423 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001424 platforms:
1425 - mac
1426 - linux
1427 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001428- name: gen_hpack_tables
1429 build: tool
1430 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001431 src:
1432 - tools/codegen/core/gen_hpack_tables.c
1433 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001434 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001435 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001436- name: gen_legal_metadata_characters
1437 build: tool
1438 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001439 src:
1440 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001441 deps: []
Craig Tiller1b719582016-03-24 09:06:13 -07001442- name: goaway_server_test
1443 cpu_cost: 0.1
1444 build: test
1445 language: c
1446 src:
1447 - test/core/end2end/goaway_server_test.c
1448 deps:
1449 - grpc_test_util
1450 - grpc
1451 - gpr_test_util
1452 - gpr
1453 platforms:
1454 - mac
1455 - linux
1456 - posix
Craig Tillerfba79f22015-11-23 11:06:55 -08001457- name: gpr_avl_test
1458 build: test
1459 language: c
1460 src:
1461 - test/core/support/avl_test.c
1462 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001463 - gpr_test_util
1464 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001465- name: gpr_backoff_test
1466 build: test
1467 language: c
1468 src:
1469 - test/core/support/backoff_test.c
1470 deps:
1471 - gpr_test_util
1472 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001473- name: gpr_cmdline_test
1474 build: test
1475 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001476 src:
1477 - test/core/support/cmdline_test.c
1478 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001479 - gpr_test_util
1480 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001481- name: gpr_cpu_test
1482 build: test
1483 language: c
1484 src:
1485 - test/core/support/cpu_test.c
1486 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001487 - gpr_test_util
1488 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001489- name: gpr_env_test
1490 build: test
1491 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001492 src:
1493 - test/core/support/env_test.c
1494 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001495 - gpr_test_util
1496 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001497- name: gpr_histogram_test
1498 build: test
1499 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001500 src:
1501 - test/core/support/histogram_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_host_port_test
1506 build: test
1507 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001508 src:
1509 - test/core/support/host_port_test.c
1510 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001511 - gpr_test_util
1512 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001513- name: gpr_load_file_test
1514 build: test
1515 language: c
1516 src:
1517 - test/core/support/load_file_test.c
1518 deps:
1519 - gpr_test_util
1520 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001521- name: gpr_log_test
1522 build: test
1523 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001524 src:
1525 - test/core/support/log_test.c
1526 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001527 - gpr_test_util
1528 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001529- name: gpr_slice_buffer_test
1530 build: test
1531 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001532 src:
1533 - test/core/support/slice_buffer_test.c
1534 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001535 - gpr_test_util
1536 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001537- name: gpr_slice_test
1538 build: test
1539 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001540 src:
1541 - test/core/support/slice_test.c
1542 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001543 - gpr_test_util
1544 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001545- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001546 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001547 build: test
1548 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001549 src:
1550 - test/core/support/stack_lockfree_test.c
1551 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001552 - gpr_test_util
1553 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001554- name: gpr_string_test
1555 build: test
1556 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001557 src:
1558 - test/core/support/string_test.c
1559 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001560 - gpr_test_util
1561 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001562- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001563 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001564 build: test
1565 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001566 src:
1567 - test/core/support/sync_test.c
1568 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001569 - gpr_test_util
1570 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001571- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001572 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001573 build: test
1574 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001575 src:
1576 - test/core/support/thd_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: gpr_time_test
1581 build: test
1582 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001583 src:
1584 - test/core/support/time_test.c
1585 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001586 - gpr_test_util
1587 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001588- name: gpr_tls_test
1589 build: test
1590 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001591 src:
1592 - test/core/support/tls_test.c
1593 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001594 - gpr_test_util
1595 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001596- name: gpr_useful_test
1597 build: test
1598 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001599 src:
1600 - test/core/support/useful_test.c
1601 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001602 - gpr_test_util
1603 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001604- name: grpc_auth_context_test
1605 build: test
1606 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001607 src:
1608 - test/core/security/auth_context_test.c
1609 deps:
1610 - grpc_test_util
1611 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001612 - gpr_test_util
1613 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001614- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001615 build: test
1616 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001617 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001618 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001619 deps:
1620 - grpc_test_util
1621 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001622 - gpr_test_util
1623 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001624- name: grpc_byte_buffer_reader_test
1625 build: test
1626 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001627 src:
1628 - test/core/surface/byte_buffer_reader_test.c
1629 deps:
1630 - grpc_test_util
1631 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001632 - gpr_test_util
1633 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001634- name: grpc_channel_args_test
1635 build: test
1636 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001637 src:
1638 - test/core/channel/channel_args_test.c
1639 deps:
1640 - grpc_test_util
1641 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001642 - gpr_test_util
1643 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001644- name: grpc_channel_stack_test
1645 build: test
1646 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001647 src:
1648 - test/core/channel/channel_stack_test.c
1649 deps:
1650 - grpc_test_util
1651 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001652 - gpr_test_util
1653 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001654- name: grpc_completion_queue_test
1655 build: test
1656 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001657 src:
1658 - test/core/surface/completion_queue_test.c
1659 deps:
1660 - grpc_test_util
1661 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001662 - gpr_test_util
1663 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001664- name: grpc_create_jwt
1665 build: tool
1666 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001667 src:
1668 - test/core/security/create_jwt.c
1669 deps:
1670 - grpc_test_util
1671 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001672 - gpr_test_util
1673 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001674- name: grpc_credentials_test
1675 build: test
1676 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001677 src:
1678 - test/core/security/credentials_test.c
1679 deps:
1680 - grpc_test_util
1681 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001682 - gpr_test_util
1683 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001684- name: grpc_fetch_oauth2
1685 build: tool
1686 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001687 src:
1688 - test/core/security/fetch_oauth2.c
1689 deps:
1690 - grpc_test_util
1691 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001692 - gpr_test_util
1693 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001694- name: grpc_invalid_channel_args_test
1695 build: test
1696 language: c
1697 src:
1698 - test/core/surface/invalid_channel_args_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_json_token_test
1705 build: test
1706 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001707 src:
1708 - test/core/security/json_token_test.c
1709 deps:
1710 - grpc_test_util
1711 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001712 - gpr_test_util
1713 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001714 platforms:
1715 - linux
1716 - posix
1717 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001718- name: grpc_jwt_verifier_test
1719 build: test
1720 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001721 src:
1722 - test/core/security/jwt_verifier_test.c
1723 deps:
1724 - grpc_test_util
1725 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001726 - gpr_test_util
1727 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001728- name: grpc_print_google_default_creds_token
1729 build: tool
1730 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001731 src:
1732 - test/core/security/print_google_default_creds_token.c
1733 deps:
1734 - grpc_test_util
1735 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001736 - gpr_test_util
1737 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001738- name: grpc_security_connector_test
1739 build: test
1740 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001741 src:
1742 - test/core/security/security_connector_test.c
1743 deps:
1744 - grpc_test_util
1745 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001746 - gpr_test_util
1747 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001748- name: grpc_verify_jwt
1749 build: tool
1750 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001751 src:
1752 - test/core/security/verify_jwt.c
1753 deps:
1754 - grpc_test_util
1755 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001756 - gpr_test_util
1757 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001758- name: hpack_parser_fuzzer_test
1759 build: fuzzer
1760 language: c
1761 src:
1762 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1763 deps:
1764 - grpc_test_util
1765 - grpc
1766 - gpr_test_util
1767 - gpr
1768 corpus_dirs:
1769 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07001770 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07001771 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001772- name: hpack_parser_test
1773 build: test
1774 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001775 src:
1776 - test/core/transport/chttp2/hpack_parser_test.c
1777 deps:
1778 - grpc_test_util
1779 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001780 - gpr_test_util
1781 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001782- name: hpack_table_test
1783 build: test
1784 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001785 src:
1786 - test/core/transport/chttp2/hpack_table_test.c
1787 deps:
1788 - grpc_test_util
1789 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001790 - gpr_test_util
1791 - gpr
Craig Tiller21239742016-03-23 16:33:28 -07001792- name: http_fuzzer_test
1793 build: fuzzer
1794 language: c
1795 src:
1796 - test/core/http/fuzzer.c
1797 deps:
1798 - grpc_test_util
1799 - grpc
1800 - gpr_test_util
1801 - gpr
1802 corpus_dirs:
1803 - test/core/http/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001804 maxlen: 2048
Matthew Iselin1824f052016-02-10 12:16:06 +11001805- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001806 build: test
1807 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001808 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001809 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001810 deps:
1811 - grpc_test_util
1812 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001813 - gpr_test_util
1814 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001815- name: httpcli_format_request_test
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/format_request_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 Tillerbf4b2242015-08-31 15:53:53 -07001825- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001826 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001827 build: test
1828 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001829 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001830 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001831 deps:
1832 - grpc_test_util
1833 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001834 - gpr_test_util
1835 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001836 platforms:
1837 - mac
1838 - linux
1839 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001840- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001841 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001842 build: test
1843 language: c
1844 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001845 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001846 deps:
1847 - grpc_test_util
1848 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001849 - gpr_test_util
1850 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001851 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001852 - linux
yang-gf1183302015-12-07 16:02:05 -08001853- name: init_test
1854 build: test
1855 language: c
1856 src:
1857 - test/core/surface/init_test.c
1858 deps:
1859 - grpc_test_util
1860 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001861 - gpr_test_util
1862 - gpr
Craig Tiller5cb79622016-03-15 14:46:54 -07001863- name: internal_api_canary_iomgr_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_support_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
1885- name: internal_api_canary_transport_test
1886 build: test
1887 run: false
1888 language: c
1889 src:
1890 - test/core/internal_api_canaries/iomgr.c
1891 deps:
1892 - grpc_test_util
1893 - grpc
1894 - gpr_test_util
1895 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001896- name: invalid_call_argument_test
1897 build: test
1898 language: c
1899 src:
1900 - test/core/end2end/invalid_call_argument_test.c
1901 deps:
1902 - grpc_test_util
1903 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001904 - gpr_test_util
1905 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001906- name: json_fuzzer_test
1907 build: fuzzer
1908 language: c
1909 src:
1910 - test/core/json/fuzzer.c
1911 deps:
1912 - grpc_test_util
1913 - grpc
1914 - gpr_test_util
1915 - gpr
1916 corpus_dirs:
1917 - test/core/json/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001918 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001919- name: json_rewrite
1920 build: test
1921 run: false
1922 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001923 src:
1924 - test/core/json/json_rewrite.c
1925 deps:
1926 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001927 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001928- name: json_rewrite_test
1929 build: test
1930 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001931 src:
1932 - test/core/json/json_rewrite_test.c
1933 deps:
1934 - grpc_test_util
1935 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001936 - gpr_test_util
1937 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001938- name: json_stream_error_test
1939 build: test
1940 language: c
1941 src:
1942 - test/core/json/json_stream_error_test.c
1943 deps:
1944 - grpc_test_util
1945 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001946 - gpr_test_util
1947 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001948- name: json_test
1949 build: test
1950 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001951 src:
1952 - test/core/json/json_test.c
1953 deps:
1954 - grpc_test_util
1955 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001956 - gpr_test_util
1957 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001958- name: lame_client_test
1959 build: test
1960 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001961 src:
1962 - test/core/surface/lame_client_test.c
1963 deps:
1964 - grpc_test_util
1965 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001966 - gpr_test_util
1967 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001968- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001969 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001970 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001971 build: test
1972 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001973 src:
1974 - test/core/client_config/lb_policies_test.c
1975 deps:
1976 - grpc_test_util
1977 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001978 - gpr_test_util
1979 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001980- name: low_level_ping_pong_benchmark
1981 build: benchmark
1982 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001983 src:
1984 - test/core/network_benchmarks/low_level_ping_pong.c
1985 deps:
1986 - grpc_test_util
1987 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001988 - gpr_test_util
1989 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001990 platforms:
1991 - mac
1992 - linux
1993 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001994- name: message_compress_test
1995 build: test
1996 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001997 src:
1998 - test/core/compression/message_compress_test.c
1999 deps:
2000 - grpc_test_util
2001 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002002 - gpr_test_util
2003 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08002004- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07002005 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08002006 build: test
2007 language: c
2008 src:
2009 - test/core/census/mlog_test.c
2010 deps:
2011 - grpc_test_util
2012 - grpc
2013 - gpr_test_util
2014 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002015- name: multiple_server_queues_test
2016 build: test
2017 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002018 src:
2019 - test/core/end2end/multiple_server_queues_test.c
2020 deps:
2021 - grpc_test_util
2022 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002023 - gpr_test_util
2024 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002025- name: murmur_hash_test
2026 build: test
2027 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002028 src:
2029 - test/core/support/murmur_hash_test.c
2030 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08002031 - gpr_test_util
2032 - gpr
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002033- name: nanopb_fuzzer_response_test
2034 build: fuzzer
2035 language: c
2036 src:
2037 - test/core/nanopb/fuzzer_response.c
2038 deps:
2039 - grpc_test_util
2040 - grpc
2041 - gpr_test_util
2042 - gpr
2043 corpus_dirs:
2044 - test/core/nanopb/corpus_response
Craig Tillerf64df112016-04-05 21:27:41 -07002045 maxlen: 128
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07002046- name: nanopb_fuzzer_serverlist_test
2047 build: fuzzer
2048 language: c
2049 src:
2050 - test/core/nanopb/fuzzer_serverlist.c
2051 deps:
2052 - grpc_test_util
2053 - grpc
2054 - gpr_test_util
2055 - gpr
2056 corpus_dirs:
2057 - test/core/nanopb/corpus_serverlist
Craig Tillerf64df112016-04-05 21:27:41 -07002058 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002059- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002060 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002061 build: test
2062 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002063 src:
2064 - test/core/end2end/no_server_test.c
2065 deps:
2066 - grpc_test_util
2067 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002068 - gpr_test_util
2069 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002070- name: resolve_address_test
2071 build: test
2072 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002073 src:
2074 - test/core/iomgr/resolve_address_test.c
2075 deps:
2076 - grpc_test_util
2077 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002078 - gpr_test_util
2079 - gpr
yang-gd482e592015-12-10 14:04:00 -08002080- name: secure_channel_create_test
2081 build: test
2082 language: c
2083 src:
2084 - test/core/surface/secure_channel_create_test.c
2085 deps:
2086 - grpc_test_util
2087 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002088 - gpr_test_util
2089 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002090- name: secure_endpoint_test
2091 build: test
2092 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002093 src:
2094 - test/core/security/secure_endpoint_test.c
2095 deps:
2096 - grpc_test_util
2097 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002098 - gpr_test_util
2099 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08002100- name: server_chttp2_test
2101 build: test
2102 language: c
2103 src:
2104 - test/core/surface/server_chttp2_test.c
2105 deps:
2106 - grpc_test_util
2107 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002108 - gpr_test_util
2109 - gpr
Craig Tillerdf262c62016-04-02 13:53:49 -07002110- name: server_fuzzer
2111 build: fuzzer
2112 language: c
2113 src:
2114 - test/core/end2end/fuzzers/server_fuzzer.c
2115 deps:
2116 - grpc_test_util
2117 - grpc
2118 - gpr_test_util
2119 - gpr
2120 corpus_dirs:
2121 - test/core/end2end/fuzzers/server_fuzzer_corpus
Craig Tiller134a6b62016-04-18 08:14:20 -07002122 dict: test/core/end2end/fuzzers/hpack.dictionary
Craig Tillerd153cbe2016-04-04 15:43:30 -07002123 maxlen: 2048
yang-gc3d94fb2015-12-10 14:38:00 -08002124- name: server_test
2125 build: test
2126 language: c
2127 src:
2128 - test/core/surface/server_test.c
2129 deps:
2130 - grpc_test_util
2131 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002132 - gpr_test_util
2133 - gpr
yang-gc9fca182015-11-06 16:41:33 -08002134- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002135 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08002136 build: test
2137 language: c
2138 src:
2139 - test/core/client_config/set_initial_connect_string_test.c
2140 deps:
2141 - test_tcp_server
2142 - grpc_test_util
2143 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002144 - gpr_test_util
2145 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08002146- name: sockaddr_resolver_test
2147 build: test
2148 language: c
2149 src:
2150 - test/core/client_config/resolvers/sockaddr_resolver_test.c
2151 deps:
2152 - grpc_test_util
2153 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002154 - gpr_test_util
2155 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002156- name: sockaddr_utils_test
2157 build: test
2158 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002159 src:
2160 - test/core/iomgr/sockaddr_utils_test.c
2161 deps:
2162 - grpc_test_util
2163 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002164 - gpr_test_util
2165 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002166- name: socket_utils_test
2167 build: test
2168 language: c
2169 src:
2170 - test/core/iomgr/socket_utils_test.c
2171 deps:
2172 - grpc_test_util
2173 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002174 - gpr_test_util
2175 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002176 platforms:
2177 - mac
2178 - linux
2179 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002180- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002181 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002182 build: test
2183 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002184 src:
2185 - test/core/iomgr/tcp_client_posix_test.c
2186 deps:
2187 - grpc_test_util
2188 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002189 - gpr_test_util
2190 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002191 platforms:
2192 - mac
2193 - linux
2194 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002195- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002196 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002197 build: test
2198 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002199 src:
2200 - test/core/iomgr/tcp_posix_test.c
2201 deps:
2202 - grpc_test_util
2203 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002204 - gpr_test_util
2205 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002206 platforms:
2207 - mac
2208 - linux
2209 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002210- name: tcp_server_posix_test
2211 build: test
2212 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002213 src:
2214 - test/core/iomgr/tcp_server_posix_test.c
2215 deps:
2216 - grpc_test_util
2217 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002218 - gpr_test_util
2219 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002220 platforms:
2221 - mac
2222 - linux
2223 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002224- name: time_averaged_stats_test
2225 build: test
2226 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002227 src:
2228 - test/core/iomgr/time_averaged_stats_test.c
2229 deps:
2230 - grpc_test_util
2231 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002232 - gpr_test_util
2233 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002234- name: timeout_encoding_test
2235 build: test
2236 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002237 src:
2238 - test/core/transport/chttp2/timeout_encoding_test.c
2239 deps:
2240 - grpc_test_util
2241 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002242 - gpr_test_util
2243 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002244- name: timer_heap_test
2245 build: test
2246 language: c
2247 src:
2248 - test/core/iomgr/timer_heap_test.c
2249 deps:
2250 - grpc_test_util
2251 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002252 - gpr_test_util
2253 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002254- name: timer_list_test
2255 build: test
2256 language: c
2257 src:
2258 - test/core/iomgr/timer_list_test.c
2259 deps:
2260 - grpc_test_util
2261 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002262 - gpr_test_util
2263 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002264- name: timers_test
2265 build: test
2266 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002267 src:
2268 - test/core/profiling/timers_test.c
2269 deps:
2270 - grpc_test_util
2271 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002272 - gpr_test_util
2273 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08002274- name: transport_connectivity_state_test
2275 build: test
2276 language: c
2277 src:
2278 - test/core/transport/connectivity_state_test.c
2279 deps:
2280 - grpc_test_util
2281 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002282 - gpr_test_util
2283 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002284- name: transport_metadata_test
2285 build: test
2286 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002287 src:
2288 - test/core/transport/metadata_test.c
2289 deps:
2290 - grpc_test_util
2291 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002292 - gpr_test_util
2293 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002294- name: transport_security_test
2295 build: test
2296 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002297 src:
2298 - test/core/tsi/transport_security_test.c
2299 deps:
2300 - grpc_test_util
2301 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002302 - gpr_test_util
2303 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002304 platforms:
2305 - linux
2306 - posix
2307 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002308- name: udp_server_test
2309 build: test
2310 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002311 src:
2312 - test/core/iomgr/udp_server_test.c
2313 deps:
2314 - grpc_test_util
2315 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002316 - gpr_test_util
2317 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002318 platforms:
2319 - mac
2320 - linux
2321 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002322- name: uri_fuzzer_test
2323 build: fuzzer
2324 language: c
2325 src:
2326 - test/core/client_config/uri_fuzzer_test.c
2327 deps:
2328 - grpc_test_util
2329 - grpc
2330 - gpr_test_util
2331 - gpr
2332 corpus_dirs:
2333 - test/core/client_config/uri_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002334 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002335- name: uri_parser_test
2336 build: test
2337 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002338 src:
2339 - test/core/client_config/uri_parser_test.c
2340 deps:
2341 - grpc_test_util
2342 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002343 - gpr_test_util
2344 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002345- name: workqueue_test
2346 build: test
2347 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002348 src:
2349 - test/core/iomgr/workqueue_test.c
2350 deps:
2351 - grpc_test_util
2352 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002353 - gpr_test_util
2354 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002355 platforms:
2356 - mac
2357 - linux
2358 - posix
vjpai04e992a2016-02-10 16:58:38 -08002359- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002360 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002361 build: test
2362 language: c++
2363 src:
2364 - test/cpp/common/alarm_cpp_test.cc
2365 deps:
2366 - grpc++_test_util
2367 - grpc_test_util
2368 - grpc++
2369 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002370 - gpr_test_util
2371 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002372- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002373 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002374 build: test
2375 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002376 src:
2377 - test/cpp/end2end/async_end2end_test.cc
2378 deps:
2379 - grpc++_test_util
2380 - grpc_test_util
2381 - grpc++
2382 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002383 - gpr_test_util
2384 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002385- name: async_streaming_ping_pong_test
2386 build: test
2387 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002388 src:
2389 - test/cpp/qps/async_streaming_ping_pong_test.cc
2390 deps:
2391 - qps
2392 - grpc++_test_util
2393 - grpc_test_util
2394 - grpc++
2395 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002396 - gpr_test_util
2397 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002398 platforms:
2399 - mac
2400 - linux
2401 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002402- name: async_unary_ping_pong_test
2403 build: test
2404 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002405 src:
2406 - test/cpp/qps/async_unary_ping_pong_test.cc
2407 deps:
2408 - qps
2409 - grpc++_test_util
2410 - grpc_test_util
2411 - grpc++
2412 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002413 - gpr_test_util
2414 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002415 platforms:
2416 - mac
2417 - linux
2418 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002419- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002420 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002421 build: test
2422 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002423 src:
2424 - test/cpp/common/auth_property_iterator_test.cc
2425 deps:
2426 - grpc++_test_util
2427 - grpc_test_util
2428 - grpc++
2429 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002430 - gpr_test_util
2431 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002432- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002433 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002434 build: test
2435 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002436 src:
yang-g52705592015-11-25 11:45:33 -08002437 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002438 deps:
2439 - grpc++
2440 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002441 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002442- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002443 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002444 build: test
2445 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002446 src:
2447 - test/cpp/util/cli_call_test.cc
2448 deps:
2449 - grpc++_test_util
2450 - grpc_test_util
2451 - grpc++
2452 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002453 - gpr_test_util
2454 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002455- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002456 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002457 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002458 build: test
2459 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002460 src:
2461 - test/cpp/end2end/client_crash_test.cc
2462 deps:
2463 - grpc++_test_util
2464 - grpc_test_util
2465 - grpc++
2466 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002467 - gpr_test_util
2468 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002469 platforms:
2470 - mac
2471 - linux
2472 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002473- name: client_crash_test_server
2474 build: test
2475 run: false
2476 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002477 src:
2478 - test/cpp/end2end/client_crash_test_server.cc
2479 deps:
2480 - grpc++_test_util
2481 - grpc_test_util
2482 - grpc++
2483 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002484 - gpr_test_util
2485 - gpr
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002486- name: codegen_test_full
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002487 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002488 build: test
2489 language: c++
2490 src:
2491 - src/proto/grpc/testing/control.proto
2492 - src/proto/grpc/testing/messages.proto
2493 - src/proto/grpc/testing/payloads.proto
2494 - src/proto/grpc/testing/perf_db.proto
2495 - src/proto/grpc/testing/services.proto
2496 - src/proto/grpc/testing/stats.proto
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002497 - test/cpp/codegen/codegen_test_full.cc
2498 deps:
2499 - grpc++
2500 - grpc
2501 - gpr
2502 filegroups:
2503 - grpc++_codegen
2504- name: codegen_test_minimal
2505 gtest: true
2506 build: test
2507 language: c++
2508 src:
2509 - src/proto/grpc/testing/control.proto
2510 - src/proto/grpc/testing/messages.proto
2511 - src/proto/grpc/testing/payloads.proto
2512 - src/proto/grpc/testing/perf_db.proto
2513 - src/proto/grpc/testing/services.proto
2514 - src/proto/grpc/testing/stats.proto
2515 - test/cpp/codegen/codegen_test_minimal.cc
Craig Tiller03d8f2f2016-04-07 08:02:16 -07002516 filegroups:
2517 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -07002518- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002519 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002520 build: test
2521 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002522 src:
2523 - test/cpp/client/credentials_test.cc
2524 deps:
2525 - grpc++
2526 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002527 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002528- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002529 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002530 build: test
2531 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002532 src:
2533 - test/cpp/util/byte_buffer_test.cc
2534 deps:
2535 - grpc_test_util
2536 - grpc++
2537 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002538 - gpr_test_util
2539 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002540- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002541 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002542 build: test
2543 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002544 src:
2545 - test/cpp/util/slice_test.cc
2546 deps:
2547 - grpc_test_util
2548 - grpc++
2549 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002550 - gpr_test_util
2551 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002552- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002553 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002554 build: test
2555 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002556 src:
2557 - test/cpp/util/string_ref_test.cc
2558 deps:
2559 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002560- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002561 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002562 build: test
2563 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002564 src:
2565 - test/cpp/util/time_test.cc
2566 deps:
2567 - grpc_test_util
2568 - grpc++
2569 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002570 - gpr_test_util
2571 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002572- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002573 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002574 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002575 build: test
2576 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002577 src:
2578 - test/cpp/end2end/end2end_test.cc
2579 deps:
2580 - grpc++_test_util
2581 - grpc_test_util
2582 - grpc++
2583 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002584 - gpr_test_util
2585 - gpr
vjpai083dc622016-01-11 09:41:17 -08002586- name: generic_async_streaming_ping_pong_test
2587 build: test
2588 language: c++
2589 src:
2590 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2591 deps:
2592 - qps
2593 - grpc++_test_util
2594 - grpc_test_util
2595 - grpc++
2596 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002597 - gpr_test_util
2598 - gpr
vjpai083dc622016-01-11 09:41:17 -08002599 platforms:
2600 - mac
2601 - linux
2602 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002603- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002604 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002605 build: test
2606 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002607 src:
2608 - test/cpp/end2end/generic_end2end_test.cc
2609 deps:
2610 - grpc++_test_util
2611 - grpc_test_util
2612 - grpc++
2613 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002614 - gpr_test_util
2615 - gpr
yang-gb8aa58b2016-04-14 15:50:50 -07002616- name: golden_file_test
2617 gtest: true
2618 build: test
2619 language: c++
2620 src:
2621 - src/proto/grpc/testing/compiler_test.proto
2622 - test/cpp/codegen/golden_file_test.cc
2623 deps:
2624 - grpc++
2625 - grpc
2626 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002627- name: grpc_cli
2628 build: test
2629 run: false
2630 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002631 src:
2632 - test/cpp/util/grpc_cli.cc
2633 deps:
2634 - grpc++_test_util
2635 - grpc_test_util
2636 - grpc++
2637 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002638 - gpr_test_util
2639 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002640 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002641- name: grpc_cpp_plugin
2642 build: protoc
2643 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002644 src:
2645 - src/compiler/cpp_plugin.cc
2646 deps:
2647 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002648 secure: false
2649 vs_config_type: Application
2650 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2651- name: grpc_csharp_plugin
2652 build: protoc
2653 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002654 src:
2655 - src/compiler/csharp_plugin.cc
2656 deps:
2657 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002658 secure: false
2659 vs_config_type: Application
2660 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
murgatroid99d2ee81f2016-02-26 11:10:33 -08002661- name: grpc_node_plugin
2662 build: protoc
2663 language: c++
2664 src:
2665 - src/compiler/node_plugin.cc
2666 deps:
2667 - grpc_plugin_support
2668 secure: false
2669 vs_config_type: Application
Craig Tillerbf4b2242015-08-31 15:53:53 -07002670- name: grpc_objective_c_plugin
2671 build: protoc
2672 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002673 src:
2674 - src/compiler/objective_c_plugin.cc
2675 deps:
2676 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002677 secure: false
2678 vs_config_type: Application
2679 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2680- name: grpc_python_plugin
2681 build: protoc
2682 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002683 src:
2684 - src/compiler/python_plugin.cc
2685 deps:
2686 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002687 secure: false
2688 vs_config_type: Application
2689 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2690- name: grpc_ruby_plugin
2691 build: protoc
2692 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002693 src:
2694 - src/compiler/ruby_plugin.cc
2695 deps:
2696 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002697 secure: false
2698 vs_config_type: Application
2699 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002700- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002701 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002702 build: test
2703 language: c++
2704 src:
David Garcia Quintas7f0793a2016-04-25 12:35:58 -07002705 - src/proto/grpc/lb/v1/load_balancer.proto
Craig Tillereb841e22016-02-11 15:49:16 -08002706 - test/cpp/grpclb/grpclb_api_test.cc
2707 deps:
2708 - grpc++_test_util
2709 - grpc_test_util
2710 - grpc++
2711 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002712- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002713 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002714 build: test
2715 language: c++
2716 src:
2717 - test/cpp/end2end/hybrid_end2end_test.cc
2718 deps:
2719 - grpc++_test_util
2720 - grpc_test_util
2721 - grpc++
2722 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002723 - gpr_test_util
2724 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002725- name: interop_client
2726 build: test
2727 run: false
2728 language: c++
2729 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002730 deps:
2731 - interop_client_main
2732 - interop_client_helper
2733 - grpc++_test_util
2734 - grpc_test_util
2735 - grpc++
2736 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002737 - gpr_test_util
2738 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002739 - grpc++_test_config
2740 platforms:
2741 - mac
2742 - linux
2743 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002744- name: interop_server
2745 build: test
2746 run: false
2747 language: c++
2748 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002749 deps:
2750 - interop_server_main
2751 - interop_server_helper
2752 - grpc++_test_util
2753 - grpc_test_util
2754 - grpc++
2755 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002756 - gpr_test_util
2757 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002758 - grpc++_test_config
2759 platforms:
2760 - mac
2761 - linux
2762 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002763- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002764 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002765 build: test
2766 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002767 src:
2768 - test/cpp/interop/interop_test.cc
2769 deps:
2770 - grpc_test_util
2771 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002772 - gpr_test_util
2773 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002774 platforms:
2775 - mac
2776 - linux
2777 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002778- name: json_run_localhost
2779 build: test
2780 run: false
2781 language: c++
2782 src:
2783 - test/cpp/qps/json_run_localhost.cc
2784 deps:
2785 - grpc++_test_util
2786 - grpc_test_util
2787 - grpc++
2788 - grpc
2789 - gpr_test_util
2790 - gpr
2791 - grpc++_test_config
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002792- name: metrics_client
2793 build: test
2794 run: false
2795 language: c++
2796 headers:
2797 - test/cpp/util/metrics_server.h
2798 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002799 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002800 - test/cpp/interop/metrics_client.cc
2801 deps:
2802 - grpc++
2803 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002804 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002805 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002806- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002807 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002808 build: test
2809 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002810 src:
2811 - test/cpp/end2end/mock_test.cc
2812 deps:
2813 - grpc++_test_util
2814 - grpc_test_util
2815 - grpc++
2816 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002817 - gpr_test_util
2818 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002819- name: qps_interarrival_test
2820 build: test
2821 run: false
2822 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002823 src:
2824 - test/cpp/qps/qps_interarrival_test.cc
2825 deps:
2826 - qps
2827 - grpc++_test_util
2828 - grpc_test_util
2829 - grpc++
2830 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002831 - gpr_test_util
2832 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002833 platforms:
2834 - mac
2835 - linux
2836 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002837- name: qps_json_driver
2838 build: test
2839 run: false
2840 language: c++
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002841 headers:
2842 - test/cpp/qps/parse_json.h
Craig Tiller0bda0b32016-03-03 12:51:53 -08002843 src:
Craig Tiller3ab2fe02016-04-11 20:11:18 -07002844 - test/cpp/qps/parse_json.cc
Craig Tiller0bda0b32016-03-03 12:51:53 -08002845 - test/cpp/qps/qps_json_driver.cc
2846 deps:
2847 - qps
2848 - grpc++_test_util
2849 - grpc_test_util
2850 - grpc++
2851 - grpc
2852 - gpr_test_util
2853 - gpr
2854 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002855- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002856 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002857 build: test
2858 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002859 src:
2860 - test/cpp/qps/qps_openloop_test.cc
2861 deps:
2862 - qps
2863 - grpc++_test_util
2864 - grpc_test_util
2865 - grpc++
2866 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002867 - gpr_test_util
2868 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002869 - grpc++_test_config
2870 platforms:
2871 - mac
2872 - linux
2873 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002874- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002875 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002876 build: test
2877 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002878 src:
2879 - test/cpp/qps/qps_test.cc
2880 deps:
2881 - qps
2882 - grpc++_test_util
2883 - grpc_test_util
2884 - grpc++
2885 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002886 - gpr_test_util
2887 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002888 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002889 platforms:
2890 - mac
2891 - linux
2892 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002893- name: qps_worker
Craig Tiller0bda0b32016-03-03 12:51:53 -08002894 build: test
2895 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002896 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002897 headers:
2898 - test/cpp/qps/client.h
2899 - test/cpp/qps/server.h
2900 src:
2901 - test/cpp/qps/worker.cc
2902 deps:
2903 - qps
2904 - grpc++_test_util
2905 - grpc_test_util
2906 - grpc++
2907 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002908 - gpr_test_util
2909 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002910 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002911- name: reconnect_interop_client
2912 build: test
2913 run: false
2914 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002915 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002916 - src/proto/grpc/testing/empty.proto
2917 - src/proto/grpc/testing/messages.proto
2918 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002919 - test/cpp/interop/reconnect_interop_client.cc
2920 deps:
2921 - grpc++_test_util
2922 - grpc_test_util
2923 - grpc++
2924 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002925 - gpr_test_util
2926 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002927 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002928- name: reconnect_interop_server
2929 build: test
2930 run: false
2931 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002932 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002933 - src/proto/grpc/testing/empty.proto
2934 - src/proto/grpc/testing/messages.proto
2935 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002936 - test/cpp/interop/reconnect_interop_server.cc
2937 deps:
2938 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002939 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002940 - grpc++_test_util
2941 - grpc_test_util
2942 - grpc++
2943 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002944 - gpr_test_util
2945 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002946 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002947- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002948 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002949 build: test
2950 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002951 src:
2952 - test/cpp/common/secure_auth_context_test.cc
2953 deps:
2954 - grpc++_test_util
2955 - grpc_test_util
2956 - grpc++
2957 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002958 - gpr_test_util
2959 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002960- name: secure_sync_unary_ping_pong_test
2961 build: test
2962 language: c++
2963 src:
2964 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2965 deps:
2966 - qps
2967 - grpc++_test_util
2968 - grpc_test_util
2969 - grpc++
2970 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002971 - gpr_test_util
2972 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002973 platforms:
2974 - mac
2975 - linux
2976 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002977- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002978 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002979 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002980 build: test
2981 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002982 src:
2983 - test/cpp/end2end/server_crash_test.cc
2984 deps:
2985 - grpc++_test_util
2986 - grpc_test_util
2987 - grpc++
2988 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002989 - gpr_test_util
2990 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002991 platforms:
2992 - mac
2993 - linux
2994 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002995- name: server_crash_test_client
2996 build: test
2997 run: false
2998 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002999 src:
3000 - test/cpp/end2end/server_crash_test_client.cc
3001 deps:
3002 - grpc++_test_util
3003 - grpc_test_util
3004 - grpc++
3005 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003006 - gpr_test_util
3007 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003008- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003009 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003010 build: test
3011 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003012 src:
3013 - test/cpp/end2end/shutdown_test.cc
3014 deps:
3015 - grpc++_test_util
3016 - grpc_test_util
3017 - grpc++
3018 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003019 - gpr_test_util
3020 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003021- name: status_test
3022 build: test
3023 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003024 src:
3025 - test/cpp/util/status_test.cc
3026 deps:
3027 - grpc_test_util
3028 - grpc++
3029 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003030 - gpr_test_util
3031 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003032- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003033 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07003034 build: test
3035 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003036 src:
3037 - test/cpp/end2end/streaming_throughput_test.cc
3038 deps:
3039 - grpc++_test_util
3040 - grpc_test_util
3041 - grpc++
3042 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003043 - gpr_test_util
3044 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003045 platforms:
3046 - mac
3047 - linux
3048 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003049- name: stress_test
3050 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07003051 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003052 language: c++
3053 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07003054 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003055 - test/cpp/interop/interop_client.h
3056 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003057 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003058 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003059 - src/proto/grpc/testing/empty.proto
3060 - src/proto/grpc/testing/messages.proto
3061 - src/proto/grpc/testing/metrics.proto
3062 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003063 - test/cpp/interop/interop_client.cc
3064 - test/cpp/interop/stress_interop_client.cc
3065 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07003066 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003067 deps:
3068 - grpc++_test_util
3069 - grpc_test_util
3070 - grpc++
3071 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003072 - gpr_test_util
3073 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07003074 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07003075- name: sync_streaming_ping_pong_test
3076 build: test
3077 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003078 src:
3079 - test/cpp/qps/sync_streaming_ping_pong_test.cc
3080 deps:
3081 - qps
3082 - grpc++_test_util
3083 - grpc_test_util
3084 - grpc++
3085 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003086 - gpr_test_util
3087 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003088 platforms:
3089 - mac
3090 - linux
3091 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003092- name: sync_unary_ping_pong_test
3093 build: test
3094 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003095 src:
3096 - test/cpp/qps/sync_unary_ping_pong_test.cc
3097 deps:
3098 - qps
3099 - grpc++_test_util
3100 - grpc_test_util
3101 - grpc++
3102 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003103 - gpr_test_util
3104 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003105 platforms:
3106 - mac
3107 - linux
3108 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003109- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003110 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08003111 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07003112 build: test
3113 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003114 src:
3115 - test/cpp/end2end/thread_stress_test.cc
3116 deps:
3117 - grpc++_test_util
3118 - grpc_test_util
3119 - grpc++
3120 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003121 - gpr_test_util
3122 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003123- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003124 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003125 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07003126 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07003127 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003128 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003129 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07003130 - test/cpp/end2end/zookeeper_test.cc
3131 deps:
3132 - grpc++_test_util
3133 - grpc_test_util
3134 - grpc++
3135 - grpc_zookeeper
3136 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003137 - gpr_test_util
3138 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003139 external_deps:
3140 - zookeeper
3141 platforms:
3142 - linux
Craig Tillerab230452016-01-04 08:18:43 -08003143- name: public_headers_must_be_c89
3144 build: test
3145 language: c89
3146 src:
3147 - test/core/surface/public_headers_must_be_c89.c
3148 deps:
3149 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003150 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003151vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07003152- linkage: static
3153 name: grpc.dependencies.zlib
3154 props: false
3155 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003156 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08003157- linkage: static
3158 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07003159 props: true
3160 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003161 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07003162- name: gflags
3163 props: false
3164 redist: false
3165 version: 2.1.2.1
3166- name: gtest
3167 props: false
3168 redist: false
3169 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08003170configs:
3171 asan:
3172 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003173 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3174 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003175 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003176 LD: clang
3177 LDFLAGS: -fsanitize=address
3178 LDXX: clang++
3179 compile_the_world: true
3180 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08003181 ASAN_OPTIONS: detect_leaks=1:color=always
3182 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08003183 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003184 asan-noleaks:
3185 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003186 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3187 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003188 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003189 LD: clang
3190 LDFLAGS: -fsanitize=address
3191 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08003192 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08003193 test_environ:
3194 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08003195 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07003196 asan-trace-cmp:
3197 CC: clang
Craig Tillerff822392016-03-23 21:46:52 -07003198 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize-coverage=trace-cmp -fsanitize=address
3199 -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerae945942016-03-23 21:43:58 -07003200 CXX: clang++
3201 LD: clang
3202 LDFLAGS: -fsanitize=address
3203 LDXX: clang++
3204 compile_the_world: true
3205 test_environ:
3206 ASAN_OPTIONS: detect_leaks=1:color=always
3207 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3208 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003209 basicprof:
3210 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
3211 DEFINES: NDEBUG
3212 dbg:
3213 CPPFLAGS: -O0
3214 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08003215 easan:
3216 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003217 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3218 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tiller3af3f742016-02-28 21:53:13 -08003219 CXX: clang++
3220 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3221 LD: clang
3222 LDFLAGS: -fsanitize=address
3223 LDXX: clang++
3224 compile_the_world: true
3225 test_environ:
3226 ASAN_OPTIONS: detect_leaks=1:color=always
3227 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3228 timeout_multiplier: 3
3229 edbg:
3230 CPPFLAGS: -O0
3231 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3232 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08003233 CC: clang
3234 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003235 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08003236 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08003237 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08003238 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003239 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08003240 LDXX: clang++
3241 compile_the_world: true
3242 test_environ:
3243 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
3244 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003245 gcov:
3246 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003247 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08003248 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08003249 DEFINES: _DEBUG DEBUG GPR_GCOV
3250 LD: gcc
3251 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
3252 LDXX: g++
3253 helgrind:
3254 CPPFLAGS: -O0
3255 DEFINES: _DEBUG DEBUG
3256 LDFLAGS: -rdynamic
3257 timeout_multiplier: 20
3258 valgrind: --tool=helgrind
3259 memcheck:
3260 CPPFLAGS: -O0
3261 DEFINES: _DEBUG DEBUG
3262 LDFLAGS: -rdynamic
3263 timeout_multiplier: 10
3264 valgrind: --tool=memcheck --leak-check=full
3265 msan:
3266 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003267 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
3268 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3269 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003270 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003271 DEFINES: NDEBUG
3272 LD: clang
3273 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3274 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
3275 LDXX: clang++
3276 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08003277 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08003278 mutrace:
3279 CPPFLAGS: -O0
3280 DEFINES: _DEBUG DEBUG
3281 LDFLAGS: -rdynamic
3282 opt:
3283 CPPFLAGS: -O2
3284 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08003285 stapprof:
3286 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
3287 DEFINES: NDEBUG
3288 tsan:
3289 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003290 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003291 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003292 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003293 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003294 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08003295 LDXX: clang++
3296 compile_the_world: true
3297 test_environ:
3298 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08003299 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003300 ubsan:
3301 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003302 CPPFLAGS: -O1 -fsanitize-coverage=edge -fsanitize=undefined -fno-omit-frame-pointer
3303 -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08003304 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003305 DEFINES: NDEBUG
3306 LD: clang
3307 LDFLAGS: -fsanitize=undefined
3308 LDXX: clang++
3309 compile_the_world: true
3310 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003311defaults:
3312 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003313 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Craig Tiller78222f72016-05-10 09:55:38 -07003314 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare $(NO_W_EXTRA_SEMI)
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003315 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003316 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003317 global:
3318 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
3319 LDFLAGS: -g
3320 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01003321 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01003322 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08003323node_modules:
3324- deps:
3325 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003326 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08003327 - boringssl
3328 - z
murgatroid9994a75412015-11-19 14:04:53 -08003329 headers:
3330 - src/node/ext/byte_buffer.h
3331 - src/node/ext/call.h
3332 - src/node/ext/call_credentials.h
3333 - src/node/ext/channel.h
3334 - src/node/ext/channel_credentials.h
3335 - src/node/ext/completion_queue_async_worker.h
3336 - src/node/ext/server.h
3337 - src/node/ext/server_credentials.h
3338 - src/node/ext/timeval.h
3339 js:
3340 - src/node/index.js
3341 - src/node/src/client.js
3342 - src/node/src/common.js
3343 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08003344 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08003345 - src/node/src/metadata.js
3346 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003347 name: grpc_node
3348 src:
3349 - src/node/ext/byte_buffer.cc
3350 - src/node/ext/call.cc
3351 - src/node/ext/call_credentials.cc
3352 - src/node/ext/channel.cc
3353 - src/node/ext/channel_credentials.cc
3354 - src/node/ext/completion_queue_async_worker.cc
3355 - src/node/ext/node_grpc.cc
3356 - src/node/ext/server.cc
3357 - src/node/ext/server_credentials.cc
3358 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003359openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003360 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003361 extraction_dir: openssl-1.0.2f
3362 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003363php_config_m4:
3364 deps:
3365 - grpc
3366 - gpr
3367 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003368 headers:
3369 - src/php/ext/grpc/byte_buffer.h
3370 - src/php/ext/grpc/call.h
3371 - src/php/ext/grpc/call_credentials.h
3372 - src/php/ext/grpc/channel.h
3373 - src/php/ext/grpc/channel_credentials.h
3374 - src/php/ext/grpc/completion_queue.h
3375 - src/php/ext/grpc/php_grpc.h
3376 - src/php/ext/grpc/server.h
3377 - src/php/ext/grpc/server_credentials.h
3378 - src/php/ext/grpc/timeval.h
3379 src:
3380 - src/php/ext/grpc/byte_buffer.c
3381 - src/php/ext/grpc/call.c
3382 - src/php/ext/grpc/call_credentials.c
3383 - src/php/ext/grpc/channel.c
3384 - src/php/ext/grpc/channel_credentials.c
3385 - src/php/ext/grpc/completion_queue.c
3386 - src/php/ext/grpc/php_grpc.c
3387 - src/php/ext/grpc/server.c
3388 - src/php/ext/grpc/server_credentials.c
3389 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003390python_dependencies:
3391 deps:
3392 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003393 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003394 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003395 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003396ruby_gem:
3397 deps:
3398 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003399 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003400 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003401 - z