blob: 4a0663452d86a8d7261f5375c147a2c37454ea4e [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" Noble1935c362016-02-09 01:54:56 +010010 version: 0.14.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:
vjpaif9f61cf2016-02-10 20:51:53 -0800145 - include/grpc++/alarm.h
Craig Tiller25834342015-09-25 08:08:24 -0700146 - include/grpc++/channel.h
147 - include/grpc++/client_context.h
148 - include/grpc++/completion_queue.h
149 - include/grpc++/create_channel.h
150 - include/grpc++/generic/async_generic_service.h
151 - include/grpc++/generic/generic_stub.h
152 - include/grpc++/grpc++.h
153 - include/grpc++/impl/call.h
154 - include/grpc++/impl/client_unary_call.h
155 - include/grpc++/impl/grpc_library.h
yang-g77c63332016-01-14 16:09:04 -0800156 - include/grpc++/impl/method_handler_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700157 - include/grpc++/impl/proto_utils.h
158 - include/grpc++/impl/rpc_method.h
159 - include/grpc++/impl/rpc_service_method.h
160 - include/grpc++/impl/serialization_traits.h
yang-ga23f17b2015-11-25 10:21:05 -0800161 - include/grpc++/impl/server_builder_option.h
Craig Tiller25834342015-09-25 08:08:24 -0700162 - include/grpc++/impl/service_type.h
163 - include/grpc++/impl/sync.h
164 - include/grpc++/impl/sync_cxx11.h
165 - include/grpc++/impl/sync_no_cxx11.h
166 - include/grpc++/impl/thd.h
167 - include/grpc++/impl/thd_cxx11.h
168 - include/grpc++/impl/thd_no_cxx11.h
169 - include/grpc++/security/auth_context.h
170 - include/grpc++/security/auth_metadata_processor.h
171 - include/grpc++/security/credentials.h
172 - include/grpc++/security/server_credentials.h
173 - include/grpc++/server.h
174 - include/grpc++/server_builder.h
175 - include/grpc++/server_context.h
176 - include/grpc++/support/async_stream.h
177 - include/grpc++/support/async_unary_call.h
178 - include/grpc++/support/byte_buffer.h
179 - include/grpc++/support/channel_arguments.h
Craig Tiller25834342015-09-25 08:08:24 -0700180 - include/grpc++/support/slice.h
181 - include/grpc++/support/status.h
182 - include/grpc++/support/status_code_enum.h
183 - include/grpc++/support/string_ref.h
184 - include/grpc++/support/stub_options.h
185 - include/grpc++/support/sync_stream.h
186 - include/grpc++/support/time.h
187 headers:
188 - src/cpp/client/create_channel_internal.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800189 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700190 - src/cpp/common/create_auth_context.h
191 - src/cpp/server/dynamic_thread_pool.h
Craig Tiller25834342015-09-25 08:08:24 -0700192 - src/cpp/server/thread_pool_interface.h
193 src:
194 - src/cpp/client/channel.cc
Craig Tiller25834342015-09-25 08:08:24 -0700195 - src/cpp/client/client_context.cc
196 - src/cpp/client/create_channel.cc
197 - src/cpp/client/create_channel_internal.cc
198 - src/cpp/client/credentials.cc
199 - src/cpp/client/generic_stub.cc
200 - src/cpp/client/insecure_credentials.cc
yang-g52705592015-11-25 11:45:33 -0800201 - src/cpp/common/channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700202 - src/cpp/common/completion_queue.cc
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +0100203 - src/cpp/common/core_codegen.cc
Craig Tiller25834342015-09-25 08:08:24 -0700204 - src/cpp/common/rpc_method.cc
Craig Tiller25834342015-09-25 08:08:24 -0700205 - src/cpp/server/async_generic_service.cc
206 - src/cpp/server/create_default_thread_pool.cc
207 - src/cpp/server/dynamic_thread_pool.cc
Craig Tiller25834342015-09-25 08:08:24 -0700208 - src/cpp/server/insecure_server_credentials.cc
209 - src/cpp/server/server.cc
210 - src/cpp/server/server_builder.cc
211 - src/cpp/server/server_context.cc
212 - src/cpp/server/server_credentials.cc
213 - src/cpp/util/byte_buffer.cc
214 - src/cpp/util/slice.cc
215 - src/cpp/util/status.cc
216 - src/cpp/util/string_ref.cc
217 - src/cpp/util/time.cc
Craig Tillerd1697d92016-04-05 16:05:46 -0700218 deps:
219 - grpc
220 uses:
221 - grpc++_codegen
Craig Tiller03915e52016-04-07 09:15:10 -0700222 - grpc++_config
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800223- name: grpc++_codegen
224 public_headers:
David Garcia Quintas6a484052016-01-25 19:12:37 -0800225 - include/grpc++/impl/codegen/async_stream.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800226 - include/grpc++/impl/codegen/async_unary_call.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800227 - include/grpc++/impl/codegen/call.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800228 - include/grpc++/impl/codegen/call_hook.h
229 - include/grpc++/impl/codegen/channel_interface.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800230 - include/grpc++/impl/codegen/client_context.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800231 - include/grpc++/impl/codegen/client_unary_call.h
232 - include/grpc++/impl/codegen/completion_queue.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800233 - include/grpc++/impl/codegen/completion_queue_tag.h
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100234 - include/grpc++/impl/codegen/core_codegen_interface.h
David Garcia Quintase1300de2016-01-27 18:41:26 -0800235 - include/grpc++/impl/codegen/grpc_library.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800236 - include/grpc++/impl/codegen/method_handler_impl.h
David Garcia Quintas6a484052016-01-25 19:12:37 -0800237 - include/grpc++/impl/codegen/proto_utils.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800238 - include/grpc++/impl/codegen/rpc_method.h
239 - include/grpc++/impl/codegen/rpc_service_method.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800240 - include/grpc++/impl/codegen/security/auth_context.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800241 - include/grpc++/impl/codegen/serialization_traits.h
242 - include/grpc++/impl/codegen/server_context.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800243 - include/grpc++/impl/codegen/server_interface.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800244 - include/grpc++/impl/codegen/service_type.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800245 - include/grpc++/impl/codegen/status.h
246 - include/grpc++/impl/codegen/status_code_enum.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800247 - include/grpc++/impl/codegen/string_ref.h
David Garcia Quintase1300de2016-01-27 18:41:26 -0800248 - include/grpc++/impl/codegen/stub_options.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800249 - include/grpc++/impl/codegen/sync.h
250 - include/grpc++/impl/codegen/sync_cxx11.h
251 - include/grpc++/impl/codegen/sync_no_cxx11.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800252 - include/grpc++/impl/codegen/sync_stream.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800253 - include/grpc++/impl/codegen/time.h
David Garcia Quintase1300de2016-01-27 18:41:26 -0800254 src:
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100255 - src/cpp/codegen/codegen_init.cc
Craig Tiller03915e52016-04-07 09:15:10 -0700256 uses:
257 - grpc_codegen
258 - grpc++_config_codegen
259- name: grpc++_config
260 public_headers:
261 - include/grpc++/support/config.h
262 - include/grpc++/support/config_protobuf.h
263 uses:
264 - grpc++_config_codegen
265- name: grpc++_config_codegen
266 public_headers:
267 - include/grpc++/impl/codegen/config.h
268 - include/grpc++/impl/codegen/config_protobuf.h
Craig Tillerbf4b2242015-08-31 15:53:53 -0700269- name: grpc_base
Craig Tiller25834342015-09-25 08:08:24 -0700270 public_headers:
271 - include/grpc/byte_buffer.h
272 - include/grpc/byte_buffer_reader.h
273 - include/grpc/compression.h
274 - include/grpc/grpc.h
275 - include/grpc/status.h
276 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700277 - src/core/lib/channel/channel_args.h
278 - src/core/lib/channel/channel_stack.h
279 - src/core/lib/channel/channel_stack_builder.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700280 - src/core/lib/channel/compress_filter.h
281 - src/core/lib/channel/connected_channel.h
282 - src/core/lib/channel/context.h
283 - src/core/lib/channel/http_client_filter.h
284 - src/core/lib/channel/http_server_filter.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700285 - src/core/lib/compression/algorithm_metadata.h
286 - src/core/lib/compression/message_compress.h
287 - src/core/lib/debug/trace.h
288 - src/core/lib/http/format_request.h
289 - src/core/lib/http/httpcli.h
290 - src/core/lib/http/parser.h
291 - src/core/lib/iomgr/closure.h
292 - src/core/lib/iomgr/endpoint.h
293 - src/core/lib/iomgr/endpoint_pair.h
Craig Tiller8a034482016-03-28 16:09:04 -0700294 - src/core/lib/iomgr/ev_poll_and_epoll_posix.h
295 - src/core/lib/iomgr/ev_posix.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700296 - src/core/lib/iomgr/exec_ctx.h
297 - src/core/lib/iomgr/executor.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700298 - src/core/lib/iomgr/iocp_windows.h
299 - src/core/lib/iomgr/iomgr.h
300 - src/core/lib/iomgr/iomgr_internal.h
301 - src/core/lib/iomgr/iomgr_posix.h
302 - src/core/lib/iomgr/pollset.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700303 - src/core/lib/iomgr/pollset_set.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700304 - src/core/lib/iomgr/pollset_set_windows.h
305 - src/core/lib/iomgr/pollset_windows.h
306 - src/core/lib/iomgr/resolve_address.h
307 - src/core/lib/iomgr/sockaddr.h
308 - src/core/lib/iomgr/sockaddr_posix.h
309 - src/core/lib/iomgr/sockaddr_utils.h
310 - src/core/lib/iomgr/sockaddr_win32.h
311 - src/core/lib/iomgr/socket_utils_posix.h
312 - src/core/lib/iomgr/socket_windows.h
313 - src/core/lib/iomgr/tcp_client.h
314 - src/core/lib/iomgr/tcp_posix.h
315 - src/core/lib/iomgr/tcp_server.h
316 - src/core/lib/iomgr/tcp_windows.h
317 - src/core/lib/iomgr/time_averaged_stats.h
318 - src/core/lib/iomgr/timer.h
319 - src/core/lib/iomgr/timer_heap.h
320 - src/core/lib/iomgr/udp_server.h
321 - src/core/lib/iomgr/unix_sockets_posix.h
322 - src/core/lib/iomgr/wakeup_fd_pipe.h
323 - src/core/lib/iomgr/wakeup_fd_posix.h
324 - src/core/lib/iomgr/workqueue.h
325 - src/core/lib/iomgr/workqueue_posix.h
326 - src/core/lib/iomgr/workqueue_windows.h
327 - src/core/lib/json/json.h
328 - src/core/lib/json/json_common.h
329 - src/core/lib/json/json_reader.h
330 - src/core/lib/json/json_writer.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700331 - src/core/lib/surface/api_trace.h
332 - src/core/lib/surface/call.h
333 - src/core/lib/surface/call_test_only.h
334 - src/core/lib/surface/channel.h
335 - src/core/lib/surface/channel_init.h
336 - src/core/lib/surface/channel_stack_type.h
337 - src/core/lib/surface/completion_queue.h
338 - src/core/lib/surface/event_string.h
339 - src/core/lib/surface/init.h
340 - src/core/lib/surface/lame_client.h
341 - src/core/lib/surface/server.h
342 - src/core/lib/surface/surface_trace.h
343 - src/core/lib/transport/byte_stream.h
Craig Tillerf23078c2016-03-25 17:07:29 -0700344 - src/core/lib/transport/connectivity_state.h
345 - src/core/lib/transport/metadata.h
346 - src/core/lib/transport/metadata_batch.h
347 - src/core/lib/transport/static_metadata.h
348 - src/core/lib/transport/transport.h
349 - src/core/lib/transport/transport_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700350 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700351 - src/core/lib/channel/channel_args.c
352 - src/core/lib/channel/channel_stack.c
353 - src/core/lib/channel/channel_stack_builder.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700354 - src/core/lib/channel/compress_filter.c
355 - src/core/lib/channel/connected_channel.c
356 - src/core/lib/channel/http_client_filter.c
357 - src/core/lib/channel/http_server_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700358 - src/core/lib/compression/compression_algorithm.c
359 - src/core/lib/compression/message_compress.c
360 - src/core/lib/debug/trace.c
361 - src/core/lib/http/format_request.c
362 - src/core/lib/http/httpcli.c
363 - src/core/lib/http/parser.c
364 - src/core/lib/iomgr/closure.c
365 - src/core/lib/iomgr/endpoint.c
366 - src/core/lib/iomgr/endpoint_pair_posix.c
367 - src/core/lib/iomgr/endpoint_pair_windows.c
Craig Tiller8a034482016-03-28 16:09:04 -0700368 - src/core/lib/iomgr/ev_poll_and_epoll_posix.c
369 - src/core/lib/iomgr/ev_posix.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700370 - src/core/lib/iomgr/exec_ctx.c
371 - src/core/lib/iomgr/executor.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700372 - src/core/lib/iomgr/iocp_windows.c
373 - src/core/lib/iomgr/iomgr.c
374 - src/core/lib/iomgr/iomgr_posix.c
375 - src/core/lib/iomgr/iomgr_windows.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700376 - src/core/lib/iomgr/pollset_set_windows.c
377 - src/core/lib/iomgr/pollset_windows.c
378 - src/core/lib/iomgr/resolve_address_posix.c
379 - src/core/lib/iomgr/resolve_address_windows.c
380 - src/core/lib/iomgr/sockaddr_utils.c
381 - src/core/lib/iomgr/socket_utils_common_posix.c
382 - src/core/lib/iomgr/socket_utils_linux.c
383 - src/core/lib/iomgr/socket_utils_posix.c
384 - src/core/lib/iomgr/socket_windows.c
385 - src/core/lib/iomgr/tcp_client_posix.c
386 - src/core/lib/iomgr/tcp_client_windows.c
387 - src/core/lib/iomgr/tcp_posix.c
388 - src/core/lib/iomgr/tcp_server_posix.c
389 - src/core/lib/iomgr/tcp_server_windows.c
390 - src/core/lib/iomgr/tcp_windows.c
391 - src/core/lib/iomgr/time_averaged_stats.c
392 - src/core/lib/iomgr/timer.c
393 - src/core/lib/iomgr/timer_heap.c
394 - src/core/lib/iomgr/udp_server.c
395 - src/core/lib/iomgr/unix_sockets_posix.c
396 - src/core/lib/iomgr/unix_sockets_posix_noop.c
397 - src/core/lib/iomgr/wakeup_fd_eventfd.c
398 - src/core/lib/iomgr/wakeup_fd_nospecial.c
399 - src/core/lib/iomgr/wakeup_fd_pipe.c
400 - src/core/lib/iomgr/wakeup_fd_posix.c
401 - src/core/lib/iomgr/workqueue_posix.c
402 - src/core/lib/iomgr/workqueue_windows.c
403 - src/core/lib/json/json.c
404 - src/core/lib/json/json_reader.c
405 - src/core/lib/json/json_string.c
406 - src/core/lib/json/json_writer.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700407 - src/core/lib/surface/alarm.c
408 - src/core/lib/surface/api_trace.c
409 - src/core/lib/surface/byte_buffer.c
410 - src/core/lib/surface/byte_buffer_reader.c
411 - src/core/lib/surface/call.c
412 - src/core/lib/surface/call_details.c
413 - src/core/lib/surface/call_log_batch.c
414 - src/core/lib/surface/channel.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700415 - src/core/lib/surface/channel_init.c
416 - src/core/lib/surface/channel_ping.c
417 - src/core/lib/surface/channel_stack_type.c
418 - src/core/lib/surface/completion_queue.c
419 - src/core/lib/surface/event_string.c
420 - src/core/lib/surface/init.c
421 - src/core/lib/surface/lame_client.c
422 - src/core/lib/surface/metadata_array.c
423 - src/core/lib/surface/server.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700424 - src/core/lib/surface/validate_metadata.c
425 - src/core/lib/surface/version.c
426 - src/core/lib/transport/byte_stream.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700427 - src/core/lib/transport/connectivity_state.c
428 - src/core/lib/transport/metadata.c
429 - src/core/lib/transport/metadata_batch.c
430 - src/core/lib/transport/static_metadata.c
431 - src/core/lib/transport/transport.c
432 - src/core/lib/transport/transport_op_string.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700433 deps:
434 - gpr
435 uses:
436 - grpc_codegen
Craig Tiller016a81d2016-03-31 13:49:05 -0700437- name: grpc_client_config
438 headers:
439 - src/core/ext/client_config/client_channel.h
Craig Tiller74071cd2016-04-01 16:36:27 -0700440 - src/core/ext/client_config/client_channel_factory.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700441 - src/core/ext/client_config/client_config.h
442 - src/core/ext/client_config/connector.h
443 - src/core/ext/client_config/initial_connect_string.h
444 - src/core/ext/client_config/lb_policy.h
445 - src/core/ext/client_config/lb_policy_factory.h
446 - src/core/ext/client_config/lb_policy_registry.h
447 - src/core/ext/client_config/resolver.h
448 - src/core/ext/client_config/resolver_factory.h
449 - src/core/ext/client_config/resolver_registry.h
450 - src/core/ext/client_config/subchannel.h
Craig Tillerb112f392016-04-05 12:44:04 -0700451 - src/core/ext/client_config/subchannel_call_holder.h
Craig Tiller016a81d2016-03-31 13:49:05 -0700452 - src/core/ext/client_config/subchannel_index.h
453 - src/core/ext/client_config/uri_parser.h
454 src:
455 - src/core/ext/client_config/channel_connectivity.c
456 - src/core/ext/client_config/client_channel.c
Craig Tiller74071cd2016-04-01 16:36:27 -0700457 - src/core/ext/client_config/client_channel_factory.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700458 - src/core/ext/client_config/client_config.c
Craig Tiller0b541632016-04-05 17:21:05 -0700459 - src/core/ext/client_config/client_config_plugin.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700460 - src/core/ext/client_config/connector.c
461 - src/core/ext/client_config/default_initial_connect_string.c
462 - src/core/ext/client_config/initial_connect_string.c
463 - src/core/ext/client_config/lb_policy.c
464 - src/core/ext/client_config/lb_policy_factory.c
465 - src/core/ext/client_config/lb_policy_registry.c
466 - src/core/ext/client_config/resolver.c
467 - src/core/ext/client_config/resolver_factory.c
468 - src/core/ext/client_config/resolver_registry.c
469 - src/core/ext/client_config/subchannel.c
Craig Tillerb112f392016-04-05 12:44:04 -0700470 - src/core/ext/client_config/subchannel_call_holder.c
Craig Tiller016a81d2016-03-31 13:49:05 -0700471 - src/core/ext/client_config/subchannel_index.c
472 - src/core/ext/client_config/uri_parser.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700473 plugin: grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700474 uses:
475 - grpc_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800476- name: grpc_codegen
477 public_headers:
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800478 - include/grpc/impl/codegen/byte_buffer.h
479 - include/grpc/impl/codegen/compression_types.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800480 - include/grpc/impl/codegen/connectivity_state.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800481 - include/grpc/impl/codegen/grpc_types.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800482 - include/grpc/impl/codegen/propagation_bits.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800483 - include/grpc/impl/codegen/status.h
Craig Tiller03915e52016-04-07 09:15:10 -0700484 uses:
485 - gpr_codegen
Craig Tiller023caf12016-03-29 08:00:30 -0700486- name: grpc_lb_policy_grpclb
487 headers:
488 - src/core/ext/lb_policy/grpclb/load_balancer_api.h
Craig Tiller943cdf92016-03-29 13:27:56 -0700489 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.h
Craig Tiller023caf12016-03-29 08:00:30 -0700490 src:
491 - src/core/ext/lb_policy/grpclb/load_balancer_api.c
Craig Tiller943cdf92016-03-29 13:27:56 -0700492 - src/core/ext/lb_policy/grpclb/proto/grpc/lb/v0/load_balancer.pb.c
Craig Tiller023caf12016-03-29 08:00:30 -0700493 uses:
494 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700495 - grpc_client_config
Craig Tillerd1697d92016-04-05 16:05:46 -0700496 - nanopb
Craig Tiller023caf12016-03-29 08:00:30 -0700497- name: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700498 src:
499 - src/core/ext/lb_policy/pick_first/pick_first.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700500 plugin: grpc_lb_policy_pick_first
Craig Tiller023caf12016-03-29 08:00:30 -0700501 uses:
502 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700503 - grpc_client_config
Craig Tiller023caf12016-03-29 08:00:30 -0700504- name: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700505 src:
506 - src/core/ext/lb_policy/round_robin/round_robin.c
Craig Tiller04b7ca82016-03-29 08:07:54 -0700507 plugin: grpc_lb_policy_round_robin
Craig Tiller023caf12016-03-29 08:00:30 -0700508 uses:
509 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700510 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700511- name: grpc_resolver_dns_native
512 src:
513 - src/core/ext/resolver/dns/native/dns_resolver.c
514 plugin: grpc_resolver_dns_native
515 uses:
516 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700517 - grpc_client_config
Craig Tiller65938df2016-03-31 13:08:49 -0700518- name: grpc_resolver_sockaddr
519 src:
520 - src/core/ext/resolver/sockaddr/sockaddr_resolver.c
521 plugin: grpc_resolver_sockaddr
522 uses:
523 - grpc_base
Craig Tiller016a81d2016-03-31 13:49:05 -0700524 - grpc_client_config
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100525- name: grpc_secure
Craig Tillerd1697d92016-04-05 16:05:46 -0700526 public_headers:
527 - include/grpc/grpc_security.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100528 headers:
Craig Tillerf23078c2016-03-25 17:07:29 -0700529 - src/core/lib/security/auth_filters.h
530 - src/core/lib/security/b64.h
531 - src/core/lib/security/credentials.h
532 - src/core/lib/security/handshake.h
533 - src/core/lib/security/json_token.h
534 - src/core/lib/security/jwt_verifier.h
535 - src/core/lib/security/secure_endpoint.h
536 - src/core/lib/security/security_connector.h
537 - src/core/lib/security/security_context.h
538 - src/core/lib/tsi/fake_transport_security.h
539 - src/core/lib/tsi/ssl_transport_security.h
540 - src/core/lib/tsi/ssl_types.h
541 - src/core/lib/tsi/transport_security.h
542 - src/core/lib/tsi/transport_security_interface.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100543 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700544 - src/core/lib/http/httpcli_security_connector.c
545 - src/core/lib/security/b64.c
546 - src/core/lib/security/client_auth_filter.c
547 - src/core/lib/security/credentials.c
548 - src/core/lib/security/credentials_metadata.c
549 - src/core/lib/security/credentials_posix.c
550 - src/core/lib/security/credentials_win32.c
551 - src/core/lib/security/google_default_credentials.c
552 - src/core/lib/security/handshake.c
553 - src/core/lib/security/json_token.c
554 - src/core/lib/security/jwt_verifier.c
555 - src/core/lib/security/secure_endpoint.c
556 - src/core/lib/security/security_connector.c
557 - src/core/lib/security/security_context.c
558 - src/core/lib/security/server_auth_filter.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700559 - src/core/lib/surface/init_secure.c
Craig Tillerf23078c2016-03-25 17:07:29 -0700560 - src/core/lib/tsi/fake_transport_security.c
561 - src/core/lib/tsi/ssl_transport_security.c
562 - src/core/lib/tsi/transport_security.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700563 uses:
564 - grpc_base
565 - grpc_transport_chttp2_alpn
Craig Tillerbf4b2242015-08-31 15:53:53 -0700566- name: grpc_test_util_base
Craig Tiller25834342015-09-25 08:08:24 -0700567 headers:
568 - test/core/end2end/cq_verifier.h
569 - test/core/end2end/fixtures/proxy.h
570 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700571 - test/core/util/grpc_profiler.h
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200572 - test/core/util/memory_counters.h
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700573 - test/core/util/mock_endpoint.h
Craig Tiller25834342015-09-25 08:08:24 -0700574 - test/core/util/parse_hexstring.h
575 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700576 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700577 - test/core/util/slice_splitter.h
578 src:
579 - test/core/end2end/cq_verifier.c
580 - test/core/end2end/fixtures/proxy.c
581 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700582 - test/core/util/grpc_profiler.c
Nicolas "Pixel" Noble85a46dd2016-04-12 01:50:51 +0200583 - test/core/util/memory_counters.c
Craig Tiller2d8d13a2016-04-03 13:04:41 -0700584 - test/core/util/mock_endpoint.c
Craig Tiller25834342015-09-25 08:08:24 -0700585 - test/core/util/parse_hexstring.c
586 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700587 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700588 - test/core/util/port_windows.c
589 - test/core/util/slice_splitter.c
Craig Tillerd1697d92016-04-05 16:05:46 -0700590 deps:
591 - grpc
592 - gpr_test_util
Craig Tillerf0555b32016-03-28 10:19:24 -0700593- name: grpc_transport_chttp2
594 headers:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700595 - src/core/ext/transport/chttp2/transport/bin_encoder.h
Craig Tillerf0555b32016-03-28 10:19:24 -0700596 - src/core/ext/transport/chttp2/transport/chttp2_transport.h
597 - src/core/ext/transport/chttp2/transport/frame.h
598 - src/core/ext/transport/chttp2/transport/frame_data.h
599 - src/core/ext/transport/chttp2/transport/frame_goaway.h
600 - src/core/ext/transport/chttp2/transport/frame_ping.h
601 - src/core/ext/transport/chttp2/transport/frame_rst_stream.h
602 - src/core/ext/transport/chttp2/transport/frame_settings.h
603 - src/core/ext/transport/chttp2/transport/frame_window_update.h
604 - src/core/ext/transport/chttp2/transport/hpack_encoder.h
605 - src/core/ext/transport/chttp2/transport/hpack_parser.h
606 - src/core/ext/transport/chttp2/transport/hpack_table.h
607 - src/core/ext/transport/chttp2/transport/http2_errors.h
608 - src/core/ext/transport/chttp2/transport/huffsyms.h
609 - src/core/ext/transport/chttp2/transport/incoming_metadata.h
610 - src/core/ext/transport/chttp2/transport/internal.h
611 - src/core/ext/transport/chttp2/transport/status_conversion.h
612 - src/core/ext/transport/chttp2/transport/stream_map.h
613 - src/core/ext/transport/chttp2/transport/timeout_encoding.h
614 - src/core/ext/transport/chttp2/transport/varint.h
615 src:
Craig Tillerf82ddc42016-04-05 17:15:07 -0700616 - src/core/ext/transport/chttp2/transport/bin_encoder.c
617 - src/core/ext/transport/chttp2/transport/chttp2_plugin.c
Craig Tillerf0555b32016-03-28 10:19:24 -0700618 - src/core/ext/transport/chttp2/transport/chttp2_transport.c
619 - src/core/ext/transport/chttp2/transport/frame_data.c
620 - src/core/ext/transport/chttp2/transport/frame_goaway.c
621 - src/core/ext/transport/chttp2/transport/frame_ping.c
622 - src/core/ext/transport/chttp2/transport/frame_rst_stream.c
623 - src/core/ext/transport/chttp2/transport/frame_settings.c
624 - src/core/ext/transport/chttp2/transport/frame_window_update.c
625 - src/core/ext/transport/chttp2/transport/hpack_encoder.c
626 - src/core/ext/transport/chttp2/transport/hpack_parser.c
627 - src/core/ext/transport/chttp2/transport/hpack_table.c
628 - src/core/ext/transport/chttp2/transport/huffsyms.c
629 - src/core/ext/transport/chttp2/transport/incoming_metadata.c
630 - src/core/ext/transport/chttp2/transport/parsing.c
631 - src/core/ext/transport/chttp2/transport/status_conversion.c
632 - src/core/ext/transport/chttp2/transport/stream_lists.c
633 - src/core/ext/transport/chttp2/transport/stream_map.c
634 - src/core/ext/transport/chttp2/transport/timeout_encoding.c
635 - src/core/ext/transport/chttp2/transport/varint.c
636 - src/core/ext/transport/chttp2/transport/writing.c
Craig Tillerf82ddc42016-04-05 17:15:07 -0700637 plugin: grpc_chttp2_plugin
Craig Tiller44cc10b2016-03-28 10:45:29 -0700638 uses:
639 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700640 - grpc_transport_chttp2_alpn
641- name: grpc_transport_chttp2_alpn
642 headers:
643 - src/core/ext/transport/chttp2/alpn/alpn.h
644 src:
645 - src/core/ext/transport/chttp2/alpn/alpn.c
646 deps:
647 - gpr
Craig Tillerf0555b32016-03-28 10:19:24 -0700648- name: grpc_transport_chttp2_client_insecure
649 src:
650 - src/core/ext/transport/chttp2/client/insecure/channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700651 uses:
652 - grpc_transport_chttp2
653 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700654 - grpc_client_config
Craig Tillerf0555b32016-03-28 10:19:24 -0700655- name: grpc_transport_chttp2_client_secure
656 src:
657 - src/core/ext/transport/chttp2/client/secure/secure_channel_create.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700658 uses:
659 - grpc_transport_chttp2
660 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700661 - grpc_client_config
662 - grpc_secure
Craig Tillerf0555b32016-03-28 10:19:24 -0700663- name: grpc_transport_chttp2_server_insecure
664 src:
665 - src/core/ext/transport/chttp2/server/insecure/server_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700666 uses:
667 - grpc_transport_chttp2
668 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700669- name: grpc_transport_chttp2_server_secure
670 src:
671 - src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c
Craig Tiller44cc10b2016-03-28 10:45:29 -0700672 uses:
673 - grpc_transport_chttp2
674 - grpc_base
Craig Tillerd1697d92016-04-05 16:05:46 -0700675 - grpc_secure
Craig Tillereb841e22016-02-11 15:49:16 -0800676- name: nanopb
677 headers:
678 - third_party/nanopb/pb.h
679 - third_party/nanopb/pb_common.h
680 - third_party/nanopb/pb_decode.h
681 - third_party/nanopb/pb_encode.h
682 src:
683 - third_party/nanopb/pb_common.c
684 - third_party/nanopb/pb_decode.c
685 - third_party/nanopb/pb_encode.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100686libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800687- name: gpr
688 build: all
689 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800690 filegroups:
Craig Tillerd1697d92016-04-05 16:05:46 -0700691 - gpr_base
Craig Tillerda179ce2016-02-09 12:01:53 -0800692 secure: false
693 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
694- name: gpr_test_util
695 build: private
696 language: c
697 headers:
698 - test/core/util/test_config.h
699 src:
700 - test/core/util/test_config.c
701 deps:
702 - gpr
703 secure: false
704 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700705- name: grpc
706 build: all
707 language: c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700708 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800709 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700710 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700711 filegroups:
712 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700713 - grpc_transport_chttp2_server_secure
714 - grpc_transport_chttp2_client_secure
715 - grpc_transport_chttp2_server_insecure
716 - grpc_transport_chttp2_client_insecure
Craig Tiller023caf12016-03-29 08:00:30 -0700717 - grpc_lb_policy_grpclb
718 - grpc_lb_policy_pick_first
719 - grpc_lb_policy_round_robin
Craig Tiller65938df2016-03-31 13:08:49 -0700720 - grpc_resolver_dns_native
721 - grpc_resolver_sockaddr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100722 - grpc_secure
Craig Tiller25834342015-09-25 08:08:24 -0700723 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700724 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700725 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700726 vs_packages:
727 - grpc.dependencies.openssl
728 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700729 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100730- name: grpc_dll
731 build: private
732 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100733 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100734 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100735 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100736 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100737 build_system:
738 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100739 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100740 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100741 vs_config_type: DynamicLibrary
742 vs_packages:
743 - grpc.dependencies.openssl
744 - grpc.dependencies.zlib
745 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
746 vs_props:
747 - zlib
748 - openssl
749 - winsock
750 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700751- name: grpc_test_util
752 build: private
753 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700754 headers:
755 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800756 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700757 src:
758 - test/core/end2end/data/server1_cert.c
759 - test/core/end2end/data/server1_key.c
760 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800761 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700762 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800763 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800764 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700765 - grpc
766 filegroups:
767 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700768 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
769- name: grpc_test_util_unsecure
770 build: private
771 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700772 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800773 - gpr
774 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800775 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700776 filegroups:
777 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700778 secure: false
779 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
780- name: grpc_unsecure
781 build: all
782 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700783 src:
Craig Tillerf23078c2016-03-25 17:07:29 -0700784 - src/core/lib/surface/init_unsecure.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700785 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800786 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700787 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700788 filegroups:
789 - grpc_base
Craig Tillerf0555b32016-03-28 10:19:24 -0700790 - grpc_transport_chttp2_server_insecure
791 - grpc_transport_chttp2_client_insecure
Craig Tiller65938df2016-03-31 13:08:49 -0700792 - grpc_resolver_dns_native
793 - grpc_resolver_sockaddr
Craig Tiller023caf12016-03-29 08:00:30 -0700794 - grpc_lb_policy_grpclb
795 - grpc_lb_policy_pick_first
796 - grpc_lb_policy_round_robin
Craig Tiller25834342015-09-25 08:08:24 -0700797 - census
Craig Tiller04b7ca82016-03-29 08:07:54 -0700798 generate_plugin_registry: true
Craig Tillerbf4b2242015-08-31 15:53:53 -0700799 secure: false
800 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
801- name: grpc_zookeeper
802 build: all
803 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700804 public_headers:
805 - include/grpc/grpc_zookeeper.h
Craig Tiller25834342015-09-25 08:08:24 -0700806 src:
Craig Tillerb11b34a2016-04-01 12:30:06 -0700807 - src/core/ext/resolver/zookeeper/zookeeper_resolver.c
Craig Tiller25834342015-09-25 08:08:24 -0700808 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800809 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700810 - grpc
811 external_deps:
812 - zookeeper
813 platforms:
814 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700815 secure: false
Craig Tillerf05837a2016-03-29 20:42:29 -0700816- name: one_input_fuzzer
817 build: private
818 language: c
819 src:
820 - test/core/util/one_corpus_entry_fuzzer.c
821 deps:
822 - gpr
823 secure: false
Craig Tillerbf4b2242015-08-31 15:53:53 -0700824- name: reconnect_server
825 build: private
826 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700827 headers:
828 - test/core/util/reconnect_server.h
829 src:
830 - test/core/util/reconnect_server.c
831 deps:
yang-gc9fca182015-11-06 16:41:33 -0800832 - test_tcp_server
833 - grpc_test_util
834 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800835 - gpr_test_util
836 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800837- name: test_tcp_server
838 build: private
839 language: c
840 headers:
841 - test/core/util/test_tcp_server.h
842 src:
843 - test/core/util/test_tcp_server.c
844 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700845 - grpc_test_util
846 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800847 - gpr_test_util
848 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700849- name: grpc++
850 build: all
851 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700852 headers:
853 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800854 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700855 - src/cpp/common/secure_auth_context.h
856 - src/cpp/server/secure_server_credentials.h
857 src:
Craig Tiller25834342015-09-25 08:08:24 -0700858 - src/cpp/client/secure_credentials.cc
859 - src/cpp/common/auth_property_iterator.cc
860 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800861 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700862 - src/cpp/common/secure_create_auth_context.cc
863 - src/cpp/server/secure_server_credentials.cc
864 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700865 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700866 baselib: true
867 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700868 filegroups:
869 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800870 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700871 secure: check
872 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
873- name: grpc++_test_config
874 build: private
875 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700876 headers:
877 - test/cpp/util/test_config.h
878 src:
879 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700880- name: grpc++_test_util
881 build: private
882 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700883 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800884 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800885 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700886 - test/cpp/util/cli_call.h
887 - test/cpp/util/create_test_channel.h
888 - test/cpp/util/string_ref_helper.h
889 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800890 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700891 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800892 - src/proto/grpc/testing/echo_messages.proto
893 - src/proto/grpc/testing/echo.proto
894 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800895 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800896 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700897 - test/cpp/util/cli_call.cc
898 - test/cpp/util/create_test_channel.cc
899 - test/cpp/util/string_ref_helper.cc
900 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800901 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700902 deps:
903 - grpc++
904 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700905- name: grpc++_unsecure
906 build: all
907 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700908 src:
909 - src/cpp/common/insecure_create_auth_context.cc
910 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800911 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700912 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700913 baselib: true
914 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700915 filegroups:
916 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800917 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700918 secure: false
919 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
920- name: grpc_plugin_support
921 build: protoc
922 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700923 headers:
Craig Tiller25834342015-09-25 08:08:24 -0700924 - src/compiler/config.h
925 - src/compiler/cpp_generator.h
926 - src/compiler/cpp_generator_helpers.h
927 - src/compiler/csharp_generator.h
928 - src/compiler/csharp_generator_helpers.h
929 - src/compiler/generator_helpers.h
930 - src/compiler/objective_c_generator.h
931 - src/compiler/objective_c_generator_helpers.h
932 - src/compiler/python_generator.h
933 - src/compiler/ruby_generator.h
934 - src/compiler/ruby_generator_helpers-inl.h
935 - src/compiler/ruby_generator_map-inl.h
936 - src/compiler/ruby_generator_string-inl.h
937 src:
938 - src/compiler/cpp_generator.cc
939 - src/compiler/csharp_generator.cc
940 - src/compiler/objective_c_generator.cc
941 - src/compiler/python_generator.cc
942 - src/compiler/ruby_generator.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800943 filegroups:
Craig Tiller03915e52016-04-07 09:15:10 -0700944 - grpc++_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700945 secure: false
946 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800947 vs_props:
948 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700949- name: interop_client_helper
950 build: private
951 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700952 headers:
953 - test/cpp/interop/client_helper.h
954 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800955 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -0700956 - test/cpp/interop/client_helper.cc
957 deps:
958 - grpc++_test_util
959 - grpc_test_util
960 - grpc++
961 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800962 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700963- name: interop_client_main
964 build: private
965 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700966 headers:
967 - test/cpp/interop/interop_client.h
968 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800969 - src/proto/grpc/testing/empty.proto
970 - src/proto/grpc/testing/messages.proto
971 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -0700972 - test/cpp/interop/client.cc
973 - test/cpp/interop/interop_client.cc
974 deps:
975 - interop_client_helper
976 - grpc++_test_util
977 - grpc_test_util
978 - grpc++
979 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800980 - gpr_test_util
981 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700982 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700983- name: interop_server_helper
984 build: private
985 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700986 headers:
987 - test/cpp/interop/server_helper.h
988 src:
989 - test/cpp/interop/server_helper.cc
990 deps:
991 - grpc_test_util
992 - grpc++
993 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800994 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700995- name: interop_server_main
996 build: private
997 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700998 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800999 - src/proto/grpc/testing/empty.proto
1000 - src/proto/grpc/testing/messages.proto
1001 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -08001002 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -07001003 deps:
1004 - interop_server_helper
1005 - grpc++_test_util
1006 - grpc_test_util
1007 - grpc++
1008 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001009 - gpr_test_util
1010 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001011 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07001012- name: qps
1013 build: private
1014 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07001015 headers:
1016 - test/cpp/qps/client.h
1017 - test/cpp/qps/driver.h
1018 - test/cpp/qps/histogram.h
1019 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -08001020 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -07001021 - test/cpp/qps/perf_db_client.h
1022 - test/cpp/qps/qps_worker.h
1023 - test/cpp/qps/report.h
1024 - test/cpp/qps/server.h
1025 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -08001026 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -07001027 - test/cpp/util/benchmark_config.h
1028 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08001029 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001030 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001031 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -08001032 - src/proto/grpc/testing/control.proto
1033 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -08001034 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -07001035 - test/cpp/qps/client_async.cc
1036 - test/cpp/qps/client_sync.cc
1037 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -08001038 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -07001039 - test/cpp/qps/perf_db_client.cc
1040 - test/cpp/qps/qps_worker.cc
1041 - test/cpp/qps/report.cc
1042 - test/cpp/qps/server_async.cc
1043 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -08001044 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -07001045 - test/cpp/util/benchmark_config.cc
1046 deps:
1047 - grpc_test_util
1048 - grpc++_test_util
1049 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07001050- name: grpc_csharp_ext
1051 build: all
1052 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -07001053 src:
1054 - src/csharp/ext/grpc_csharp_ext.c
1055 deps:
Craig Tiller25834342015-09-25 08:08:24 -07001056 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001057 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -08001058 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -08001059 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -07001060 dll: only
1061 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -07001062 vs_packages:
1063 - grpc.dependencies.openssl
1064 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -07001065 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -07001066 vs_props:
1067 - zlib
1068 - openssl
1069 - winsock
1070 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -07001071targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +01001072- name: alarm_test
1073 build: test
1074 language: c
1075 src:
1076 - test/core/surface/alarm_test.c
1077 deps:
1078 - grpc_test_util
1079 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -08001080 - gpr_test_util
1081 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -08001082- name: algorithm_test
1083 build: test
1084 language: c
1085 src:
1086 - test/core/compression/algorithm_test.c
1087 deps:
1088 - grpc_test_util
1089 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001090 - gpr_test_util
1091 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -08001092- name: alloc_test
1093 build: test
1094 language: c
1095 src:
1096 - test/core/support/alloc_test.c
1097 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001098 - gpr_test_util
1099 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001100- name: alpn_test
1101 build: test
1102 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001103 src:
1104 - test/core/transport/chttp2/alpn_test.c
1105 deps:
1106 - grpc_test_util
1107 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001108 - gpr_test_util
1109 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001110- name: bin_encoder_test
1111 build: test
1112 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001113 src:
1114 - test/core/transport/chttp2/bin_encoder_test.c
1115 deps:
1116 - grpc_test_util
1117 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001118- name: census_context_test
1119 build: test
1120 language: c
1121 src:
1122 - test/core/census/context_test.c
1123 deps:
1124 - grpc_test_util
1125 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001126 - gpr_test_util
1127 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001128- name: channel_create_test
1129 build: test
1130 language: c
1131 src:
1132 - test/core/surface/channel_create_test.c
1133 deps:
1134 - grpc_test_util
1135 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001136 - gpr_test_util
1137 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001138- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001139 build: test
1140 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001141 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001142 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001143 deps:
1144 - grpc_test_util
1145 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001146 - gpr_test_util
1147 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001148- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001149 build: test
1150 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001151 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001152 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001153 deps:
1154 - grpc_test_util
1155 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001156 - gpr_test_util
1157 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001158- name: chttp2_stream_map_test
1159 build: test
1160 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001161 src:
1162 - test/core/transport/chttp2/stream_map_test.c
1163 deps:
1164 - grpc_test_util
1165 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001166 - gpr_test_util
1167 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001168- name: chttp2_varint_test
1169 build: test
1170 language: c
1171 src:
1172 - test/core/transport/chttp2/varint_test.c
1173 deps:
1174 - grpc_test_util
1175 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001176 - gpr_test_util
1177 - gpr
Craig Tiller845516e2016-04-11 20:49:20 -07001178- name: client_fuzzer
1179 build: fuzzer
1180 language: c
1181 src:
1182 - test/core/end2end/fuzzers/client_fuzzer.c
1183 deps:
1184 - grpc_test_util
1185 - grpc
1186 - gpr_test_util
1187 - gpr
1188 corpus_dirs:
1189 - test/core/end2end/fuzzers/client_fuzzer_corpus
1190 maxlen: 2048
Craig Tillerbf4b2242015-08-31 15:53:53 -07001191- name: compression_test
1192 build: test
1193 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001194 src:
1195 - test/core/compression/compression_test.c
1196 deps:
1197 - grpc_test_util
1198 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001199 - gpr_test_util
1200 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001201- name: concurrent_connectivity_test
1202 build: test
1203 language: c
1204 src:
1205 - test/core/surface/concurrent_connectivity_test.c
1206 deps:
1207 - grpc_test_util
1208 - grpc
1209 - gpr_test_util
1210 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001211- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001212 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001213 build: test
1214 language: c
1215 src:
1216 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1217 deps:
1218 - grpc_test_util
1219 - grpc
1220 - gpr_test_util
1221 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001222- name: dns_resolver_test
1223 build: test
1224 language: c
1225 src:
1226 - test/core/client_config/resolvers/dns_resolver_test.c
1227 deps:
1228 - grpc_test_util
1229 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001230 - gpr_test_util
1231 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001232- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001233 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001234 build: test
1235 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001236 src:
1237 - test/core/end2end/dualstack_socket_test.c
1238 deps:
1239 - grpc_test_util
1240 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001241 - gpr_test_util
1242 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001243 platforms:
1244 - mac
1245 - linux
1246 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001247- name: endpoint_pair_test
1248 build: test
1249 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001250 src:
1251 - test/core/iomgr/endpoint_pair_test.c
1252 deps:
1253 - grpc_test_util
1254 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001255 - gpr_test_util
1256 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001257- name: fd_conservation_posix_test
1258 build: test
1259 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001260 src:
1261 - test/core/iomgr/fd_conservation_posix_test.c
1262 deps:
1263 - grpc_test_util
1264 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001265 - gpr_test_util
1266 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001267 platforms:
1268 - mac
1269 - linux
1270 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001271- name: fd_posix_test
1272 build: test
1273 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001274 src:
1275 - test/core/iomgr/fd_posix_test.c
1276 deps:
1277 - grpc_test_util
1278 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001279 - gpr_test_util
1280 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001281 platforms:
1282 - mac
1283 - linux
1284 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001285- name: fling_client
1286 build: test
1287 run: false
1288 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001289 src:
1290 - test/core/fling/client.c
1291 deps:
1292 - grpc_test_util
1293 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001294 - gpr_test_util
1295 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001296- name: fling_server
1297 build: test
1298 run: false
1299 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001300 src:
1301 - test/core/fling/server.c
1302 deps:
1303 - grpc_test_util
1304 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001305 - gpr_test_util
1306 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001307- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001308 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001309 build: test
1310 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001311 src:
1312 - test/core/fling/fling_stream_test.c
1313 deps:
1314 - grpc_test_util
1315 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001316 - gpr_test_util
1317 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001318 platforms:
1319 - mac
1320 - linux
1321 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001322- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001323 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001324 build: test
1325 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001326 src:
1327 - test/core/fling/fling_test.c
1328 deps:
1329 - grpc_test_util
1330 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001331 - gpr_test_util
1332 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001333 platforms:
1334 - mac
1335 - linux
1336 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001337- name: gen_hpack_tables
1338 build: tool
1339 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001340 src:
1341 - tools/codegen/core/gen_hpack_tables.c
1342 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001343 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001344 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001345- name: gen_legal_metadata_characters
1346 build: tool
1347 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001348 src:
1349 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001350 deps: []
Craig Tiller1b719582016-03-24 09:06:13 -07001351- name: goaway_server_test
1352 cpu_cost: 0.1
1353 build: test
1354 language: c
1355 src:
1356 - test/core/end2end/goaway_server_test.c
1357 deps:
1358 - grpc_test_util
1359 - grpc
1360 - gpr_test_util
1361 - gpr
1362 platforms:
1363 - mac
1364 - linux
1365 - posix
Craig Tillerfba79f22015-11-23 11:06:55 -08001366- name: gpr_avl_test
1367 build: test
1368 language: c
1369 src:
1370 - test/core/support/avl_test.c
1371 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001372 - gpr_test_util
1373 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001374- name: gpr_backoff_test
1375 build: test
1376 language: c
1377 src:
1378 - test/core/support/backoff_test.c
1379 deps:
1380 - gpr_test_util
1381 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001382- name: gpr_cmdline_test
1383 build: test
1384 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001385 src:
1386 - test/core/support/cmdline_test.c
1387 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001388 - gpr_test_util
1389 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001390- name: gpr_cpu_test
1391 build: test
1392 language: c
1393 src:
1394 - test/core/support/cpu_test.c
1395 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001396 - gpr_test_util
1397 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001398- name: gpr_env_test
1399 build: test
1400 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001401 src:
1402 - test/core/support/env_test.c
1403 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001404 - gpr_test_util
1405 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001406- name: gpr_histogram_test
1407 build: test
1408 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001409 src:
1410 - test/core/support/histogram_test.c
1411 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001412 - gpr_test_util
1413 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001414- name: gpr_host_port_test
1415 build: test
1416 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001417 src:
1418 - test/core/support/host_port_test.c
1419 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001420 - gpr_test_util
1421 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001422- name: gpr_load_file_test
1423 build: test
1424 language: c
1425 src:
1426 - test/core/support/load_file_test.c
1427 deps:
1428 - gpr_test_util
1429 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001430- name: gpr_log_test
1431 build: test
1432 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001433 src:
1434 - test/core/support/log_test.c
1435 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001436 - gpr_test_util
1437 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001438- name: gpr_slice_buffer_test
1439 build: test
1440 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001441 src:
1442 - test/core/support/slice_buffer_test.c
1443 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001444 - gpr_test_util
1445 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001446- name: gpr_slice_test
1447 build: test
1448 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001449 src:
1450 - test/core/support/slice_test.c
1451 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001452 - gpr_test_util
1453 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001454- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001455 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001456 build: test
1457 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001458 src:
1459 - test/core/support/stack_lockfree_test.c
1460 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001461 - gpr_test_util
1462 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001463- name: gpr_string_test
1464 build: test
1465 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001466 src:
1467 - test/core/support/string_test.c
1468 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001469 - gpr_test_util
1470 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001471- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001472 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001473 build: test
1474 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001475 src:
1476 - test/core/support/sync_test.c
1477 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001478 - gpr_test_util
1479 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001480- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001481 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001482 build: test
1483 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001484 src:
1485 - test/core/support/thd_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_time_test
1490 build: test
1491 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001492 src:
1493 - test/core/support/time_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_tls_test
1498 build: test
1499 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001500 src:
1501 - test/core/support/tls_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_useful_test
1506 build: test
1507 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001508 src:
1509 - test/core/support/useful_test.c
1510 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001511 - gpr_test_util
1512 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001513- name: grpc_auth_context_test
1514 build: test
1515 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001516 src:
1517 - test/core/security/auth_context_test.c
1518 deps:
1519 - grpc_test_util
1520 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001521 - gpr_test_util
1522 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001523- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001524 build: test
1525 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001526 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001527 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001528 deps:
1529 - grpc_test_util
1530 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001531 - gpr_test_util
1532 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001533- name: grpc_byte_buffer_reader_test
1534 build: test
1535 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001536 src:
1537 - test/core/surface/byte_buffer_reader_test.c
1538 deps:
1539 - grpc_test_util
1540 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001541 - gpr_test_util
1542 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001543- name: grpc_channel_args_test
1544 build: test
1545 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001546 src:
1547 - test/core/channel/channel_args_test.c
1548 deps:
1549 - grpc_test_util
1550 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001551 - gpr_test_util
1552 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001553- name: grpc_channel_stack_test
1554 build: test
1555 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001556 src:
1557 - test/core/channel/channel_stack_test.c
1558 deps:
1559 - grpc_test_util
1560 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001561 - gpr_test_util
1562 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001563- name: grpc_completion_queue_test
1564 build: test
1565 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001566 src:
1567 - test/core/surface/completion_queue_test.c
1568 deps:
1569 - grpc_test_util
1570 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001571 - gpr_test_util
1572 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001573- name: grpc_create_jwt
1574 build: tool
1575 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001576 src:
1577 - test/core/security/create_jwt.c
1578 deps:
1579 - grpc_test_util
1580 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001581 - gpr_test_util
1582 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001583- name: grpc_credentials_test
1584 build: test
1585 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001586 src:
1587 - test/core/security/credentials_test.c
1588 deps:
1589 - grpc_test_util
1590 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001591 - gpr_test_util
1592 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001593- name: grpc_fetch_oauth2
1594 build: tool
1595 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001596 src:
1597 - test/core/security/fetch_oauth2.c
1598 deps:
1599 - grpc_test_util
1600 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001601 - gpr_test_util
1602 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001603- name: grpc_invalid_channel_args_test
1604 build: test
1605 language: c
1606 src:
1607 - test/core/surface/invalid_channel_args_test.c
1608 deps:
1609 - grpc_test_util
1610 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001611 - gpr_test_util
1612 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001613- name: grpc_json_token_test
1614 build: test
1615 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001616 src:
1617 - test/core/security/json_token_test.c
1618 deps:
1619 - grpc_test_util
1620 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001621 - gpr_test_util
1622 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001623 platforms:
1624 - linux
1625 - posix
1626 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001627- name: grpc_jwt_verifier_test
1628 build: test
1629 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001630 src:
1631 - test/core/security/jwt_verifier_test.c
1632 deps:
1633 - grpc_test_util
1634 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001635 - gpr_test_util
1636 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001637- name: grpc_print_google_default_creds_token
1638 build: tool
1639 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001640 src:
1641 - test/core/security/print_google_default_creds_token.c
1642 deps:
1643 - grpc_test_util
1644 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001645 - gpr_test_util
1646 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001647- name: grpc_security_connector_test
1648 build: test
1649 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001650 src:
1651 - test/core/security/security_connector_test.c
1652 deps:
1653 - grpc_test_util
1654 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001655 - gpr_test_util
1656 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001657- name: grpc_verify_jwt
1658 build: tool
1659 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001660 src:
1661 - test/core/security/verify_jwt.c
1662 deps:
1663 - grpc_test_util
1664 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001665 - gpr_test_util
1666 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001667- name: hpack_parser_fuzzer_test
1668 build: fuzzer
1669 language: c
1670 src:
1671 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1672 deps:
1673 - grpc_test_util
1674 - grpc
1675 - gpr_test_util
1676 - gpr
1677 corpus_dirs:
1678 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001679 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001680- name: hpack_parser_test
1681 build: test
1682 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001683 src:
1684 - test/core/transport/chttp2/hpack_parser_test.c
1685 deps:
1686 - grpc_test_util
1687 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001688 - gpr_test_util
1689 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001690- name: hpack_table_test
1691 build: test
1692 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001693 src:
1694 - test/core/transport/chttp2/hpack_table_test.c
1695 deps:
1696 - grpc_test_util
1697 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001698 - gpr_test_util
1699 - gpr
Craig Tiller21239742016-03-23 16:33:28 -07001700- name: http_fuzzer_test
1701 build: fuzzer
1702 language: c
1703 src:
1704 - test/core/http/fuzzer.c
1705 deps:
1706 - grpc_test_util
1707 - grpc
1708 - gpr_test_util
1709 - gpr
1710 corpus_dirs:
1711 - test/core/http/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001712 maxlen: 2048
Matthew Iselin1824f052016-02-10 12:16:06 +11001713- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001714 build: test
1715 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001716 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001717 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001718 deps:
1719 - grpc_test_util
1720 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001721 - gpr_test_util
1722 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001723- name: httpcli_format_request_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001724 build: test
1725 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001726 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001727 - test/core/http/format_request_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001728 deps:
1729 - grpc_test_util
1730 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001731 - gpr_test_util
1732 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001733- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001734 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001735 build: test
1736 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001737 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001738 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001739 deps:
1740 - grpc_test_util
1741 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001742 - gpr_test_util
1743 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001744 platforms:
1745 - mac
1746 - linux
1747 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001748- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001749 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001750 build: test
1751 language: c
1752 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001753 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001754 deps:
1755 - grpc_test_util
1756 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001757 - gpr_test_util
1758 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001759 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001760 - linux
yang-gf1183302015-12-07 16:02:05 -08001761- name: init_test
1762 build: test
1763 language: c
1764 src:
1765 - test/core/surface/init_test.c
1766 deps:
1767 - grpc_test_util
1768 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001769 - gpr_test_util
1770 - gpr
Craig Tiller5cb79622016-03-15 14:46:54 -07001771- name: internal_api_canary_iomgr_test
1772 build: test
1773 run: false
1774 language: c
1775 src:
1776 - test/core/internal_api_canaries/iomgr.c
1777 deps:
1778 - grpc_test_util
1779 - grpc
1780 - gpr_test_util
1781 - gpr
1782- name: internal_api_canary_support_test
1783 build: test
1784 run: false
1785 language: c
1786 src:
1787 - test/core/internal_api_canaries/iomgr.c
1788 deps:
1789 - grpc_test_util
1790 - grpc
1791 - gpr_test_util
1792 - gpr
1793- name: internal_api_canary_transport_test
1794 build: test
1795 run: false
1796 language: c
1797 src:
1798 - test/core/internal_api_canaries/iomgr.c
1799 deps:
1800 - grpc_test_util
1801 - grpc
1802 - gpr_test_util
1803 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001804- name: invalid_call_argument_test
1805 build: test
1806 language: c
1807 src:
1808 - test/core/end2end/invalid_call_argument_test.c
1809 deps:
1810 - grpc_test_util
1811 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001812 - gpr_test_util
1813 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001814- name: json_fuzzer_test
1815 build: fuzzer
1816 language: c
1817 src:
1818 - test/core/json/fuzzer.c
1819 deps:
1820 - grpc_test_util
1821 - grpc
1822 - gpr_test_util
1823 - gpr
1824 corpus_dirs:
1825 - test/core/json/corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07001826 maxlen: 512
Craig Tillerbf4b2242015-08-31 15:53:53 -07001827- name: json_rewrite
1828 build: test
1829 run: false
1830 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001831 src:
1832 - test/core/json/json_rewrite.c
1833 deps:
1834 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001835 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001836- name: json_rewrite_test
1837 build: test
1838 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001839 src:
1840 - test/core/json/json_rewrite_test.c
1841 deps:
1842 - grpc_test_util
1843 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001844 - gpr_test_util
1845 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001846- name: json_stream_error_test
1847 build: test
1848 language: c
1849 src:
1850 - test/core/json/json_stream_error_test.c
1851 deps:
1852 - grpc_test_util
1853 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001854 - gpr_test_util
1855 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001856- name: json_test
1857 build: test
1858 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001859 src:
1860 - test/core/json/json_test.c
1861 deps:
1862 - grpc_test_util
1863 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001864 - gpr_test_util
1865 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001866- name: lame_client_test
1867 build: test
1868 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001869 src:
1870 - test/core/surface/lame_client_test.c
1871 deps:
1872 - grpc_test_util
1873 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001874 - gpr_test_util
1875 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001876- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001877 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001878 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001879 build: test
1880 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001881 src:
1882 - test/core/client_config/lb_policies_test.c
1883 deps:
1884 - grpc_test_util
1885 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001886 - gpr_test_util
1887 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001888- name: low_level_ping_pong_benchmark
1889 build: benchmark
1890 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001891 src:
1892 - test/core/network_benchmarks/low_level_ping_pong.c
1893 deps:
1894 - grpc_test_util
1895 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001896 - gpr_test_util
1897 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001898 platforms:
1899 - mac
1900 - linux
1901 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001902- name: message_compress_test
1903 build: test
1904 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001905 src:
1906 - test/core/compression/message_compress_test.c
1907 deps:
1908 - grpc_test_util
1909 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001910 - gpr_test_util
1911 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001912- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001913 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001914 build: test
1915 language: c
1916 src:
1917 - test/core/census/mlog_test.c
1918 deps:
1919 - grpc_test_util
1920 - grpc
1921 - gpr_test_util
1922 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001923- name: multiple_server_queues_test
1924 build: test
1925 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001926 src:
1927 - test/core/end2end/multiple_server_queues_test.c
1928 deps:
1929 - grpc_test_util
1930 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001931 - gpr_test_util
1932 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001933- name: murmur_hash_test
1934 build: test
1935 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001936 src:
1937 - test/core/support/murmur_hash_test.c
1938 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001939 - gpr_test_util
1940 - gpr
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07001941- name: nanopb_fuzzer_response_test
1942 build: fuzzer
1943 language: c
1944 src:
1945 - test/core/nanopb/fuzzer_response.c
1946 deps:
1947 - grpc_test_util
1948 - grpc
1949 - gpr_test_util
1950 - gpr
1951 corpus_dirs:
1952 - test/core/nanopb/corpus_response
Craig Tillerf64df112016-04-05 21:27:41 -07001953 maxlen: 128
David Garcia Quintasbf2e73d2016-04-04 18:03:47 -07001954- name: nanopb_fuzzer_serverlist_test
1955 build: fuzzer
1956 language: c
1957 src:
1958 - test/core/nanopb/fuzzer_serverlist.c
1959 deps:
1960 - grpc_test_util
1961 - grpc
1962 - gpr_test_util
1963 - gpr
1964 corpus_dirs:
1965 - test/core/nanopb/corpus_serverlist
Craig Tillerf64df112016-04-05 21:27:41 -07001966 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07001967- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001968 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001969 build: test
1970 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001971 src:
1972 - test/core/end2end/no_server_test.c
1973 deps:
1974 - grpc_test_util
1975 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001976 - gpr_test_util
1977 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001978- name: resolve_address_test
1979 build: test
1980 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001981 src:
1982 - test/core/iomgr/resolve_address_test.c
1983 deps:
1984 - grpc_test_util
1985 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001986 - gpr_test_util
1987 - gpr
yang-gd482e592015-12-10 14:04:00 -08001988- name: secure_channel_create_test
1989 build: test
1990 language: c
1991 src:
1992 - test/core/surface/secure_channel_create_test.c
1993 deps:
1994 - grpc_test_util
1995 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001996 - gpr_test_util
1997 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001998- name: secure_endpoint_test
1999 build: test
2000 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002001 src:
2002 - test/core/security/secure_endpoint_test.c
2003 deps:
2004 - grpc_test_util
2005 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002006 - gpr_test_util
2007 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08002008- name: server_chttp2_test
2009 build: test
2010 language: c
2011 src:
2012 - test/core/surface/server_chttp2_test.c
2013 deps:
2014 - grpc_test_util
2015 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002016 - gpr_test_util
2017 - gpr
Craig Tillerdf262c62016-04-02 13:53:49 -07002018- name: server_fuzzer
2019 build: fuzzer
2020 language: c
2021 src:
2022 - test/core/end2end/fuzzers/server_fuzzer.c
2023 deps:
2024 - grpc_test_util
2025 - grpc
2026 - gpr_test_util
2027 - gpr
2028 corpus_dirs:
2029 - test/core/end2end/fuzzers/server_fuzzer_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002030 maxlen: 2048
yang-gc3d94fb2015-12-10 14:38:00 -08002031- name: server_test
2032 build: test
2033 language: c
2034 src:
2035 - test/core/surface/server_test.c
2036 deps:
2037 - grpc_test_util
2038 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002039 - gpr_test_util
2040 - gpr
yang-gc9fca182015-11-06 16:41:33 -08002041- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002042 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08002043 build: test
2044 language: c
2045 src:
2046 - test/core/client_config/set_initial_connect_string_test.c
2047 deps:
2048 - test_tcp_server
2049 - grpc_test_util
2050 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002051 - gpr_test_util
2052 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08002053- name: sockaddr_resolver_test
2054 build: test
2055 language: c
2056 src:
2057 - test/core/client_config/resolvers/sockaddr_resolver_test.c
2058 deps:
2059 - grpc_test_util
2060 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002061 - gpr_test_util
2062 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002063- name: sockaddr_utils_test
2064 build: test
2065 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002066 src:
2067 - test/core/iomgr/sockaddr_utils_test.c
2068 deps:
2069 - grpc_test_util
2070 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002071 - gpr_test_util
2072 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002073- name: socket_utils_test
2074 build: test
2075 language: c
2076 src:
2077 - test/core/iomgr/socket_utils_test.c
2078 deps:
2079 - grpc_test_util
2080 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002081 - gpr_test_util
2082 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08002083 platforms:
2084 - mac
2085 - linux
2086 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002087- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002088 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002089 build: test
2090 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002091 src:
2092 - test/core/iomgr/tcp_client_posix_test.c
2093 deps:
2094 - grpc_test_util
2095 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002096 - gpr_test_util
2097 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002098 platforms:
2099 - mac
2100 - linux
2101 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002102- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08002103 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002104 build: test
2105 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002106 src:
2107 - test/core/iomgr/tcp_posix_test.c
2108 deps:
2109 - grpc_test_util
2110 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002111 - gpr_test_util
2112 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002113 platforms:
2114 - mac
2115 - linux
2116 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002117- name: tcp_server_posix_test
2118 build: test
2119 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002120 src:
2121 - test/core/iomgr/tcp_server_posix_test.c
2122 deps:
2123 - grpc_test_util
2124 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002125 - gpr_test_util
2126 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002127 platforms:
2128 - mac
2129 - linux
2130 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002131- name: time_averaged_stats_test
2132 build: test
2133 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002134 src:
2135 - test/core/iomgr/time_averaged_stats_test.c
2136 deps:
2137 - grpc_test_util
2138 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002139 - gpr_test_util
2140 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002141- name: timeout_encoding_test
2142 build: test
2143 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002144 src:
2145 - test/core/transport/chttp2/timeout_encoding_test.c
2146 deps:
2147 - grpc_test_util
2148 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002149 - gpr_test_util
2150 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002151- name: timer_heap_test
2152 build: test
2153 language: c
2154 src:
2155 - test/core/iomgr/timer_heap_test.c
2156 deps:
2157 - grpc_test_util
2158 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002159 - gpr_test_util
2160 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07002161- name: timer_list_test
2162 build: test
2163 language: c
2164 src:
2165 - test/core/iomgr/timer_list_test.c
2166 deps:
2167 - grpc_test_util
2168 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002169 - gpr_test_util
2170 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002171- name: timers_test
2172 build: test
2173 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002174 src:
2175 - test/core/profiling/timers_test.c
2176 deps:
2177 - grpc_test_util
2178 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002179 - gpr_test_util
2180 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08002181- name: transport_connectivity_state_test
2182 build: test
2183 language: c
2184 src:
2185 - test/core/transport/connectivity_state_test.c
2186 deps:
2187 - grpc_test_util
2188 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002189 - gpr_test_util
2190 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002191- name: transport_metadata_test
2192 build: test
2193 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002194 src:
2195 - test/core/transport/metadata_test.c
2196 deps:
2197 - grpc_test_util
2198 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002199 - gpr_test_util
2200 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002201- name: transport_security_test
2202 build: test
2203 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002204 src:
2205 - test/core/tsi/transport_security_test.c
2206 deps:
2207 - grpc_test_util
2208 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002209 - gpr_test_util
2210 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002211 platforms:
2212 - linux
2213 - posix
2214 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002215- name: udp_server_test
2216 build: test
2217 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002218 src:
2219 - test/core/iomgr/udp_server_test.c
2220 deps:
2221 - grpc_test_util
2222 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002223 - gpr_test_util
2224 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002225 platforms:
2226 - mac
2227 - linux
2228 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002229- name: uri_fuzzer_test
2230 build: fuzzer
2231 language: c
2232 src:
2233 - test/core/client_config/uri_fuzzer_test.c
2234 deps:
2235 - grpc_test_util
2236 - grpc
2237 - gpr_test_util
2238 - gpr
2239 corpus_dirs:
2240 - test/core/client_config/uri_corpus
Craig Tillerd153cbe2016-04-04 15:43:30 -07002241 maxlen: 128
Craig Tillerbf4b2242015-08-31 15:53:53 -07002242- name: uri_parser_test
2243 build: test
2244 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002245 src:
2246 - test/core/client_config/uri_parser_test.c
2247 deps:
2248 - grpc_test_util
2249 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002250 - gpr_test_util
2251 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002252- name: workqueue_test
2253 build: test
2254 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002255 src:
2256 - test/core/iomgr/workqueue_test.c
2257 deps:
2258 - grpc_test_util
2259 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002260 - gpr_test_util
2261 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002262 platforms:
2263 - mac
2264 - linux
2265 - posix
vjpai04e992a2016-02-10 16:58:38 -08002266- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002267 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002268 build: test
2269 language: c++
2270 src:
2271 - test/cpp/common/alarm_cpp_test.cc
2272 deps:
2273 - grpc++_test_util
2274 - grpc_test_util
2275 - grpc++
2276 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002277 - gpr_test_util
2278 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002279- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002280 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002281 build: test
2282 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002283 src:
2284 - test/cpp/end2end/async_end2end_test.cc
2285 deps:
2286 - grpc++_test_util
2287 - grpc_test_util
2288 - grpc++
2289 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002290 - gpr_test_util
2291 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002292- name: async_streaming_ping_pong_test
2293 build: test
2294 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002295 src:
2296 - test/cpp/qps/async_streaming_ping_pong_test.cc
2297 deps:
2298 - qps
2299 - grpc++_test_util
2300 - grpc_test_util
2301 - grpc++
2302 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002303 - gpr_test_util
2304 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002305 platforms:
2306 - mac
2307 - linux
2308 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002309- name: async_unary_ping_pong_test
2310 build: test
2311 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002312 src:
2313 - test/cpp/qps/async_unary_ping_pong_test.cc
2314 deps:
2315 - qps
2316 - grpc++_test_util
2317 - grpc_test_util
2318 - grpc++
2319 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002320 - gpr_test_util
2321 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002322 platforms:
2323 - mac
2324 - linux
2325 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002326- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002327 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002328 build: test
2329 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002330 src:
2331 - test/cpp/common/auth_property_iterator_test.cc
2332 deps:
2333 - grpc++_test_util
2334 - grpc_test_util
2335 - grpc++
2336 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002337 - gpr_test_util
2338 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002339- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002340 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002341 build: test
2342 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002343 src:
yang-g52705592015-11-25 11:45:33 -08002344 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002345 deps:
2346 - grpc++
2347 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002348 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002349- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002350 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002351 build: test
2352 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002353 src:
2354 - test/cpp/util/cli_call_test.cc
2355 deps:
2356 - grpc++_test_util
2357 - grpc_test_util
2358 - grpc++
2359 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002360 - gpr_test_util
2361 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002362- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002363 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002364 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002365 build: test
2366 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002367 src:
2368 - test/cpp/end2end/client_crash_test.cc
2369 deps:
2370 - grpc++_test_util
2371 - grpc_test_util
2372 - grpc++
2373 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002374 - gpr_test_util
2375 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002376 platforms:
2377 - mac
2378 - linux
2379 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002380- name: client_crash_test_server
2381 build: test
2382 run: false
2383 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002384 src:
2385 - test/cpp/end2end/client_crash_test_server.cc
2386 deps:
2387 - grpc++_test_util
2388 - grpc_test_util
2389 - grpc++
2390 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002391 - gpr_test_util
2392 - gpr
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002393- name: codegen_test_full
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002394 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002395 build: test
2396 language: c++
2397 src:
2398 - src/proto/grpc/testing/control.proto
2399 - src/proto/grpc/testing/messages.proto
2400 - src/proto/grpc/testing/payloads.proto
2401 - src/proto/grpc/testing/perf_db.proto
2402 - src/proto/grpc/testing/services.proto
2403 - src/proto/grpc/testing/stats.proto
David Garcia Quintas3a43cc02016-04-08 16:59:51 -07002404 - test/cpp/codegen/codegen_test_full.cc
2405 deps:
2406 - grpc++
2407 - grpc
2408 - gpr
2409 filegroups:
2410 - grpc++_codegen
2411- name: codegen_test_minimal
2412 gtest: true
2413 build: test
2414 language: c++
2415 src:
2416 - src/proto/grpc/testing/control.proto
2417 - src/proto/grpc/testing/messages.proto
2418 - src/proto/grpc/testing/payloads.proto
2419 - src/proto/grpc/testing/perf_db.proto
2420 - src/proto/grpc/testing/services.proto
2421 - src/proto/grpc/testing/stats.proto
2422 - test/cpp/codegen/codegen_test_minimal.cc
Craig Tiller03d8f2f2016-04-07 08:02:16 -07002423 filegroups:
2424 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -07002425- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002426 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002427 build: test
2428 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002429 src:
2430 - test/cpp/client/credentials_test.cc
2431 deps:
2432 - grpc++
2433 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002434 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002435- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002436 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002437 build: test
2438 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002439 src:
2440 - test/cpp/util/byte_buffer_test.cc
2441 deps:
2442 - grpc_test_util
2443 - grpc++
2444 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002445 - gpr_test_util
2446 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002447- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002448 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002449 build: test
2450 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002451 src:
2452 - test/cpp/util/slice_test.cc
2453 deps:
2454 - grpc_test_util
2455 - grpc++
2456 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002457 - gpr_test_util
2458 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002459- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002460 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002461 build: test
2462 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002463 src:
2464 - test/cpp/util/string_ref_test.cc
2465 deps:
2466 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002467- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002468 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002469 build: test
2470 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002471 src:
2472 - test/cpp/util/time_test.cc
2473 deps:
2474 - grpc_test_util
2475 - grpc++
2476 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002477 - gpr_test_util
2478 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002479- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002480 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002481 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002482 build: test
2483 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002484 src:
2485 - test/cpp/end2end/end2end_test.cc
2486 deps:
2487 - grpc++_test_util
2488 - grpc_test_util
2489 - grpc++
2490 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002491 - gpr_test_util
2492 - gpr
vjpai083dc622016-01-11 09:41:17 -08002493- name: generic_async_streaming_ping_pong_test
2494 build: test
2495 language: c++
2496 src:
2497 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2498 deps:
2499 - qps
2500 - grpc++_test_util
2501 - grpc_test_util
2502 - grpc++
2503 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002504 - gpr_test_util
2505 - gpr
vjpai083dc622016-01-11 09:41:17 -08002506 platforms:
2507 - mac
2508 - linux
2509 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002510- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002511 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002512 build: test
2513 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002514 src:
2515 - test/cpp/end2end/generic_end2end_test.cc
2516 deps:
2517 - grpc++_test_util
2518 - grpc_test_util
2519 - grpc++
2520 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002521 - gpr_test_util
2522 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002523- name: grpc_cli
2524 build: test
2525 run: false
2526 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002527 src:
2528 - test/cpp/util/grpc_cli.cc
2529 deps:
2530 - grpc++_test_util
2531 - grpc_test_util
2532 - grpc++
2533 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002534 - gpr_test_util
2535 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002536 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002537- name: grpc_cpp_plugin
2538 build: protoc
2539 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002540 src:
2541 - src/compiler/cpp_plugin.cc
2542 deps:
2543 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002544 secure: false
2545 vs_config_type: Application
2546 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2547- name: grpc_csharp_plugin
2548 build: protoc
2549 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002550 src:
2551 - src/compiler/csharp_plugin.cc
2552 deps:
2553 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002554 secure: false
2555 vs_config_type: Application
2556 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
2557- name: grpc_objective_c_plugin
2558 build: protoc
2559 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002560 src:
2561 - src/compiler/objective_c_plugin.cc
2562 deps:
2563 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002564 secure: false
2565 vs_config_type: Application
2566 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2567- name: grpc_python_plugin
2568 build: protoc
2569 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002570 src:
2571 - src/compiler/python_plugin.cc
2572 deps:
2573 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002574 secure: false
2575 vs_config_type: Application
2576 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2577- name: grpc_ruby_plugin
2578 build: protoc
2579 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002580 src:
2581 - src/compiler/ruby_plugin.cc
2582 deps:
2583 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002584 secure: false
2585 vs_config_type: Application
2586 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002587- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002588 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002589 build: test
2590 language: c++
2591 src:
2592 - src/proto/grpc/lb/v0/load_balancer.proto
2593 - test/cpp/grpclb/grpclb_api_test.cc
2594 deps:
2595 - grpc++_test_util
2596 - grpc_test_util
2597 - grpc++
2598 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002599- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002600 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002601 build: test
2602 language: c++
2603 src:
2604 - test/cpp/end2end/hybrid_end2end_test.cc
2605 deps:
2606 - grpc++_test_util
2607 - grpc_test_util
2608 - grpc++
2609 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002610 - gpr_test_util
2611 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002612- name: interop_client
2613 build: test
2614 run: false
2615 language: c++
2616 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002617 deps:
2618 - interop_client_main
2619 - interop_client_helper
2620 - grpc++_test_util
2621 - grpc_test_util
2622 - grpc++
2623 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002624 - gpr_test_util
2625 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002626 - grpc++_test_config
2627 platforms:
2628 - mac
2629 - linux
2630 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002631- name: interop_server
2632 build: test
2633 run: false
2634 language: c++
2635 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002636 deps:
2637 - interop_server_main
2638 - interop_server_helper
2639 - grpc++_test_util
2640 - grpc_test_util
2641 - grpc++
2642 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002643 - gpr_test_util
2644 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002645 - grpc++_test_config
2646 platforms:
2647 - mac
2648 - linux
2649 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002650- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002651 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002652 build: test
2653 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002654 src:
2655 - test/cpp/interop/interop_test.cc
2656 deps:
2657 - grpc_test_util
2658 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002659 - gpr_test_util
2660 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002661 platforms:
2662 - mac
2663 - linux
2664 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002665- name: json_run_localhost
2666 build: test
2667 run: false
2668 language: c++
2669 src:
2670 - test/cpp/qps/json_run_localhost.cc
2671 deps:
2672 - grpc++_test_util
2673 - grpc_test_util
2674 - grpc++
2675 - grpc
2676 - gpr_test_util
2677 - gpr
2678 - grpc++_test_config
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002679- name: metrics_client
2680 build: test
2681 run: false
2682 language: c++
2683 headers:
2684 - test/cpp/util/metrics_server.h
2685 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002686 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002687 - test/cpp/interop/metrics_client.cc
2688 deps:
2689 - grpc++
2690 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002691 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002692 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002693- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002694 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002695 build: test
2696 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002697 src:
2698 - test/cpp/end2end/mock_test.cc
2699 deps:
2700 - grpc++_test_util
2701 - grpc_test_util
2702 - grpc++
2703 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002704 - gpr_test_util
2705 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002706- name: qps_driver
2707 build: benchmark
2708 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002709 src:
2710 - test/cpp/qps/qps_driver.cc
2711 deps:
2712 - qps
2713 - grpc++_test_util
2714 - grpc_test_util
2715 - grpc++
2716 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002717 - gpr_test_util
2718 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002719 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002720- name: qps_interarrival_test
2721 build: test
2722 run: false
2723 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002724 src:
2725 - test/cpp/qps/qps_interarrival_test.cc
2726 deps:
2727 - qps
2728 - grpc++_test_util
2729 - grpc_test_util
2730 - grpc++
2731 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002732 - gpr_test_util
2733 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002734 platforms:
2735 - mac
2736 - linux
2737 - posix
Craig Tiller0bda0b32016-03-03 12:51:53 -08002738- name: qps_json_driver
2739 build: test
2740 run: false
2741 language: c++
2742 src:
2743 - test/cpp/qps/qps_json_driver.cc
2744 deps:
2745 - qps
2746 - grpc++_test_util
2747 - grpc_test_util
2748 - grpc++
2749 - grpc
2750 - gpr_test_util
2751 - gpr
2752 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002753- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002754 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002755 build: test
2756 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002757 src:
2758 - test/cpp/qps/qps_openloop_test.cc
2759 deps:
2760 - qps
2761 - grpc++_test_util
2762 - grpc_test_util
2763 - grpc++
2764 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002765 - gpr_test_util
2766 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002767 - grpc++_test_config
2768 platforms:
2769 - mac
2770 - linux
2771 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002772- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002773 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002774 build: test
2775 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002776 src:
2777 - test/cpp/qps/qps_test.cc
2778 deps:
2779 - qps
2780 - grpc++_test_util
2781 - grpc_test_util
2782 - grpc++
2783 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002784 - gpr_test_util
2785 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002786 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002787 platforms:
2788 - mac
2789 - linux
2790 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002791- name: qps_worker
Craig Tiller0bda0b32016-03-03 12:51:53 -08002792 build: test
2793 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002794 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002795 headers:
2796 - test/cpp/qps/client.h
2797 - test/cpp/qps/server.h
2798 src:
2799 - test/cpp/qps/worker.cc
2800 deps:
2801 - qps
2802 - grpc++_test_util
2803 - grpc_test_util
2804 - grpc++
2805 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002806 - gpr_test_util
2807 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002808 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002809- name: reconnect_interop_client
2810 build: test
2811 run: false
2812 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002813 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002814 - src/proto/grpc/testing/empty.proto
2815 - src/proto/grpc/testing/messages.proto
2816 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002817 - test/cpp/interop/reconnect_interop_client.cc
2818 deps:
2819 - grpc++_test_util
2820 - grpc_test_util
2821 - grpc++
2822 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002823 - gpr_test_util
2824 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002825 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002826- name: reconnect_interop_server
2827 build: test
2828 run: false
2829 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002830 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002831 - src/proto/grpc/testing/empty.proto
2832 - src/proto/grpc/testing/messages.proto
2833 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002834 - test/cpp/interop/reconnect_interop_server.cc
2835 deps:
2836 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002837 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002838 - grpc++_test_util
2839 - grpc_test_util
2840 - grpc++
2841 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002842 - gpr_test_util
2843 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002844 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002845- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002846 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002847 build: test
2848 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002849 src:
2850 - test/cpp/common/secure_auth_context_test.cc
2851 deps:
2852 - grpc++_test_util
2853 - grpc_test_util
2854 - grpc++
2855 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002856 - gpr_test_util
2857 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002858- name: secure_sync_unary_ping_pong_test
2859 build: test
2860 language: c++
2861 src:
2862 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2863 deps:
2864 - qps
2865 - grpc++_test_util
2866 - grpc_test_util
2867 - grpc++
2868 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002869 - gpr_test_util
2870 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002871 platforms:
2872 - mac
2873 - linux
2874 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002875- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002876 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002877 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002878 build: test
2879 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002880 src:
2881 - test/cpp/end2end/server_crash_test.cc
2882 deps:
2883 - grpc++_test_util
2884 - grpc_test_util
2885 - grpc++
2886 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002887 - gpr_test_util
2888 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002889 platforms:
2890 - mac
2891 - linux
2892 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002893- name: server_crash_test_client
2894 build: test
2895 run: false
2896 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002897 src:
2898 - test/cpp/end2end/server_crash_test_client.cc
2899 deps:
2900 - grpc++_test_util
2901 - grpc_test_util
2902 - grpc++
2903 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002904 - gpr_test_util
2905 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002906- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002907 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002908 build: test
2909 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002910 src:
2911 - test/cpp/end2end/shutdown_test.cc
2912 deps:
2913 - grpc++_test_util
2914 - grpc_test_util
2915 - grpc++
2916 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002917 - gpr_test_util
2918 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002919- name: status_test
2920 build: test
2921 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002922 src:
2923 - test/cpp/util/status_test.cc
2924 deps:
2925 - grpc_test_util
2926 - grpc++
2927 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002928 - gpr_test_util
2929 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002930- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002931 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002932 build: test
2933 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002934 src:
2935 - test/cpp/end2end/streaming_throughput_test.cc
2936 deps:
2937 - grpc++_test_util
2938 - grpc_test_util
2939 - grpc++
2940 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002941 - gpr_test_util
2942 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002943 platforms:
2944 - mac
2945 - linux
2946 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002947- name: stress_test
2948 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07002949 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002950 language: c++
2951 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07002952 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002953 - test/cpp/interop/interop_client.h
2954 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002955 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002956 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002957 - src/proto/grpc/testing/empty.proto
2958 - src/proto/grpc/testing/messages.proto
2959 - src/proto/grpc/testing/metrics.proto
2960 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002961 - test/cpp/interop/interop_client.cc
2962 - test/cpp/interop/stress_interop_client.cc
2963 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002964 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002965 deps:
2966 - grpc++_test_util
2967 - grpc_test_util
2968 - grpc++
2969 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002970 - gpr_test_util
2971 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002972 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002973- name: sync_streaming_ping_pong_test
2974 build: test
2975 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002976 src:
2977 - test/cpp/qps/sync_streaming_ping_pong_test.cc
2978 deps:
2979 - qps
2980 - grpc++_test_util
2981 - grpc_test_util
2982 - grpc++
2983 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002984 - gpr_test_util
2985 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002986 platforms:
2987 - mac
2988 - linux
2989 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002990- name: sync_unary_ping_pong_test
2991 build: test
2992 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002993 src:
2994 - test/cpp/qps/sync_unary_ping_pong_test.cc
2995 deps:
2996 - qps
2997 - grpc++_test_util
2998 - grpc_test_util
2999 - grpc++
3000 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003001 - gpr_test_util
3002 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003003 platforms:
3004 - mac
3005 - linux
3006 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07003007- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003008 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08003009 cpu_cost: 100
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/thread_stress_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: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08003022 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07003023 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07003024 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07003025 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07003026 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08003027 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07003028 - test/cpp/end2end/zookeeper_test.cc
3029 deps:
3030 - grpc++_test_util
3031 - grpc_test_util
3032 - grpc++
3033 - grpc_zookeeper
3034 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003035 - gpr_test_util
3036 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07003037 external_deps:
3038 - zookeeper
3039 platforms:
3040 - linux
Craig Tillerab230452016-01-04 08:18:43 -08003041- name: public_headers_must_be_c89
3042 build: test
3043 language: c89
3044 src:
3045 - test/core/surface/public_headers_must_be_c89.c
3046 deps:
3047 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003048 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003049vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07003050- linkage: static
3051 name: grpc.dependencies.zlib
3052 props: false
3053 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003054 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08003055- linkage: static
3056 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07003057 props: true
3058 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08003059 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07003060- name: gflags
3061 props: false
3062 redist: false
3063 version: 2.1.2.1
3064- name: gtest
3065 props: false
3066 redist: false
3067 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08003068configs:
3069 asan:
3070 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003071 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3072 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003073 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003074 LD: clang
3075 LDFLAGS: -fsanitize=address
3076 LDXX: clang++
3077 compile_the_world: true
3078 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08003079 ASAN_OPTIONS: detect_leaks=1:color=always
3080 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08003081 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003082 asan-noleaks:
3083 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003084 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3085 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003086 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003087 LD: clang
3088 LDFLAGS: -fsanitize=address
3089 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08003090 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08003091 test_environ:
3092 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08003093 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07003094 asan-trace-cmp:
3095 CC: clang
Craig Tillerff822392016-03-23 21:46:52 -07003096 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize-coverage=trace-cmp -fsanitize=address
3097 -fno-omit-frame-pointer -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerae945942016-03-23 21:43:58 -07003098 CXX: clang++
3099 LD: clang
3100 LDFLAGS: -fsanitize=address
3101 LDXX: clang++
3102 compile_the_world: true
3103 test_environ:
3104 ASAN_OPTIONS: detect_leaks=1:color=always
3105 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3106 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08003107 basicprof:
3108 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
3109 DEFINES: NDEBUG
3110 dbg:
3111 CPPFLAGS: -O0
3112 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08003113 easan:
3114 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003115 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
3116 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tiller3af3f742016-02-28 21:53:13 -08003117 CXX: clang++
3118 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3119 LD: clang
3120 LDFLAGS: -fsanitize=address
3121 LDXX: clang++
3122 compile_the_world: true
3123 test_environ:
3124 ASAN_OPTIONS: detect_leaks=1:color=always
3125 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
3126 timeout_multiplier: 3
3127 edbg:
3128 CPPFLAGS: -O0
3129 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
3130 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08003131 CC: clang
3132 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003133 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08003134 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08003135 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08003136 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003137 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08003138 LDXX: clang++
3139 compile_the_world: true
3140 test_environ:
3141 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
3142 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003143 gcov:
3144 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003145 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08003146 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08003147 DEFINES: _DEBUG DEBUG GPR_GCOV
3148 LD: gcc
3149 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
3150 LDXX: g++
3151 helgrind:
3152 CPPFLAGS: -O0
3153 DEFINES: _DEBUG DEBUG
3154 LDFLAGS: -rdynamic
3155 timeout_multiplier: 20
3156 valgrind: --tool=helgrind
3157 memcheck:
3158 CPPFLAGS: -O0
3159 DEFINES: _DEBUG DEBUG
3160 LDFLAGS: -rdynamic
3161 timeout_multiplier: 10
3162 valgrind: --tool=memcheck --leak-check=full
3163 msan:
3164 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003165 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
3166 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3167 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003168 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003169 DEFINES: NDEBUG
3170 LD: clang
3171 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
3172 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
3173 LDXX: clang++
3174 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08003175 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08003176 mutrace:
3177 CPPFLAGS: -O0
3178 DEFINES: _DEBUG DEBUG
3179 LDFLAGS: -rdynamic
3180 opt:
3181 CPPFLAGS: -O2
3182 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08003183 stapprof:
3184 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
3185 DEFINES: NDEBUG
3186 tsan:
3187 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003188 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07003189 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08003190 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003191 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07003192 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08003193 LDXX: clang++
3194 compile_the_world: true
3195 test_environ:
3196 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08003197 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08003198 ubsan:
3199 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07003200 CPPFLAGS: -O1 -fsanitize-coverage=edge -fsanitize=undefined -fno-omit-frame-pointer
3201 -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08003202 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08003203 DEFINES: NDEBUG
3204 LD: clang
3205 LDFLAGS: -fsanitize=undefined
3206 LDXX: clang++
3207 compile_the_world: true
3208 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003209defaults:
3210 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003211 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Nicolas "Pixel" Noble17230442016-01-29 01:46:19 +01003212 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003213 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01003214 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01003215 global:
3216 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
3217 LDFLAGS: -g
3218 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01003219 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01003220 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08003221node_modules:
3222- deps:
3223 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003224 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08003225 - boringssl
3226 - z
murgatroid9994a75412015-11-19 14:04:53 -08003227 headers:
3228 - src/node/ext/byte_buffer.h
3229 - src/node/ext/call.h
3230 - src/node/ext/call_credentials.h
3231 - src/node/ext/channel.h
3232 - src/node/ext/channel_credentials.h
3233 - src/node/ext/completion_queue_async_worker.h
3234 - src/node/ext/server.h
3235 - src/node/ext/server_credentials.h
3236 - src/node/ext/timeval.h
3237 js:
3238 - src/node/index.js
3239 - src/node/src/client.js
3240 - src/node/src/common.js
3241 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08003242 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08003243 - src/node/src/metadata.js
3244 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003245 name: grpc_node
3246 src:
3247 - src/node/ext/byte_buffer.cc
3248 - src/node/ext/call.cc
3249 - src/node/ext/call_credentials.cc
3250 - src/node/ext/channel.cc
3251 - src/node/ext/channel_credentials.cc
3252 - src/node/ext/completion_queue_async_worker.cc
3253 - src/node/ext/node_grpc.cc
3254 - src/node/ext/server.cc
3255 - src/node/ext/server_credentials.cc
3256 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003257openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003258 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003259 extraction_dir: openssl-1.0.2f
3260 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003261php_config_m4:
3262 deps:
3263 - grpc
3264 - gpr
3265 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003266 headers:
3267 - src/php/ext/grpc/byte_buffer.h
3268 - src/php/ext/grpc/call.h
3269 - src/php/ext/grpc/call_credentials.h
3270 - src/php/ext/grpc/channel.h
3271 - src/php/ext/grpc/channel_credentials.h
3272 - src/php/ext/grpc/completion_queue.h
3273 - src/php/ext/grpc/php_grpc.h
3274 - src/php/ext/grpc/server.h
3275 - src/php/ext/grpc/server_credentials.h
3276 - src/php/ext/grpc/timeval.h
3277 src:
3278 - src/php/ext/grpc/byte_buffer.c
3279 - src/php/ext/grpc/call.c
3280 - src/php/ext/grpc/call_credentials.c
3281 - src/php/ext/grpc/channel.c
3282 - src/php/ext/grpc/channel_credentials.c
3283 - src/php/ext/grpc/completion_queue.c
3284 - src/php/ext/grpc/php_grpc.c
3285 - src/php/ext/grpc/server.c
3286 - src/php/ext/grpc/server_credentials.c
3287 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003288python_dependencies:
3289 deps:
3290 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003291 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003292 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003293 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003294ruby_gem:
3295 deps:
3296 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003297 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003298 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003299 - z