blob: 97ee62945308e4443097db1b853093de61c1b167 [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:
16 - src/core/census/aggregation.h
Alistair Veitch77715442016-02-22 14:20:25 -080017 - src/core/census/mlog.h
Craig Tiller25834342015-09-25 08:08:24 -070018 - src/core/census/rpc_metric_id.h
19 src:
20 - src/core/census/context.c
21 - src/core/census/initialize.c
Alistair Veitch77715442016-02-22 14:20:25 -080022 - src/core/census/mlog.c
Craig Tiller25834342015-09-25 08:08:24 -070023 - src/core/census/operation.c
Nicolas "Pixel" Noblefa132c22016-01-31 09:31:15 +010024 - src/core/census/placeholders.c
Craig Tiller25834342015-09-25 08:08:24 -070025 - src/core/census/tracing.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010026- name: gpr
27 public_headers:
28 - include/grpc/support/alloc.h
29 - include/grpc/support/atm.h
30 - include/grpc/support/atm_gcc_atomic.h
31 - include/grpc/support/atm_gcc_sync.h
32 - include/grpc/support/atm_win32.h
33 - include/grpc/support/avl.h
34 - include/grpc/support/cmdline.h
35 - include/grpc/support/cpu.h
36 - include/grpc/support/histogram.h
37 - include/grpc/support/host_port.h
38 - include/grpc/support/log.h
39 - include/grpc/support/log_win32.h
40 - include/grpc/support/port_platform.h
41 - include/grpc/support/slice.h
42 - include/grpc/support/slice_buffer.h
43 - include/grpc/support/string_util.h
44 - include/grpc/support/subprocess.h
45 - include/grpc/support/sync.h
46 - include/grpc/support/sync_generic.h
47 - include/grpc/support/sync_posix.h
48 - include/grpc/support/sync_win32.h
49 - include/grpc/support/thd.h
50 - include/grpc/support/time.h
51 - include/grpc/support/tls.h
52 - include/grpc/support/tls_gcc.h
53 - include/grpc/support/tls_msvc.h
54 - include/grpc/support/tls_pthread.h
55 - include/grpc/support/useful.h
56 headers:
57 - src/core/profiling/timers.h
Craig Tiller58270d52016-03-18 15:57:49 -070058 - src/core/support/backoff.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010059 - src/core/support/block_annotate.h
60 - src/core/support/env.h
Craig Tiller732a8752016-02-22 15:59:19 -080061 - src/core/support/load_file.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010062 - src/core/support/murmur_hash.h
63 - src/core/support/stack_lockfree.h
64 - src/core/support/string.h
65 - src/core/support/string_win32.h
66 - src/core/support/thd_internal.h
67 - src/core/support/time_precise.h
Craig Tiller732a8752016-02-22 15:59:19 -080068 - src/core/support/tmpfile.h
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010069 src:
70 - src/core/profiling/basic_timers.c
71 - src/core/profiling/stap_timers.c
72 - src/core/support/alloc.c
73 - src/core/support/avl.c
Craig Tiller58270d52016-03-18 15:57:49 -070074 - src/core/support/backoff.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010075 - src/core/support/cmdline.c
76 - src/core/support/cpu_iphone.c
77 - src/core/support/cpu_linux.c
78 - src/core/support/cpu_posix.c
79 - src/core/support/cpu_windows.c
80 - src/core/support/env_linux.c
81 - src/core/support/env_posix.c
82 - src/core/support/env_win32.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010083 - src/core/support/histogram.c
84 - src/core/support/host_port.c
Craig Tiller732a8752016-02-22 15:59:19 -080085 - src/core/support/load_file.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +010086 - src/core/support/log.c
87 - src/core/support/log_android.c
88 - src/core/support/log_linux.c
89 - src/core/support/log_posix.c
90 - src/core/support/log_win32.c
91 - src/core/support/murmur_hash.c
92 - src/core/support/slice.c
93 - src/core/support/slice_buffer.c
94 - src/core/support/stack_lockfree.c
95 - src/core/support/string.c
96 - src/core/support/string_posix.c
97 - src/core/support/string_win32.c
98 - src/core/support/subprocess_posix.c
Nicolas "Pixel" Noble78825ca2016-01-31 07:08:20 +010099 - src/core/support/subprocess_windows.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100100 - src/core/support/sync.c
101 - src/core/support/sync_posix.c
102 - src/core/support/sync_win32.c
103 - src/core/support/thd.c
104 - src/core/support/thd_posix.c
105 - src/core/support/thd_win32.c
106 - src/core/support/time.c
107 - src/core/support/time_posix.c
108 - src/core/support/time_precise.c
109 - src/core/support/time_win32.c
110 - src/core/support/tls_pthread.c
Craig Tiller732a8752016-02-22 15:59:19 -0800111 - src/core/support/tmpfile_posix.c
112 - src/core/support/tmpfile_win32.c
Nicolas "Pixel" Noble89d8ed12016-02-03 01:12:14 +0100113 - src/core/support/wrap_memcpy.c
Craig Tiller1298afd2016-02-09 12:29:17 -0800114- name: gpr_codegen
115 public_headers:
116 - include/grpc/impl/codegen/alloc.h
117 - include/grpc/impl/codegen/atm.h
118 - include/grpc/impl/codegen/atm_gcc_atomic.h
119 - include/grpc/impl/codegen/atm_gcc_sync.h
120 - include/grpc/impl/codegen/atm_win32.h
121 - include/grpc/impl/codegen/log.h
122 - include/grpc/impl/codegen/port_platform.h
123 - include/grpc/impl/codegen/slice.h
124 - include/grpc/impl/codegen/slice_buffer.h
125 - include/grpc/impl/codegen/sync.h
126 - include/grpc/impl/codegen/sync_generic.h
127 - include/grpc/impl/codegen/sync_posix.h
128 - include/grpc/impl/codegen/sync_win32.h
129 - include/grpc/impl/codegen/time.h
Craig Tillerbf4b2242015-08-31 15:53:53 -0700130- name: grpc++_base
Craig Tiller25834342015-09-25 08:08:24 -0700131 public_headers:
vjpaif9f61cf2016-02-10 20:51:53 -0800132 - include/grpc++/alarm.h
Craig Tiller25834342015-09-25 08:08:24 -0700133 - include/grpc++/channel.h
134 - include/grpc++/client_context.h
135 - include/grpc++/completion_queue.h
136 - include/grpc++/create_channel.h
137 - include/grpc++/generic/async_generic_service.h
138 - include/grpc++/generic/generic_stub.h
139 - include/grpc++/grpc++.h
140 - include/grpc++/impl/call.h
141 - include/grpc++/impl/client_unary_call.h
142 - include/grpc++/impl/grpc_library.h
yang-g77c63332016-01-14 16:09:04 -0800143 - include/grpc++/impl/method_handler_impl.h
Craig Tiller25834342015-09-25 08:08:24 -0700144 - include/grpc++/impl/proto_utils.h
145 - include/grpc++/impl/rpc_method.h
146 - include/grpc++/impl/rpc_service_method.h
147 - include/grpc++/impl/serialization_traits.h
yang-ga23f17b2015-11-25 10:21:05 -0800148 - include/grpc++/impl/server_builder_option.h
Craig Tiller25834342015-09-25 08:08:24 -0700149 - include/grpc++/impl/service_type.h
150 - include/grpc++/impl/sync.h
151 - include/grpc++/impl/sync_cxx11.h
152 - include/grpc++/impl/sync_no_cxx11.h
153 - include/grpc++/impl/thd.h
154 - include/grpc++/impl/thd_cxx11.h
155 - include/grpc++/impl/thd_no_cxx11.h
156 - include/grpc++/security/auth_context.h
157 - include/grpc++/security/auth_metadata_processor.h
158 - include/grpc++/security/credentials.h
159 - include/grpc++/security/server_credentials.h
160 - include/grpc++/server.h
161 - include/grpc++/server_builder.h
162 - include/grpc++/server_context.h
163 - include/grpc++/support/async_stream.h
164 - include/grpc++/support/async_unary_call.h
165 - include/grpc++/support/byte_buffer.h
166 - include/grpc++/support/channel_arguments.h
167 - include/grpc++/support/config.h
168 - include/grpc++/support/config_protobuf.h
169 - include/grpc++/support/slice.h
170 - include/grpc++/support/status.h
171 - include/grpc++/support/status_code_enum.h
172 - include/grpc++/support/string_ref.h
173 - include/grpc++/support/stub_options.h
174 - include/grpc++/support/sync_stream.h
175 - include/grpc++/support/time.h
176 headers:
177 - src/cpp/client/create_channel_internal.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800178 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700179 - src/cpp/common/create_auth_context.h
180 - src/cpp/server/dynamic_thread_pool.h
Craig Tiller25834342015-09-25 08:08:24 -0700181 - src/cpp/server/thread_pool_interface.h
182 src:
183 - src/cpp/client/channel.cc
Craig Tiller25834342015-09-25 08:08:24 -0700184 - src/cpp/client/client_context.cc
185 - src/cpp/client/create_channel.cc
186 - src/cpp/client/create_channel_internal.cc
187 - src/cpp/client/credentials.cc
188 - src/cpp/client/generic_stub.cc
189 - src/cpp/client/insecure_credentials.cc
yang-g52705592015-11-25 11:45:33 -0800190 - src/cpp/common/channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700191 - src/cpp/common/completion_queue.cc
Nicolas "Pixel" Noble42683182016-03-17 00:25:39 +0100192 - src/cpp/common/core_codegen.cc
Craig Tiller25834342015-09-25 08:08:24 -0700193 - src/cpp/common/rpc_method.cc
Craig Tiller25834342015-09-25 08:08:24 -0700194 - src/cpp/server/async_generic_service.cc
195 - src/cpp/server/create_default_thread_pool.cc
196 - src/cpp/server/dynamic_thread_pool.cc
Craig Tiller25834342015-09-25 08:08:24 -0700197 - src/cpp/server/insecure_server_credentials.cc
198 - src/cpp/server/server.cc
199 - src/cpp/server/server_builder.cc
200 - src/cpp/server/server_context.cc
201 - src/cpp/server/server_credentials.cc
202 - src/cpp/util/byte_buffer.cc
203 - src/cpp/util/slice.cc
204 - src/cpp/util/status.cc
205 - src/cpp/util/string_ref.cc
206 - src/cpp/util/time.cc
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800207- name: grpc++_codegen
208 public_headers:
David Garcia Quintas6a484052016-01-25 19:12:37 -0800209 - include/grpc++/impl/codegen/async_stream.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800210 - include/grpc++/impl/codegen/async_unary_call.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800211 - include/grpc++/impl/codegen/call.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800212 - include/grpc++/impl/codegen/call_hook.h
213 - include/grpc++/impl/codegen/channel_interface.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800214 - include/grpc++/impl/codegen/client_context.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800215 - include/grpc++/impl/codegen/client_unary_call.h
216 - include/grpc++/impl/codegen/completion_queue.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800217 - include/grpc++/impl/codegen/completion_queue_tag.h
218 - include/grpc++/impl/codegen/config.h
David Garcia Quintas6a484052016-01-25 19:12:37 -0800219 - include/grpc++/impl/codegen/config_protobuf.h
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100220 - include/grpc++/impl/codegen/core_codegen_interface.h
David Garcia Quintase1300de2016-01-27 18:41:26 -0800221 - include/grpc++/impl/codegen/grpc_library.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800222 - include/grpc++/impl/codegen/method_handler_impl.h
David Garcia Quintas6a484052016-01-25 19:12:37 -0800223 - include/grpc++/impl/codegen/proto_utils.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800224 - include/grpc++/impl/codegen/rpc_method.h
225 - include/grpc++/impl/codegen/rpc_service_method.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800226 - include/grpc++/impl/codegen/security/auth_context.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800227 - include/grpc++/impl/codegen/serialization_traits.h
228 - include/grpc++/impl/codegen/server_context.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800229 - include/grpc++/impl/codegen/server_interface.h
David Garcia Quintasb523c732016-01-25 18:22:28 -0800230 - include/grpc++/impl/codegen/service_type.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800231 - include/grpc++/impl/codegen/status.h
232 - include/grpc++/impl/codegen/status_code_enum.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800233 - include/grpc++/impl/codegen/string_ref.h
David Garcia Quintase1300de2016-01-27 18:41:26 -0800234 - include/grpc++/impl/codegen/stub_options.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800235 - include/grpc++/impl/codegen/sync.h
236 - include/grpc++/impl/codegen/sync_cxx11.h
237 - include/grpc++/impl/codegen/sync_no_cxx11.h
David Garcia Quintas6bd7b972016-01-27 19:21:12 -0800238 - include/grpc++/impl/codegen/sync_stream.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800239 - include/grpc++/impl/codegen/time.h
David Garcia Quintase1300de2016-01-27 18:41:26 -0800240 src:
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100241 - src/cpp/codegen/codegen_init.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700242- name: grpc_base
Craig Tiller25834342015-09-25 08:08:24 -0700243 public_headers:
244 - include/grpc/byte_buffer.h
245 - include/grpc/byte_buffer_reader.h
246 - include/grpc/compression.h
247 - include/grpc/grpc.h
248 - include/grpc/status.h
249 headers:
250 - src/core/census/grpc_filter.h
251 - src/core/channel/channel_args.h
252 - src/core/channel/channel_stack.h
253 - src/core/channel/client_channel.h
David Garcia Quintas7b1bd2c2015-10-05 18:22:10 -0700254 - src/core/channel/client_uchannel.h
Craig Tiller25834342015-09-25 08:08:24 -0700255 - src/core/channel/compress_filter.h
256 - src/core/channel/connected_channel.h
257 - src/core/channel/context.h
258 - src/core/channel/http_client_filter.h
259 - src/core/channel/http_server_filter.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800260 - src/core/channel/subchannel_call_holder.h
Craig Tiller25834342015-09-25 08:08:24 -0700261 - src/core/client_config/client_config.h
262 - src/core/client_config/connector.h
yang-ga6124122015-11-05 22:36:20 -0800263 - src/core/client_config/initial_connect_string.h
Craig Tillereb841e22016-02-11 15:49:16 -0800264 - src/core/client_config/lb_policies/load_balancer_api.h
Craig Tiller25834342015-09-25 08:08:24 -0700265 - src/core/client_config/lb_policies/pick_first.h
266 - src/core/client_config/lb_policies/round_robin.h
267 - src/core/client_config/lb_policy.h
268 - src/core/client_config/lb_policy_factory.h
269 - src/core/client_config/lb_policy_registry.h
270 - src/core/client_config/resolver.h
271 - src/core/client_config/resolver_factory.h
272 - src/core/client_config/resolver_registry.h
273 - src/core/client_config/resolvers/dns_resolver.h
274 - src/core/client_config/resolvers/sockaddr_resolver.h
275 - src/core/client_config/subchannel.h
276 - src/core/client_config/subchannel_factory.h
Craig Tiller694cf8b2016-01-15 21:13:25 -0800277 - src/core/client_config/subchannel_index.h
Craig Tiller25834342015-09-25 08:08:24 -0700278 - src/core/client_config/uri_parser.h
Craig Tillerebdef9d2015-11-19 17:09:49 -0800279 - src/core/compression/algorithm_metadata.h
Craig Tiller25834342015-09-25 08:08:24 -0700280 - src/core/compression/message_compress.h
281 - src/core/debug/trace.h
282 - src/core/httpcli/format_request.h
283 - src/core/httpcli/httpcli.h
284 - src/core/httpcli/parser.h
Craig Tiller25834342015-09-25 08:08:24 -0700285 - src/core/iomgr/closure.h
286 - src/core/iomgr/endpoint.h
287 - src/core/iomgr/endpoint_pair.h
288 - src/core/iomgr/exec_ctx.h
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700289 - src/core/iomgr/executor.h
Craig Tiller25834342015-09-25 08:08:24 -0700290 - src/core/iomgr/fd_posix.h
291 - src/core/iomgr/iocp_windows.h
292 - src/core/iomgr/iomgr.h
293 - src/core/iomgr/iomgr_internal.h
294 - src/core/iomgr/iomgr_posix.h
295 - src/core/iomgr/pollset.h
296 - src/core/iomgr/pollset_posix.h
297 - src/core/iomgr/pollset_set.h
298 - src/core/iomgr/pollset_set_posix.h
299 - src/core/iomgr/pollset_set_windows.h
300 - src/core/iomgr/pollset_windows.h
301 - src/core/iomgr/resolve_address.h
302 - src/core/iomgr/sockaddr.h
303 - src/core/iomgr/sockaddr_posix.h
304 - src/core/iomgr/sockaddr_utils.h
305 - src/core/iomgr/sockaddr_win32.h
306 - src/core/iomgr/socket_utils_posix.h
307 - src/core/iomgr/socket_windows.h
308 - src/core/iomgr/tcp_client.h
309 - src/core/iomgr/tcp_posix.h
310 - src/core/iomgr/tcp_server.h
311 - src/core/iomgr/tcp_windows.h
312 - src/core/iomgr/time_averaged_stats.h
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700313 - src/core/iomgr/timer.h
314 - src/core/iomgr/timer_heap.h
Craig Tiller25834342015-09-25 08:08:24 -0700315 - src/core/iomgr/udp_server.h
316 - src/core/iomgr/wakeup_fd_pipe.h
317 - src/core/iomgr/wakeup_fd_posix.h
318 - src/core/iomgr/workqueue.h
319 - src/core/iomgr/workqueue_posix.h
320 - src/core/iomgr/workqueue_windows.h
321 - src/core/json/json.h
322 - src/core/json/json_common.h
323 - src/core/json/json_reader.h
324 - src/core/json/json_writer.h
Craig Tillereb841e22016-02-11 15:49:16 -0800325 - src/core/proto/grpc/lb/v0/load_balancer.pb.h
Craig Tiller25834342015-09-25 08:08:24 -0700326 - src/core/statistics/census_interface.h
327 - src/core/statistics/census_rpc_stats.h
Craig Tiller2468ff52015-10-05 09:00:17 -0700328 - src/core/surface/api_trace.h
Craig Tiller25834342015-09-25 08:08:24 -0700329 - src/core/surface/call.h
David Garcia Quintas0c331882015-10-08 14:51:54 -0700330 - src/core/surface/call_test_only.h
Craig Tiller25834342015-09-25 08:08:24 -0700331 - src/core/surface/channel.h
332 - src/core/surface/completion_queue.h
333 - src/core/surface/event_string.h
334 - src/core/surface/init.h
335 - src/core/surface/server.h
Craig Tiller0801ce62015-10-05 09:40:31 -0700336 - src/core/surface/surface_trace.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800337 - src/core/transport/byte_stream.h
Craig Tiller25834342015-09-25 08:08:24 -0700338 - src/core/transport/chttp2/alpn.h
339 - src/core/transport/chttp2/bin_encoder.h
340 - src/core/transport/chttp2/frame.h
341 - src/core/transport/chttp2/frame_data.h
342 - src/core/transport/chttp2/frame_goaway.h
343 - src/core/transport/chttp2/frame_ping.h
344 - src/core/transport/chttp2/frame_rst_stream.h
345 - src/core/transport/chttp2/frame_settings.h
346 - src/core/transport/chttp2/frame_window_update.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800347 - src/core/transport/chttp2/hpack_encoder.h
Craig Tiller25834342015-09-25 08:08:24 -0700348 - src/core/transport/chttp2/hpack_parser.h
349 - src/core/transport/chttp2/hpack_table.h
350 - src/core/transport/chttp2/http2_errors.h
351 - src/core/transport/chttp2/huffsyms.h
352 - src/core/transport/chttp2/incoming_metadata.h
353 - src/core/transport/chttp2/internal.h
354 - src/core/transport/chttp2/status_conversion.h
Craig Tiller25834342015-09-25 08:08:24 -0700355 - src/core/transport/chttp2/stream_map.h
356 - src/core/transport/chttp2/timeout_encoding.h
357 - src/core/transport/chttp2/varint.h
358 - src/core/transport/chttp2_transport.h
359 - src/core/transport/connectivity_state.h
360 - src/core/transport/metadata.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800361 - src/core/transport/metadata_batch.h
Craig Tiller2e7687c2015-11-18 14:56:46 -0800362 - src/core/transport/static_metadata.h
Craig Tiller25834342015-09-25 08:08:24 -0700363 - src/core/transport/transport.h
364 - src/core/transport/transport_impl.h
365 src:
366 - src/core/census/grpc_context.c
367 - src/core/census/grpc_filter.c
368 - src/core/channel/channel_args.c
369 - src/core/channel/channel_stack.c
370 - src/core/channel/client_channel.c
David Garcia Quintas7b1bd2c2015-10-05 18:22:10 -0700371 - src/core/channel/client_uchannel.c
Craig Tiller25834342015-09-25 08:08:24 -0700372 - src/core/channel/compress_filter.c
373 - src/core/channel/connected_channel.c
374 - src/core/channel/http_client_filter.c
375 - src/core/channel/http_server_filter.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800376 - src/core/channel/subchannel_call_holder.c
Craig Tiller25834342015-09-25 08:08:24 -0700377 - src/core/client_config/client_config.c
378 - src/core/client_config/connector.c
yang-ga6124122015-11-05 22:36:20 -0800379 - src/core/client_config/default_initial_connect_string.c
380 - src/core/client_config/initial_connect_string.c
Craig Tillereb841e22016-02-11 15:49:16 -0800381 - src/core/client_config/lb_policies/load_balancer_api.c
Craig Tiller25834342015-09-25 08:08:24 -0700382 - src/core/client_config/lb_policies/pick_first.c
383 - src/core/client_config/lb_policies/round_robin.c
384 - src/core/client_config/lb_policy.c
385 - src/core/client_config/lb_policy_factory.c
386 - src/core/client_config/lb_policy_registry.c
387 - src/core/client_config/resolver.c
388 - src/core/client_config/resolver_factory.c
389 - src/core/client_config/resolver_registry.c
390 - src/core/client_config/resolvers/dns_resolver.c
391 - src/core/client_config/resolvers/sockaddr_resolver.c
392 - src/core/client_config/subchannel.c
393 - src/core/client_config/subchannel_factory.c
Craig Tiller694cf8b2016-01-15 21:13:25 -0800394 - src/core/client_config/subchannel_index.c
Craig Tiller25834342015-09-25 08:08:24 -0700395 - src/core/client_config/uri_parser.c
Craig Tiller732a8752016-02-22 15:59:19 -0800396 - src/core/compression/compression_algorithm.c
Craig Tiller25834342015-09-25 08:08:24 -0700397 - src/core/compression/message_compress.c
398 - src/core/debug/trace.c
399 - src/core/httpcli/format_request.c
400 - src/core/httpcli/httpcli.c
401 - src/core/httpcli/parser.c
Craig Tiller25834342015-09-25 08:08:24 -0700402 - src/core/iomgr/closure.c
403 - src/core/iomgr/endpoint.c
404 - src/core/iomgr/endpoint_pair_posix.c
405 - src/core/iomgr/endpoint_pair_windows.c
406 - src/core/iomgr/exec_ctx.c
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700407 - src/core/iomgr/executor.c
Craig Tiller25834342015-09-25 08:08:24 -0700408 - src/core/iomgr/fd_posix.c
409 - src/core/iomgr/iocp_windows.c
410 - src/core/iomgr/iomgr.c
411 - src/core/iomgr/iomgr_posix.c
412 - src/core/iomgr/iomgr_windows.c
413 - src/core/iomgr/pollset_multipoller_with_epoll.c
414 - src/core/iomgr/pollset_multipoller_with_poll_posix.c
415 - src/core/iomgr/pollset_posix.c
416 - src/core/iomgr/pollset_set_posix.c
417 - src/core/iomgr/pollset_set_windows.c
418 - src/core/iomgr/pollset_windows.c
419 - src/core/iomgr/resolve_address_posix.c
420 - src/core/iomgr/resolve_address_windows.c
421 - src/core/iomgr/sockaddr_utils.c
422 - src/core/iomgr/socket_utils_common_posix.c
423 - src/core/iomgr/socket_utils_linux.c
424 - src/core/iomgr/socket_utils_posix.c
425 - src/core/iomgr/socket_windows.c
426 - src/core/iomgr/tcp_client_posix.c
427 - src/core/iomgr/tcp_client_windows.c
428 - src/core/iomgr/tcp_posix.c
429 - src/core/iomgr/tcp_server_posix.c
430 - src/core/iomgr/tcp_server_windows.c
431 - src/core/iomgr/tcp_windows.c
432 - src/core/iomgr/time_averaged_stats.c
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700433 - src/core/iomgr/timer.c
434 - src/core/iomgr/timer_heap.c
Craig Tiller25834342015-09-25 08:08:24 -0700435 - src/core/iomgr/udp_server.c
436 - src/core/iomgr/wakeup_fd_eventfd.c
437 - src/core/iomgr/wakeup_fd_nospecial.c
438 - src/core/iomgr/wakeup_fd_pipe.c
439 - src/core/iomgr/wakeup_fd_posix.c
440 - src/core/iomgr/workqueue_posix.c
441 - src/core/iomgr/workqueue_windows.c
442 - src/core/json/json.c
443 - src/core/json/json_reader.c
444 - src/core/json/json_string.c
445 - src/core/json/json_writer.c
Craig Tillereb841e22016-02-11 15:49:16 -0800446 - src/core/proto/grpc/lb/v0/load_balancer.pb.c
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100447 - src/core/surface/alarm.c
Craig Tiller2468ff52015-10-05 09:00:17 -0700448 - src/core/surface/api_trace.c
Craig Tiller25834342015-09-25 08:08:24 -0700449 - src/core/surface/byte_buffer.c
Craig Tiller25834342015-09-25 08:08:24 -0700450 - src/core/surface/byte_buffer_reader.c
451 - src/core/surface/call.c
452 - src/core/surface/call_details.c
453 - src/core/surface/call_log_batch.c
454 - src/core/surface/channel.c
455 - src/core/surface/channel_connectivity.c
456 - src/core/surface/channel_create.c
Craig Tiller26dab312015-12-07 14:43:47 -0800457 - src/core/surface/channel_ping.c
Craig Tiller25834342015-09-25 08:08:24 -0700458 - src/core/surface/completion_queue.c
459 - src/core/surface/event_string.c
460 - src/core/surface/init.c
461 - src/core/surface/lame_client.c
462 - src/core/surface/metadata_array.c
463 - src/core/surface/server.c
464 - src/core/surface/server_chttp2.c
465 - src/core/surface/server_create.c
murgatroid99c3910ca2016-01-06 13:14:23 -0800466 - src/core/surface/validate_metadata.c
Craig Tiller25834342015-09-25 08:08:24 -0700467 - src/core/surface/version.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800468 - src/core/transport/byte_stream.c
Craig Tiller25834342015-09-25 08:08:24 -0700469 - src/core/transport/chttp2/alpn.c
470 - src/core/transport/chttp2/bin_encoder.c
471 - src/core/transport/chttp2/frame_data.c
472 - src/core/transport/chttp2/frame_goaway.c
473 - src/core/transport/chttp2/frame_ping.c
474 - src/core/transport/chttp2/frame_rst_stream.c
475 - src/core/transport/chttp2/frame_settings.c
476 - src/core/transport/chttp2/frame_window_update.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800477 - src/core/transport/chttp2/hpack_encoder.c
Craig Tiller25834342015-09-25 08:08:24 -0700478 - src/core/transport/chttp2/hpack_parser.c
479 - src/core/transport/chttp2/hpack_table.c
480 - src/core/transport/chttp2/huffsyms.c
481 - src/core/transport/chttp2/incoming_metadata.c
482 - src/core/transport/chttp2/parsing.c
483 - src/core/transport/chttp2/status_conversion.c
Craig Tiller25834342015-09-25 08:08:24 -0700484 - src/core/transport/chttp2/stream_lists.c
485 - src/core/transport/chttp2/stream_map.c
486 - src/core/transport/chttp2/timeout_encoding.c
487 - src/core/transport/chttp2/varint.c
488 - src/core/transport/chttp2/writing.c
489 - src/core/transport/chttp2_transport.c
490 - src/core/transport/connectivity_state.c
491 - src/core/transport/metadata.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800492 - src/core/transport/metadata_batch.c
Craig Tiller2e7687c2015-11-18 14:56:46 -0800493 - src/core/transport/static_metadata.c
Craig Tiller25834342015-09-25 08:08:24 -0700494 - src/core/transport/transport.c
495 - src/core/transport/transport_op_string.c
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800496- name: grpc_codegen
497 public_headers:
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800498 - include/grpc/impl/codegen/byte_buffer.h
499 - include/grpc/impl/codegen/compression_types.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800500 - include/grpc/impl/codegen/connectivity_state.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800501 - include/grpc/impl/codegen/grpc_types.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800502 - include/grpc/impl/codegen/propagation_bits.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800503 - include/grpc/impl/codegen/status.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100504- name: grpc_secure
505 headers:
506 - src/core/security/auth_filters.h
Craig Tiller732a8752016-02-22 15:59:19 -0800507 - src/core/security/b64.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100508 - src/core/security/credentials.h
509 - src/core/security/handshake.h
510 - src/core/security/json_token.h
511 - src/core/security/jwt_verifier.h
512 - src/core/security/secure_endpoint.h
513 - src/core/security/security_connector.h
514 - src/core/security/security_context.h
515 - src/core/tsi/fake_transport_security.h
516 - src/core/tsi/ssl_transport_security.h
517 - src/core/tsi/ssl_types.h
518 - src/core/tsi/transport_security.h
519 - src/core/tsi/transport_security_interface.h
520 src:
521 - src/core/httpcli/httpcli_security_connector.c
Craig Tiller732a8752016-02-22 15:59:19 -0800522 - src/core/security/b64.c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100523 - src/core/security/client_auth_filter.c
524 - src/core/security/credentials.c
525 - src/core/security/credentials_metadata.c
526 - src/core/security/credentials_posix.c
527 - src/core/security/credentials_win32.c
528 - src/core/security/google_default_credentials.c
529 - src/core/security/handshake.c
530 - src/core/security/json_token.c
531 - src/core/security/jwt_verifier.c
532 - src/core/security/secure_endpoint.c
533 - src/core/security/security_connector.c
534 - src/core/security/security_context.c
535 - src/core/security/server_auth_filter.c
536 - src/core/security/server_secure_chttp2.c
537 - src/core/surface/init_secure.c
538 - src/core/surface/secure_channel_create.c
539 - src/core/tsi/fake_transport_security.c
540 - src/core/tsi/ssl_transport_security.c
541 - src/core/tsi/transport_security.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700542- name: grpc_test_util_base
Craig Tiller25834342015-09-25 08:08:24 -0700543 headers:
544 - test/core/end2end/cq_verifier.h
545 - test/core/end2end/fixtures/proxy.h
546 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700547 - test/core/util/grpc_profiler.h
548 - test/core/util/parse_hexstring.h
549 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700550 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700551 - test/core/util/slice_splitter.h
552 src:
553 - test/core/end2end/cq_verifier.c
554 - test/core/end2end/fixtures/proxy.c
555 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700556 - test/core/util/grpc_profiler.c
557 - test/core/util/parse_hexstring.c
558 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700559 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700560 - test/core/util/port_windows.c
561 - test/core/util/slice_splitter.c
Craig Tillereb841e22016-02-11 15:49:16 -0800562- name: nanopb
563 headers:
564 - third_party/nanopb/pb.h
565 - third_party/nanopb/pb_common.h
566 - third_party/nanopb/pb_decode.h
567 - third_party/nanopb/pb_encode.h
568 src:
569 - third_party/nanopb/pb_common.c
570 - third_party/nanopb/pb_decode.c
571 - third_party/nanopb/pb_encode.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100572libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800573- name: gpr
574 build: all
575 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800576 filegroups:
Craig Tiller1298afd2016-02-09 12:29:17 -0800577 - gpr
578 - gpr_codegen
Craig Tillerda179ce2016-02-09 12:01:53 -0800579 secure: false
580 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
581- name: gpr_test_util
582 build: private
583 language: c
584 headers:
585 - test/core/util/test_config.h
586 src:
587 - test/core/util/test_config.c
588 deps:
589 - gpr
590 secure: false
591 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700592- name: grpc
593 build: all
594 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700595 public_headers:
596 - include/grpc/grpc_security.h
Craig Tillerda179ce2016-02-09 12:01:53 -0800597 deps:
598 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700599 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800600 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700601 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700602 filegroups:
603 - grpc_base
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100604 - grpc_secure
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100605 - grpc_codegen
Craig Tiller25834342015-09-25 08:08:24 -0700606 - census
Craig Tillereb841e22016-02-11 15:49:16 -0800607 - nanopb
Craig Tillerbf4b2242015-08-31 15:53:53 -0700608 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700609 vs_packages:
610 - grpc.dependencies.openssl
611 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700612 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800613- name: grpc_codegen_lib
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100614 build: protoc
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800615 language: c
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800616 headers: []
617 src: []
618 filegroups:
619 - gpr_codegen
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100620 - grpc_codegen
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800621 secure: false
622 vs_project_guid: '{A828FD72-44CE-4EA5-8966-6E4624458D58}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100623- name: grpc_dll
624 build: private
625 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100626 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100627 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100628 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100629 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100630 build_system:
631 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100632 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100633 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100634 vs_config_type: DynamicLibrary
635 vs_packages:
636 - grpc.dependencies.openssl
637 - grpc.dependencies.zlib
638 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
639 vs_props:
640 - zlib
641 - openssl
642 - winsock
643 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700644- name: grpc_test_util
645 build: private
646 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700647 headers:
648 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800649 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700650 src:
651 - test/core/end2end/data/server1_cert.c
652 - test/core/end2end/data/server1_key.c
653 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800654 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700655 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800656 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800657 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700658 - grpc
659 filegroups:
660 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700661 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
662- name: grpc_test_util_unsecure
663 build: private
664 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700665 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800666 - gpr
667 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800668 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700669 filegroups:
670 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700671 secure: false
672 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
673- name: grpc_unsecure
674 build: all
675 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700676 src:
677 - src/core/surface/init_unsecure.c
Craig Tillerda179ce2016-02-09 12:01:53 -0800678 deps:
679 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700680 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800681 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700682 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700683 filegroups:
684 - grpc_base
Craig Tillerad095982016-02-09 12:45:04 -0800685 - grpc_codegen
Craig Tiller25834342015-09-25 08:08:24 -0700686 - census
Craig Tillereb841e22016-02-11 15:49:16 -0800687 - nanopb
Craig Tillerbf4b2242015-08-31 15:53:53 -0700688 secure: false
689 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
690- name: grpc_zookeeper
691 build: all
692 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700693 public_headers:
694 - include/grpc/grpc_zookeeper.h
695 headers:
696 - src/core/client_config/resolvers/zookeeper_resolver.h
697 src:
698 - src/core/client_config/resolvers/zookeeper_resolver.c
699 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800700 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700701 - grpc
702 external_deps:
703 - zookeeper
704 platforms:
705 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700706 secure: false
707- name: reconnect_server
708 build: private
709 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700710 headers:
711 - test/core/util/reconnect_server.h
712 src:
713 - test/core/util/reconnect_server.c
714 deps:
yang-gc9fca182015-11-06 16:41:33 -0800715 - test_tcp_server
716 - grpc_test_util
717 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800718 - gpr_test_util
719 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800720- name: test_tcp_server
721 build: private
722 language: c
723 headers:
724 - test/core/util/test_tcp_server.h
725 src:
726 - test/core/util/test_tcp_server.c
727 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700728 - grpc_test_util
729 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800730 - gpr_test_util
731 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700732- name: grpc++
733 build: all
734 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700735 headers:
736 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800737 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700738 - src/cpp/common/secure_auth_context.h
739 - src/cpp/server/secure_server_credentials.h
740 src:
Craig Tiller25834342015-09-25 08:08:24 -0700741 - src/cpp/client/secure_credentials.cc
742 - src/cpp/common/auth_property_iterator.cc
743 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800744 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700745 - src/cpp/common/secure_create_auth_context.cc
746 - src/cpp/server/secure_server_credentials.cc
747 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700748 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700749 baselib: true
750 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700751 filegroups:
752 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800753 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700754 secure: check
755 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800756- name: grpc++_codegen_lib
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100757 build: protoc
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800758 language: c++
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800759 headers: []
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100760 src: []
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800761 filegroups:
762 - gpr_codegen
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100763 - grpc_codegen
764 - grpc++_codegen
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800765 secure: false
David Garcia Quintasaee7cf12016-02-19 14:05:47 -0800766 vs_project_guid: '{AAC6AF12-94C8-4A3C-A1BF-DAA4738F4500}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700767- name: grpc++_test_config
768 build: private
769 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700770 headers:
771 - test/cpp/util/test_config.h
772 src:
773 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700774- name: grpc++_test_util
775 build: private
776 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700777 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800778 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800779 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700780 - test/cpp/util/cli_call.h
781 - test/cpp/util/create_test_channel.h
782 - test/cpp/util/string_ref_helper.h
783 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800784 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700785 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800786 - src/proto/grpc/testing/echo_messages.proto
787 - src/proto/grpc/testing/echo.proto
788 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800789 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800790 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700791 - test/cpp/util/cli_call.cc
792 - test/cpp/util/create_test_channel.cc
793 - test/cpp/util/string_ref_helper.cc
794 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800795 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700796 deps:
797 - grpc++
798 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700799- name: grpc++_unsecure
800 build: all
801 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700802 src:
803 - src/cpp/common/insecure_create_auth_context.cc
804 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800805 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700806 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700807 baselib: true
808 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700809 filegroups:
810 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800811 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700812 secure: false
813 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
814- name: grpc_plugin_support
815 build: protoc
816 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700817 headers:
818 - include/grpc++/support/config.h
819 - include/grpc++/support/config_protobuf.h
820 - src/compiler/config.h
821 - src/compiler/cpp_generator.h
822 - src/compiler/cpp_generator_helpers.h
823 - src/compiler/csharp_generator.h
824 - src/compiler/csharp_generator_helpers.h
825 - src/compiler/generator_helpers.h
826 - src/compiler/objective_c_generator.h
827 - src/compiler/objective_c_generator_helpers.h
828 - src/compiler/python_generator.h
829 - src/compiler/ruby_generator.h
830 - src/compiler/ruby_generator_helpers-inl.h
831 - src/compiler/ruby_generator_map-inl.h
832 - src/compiler/ruby_generator_string-inl.h
833 src:
834 - src/compiler/cpp_generator.cc
835 - src/compiler/csharp_generator.cc
836 - src/compiler/objective_c_generator.cc
837 - src/compiler/python_generator.cc
838 - src/compiler/ruby_generator.cc
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800839 deps:
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800840 - grpc++_codegen_lib
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800841 filegroups:
Craig Tillerad095982016-02-09 12:45:04 -0800842 - gpr_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700843 secure: false
844 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800845 vs_props:
846 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700847- name: interop_client_helper
848 build: private
849 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700850 headers:
851 - test/cpp/interop/client_helper.h
852 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800853 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -0700854 - test/cpp/interop/client_helper.cc
855 deps:
856 - grpc++_test_util
857 - grpc_test_util
858 - grpc++
859 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800860 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700861- name: interop_client_main
862 build: private
863 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700864 headers:
865 - test/cpp/interop/interop_client.h
866 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800867 - src/proto/grpc/testing/empty.proto
868 - src/proto/grpc/testing/messages.proto
869 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -0700870 - test/cpp/interop/client.cc
871 - test/cpp/interop/interop_client.cc
872 deps:
873 - interop_client_helper
874 - grpc++_test_util
875 - grpc_test_util
876 - grpc++
877 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800878 - gpr_test_util
879 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700880 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700881- name: interop_server_helper
882 build: private
883 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700884 headers:
885 - test/cpp/interop/server_helper.h
886 src:
887 - test/cpp/interop/server_helper.cc
888 deps:
889 - grpc_test_util
890 - grpc++
891 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800892 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700893- name: interop_server_main
894 build: private
895 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700896 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800897 - src/proto/grpc/testing/empty.proto
898 - src/proto/grpc/testing/messages.proto
899 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -0800900 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -0700901 deps:
902 - interop_server_helper
903 - grpc++_test_util
904 - grpc_test_util
905 - grpc++
906 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800907 - gpr_test_util
908 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700909 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700910- name: qps
911 build: private
912 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700913 headers:
914 - test/cpp/qps/client.h
915 - test/cpp/qps/driver.h
916 - test/cpp/qps/histogram.h
917 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -0800918 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -0700919 - test/cpp/qps/perf_db_client.h
920 - test/cpp/qps/qps_worker.h
921 - test/cpp/qps/report.h
922 - test/cpp/qps/server.h
923 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -0800924 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -0700925 - test/cpp/util/benchmark_config.h
926 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800927 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800928 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800929 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800930 - src/proto/grpc/testing/control.proto
931 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800932 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -0700933 - test/cpp/qps/client_async.cc
934 - test/cpp/qps/client_sync.cc
935 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -0800936 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -0700937 - test/cpp/qps/perf_db_client.cc
938 - test/cpp/qps/qps_worker.cc
939 - test/cpp/qps/report.cc
940 - test/cpp/qps/server_async.cc
941 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -0800942 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -0700943 - test/cpp/util/benchmark_config.cc
944 deps:
945 - grpc_test_util
946 - grpc++_test_util
947 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -0700948- name: grpc_csharp_ext
949 build: all
950 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -0700951 src:
952 - src/csharp/ext/grpc_csharp_ext.c
953 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700954 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800955 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -0800956 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -0800957 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700958 dll: only
959 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -0700960 vs_packages:
961 - grpc.dependencies.openssl
962 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700963 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -0700964 vs_props:
965 - zlib
966 - openssl
967 - winsock
968 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700969targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100970- name: alarm_test
971 build: test
972 language: c
973 src:
974 - test/core/surface/alarm_test.c
975 deps:
976 - grpc_test_util
977 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -0800978 - gpr_test_util
979 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -0800980- name: algorithm_test
981 build: test
982 language: c
983 src:
984 - test/core/compression/algorithm_test.c
985 deps:
986 - grpc_test_util
987 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800988 - gpr_test_util
989 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -0800990- name: alloc_test
991 build: test
992 language: c
993 src:
994 - test/core/support/alloc_test.c
995 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800996 - gpr_test_util
997 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700998- name: alpn_test
999 build: test
1000 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001001 src:
1002 - test/core/transport/chttp2/alpn_test.c
1003 deps:
1004 - grpc_test_util
1005 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001006 - gpr_test_util
1007 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001008- name: bin_encoder_test
1009 build: test
1010 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001011 src:
1012 - test/core/transport/chttp2/bin_encoder_test.c
1013 deps:
1014 - grpc_test_util
1015 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001016- name: census_context_test
1017 build: test
1018 language: c
1019 src:
1020 - test/core/census/context_test.c
1021 deps:
1022 - grpc_test_util
1023 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001024 - gpr_test_util
1025 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001026- name: channel_create_test
1027 build: test
1028 language: c
1029 src:
1030 - test/core/surface/channel_create_test.c
1031 deps:
1032 - grpc_test_util
1033 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001034 - gpr_test_util
1035 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001036- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001037 build: test
1038 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001039 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001040 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001041 deps:
1042 - grpc_test_util
1043 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001044 - gpr_test_util
1045 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001046- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001047 build: test
1048 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001049 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001050 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001051 deps:
1052 - grpc_test_util
1053 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001054 - gpr_test_util
1055 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001056- name: chttp2_stream_map_test
1057 build: test
1058 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001059 src:
1060 - test/core/transport/chttp2/stream_map_test.c
1061 deps:
1062 - grpc_test_util
1063 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001064 - gpr_test_util
1065 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001066- name: chttp2_varint_test
1067 build: test
1068 language: c
1069 src:
1070 - test/core/transport/chttp2/varint_test.c
1071 deps:
1072 - grpc_test_util
1073 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001074 - gpr_test_util
1075 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001076- name: compression_test
1077 build: test
1078 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001079 src:
1080 - test/core/compression/compression_test.c
1081 deps:
1082 - grpc_test_util
1083 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001084 - gpr_test_util
1085 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001086- name: concurrent_connectivity_test
1087 build: test
1088 language: c
1089 src:
1090 - test/core/surface/concurrent_connectivity_test.c
1091 deps:
1092 - grpc_test_util
1093 - grpc
1094 - gpr_test_util
1095 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001096- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001097 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001098 build: test
1099 language: c
1100 src:
1101 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1102 deps:
1103 - grpc_test_util
1104 - grpc
1105 - gpr_test_util
1106 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001107- name: dns_resolver_test
1108 build: test
1109 language: c
1110 src:
1111 - test/core/client_config/resolvers/dns_resolver_test.c
1112 deps:
1113 - grpc_test_util
1114 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001115 - gpr_test_util
1116 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001117- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001118 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001119 build: test
1120 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001121 src:
1122 - test/core/end2end/dualstack_socket_test.c
1123 deps:
1124 - grpc_test_util
1125 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001126 - gpr_test_util
1127 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001128 platforms:
1129 - mac
1130 - linux
1131 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001132- name: endpoint_pair_test
1133 build: test
1134 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001135 src:
1136 - test/core/iomgr/endpoint_pair_test.c
1137 deps:
1138 - grpc_test_util
1139 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001140 - gpr_test_util
1141 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001142- name: fd_conservation_posix_test
1143 build: test
1144 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001145 src:
1146 - test/core/iomgr/fd_conservation_posix_test.c
1147 deps:
1148 - grpc_test_util
1149 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001150 - gpr_test_util
1151 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001152 platforms:
1153 - mac
1154 - linux
1155 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001156- name: fd_posix_test
1157 build: test
1158 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001159 src:
1160 - test/core/iomgr/fd_posix_test.c
1161 deps:
1162 - grpc_test_util
1163 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001164 - gpr_test_util
1165 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001166 platforms:
1167 - mac
1168 - linux
1169 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001170- name: fling_client
1171 build: test
1172 run: false
1173 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001174 src:
1175 - test/core/fling/client.c
1176 deps:
1177 - grpc_test_util
1178 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001179 - gpr_test_util
1180 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001181- name: fling_server
1182 build: test
1183 run: false
1184 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001185 src:
1186 - test/core/fling/server.c
1187 deps:
1188 - grpc_test_util
1189 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001190 - gpr_test_util
1191 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001192- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001193 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001194 build: test
1195 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001196 src:
1197 - test/core/fling/fling_stream_test.c
1198 deps:
1199 - grpc_test_util
1200 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001201 - gpr_test_util
1202 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001203 platforms:
1204 - mac
1205 - linux
1206 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001207- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001208 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001209 build: test
1210 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001211 src:
1212 - test/core/fling/fling_test.c
1213 deps:
1214 - grpc_test_util
1215 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001216 - gpr_test_util
1217 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001218 platforms:
1219 - mac
1220 - linux
1221 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001222- name: gen_hpack_tables
1223 build: tool
1224 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001225 src:
1226 - tools/codegen/core/gen_hpack_tables.c
1227 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001228 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001229 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001230- name: gen_legal_metadata_characters
1231 build: tool
1232 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001233 src:
1234 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001235 deps: []
Craig Tillerfba79f22015-11-23 11:06:55 -08001236- name: gpr_avl_test
1237 build: test
1238 language: c
1239 src:
1240 - test/core/support/avl_test.c
1241 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001242 - gpr_test_util
1243 - gpr
Craig Tiller58270d52016-03-18 15:57:49 -07001244- name: gpr_backoff_test
1245 build: test
1246 language: c
1247 src:
1248 - test/core/support/backoff_test.c
1249 deps:
1250 - gpr_test_util
1251 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001252- name: gpr_cmdline_test
1253 build: test
1254 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001255 src:
1256 - test/core/support/cmdline_test.c
1257 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001258 - gpr_test_util
1259 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001260- name: gpr_cpu_test
1261 build: test
1262 language: c
1263 src:
1264 - test/core/support/cpu_test.c
1265 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001266 - gpr_test_util
1267 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001268- name: gpr_env_test
1269 build: test
1270 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001271 src:
1272 - test/core/support/env_test.c
1273 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001274 - gpr_test_util
1275 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001276- name: gpr_histogram_test
1277 build: test
1278 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001279 src:
1280 - test/core/support/histogram_test.c
1281 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001282 - gpr_test_util
1283 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001284- name: gpr_host_port_test
1285 build: test
1286 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001287 src:
1288 - test/core/support/host_port_test.c
1289 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001290 - gpr_test_util
1291 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001292- name: gpr_load_file_test
1293 build: test
1294 language: c
1295 src:
1296 - test/core/support/load_file_test.c
1297 deps:
1298 - gpr_test_util
1299 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001300- name: gpr_log_test
1301 build: test
1302 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001303 src:
1304 - test/core/support/log_test.c
1305 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001306 - gpr_test_util
1307 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001308- name: gpr_slice_buffer_test
1309 build: test
1310 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001311 src:
1312 - test/core/support/slice_buffer_test.c
1313 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001314 - gpr_test_util
1315 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001316- name: gpr_slice_test
1317 build: test
1318 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001319 src:
1320 - test/core/support/slice_test.c
1321 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001322 - gpr_test_util
1323 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001324- name: gpr_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001325 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001326 build: test
1327 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001328 src:
1329 - test/core/support/stack_lockfree_test.c
1330 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001331 - gpr_test_util
1332 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001333- name: gpr_string_test
1334 build: test
1335 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001336 src:
1337 - test/core/support/string_test.c
1338 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001339 - gpr_test_util
1340 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001341- name: gpr_sync_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001342 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001343 build: test
1344 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001345 src:
1346 - test/core/support/sync_test.c
1347 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001348 - gpr_test_util
1349 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001350- name: gpr_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001351 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001352 build: test
1353 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001354 src:
1355 - test/core/support/thd_test.c
1356 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001357 - gpr_test_util
1358 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001359- name: gpr_time_test
1360 build: test
1361 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001362 src:
1363 - test/core/support/time_test.c
1364 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001365 - gpr_test_util
1366 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001367- name: gpr_tls_test
1368 build: test
1369 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001370 src:
1371 - test/core/support/tls_test.c
1372 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001373 - gpr_test_util
1374 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001375- name: gpr_useful_test
1376 build: test
1377 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001378 src:
1379 - test/core/support/useful_test.c
1380 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001381 - gpr_test_util
1382 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001383- name: grpc_auth_context_test
1384 build: test
1385 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001386 src:
1387 - test/core/security/auth_context_test.c
1388 deps:
1389 - grpc_test_util
1390 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001391 - gpr_test_util
1392 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001393- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001394 build: test
1395 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001396 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001397 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001398 deps:
1399 - grpc_test_util
1400 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001401 - gpr_test_util
1402 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001403- name: grpc_byte_buffer_reader_test
1404 build: test
1405 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001406 src:
1407 - test/core/surface/byte_buffer_reader_test.c
1408 deps:
1409 - grpc_test_util
1410 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001411 - gpr_test_util
1412 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001413- name: grpc_channel_args_test
1414 build: test
1415 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001416 src:
1417 - test/core/channel/channel_args_test.c
1418 deps:
1419 - grpc_test_util
1420 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001421 - gpr_test_util
1422 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001423- name: grpc_channel_stack_test
1424 build: test
1425 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001426 src:
1427 - test/core/channel/channel_stack_test.c
1428 deps:
1429 - grpc_test_util
1430 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001431 - gpr_test_util
1432 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001433- name: grpc_completion_queue_test
1434 build: test
1435 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001436 src:
1437 - test/core/surface/completion_queue_test.c
1438 deps:
1439 - grpc_test_util
1440 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001441 - gpr_test_util
1442 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001443- name: grpc_create_jwt
1444 build: tool
1445 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001446 src:
1447 - test/core/security/create_jwt.c
1448 deps:
1449 - grpc_test_util
1450 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001451 - gpr_test_util
1452 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001453- name: grpc_credentials_test
1454 build: test
1455 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001456 src:
1457 - test/core/security/credentials_test.c
1458 deps:
1459 - grpc_test_util
1460 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001461 - gpr_test_util
1462 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001463- name: grpc_fetch_oauth2
1464 build: tool
1465 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001466 src:
1467 - test/core/security/fetch_oauth2.c
1468 deps:
1469 - grpc_test_util
1470 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001471 - gpr_test_util
1472 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001473- name: grpc_invalid_channel_args_test
1474 build: test
1475 language: c
1476 src:
1477 - test/core/surface/invalid_channel_args_test.c
1478 deps:
1479 - grpc_test_util
1480 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001481 - gpr_test_util
1482 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001483- name: grpc_json_token_test
1484 build: test
1485 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001486 src:
1487 - test/core/security/json_token_test.c
1488 deps:
1489 - grpc_test_util
1490 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001491 - gpr_test_util
1492 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001493 platforms:
1494 - linux
1495 - posix
1496 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001497- name: grpc_jwt_verifier_test
1498 build: test
1499 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001500 src:
1501 - test/core/security/jwt_verifier_test.c
1502 deps:
1503 - grpc_test_util
1504 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001505 - gpr_test_util
1506 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001507- name: grpc_print_google_default_creds_token
1508 build: tool
1509 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001510 src:
1511 - test/core/security/print_google_default_creds_token.c
1512 deps:
1513 - grpc_test_util
1514 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001515 - gpr_test_util
1516 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001517- name: grpc_security_connector_test
1518 build: test
1519 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001520 src:
1521 - test/core/security/security_connector_test.c
1522 deps:
1523 - grpc_test_util
1524 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001525 - gpr_test_util
1526 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001527- name: grpc_verify_jwt
1528 build: tool
1529 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001530 src:
1531 - test/core/security/verify_jwt.c
1532 deps:
1533 - grpc_test_util
1534 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001535 - gpr_test_util
1536 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001537- name: hpack_parser_test
1538 build: test
1539 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001540 src:
1541 - test/core/transport/chttp2/hpack_parser_test.c
1542 deps:
1543 - grpc_test_util
1544 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001545 - gpr_test_util
1546 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001547- name: hpack_table_test
1548 build: test
1549 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001550 src:
1551 - test/core/transport/chttp2/hpack_table_test.c
1552 deps:
1553 - grpc_test_util
1554 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001555 - gpr_test_util
1556 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001557- name: httpcli_format_request_test
1558 build: test
1559 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001560 src:
1561 - test/core/httpcli/format_request_test.c
1562 deps:
1563 - grpc_test_util
1564 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001565 - gpr_test_util
1566 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001567- name: httpcli_parser_test
1568 build: test
1569 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001570 src:
1571 - test/core/httpcli/parser_test.c
1572 deps:
1573 - grpc_test_util
1574 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001575 - gpr_test_util
1576 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001577- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001578 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001579 build: test
1580 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001581 src:
1582 - test/core/httpcli/httpcli_test.c
1583 deps:
1584 - grpc_test_util
1585 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001586 - gpr_test_util
1587 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001588 platforms:
1589 - mac
1590 - linux
1591 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001592- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001593 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001594 build: test
1595 language: c
1596 src:
1597 - test/core/httpcli/httpscli_test.c
1598 deps:
1599 - grpc_test_util
1600 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001601 - gpr_test_util
1602 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001603 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001604 - linux
yang-gf1183302015-12-07 16:02:05 -08001605- name: init_test
1606 build: test
1607 language: c
1608 src:
1609 - test/core/surface/init_test.c
1610 deps:
1611 - grpc_test_util
1612 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001613 - gpr_test_util
1614 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001615- name: invalid_call_argument_test
1616 build: test
1617 language: c
1618 src:
1619 - test/core/end2end/invalid_call_argument_test.c
1620 deps:
1621 - grpc_test_util
1622 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001623 - gpr_test_util
1624 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001625- name: json_rewrite
1626 build: test
1627 run: false
1628 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001629 src:
1630 - test/core/json/json_rewrite.c
1631 deps:
1632 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001633 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001634- name: json_rewrite_test
1635 build: test
1636 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001637 src:
1638 - test/core/json/json_rewrite_test.c
1639 deps:
1640 - grpc_test_util
1641 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001642 - gpr_test_util
1643 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001644- name: json_stream_error_test
1645 build: test
1646 language: c
1647 src:
1648 - test/core/json/json_stream_error_test.c
1649 deps:
1650 - grpc_test_util
1651 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001652 - gpr_test_util
1653 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001654- name: json_test
1655 build: test
1656 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001657 src:
1658 - test/core/json/json_test.c
1659 deps:
1660 - grpc_test_util
1661 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001662 - gpr_test_util
1663 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001664- name: lame_client_test
1665 build: test
1666 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001667 src:
1668 - test/core/surface/lame_client_test.c
1669 deps:
1670 - grpc_test_util
1671 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001672 - gpr_test_util
1673 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001674- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001675 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001676 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001677 build: test
1678 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001679 src:
1680 - test/core/client_config/lb_policies_test.c
1681 deps:
1682 - grpc_test_util
1683 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001684 - gpr_test_util
1685 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001686- name: low_level_ping_pong_benchmark
1687 build: benchmark
1688 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001689 src:
1690 - test/core/network_benchmarks/low_level_ping_pong.c
1691 deps:
1692 - grpc_test_util
1693 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001694 - gpr_test_util
1695 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001696 platforms:
1697 - mac
1698 - linux
1699 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001700- name: message_compress_test
1701 build: test
1702 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001703 src:
1704 - test/core/compression/message_compress_test.c
1705 deps:
1706 - grpc_test_util
1707 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001708 - gpr_test_util
1709 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001710- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001711 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001712 build: test
1713 language: c
1714 src:
1715 - test/core/census/mlog_test.c
1716 deps:
1717 - grpc_test_util
1718 - grpc
1719 - gpr_test_util
1720 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001721- name: multiple_server_queues_test
1722 build: test
1723 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001724 src:
1725 - test/core/end2end/multiple_server_queues_test.c
1726 deps:
1727 - grpc_test_util
1728 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001729 - gpr_test_util
1730 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001731- name: murmur_hash_test
1732 build: test
1733 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001734 src:
1735 - test/core/support/murmur_hash_test.c
1736 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001737 - gpr_test_util
1738 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001739- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001740 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001741 build: test
1742 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001743 src:
1744 - test/core/end2end/no_server_test.c
1745 deps:
1746 - grpc_test_util
1747 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001748 - gpr_test_util
1749 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001750- name: resolve_address_test
1751 build: test
1752 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001753 src:
1754 - test/core/iomgr/resolve_address_test.c
1755 deps:
1756 - grpc_test_util
1757 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001758 - gpr_test_util
1759 - gpr
yang-gd482e592015-12-10 14:04:00 -08001760- name: secure_channel_create_test
1761 build: test
1762 language: c
1763 src:
1764 - test/core/surface/secure_channel_create_test.c
1765 deps:
1766 - grpc_test_util
1767 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001768 - gpr_test_util
1769 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001770- name: secure_endpoint_test
1771 build: test
1772 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001773 src:
1774 - test/core/security/secure_endpoint_test.c
1775 deps:
1776 - grpc_test_util
1777 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001778 - gpr_test_util
1779 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08001780- name: server_chttp2_test
1781 build: test
1782 language: c
1783 src:
1784 - test/core/surface/server_chttp2_test.c
1785 deps:
1786 - grpc_test_util
1787 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001788 - gpr_test_util
1789 - gpr
yang-gc3d94fb2015-12-10 14:38:00 -08001790- name: server_test
1791 build: test
1792 language: c
1793 src:
1794 - test/core/surface/server_test.c
1795 deps:
1796 - grpc_test_util
1797 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001798 - gpr_test_util
1799 - gpr
yang-gc9fca182015-11-06 16:41:33 -08001800- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001801 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08001802 build: test
1803 language: c
1804 src:
1805 - test/core/client_config/set_initial_connect_string_test.c
1806 deps:
1807 - test_tcp_server
1808 - grpc_test_util
1809 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001810 - gpr_test_util
1811 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08001812- name: sockaddr_resolver_test
1813 build: test
1814 language: c
1815 src:
1816 - test/core/client_config/resolvers/sockaddr_resolver_test.c
1817 deps:
1818 - grpc_test_util
1819 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001820 - gpr_test_util
1821 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001822- name: sockaddr_utils_test
1823 build: test
1824 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001825 src:
1826 - test/core/iomgr/sockaddr_utils_test.c
1827 deps:
1828 - grpc_test_util
1829 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001830 - gpr_test_util
1831 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08001832- name: socket_utils_test
1833 build: test
1834 language: c
1835 src:
1836 - test/core/iomgr/socket_utils_test.c
1837 deps:
1838 - grpc_test_util
1839 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001840 - gpr_test_util
1841 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08001842 platforms:
1843 - mac
1844 - linux
1845 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001846- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001847 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001848 build: test
1849 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001850 src:
1851 - test/core/iomgr/tcp_client_posix_test.c
1852 deps:
1853 - grpc_test_util
1854 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001855 - gpr_test_util
1856 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001857 platforms:
1858 - mac
1859 - linux
1860 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001861- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001862 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001863 build: test
1864 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001865 src:
1866 - test/core/iomgr/tcp_posix_test.c
1867 deps:
1868 - grpc_test_util
1869 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001870 - gpr_test_util
1871 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001872 platforms:
1873 - mac
1874 - linux
1875 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001876- name: tcp_server_posix_test
1877 build: test
1878 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001879 src:
1880 - test/core/iomgr/tcp_server_posix_test.c
1881 deps:
1882 - grpc_test_util
1883 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001884 - gpr_test_util
1885 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001886 platforms:
1887 - mac
1888 - linux
1889 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001890- name: time_averaged_stats_test
1891 build: test
1892 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001893 src:
1894 - test/core/iomgr/time_averaged_stats_test.c
1895 deps:
1896 - grpc_test_util
1897 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001898 - gpr_test_util
1899 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001900- name: timeout_encoding_test
1901 build: test
1902 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001903 src:
1904 - test/core/transport/chttp2/timeout_encoding_test.c
1905 deps:
1906 - grpc_test_util
1907 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001908 - gpr_test_util
1909 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001910- name: timer_heap_test
1911 build: test
1912 language: c
1913 src:
1914 - test/core/iomgr/timer_heap_test.c
1915 deps:
1916 - grpc_test_util
1917 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001918 - gpr_test_util
1919 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001920- name: timer_list_test
1921 build: test
1922 language: c
1923 src:
1924 - test/core/iomgr/timer_list_test.c
1925 deps:
1926 - grpc_test_util
1927 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001928 - gpr_test_util
1929 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001930- name: timers_test
1931 build: test
1932 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001933 src:
1934 - test/core/profiling/timers_test.c
1935 deps:
1936 - grpc_test_util
1937 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001938 - gpr_test_util
1939 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08001940- name: transport_connectivity_state_test
1941 build: test
1942 language: c
1943 src:
1944 - test/core/transport/connectivity_state_test.c
1945 deps:
1946 - grpc_test_util
1947 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001948 - gpr_test_util
1949 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001950- name: transport_metadata_test
1951 build: test
1952 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001953 src:
1954 - test/core/transport/metadata_test.c
1955 deps:
1956 - grpc_test_util
1957 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001958 - gpr_test_util
1959 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001960- name: transport_security_test
1961 build: test
1962 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001963 src:
1964 - test/core/tsi/transport_security_test.c
1965 deps:
1966 - grpc_test_util
1967 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001968 - gpr_test_util
1969 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001970 platforms:
1971 - linux
1972 - posix
1973 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001974- name: udp_server_test
1975 build: test
1976 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001977 src:
1978 - test/core/iomgr/udp_server_test.c
1979 deps:
1980 - grpc_test_util
1981 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001982 - gpr_test_util
1983 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001984 platforms:
1985 - mac
1986 - linux
1987 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001988- name: uri_parser_test
1989 build: test
1990 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001991 src:
1992 - test/core/client_config/uri_parser_test.c
1993 deps:
1994 - grpc_test_util
1995 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001996 - gpr_test_util
1997 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07001998- name: workqueue_test
1999 build: test
2000 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002001 src:
2002 - test/core/iomgr/workqueue_test.c
2003 deps:
2004 - grpc_test_util
2005 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002006 - gpr_test_util
2007 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002008 platforms:
2009 - mac
2010 - linux
2011 - posix
vjpai04e992a2016-02-10 16:58:38 -08002012- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002013 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002014 build: test
2015 language: c++
2016 src:
2017 - test/cpp/common/alarm_cpp_test.cc
2018 deps:
2019 - grpc++_test_util
2020 - grpc_test_util
2021 - grpc++
2022 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002023 - gpr_test_util
2024 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002025- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002026 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002027 build: test
2028 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002029 src:
2030 - test/cpp/end2end/async_end2end_test.cc
2031 deps:
2032 - grpc++_test_util
2033 - grpc_test_util
2034 - grpc++
2035 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002036 - gpr_test_util
2037 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002038- name: async_streaming_ping_pong_test
2039 build: test
2040 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002041 src:
2042 - test/cpp/qps/async_streaming_ping_pong_test.cc
2043 deps:
2044 - qps
2045 - grpc++_test_util
2046 - grpc_test_util
2047 - grpc++
2048 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002049 - gpr_test_util
2050 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002051 platforms:
2052 - mac
2053 - linux
2054 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002055- name: async_unary_ping_pong_test
2056 build: test
2057 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002058 src:
2059 - test/cpp/qps/async_unary_ping_pong_test.cc
2060 deps:
2061 - qps
2062 - grpc++_test_util
2063 - grpc_test_util
2064 - grpc++
2065 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002066 - gpr_test_util
2067 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002068 platforms:
2069 - mac
2070 - linux
2071 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002072- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002073 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002074 build: test
2075 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002076 src:
2077 - test/cpp/common/auth_property_iterator_test.cc
2078 deps:
2079 - grpc++_test_util
2080 - grpc_test_util
2081 - grpc++
2082 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002083 - gpr_test_util
2084 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002085- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002086 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002087 build: test
2088 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002089 src:
yang-g52705592015-11-25 11:45:33 -08002090 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002091 deps:
2092 - grpc++
2093 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002094 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002095- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002096 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002097 build: test
2098 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002099 src:
2100 - test/cpp/util/cli_call_test.cc
2101 deps:
2102 - grpc++_test_util
2103 - grpc_test_util
2104 - grpc++
2105 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002106 - gpr_test_util
2107 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002108- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002109 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002110 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002111 build: test
2112 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002113 src:
2114 - test/cpp/end2end/client_crash_test.cc
2115 deps:
2116 - grpc++_test_util
2117 - grpc_test_util
2118 - grpc++
2119 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002120 - gpr_test_util
2121 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002122 platforms:
2123 - mac
2124 - linux
2125 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002126- name: client_crash_test_server
2127 build: test
2128 run: false
2129 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002130 src:
2131 - test/cpp/end2end/client_crash_test_server.cc
2132 deps:
2133 - grpc++_test_util
2134 - grpc_test_util
2135 - grpc++
2136 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002137 - gpr_test_util
2138 - gpr
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002139- name: codegen_test
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002140 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002141 build: test
2142 language: c++
2143 src:
2144 - src/proto/grpc/testing/control.proto
2145 - src/proto/grpc/testing/messages.proto
2146 - src/proto/grpc/testing/payloads.proto
2147 - src/proto/grpc/testing/perf_db.proto
2148 - src/proto/grpc/testing/services.proto
2149 - src/proto/grpc/testing/stats.proto
2150 - test/cpp/codegen/codegen_test.cc
2151 deps:
2152 - grpc++_codegen_lib
Craig Tillerbf4b2242015-08-31 15:53:53 -07002153- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002154 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002155 build: test
2156 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002157 src:
2158 - test/cpp/client/credentials_test.cc
2159 deps:
2160 - grpc++
2161 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002162 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002163- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002164 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002165 build: test
2166 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002167 src:
2168 - test/cpp/util/byte_buffer_test.cc
2169 deps:
2170 - grpc_test_util
2171 - grpc++
2172 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002173 - gpr_test_util
2174 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002175- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002176 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002177 build: test
2178 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002179 src:
2180 - test/cpp/util/slice_test.cc
2181 deps:
2182 - grpc_test_util
2183 - grpc++
2184 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002185 - gpr_test_util
2186 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002187- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002188 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002189 build: test
2190 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002191 src:
2192 - test/cpp/util/string_ref_test.cc
2193 deps:
2194 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002195- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002196 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002197 build: test
2198 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002199 src:
2200 - test/cpp/util/time_test.cc
2201 deps:
2202 - grpc_test_util
2203 - grpc++
2204 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002205 - gpr_test_util
2206 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002207- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002208 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002209 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002210 build: test
2211 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002212 src:
2213 - test/cpp/end2end/end2end_test.cc
2214 deps:
2215 - grpc++_test_util
2216 - grpc_test_util
2217 - grpc++
2218 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002219 - gpr_test_util
2220 - gpr
vjpai083dc622016-01-11 09:41:17 -08002221- name: generic_async_streaming_ping_pong_test
2222 build: test
2223 language: c++
2224 src:
2225 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2226 deps:
2227 - qps
2228 - grpc++_test_util
2229 - grpc_test_util
2230 - grpc++
2231 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002232 - gpr_test_util
2233 - gpr
vjpai083dc622016-01-11 09:41:17 -08002234 platforms:
2235 - mac
2236 - linux
2237 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002238- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002239 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002240 build: test
2241 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002242 src:
2243 - test/cpp/end2end/generic_end2end_test.cc
2244 deps:
2245 - grpc++_test_util
2246 - grpc_test_util
2247 - grpc++
2248 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002249 - gpr_test_util
2250 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002251- name: grpc_cli
2252 build: test
2253 run: false
2254 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002255 src:
2256 - test/cpp/util/grpc_cli.cc
2257 deps:
2258 - grpc++_test_util
2259 - grpc_test_util
2260 - grpc++
2261 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002262 - gpr_test_util
2263 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002264 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002265- name: grpc_cpp_plugin
2266 build: protoc
2267 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002268 src:
2269 - src/compiler/cpp_plugin.cc
2270 deps:
2271 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002272 secure: false
2273 vs_config_type: Application
2274 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2275- name: grpc_csharp_plugin
2276 build: protoc
2277 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002278 src:
2279 - src/compiler/csharp_plugin.cc
2280 deps:
2281 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002282 secure: false
2283 vs_config_type: Application
2284 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
2285- name: grpc_objective_c_plugin
2286 build: protoc
2287 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002288 src:
2289 - src/compiler/objective_c_plugin.cc
2290 deps:
2291 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002292 secure: false
2293 vs_config_type: Application
2294 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2295- name: grpc_python_plugin
2296 build: protoc
2297 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002298 src:
2299 - src/compiler/python_plugin.cc
2300 deps:
2301 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002302 secure: false
2303 vs_config_type: Application
2304 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2305- name: grpc_ruby_plugin
2306 build: protoc
2307 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002308 src:
2309 - src/compiler/ruby_plugin.cc
2310 deps:
2311 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002312 secure: false
2313 vs_config_type: Application
2314 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002315- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002316 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002317 build: test
2318 language: c++
2319 src:
2320 - src/proto/grpc/lb/v0/load_balancer.proto
2321 - test/cpp/grpclb/grpclb_api_test.cc
2322 deps:
2323 - grpc++_test_util
2324 - grpc_test_util
2325 - grpc++
2326 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002327- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002328 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002329 build: test
2330 language: c++
2331 src:
2332 - test/cpp/end2end/hybrid_end2end_test.cc
2333 deps:
2334 - grpc++_test_util
2335 - grpc_test_util
2336 - grpc++
2337 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002338 - gpr_test_util
2339 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002340- name: interop_client
2341 build: test
2342 run: false
2343 language: c++
2344 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002345 deps:
2346 - interop_client_main
2347 - interop_client_helper
2348 - grpc++_test_util
2349 - grpc_test_util
2350 - grpc++
2351 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002352 - gpr_test_util
2353 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002354 - grpc++_test_config
2355 platforms:
2356 - mac
2357 - linux
2358 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002359- name: interop_server
2360 build: test
2361 run: false
2362 language: c++
2363 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002364 deps:
2365 - interop_server_main
2366 - interop_server_helper
2367 - grpc++_test_util
2368 - grpc_test_util
2369 - grpc++
2370 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002371 - gpr_test_util
2372 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002373 - grpc++_test_config
2374 platforms:
2375 - mac
2376 - linux
2377 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002378- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002379 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002380 build: test
2381 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002382 src:
2383 - test/cpp/interop/interop_test.cc
2384 deps:
2385 - grpc_test_util
2386 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002387 - gpr_test_util
2388 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002389 platforms:
2390 - mac
2391 - linux
2392 - posix
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002393- name: metrics_client
2394 build: test
2395 run: false
2396 language: c++
2397 headers:
2398 - test/cpp/util/metrics_server.h
2399 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002400 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002401 - test/cpp/interop/metrics_client.cc
2402 deps:
2403 - grpc++
2404 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002405 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002406 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002407- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002408 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002409 build: test
2410 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002411 src:
2412 - test/cpp/end2end/mock_test.cc
2413 deps:
2414 - grpc++_test_util
2415 - grpc_test_util
2416 - grpc++
2417 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002418 - gpr_test_util
2419 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002420- name: qps_driver
2421 build: benchmark
2422 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002423 src:
2424 - test/cpp/qps/qps_driver.cc
2425 deps:
2426 - qps
2427 - grpc++_test_util
2428 - grpc_test_util
2429 - grpc++
2430 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002431 - gpr_test_util
2432 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002433 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002434- name: qps_interarrival_test
2435 build: test
2436 run: false
2437 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002438 src:
2439 - test/cpp/qps/qps_interarrival_test.cc
2440 deps:
2441 - qps
2442 - grpc++_test_util
2443 - grpc_test_util
2444 - grpc++
2445 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002446 - gpr_test_util
2447 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002448 platforms:
2449 - mac
2450 - linux
2451 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002452- name: qps_openloop_test
Craig Tiller58270d52016-03-18 15:57:49 -07002453 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002454 build: test
2455 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002456 src:
2457 - test/cpp/qps/qps_openloop_test.cc
2458 deps:
2459 - qps
2460 - grpc++_test_util
2461 - grpc_test_util
2462 - grpc++
2463 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002464 - gpr_test_util
2465 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002466 - grpc++_test_config
vjpai5c0b6dd2016-03-18 15:46:28 -07002467 exclude_configs:
2468 - tsan
Craig Tiller25834342015-09-25 08:08:24 -07002469 platforms:
2470 - mac
2471 - linux
2472 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002473- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002474 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002475 build: test
2476 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002477 src:
2478 - test/cpp/qps/qps_test.cc
2479 deps:
2480 - qps
2481 - grpc++_test_util
2482 - grpc_test_util
2483 - grpc++
2484 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002485 - gpr_test_util
2486 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002487 - grpc++_test_config
vjpai5c0b6dd2016-03-18 15:46:28 -07002488 exclude_configs:
2489 - tsan
Craig Tiller25834342015-09-25 08:08:24 -07002490 platforms:
2491 - mac
2492 - linux
2493 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002494- name: qps_worker
2495 build: benchmark
2496 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002497 headers:
2498 - test/cpp/qps/client.h
2499 - test/cpp/qps/server.h
2500 src:
2501 - test/cpp/qps/worker.cc
2502 deps:
2503 - qps
2504 - grpc++_test_util
2505 - grpc_test_util
2506 - grpc++
2507 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002508 - gpr_test_util
2509 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002510 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002511- name: reconnect_interop_client
2512 build: test
2513 run: false
2514 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002515 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002516 - src/proto/grpc/testing/empty.proto
2517 - src/proto/grpc/testing/messages.proto
2518 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002519 - test/cpp/interop/reconnect_interop_client.cc
2520 deps:
2521 - grpc++_test_util
2522 - grpc_test_util
2523 - grpc++
2524 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002525 - gpr_test_util
2526 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002527 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002528- name: reconnect_interop_server
2529 build: test
2530 run: false
2531 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002532 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002533 - src/proto/grpc/testing/empty.proto
2534 - src/proto/grpc/testing/messages.proto
2535 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002536 - test/cpp/interop/reconnect_interop_server.cc
2537 deps:
2538 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002539 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002540 - grpc++_test_util
2541 - grpc_test_util
2542 - grpc++
2543 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002544 - gpr_test_util
2545 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002546 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002547- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002548 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002549 build: test
2550 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002551 src:
2552 - test/cpp/common/secure_auth_context_test.cc
2553 deps:
2554 - grpc++_test_util
2555 - grpc_test_util
2556 - grpc++
2557 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002558 - gpr_test_util
2559 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002560- name: secure_sync_unary_ping_pong_test
2561 build: test
2562 language: c++
2563 src:
2564 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2565 deps:
2566 - qps
2567 - grpc++_test_util
2568 - grpc_test_util
2569 - grpc++
2570 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002571 - gpr_test_util
2572 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002573 platforms:
2574 - mac
2575 - linux
2576 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002577- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002578 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002579 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002580 build: test
2581 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002582 src:
2583 - test/cpp/end2end/server_crash_test.cc
2584 deps:
2585 - grpc++_test_util
2586 - grpc_test_util
2587 - grpc++
2588 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002589 - gpr_test_util
2590 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002591 platforms:
2592 - mac
2593 - linux
2594 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002595- name: server_crash_test_client
2596 build: test
2597 run: false
2598 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002599 src:
2600 - test/cpp/end2end/server_crash_test_client.cc
2601 deps:
2602 - grpc++_test_util
2603 - grpc_test_util
2604 - grpc++
2605 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002606 - gpr_test_util
2607 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002608- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002609 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002610 build: test
2611 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002612 src:
2613 - test/cpp/end2end/shutdown_test.cc
2614 deps:
2615 - grpc++_test_util
2616 - grpc_test_util
2617 - grpc++
2618 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002619 - gpr_test_util
2620 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002621- name: status_test
2622 build: test
2623 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002624 src:
2625 - test/cpp/util/status_test.cc
2626 deps:
2627 - grpc_test_util
2628 - grpc++
2629 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002630 - gpr_test_util
2631 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002632- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002633 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002634 build: test
2635 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002636 src:
2637 - test/cpp/end2end/streaming_throughput_test.cc
2638 deps:
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 platforms:
2646 - mac
2647 - linux
2648 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002649- name: stress_test
2650 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07002651 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002652 language: c++
2653 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07002654 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002655 - test/cpp/interop/interop_client.h
2656 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002657 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002658 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002659 - src/proto/grpc/testing/empty.proto
2660 - src/proto/grpc/testing/messages.proto
2661 - src/proto/grpc/testing/metrics.proto
2662 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002663 - test/cpp/interop/interop_client.cc
2664 - test/cpp/interop/stress_interop_client.cc
2665 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002666 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002667 deps:
2668 - grpc++_test_util
2669 - grpc_test_util
2670 - grpc++
2671 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002672 - gpr_test_util
2673 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002674 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002675- name: sync_streaming_ping_pong_test
2676 build: test
2677 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002678 src:
2679 - test/cpp/qps/sync_streaming_ping_pong_test.cc
2680 deps:
2681 - qps
2682 - grpc++_test_util
2683 - grpc_test_util
2684 - grpc++
2685 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002686 - gpr_test_util
2687 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002688 platforms:
2689 - mac
2690 - linux
2691 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002692- name: sync_unary_ping_pong_test
2693 build: test
2694 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002695 src:
2696 - test/cpp/qps/sync_unary_ping_pong_test.cc
2697 deps:
2698 - qps
2699 - grpc++_test_util
2700 - grpc_test_util
2701 - grpc++
2702 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002703 - gpr_test_util
2704 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002705 platforms:
2706 - mac
2707 - linux
2708 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002709- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002710 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002711 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07002712 build: test
2713 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002714 src:
2715 - test/cpp/end2end/thread_stress_test.cc
2716 deps:
2717 - grpc++_test_util
2718 - grpc_test_util
2719 - grpc++
2720 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002721 - gpr_test_util
2722 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002723- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002724 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002725 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07002726 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002727 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002728 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002729 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07002730 - test/cpp/end2end/zookeeper_test.cc
2731 deps:
2732 - grpc++_test_util
2733 - grpc_test_util
2734 - grpc++
2735 - grpc_zookeeper
2736 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002737 - gpr_test_util
2738 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002739 external_deps:
2740 - zookeeper
2741 platforms:
2742 - linux
Craig Tillerab230452016-01-04 08:18:43 -08002743- name: public_headers_must_be_c89
2744 build: test
2745 language: c89
2746 src:
2747 - test/core/surface/public_headers_must_be_c89.c
2748 deps:
2749 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002750 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002751vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07002752- linkage: static
2753 name: grpc.dependencies.zlib
2754 props: false
2755 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08002756 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08002757- linkage: static
2758 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07002759 props: true
2760 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08002761 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07002762- name: gflags
2763 props: false
2764 redist: false
2765 version: 2.1.2.1
2766- name: gtest
2767 props: false
2768 redist: false
2769 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08002770configs:
2771 asan:
2772 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002773 CPPFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002774 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002775 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002776 LD: clang
2777 LDFLAGS: -fsanitize=address
2778 LDXX: clang++
2779 compile_the_world: true
2780 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08002781 ASAN_OPTIONS: detect_leaks=1:color=always
2782 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08002783 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08002784 asan-noleaks:
2785 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002786 CPPFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002787 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002788 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002789 LD: clang
2790 LDFLAGS: -fsanitize=address
2791 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08002792 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08002793 test_environ:
2794 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08002795 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08002796 basicprof:
2797 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
2798 DEFINES: NDEBUG
2799 dbg:
2800 CPPFLAGS: -O0
2801 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08002802 easan:
2803 CC: clang
2804 CPPFLAGS: -O0 -fsanitize=address -fno-omit-frame-pointer -Wno-unused-command-line-argument
2805 -DGPR_NO_DIRECT_SYSCALLS
2806 CXX: clang++
2807 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
2808 LD: clang
2809 LDFLAGS: -fsanitize=address
2810 LDXX: clang++
2811 compile_the_world: true
2812 test_environ:
2813 ASAN_OPTIONS: detect_leaks=1:color=always
2814 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
2815 timeout_multiplier: 3
2816 edbg:
2817 CPPFLAGS: -O0
2818 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
2819 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08002820 CC: clang
2821 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
2822 -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
2823 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08002824 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08002825 LD: clang
2826 LDFLAGS: -fsanitize=thread -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
2827 LDXX: clang++
2828 compile_the_world: true
2829 test_environ:
2830 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
2831 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08002832 gcov:
2833 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002834 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08002835 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08002836 DEFINES: _DEBUG DEBUG GPR_GCOV
2837 LD: gcc
2838 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
2839 LDXX: g++
2840 helgrind:
2841 CPPFLAGS: -O0
2842 DEFINES: _DEBUG DEBUG
2843 LDFLAGS: -rdynamic
2844 timeout_multiplier: 20
2845 valgrind: --tool=helgrind
2846 memcheck:
2847 CPPFLAGS: -O0
2848 DEFINES: _DEBUG DEBUG
2849 LDFLAGS: -rdynamic
2850 timeout_multiplier: 10
2851 valgrind: --tool=memcheck --leak-check=full
2852 msan:
2853 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002854 CPPFLAGS: -O0 -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer
Craig Tillera0f85172016-01-20 15:56:06 -08002855 -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1 -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002856 -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002857 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002858 DEFINES: NDEBUG
2859 LD: clang
2860 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
2861 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
2862 LDXX: clang++
2863 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08002864 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08002865 mutrace:
2866 CPPFLAGS: -O0
2867 DEFINES: _DEBUG DEBUG
2868 LDFLAGS: -rdynamic
2869 opt:
2870 CPPFLAGS: -O2
2871 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08002872 stapprof:
2873 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
2874 DEFINES: NDEBUG
2875 tsan:
2876 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002877 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller954e9462016-02-01 17:20:57 -08002878 -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002879 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002880 LD: clang
2881 LDFLAGS: -fsanitize=thread -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
2882 LDXX: clang++
2883 compile_the_world: true
2884 test_environ:
2885 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08002886 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08002887 ubsan:
2888 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002889 CPPFLAGS: -O1 -fsanitize=undefined -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08002890 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002891 DEFINES: NDEBUG
2892 LD: clang
2893 LDFLAGS: -fsanitize=undefined
2894 LDXX: clang++
2895 compile_the_world: true
2896 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002897defaults:
2898 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01002899 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Nicolas "Pixel" Noble17230442016-01-29 01:46:19 +01002900 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002901 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01002902 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002903 global:
2904 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
2905 LDFLAGS: -g
2906 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01002907 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01002908 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08002909node_modules:
2910- deps:
2911 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002912 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08002913 - boringssl
2914 - z
murgatroid9994a75412015-11-19 14:04:53 -08002915 headers:
2916 - src/node/ext/byte_buffer.h
2917 - src/node/ext/call.h
2918 - src/node/ext/call_credentials.h
2919 - src/node/ext/channel.h
2920 - src/node/ext/channel_credentials.h
2921 - src/node/ext/completion_queue_async_worker.h
2922 - src/node/ext/server.h
2923 - src/node/ext/server_credentials.h
2924 - src/node/ext/timeval.h
2925 js:
2926 - src/node/index.js
2927 - src/node/src/client.js
2928 - src/node/src/common.js
2929 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08002930 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08002931 - src/node/src/metadata.js
2932 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08002933 name: grpc_node
2934 src:
2935 - src/node/ext/byte_buffer.cc
2936 - src/node/ext/call.cc
2937 - src/node/ext/call_credentials.cc
2938 - src/node/ext/channel.cc
2939 - src/node/ext/channel_credentials.cc
2940 - src/node/ext/completion_queue_async_worker.cc
2941 - src/node/ext/node_grpc.cc
2942 - src/node/ext/server.cc
2943 - src/node/ext/server_credentials.cc
2944 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08002945openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07002946 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08002947 extraction_dir: openssl-1.0.2f
2948 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08002949php_config_m4:
2950 deps:
2951 - grpc
2952 - gpr
2953 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08002954 headers:
2955 - src/php/ext/grpc/byte_buffer.h
2956 - src/php/ext/grpc/call.h
2957 - src/php/ext/grpc/call_credentials.h
2958 - src/php/ext/grpc/channel.h
2959 - src/php/ext/grpc/channel_credentials.h
2960 - src/php/ext/grpc/completion_queue.h
2961 - src/php/ext/grpc/php_grpc.h
2962 - src/php/ext/grpc/server.h
2963 - src/php/ext/grpc/server_credentials.h
2964 - src/php/ext/grpc/timeval.h
2965 src:
2966 - src/php/ext/grpc/byte_buffer.c
2967 - src/php/ext/grpc/call.c
2968 - src/php/ext/grpc/call_credentials.c
2969 - src/php/ext/grpc/channel.c
2970 - src/php/ext/grpc/channel_credentials.c
2971 - src/php/ext/grpc/completion_queue.c
2972 - src/php/ext/grpc/php_grpc.c
2973 - src/php/ext/grpc/server.c
2974 - src/php/ext/grpc/server_credentials.c
2975 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08002976python_dependencies:
2977 deps:
2978 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002979 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08002980 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08002981 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01002982ruby_gem:
2983 deps:
2984 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002985 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002986 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07002987 - z