blob: ef2f269272d4483505899d18339cbe89146cdf2c [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 Tillerc72cc422016-03-11 10:54:36 -080058 - 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 Tillerc72cc422016-03-11 10:54:36 -080074 - 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
Craig Tiller178edfa2016-02-17 20:54:46 -0800251 - src/core/census/grpc_plugin.h
Craig Tiller25834342015-09-25 08:08:24 -0700252 - src/core/channel/channel_args.h
253 - src/core/channel/channel_stack.h
Craig Tiller178edfa2016-02-17 20:54:46 -0800254 - src/core/channel/channel_stack_builder.h
Craig Tiller25834342015-09-25 08:08:24 -0700255 - src/core/channel/client_channel.h
256 - src/core/channel/compress_filter.h
257 - src/core/channel/connected_channel.h
258 - src/core/channel/context.h
259 - src/core/channel/http_client_filter.h
260 - src/core/channel/http_server_filter.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800261 - src/core/channel/subchannel_call_holder.h
Craig Tiller25834342015-09-25 08:08:24 -0700262 - src/core/client_config/client_config.h
263 - src/core/client_config/connector.h
yang-ga6124122015-11-05 22:36:20 -0800264 - src/core/client_config/initial_connect_string.h
Craig Tillereb841e22016-02-11 15:49:16 -0800265 - src/core/client_config/lb_policies/load_balancer_api.h
Craig Tiller25834342015-09-25 08:08:24 -0700266 - src/core/client_config/lb_policies/pick_first.h
267 - src/core/client_config/lb_policies/round_robin.h
268 - src/core/client_config/lb_policy.h
269 - src/core/client_config/lb_policy_factory.h
270 - src/core/client_config/lb_policy_registry.h
271 - src/core/client_config/resolver.h
272 - src/core/client_config/resolver_factory.h
273 - src/core/client_config/resolver_registry.h
274 - src/core/client_config/resolvers/dns_resolver.h
275 - src/core/client_config/resolvers/sockaddr_resolver.h
276 - src/core/client_config/subchannel.h
277 - src/core/client_config/subchannel_factory.h
Craig Tiller694cf8b2016-01-15 21:13:25 -0800278 - src/core/client_config/subchannel_index.h
Craig Tiller25834342015-09-25 08:08:24 -0700279 - src/core/client_config/uri_parser.h
Craig Tillerebdef9d2015-11-19 17:09:49 -0800280 - src/core/compression/algorithm_metadata.h
Craig Tiller25834342015-09-25 08:08:24 -0700281 - src/core/compression/message_compress.h
282 - src/core/debug/trace.h
Matthew Iselin1824f052016-02-10 12:16:06 +1100283 - src/core/http/format_request.h
284 - src/core/http/httpcli.h
285 - src/core/http/parser.h
Craig Tiller25834342015-09-25 08:08:24 -0700286 - src/core/iomgr/closure.h
287 - src/core/iomgr/endpoint.h
288 - src/core/iomgr/endpoint_pair.h
289 - src/core/iomgr/exec_ctx.h
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700290 - src/core/iomgr/executor.h
Craig Tiller25834342015-09-25 08:08:24 -0700291 - src/core/iomgr/fd_posix.h
292 - src/core/iomgr/iocp_windows.h
293 - src/core/iomgr/iomgr.h
294 - src/core/iomgr/iomgr_internal.h
295 - src/core/iomgr/iomgr_posix.h
296 - src/core/iomgr/pollset.h
297 - src/core/iomgr/pollset_posix.h
298 - src/core/iomgr/pollset_set.h
299 - src/core/iomgr/pollset_set_posix.h
300 - src/core/iomgr/pollset_set_windows.h
301 - src/core/iomgr/pollset_windows.h
302 - src/core/iomgr/resolve_address.h
303 - src/core/iomgr/sockaddr.h
304 - src/core/iomgr/sockaddr_posix.h
305 - src/core/iomgr/sockaddr_utils.h
306 - src/core/iomgr/sockaddr_win32.h
307 - src/core/iomgr/socket_utils_posix.h
308 - src/core/iomgr/socket_windows.h
309 - src/core/iomgr/tcp_client.h
310 - src/core/iomgr/tcp_posix.h
311 - src/core/iomgr/tcp_server.h
312 - src/core/iomgr/tcp_windows.h
313 - src/core/iomgr/time_averaged_stats.h
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700314 - src/core/iomgr/timer.h
315 - src/core/iomgr/timer_heap.h
Craig Tiller25834342015-09-25 08:08:24 -0700316 - src/core/iomgr/udp_server.h
ahedberg43df2952016-03-18 10:46:38 -0400317 - src/core/iomgr/unix_sockets_posix.h
Craig Tiller25834342015-09-25 08:08:24 -0700318 - src/core/iomgr/wakeup_fd_pipe.h
319 - src/core/iomgr/wakeup_fd_posix.h
320 - src/core/iomgr/workqueue.h
321 - src/core/iomgr/workqueue_posix.h
322 - src/core/iomgr/workqueue_windows.h
323 - src/core/json/json.h
324 - src/core/json/json_common.h
325 - src/core/json/json_reader.h
326 - src/core/json/json_writer.h
Craig Tillereb841e22016-02-11 15:49:16 -0800327 - src/core/proto/grpc/lb/v0/load_balancer.pb.h
Craig Tiller25834342015-09-25 08:08:24 -0700328 - src/core/statistics/census_interface.h
329 - src/core/statistics/census_rpc_stats.h
Craig Tiller2468ff52015-10-05 09:00:17 -0700330 - src/core/surface/api_trace.h
Craig Tiller25834342015-09-25 08:08:24 -0700331 - src/core/surface/call.h
David Garcia Quintas0c331882015-10-08 14:51:54 -0700332 - src/core/surface/call_test_only.h
Craig Tiller25834342015-09-25 08:08:24 -0700333 - src/core/surface/channel.h
Craig Tiller178edfa2016-02-17 20:54:46 -0800334 - src/core/surface/channel_init.h
335 - src/core/surface/channel_stack_type.h
Craig Tiller25834342015-09-25 08:08:24 -0700336 - src/core/surface/completion_queue.h
337 - src/core/surface/event_string.h
338 - src/core/surface/init.h
Craig Tiller178edfa2016-02-17 20:54:46 -0800339 - src/core/surface/lame_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700340 - src/core/surface/server.h
Craig Tiller0801ce62015-10-05 09:40:31 -0700341 - src/core/surface/surface_trace.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800342 - src/core/transport/byte_stream.h
Craig Tiller25834342015-09-25 08:08:24 -0700343 - src/core/transport/chttp2/alpn.h
344 - src/core/transport/chttp2/bin_encoder.h
345 - src/core/transport/chttp2/frame.h
346 - src/core/transport/chttp2/frame_data.h
347 - src/core/transport/chttp2/frame_goaway.h
348 - src/core/transport/chttp2/frame_ping.h
349 - src/core/transport/chttp2/frame_rst_stream.h
350 - src/core/transport/chttp2/frame_settings.h
351 - src/core/transport/chttp2/frame_window_update.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800352 - src/core/transport/chttp2/hpack_encoder.h
Craig Tiller25834342015-09-25 08:08:24 -0700353 - src/core/transport/chttp2/hpack_parser.h
354 - src/core/transport/chttp2/hpack_table.h
355 - src/core/transport/chttp2/http2_errors.h
356 - src/core/transport/chttp2/huffsyms.h
357 - src/core/transport/chttp2/incoming_metadata.h
358 - src/core/transport/chttp2/internal.h
359 - src/core/transport/chttp2/status_conversion.h
Craig Tiller25834342015-09-25 08:08:24 -0700360 - src/core/transport/chttp2/stream_map.h
361 - src/core/transport/chttp2/timeout_encoding.h
362 - src/core/transport/chttp2/varint.h
363 - src/core/transport/chttp2_transport.h
364 - src/core/transport/connectivity_state.h
365 - src/core/transport/metadata.h
Craig Tillerca1593a2015-11-02 14:08:33 -0800366 - src/core/transport/metadata_batch.h
Craig Tiller2e7687c2015-11-18 14:56:46 -0800367 - src/core/transport/static_metadata.h
Craig Tiller25834342015-09-25 08:08:24 -0700368 - src/core/transport/transport.h
369 - src/core/transport/transport_impl.h
370 src:
371 - src/core/census/grpc_context.c
372 - src/core/census/grpc_filter.c
Craig Tiller178edfa2016-02-17 20:54:46 -0800373 - src/core/census/grpc_plugin.c
Craig Tiller25834342015-09-25 08:08:24 -0700374 - src/core/channel/channel_args.c
375 - src/core/channel/channel_stack.c
Craig Tiller178edfa2016-02-17 20:54:46 -0800376 - src/core/channel/channel_stack_builder.c
Craig Tiller25834342015-09-25 08:08:24 -0700377 - src/core/channel/client_channel.c
378 - src/core/channel/compress_filter.c
379 - src/core/channel/connected_channel.c
380 - src/core/channel/http_client_filter.c
381 - src/core/channel/http_server_filter.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800382 - src/core/channel/subchannel_call_holder.c
Craig Tiller25834342015-09-25 08:08:24 -0700383 - src/core/client_config/client_config.c
384 - src/core/client_config/connector.c
yang-ga6124122015-11-05 22:36:20 -0800385 - src/core/client_config/default_initial_connect_string.c
386 - src/core/client_config/initial_connect_string.c
Craig Tillereb841e22016-02-11 15:49:16 -0800387 - src/core/client_config/lb_policies/load_balancer_api.c
Craig Tiller25834342015-09-25 08:08:24 -0700388 - src/core/client_config/lb_policies/pick_first.c
389 - src/core/client_config/lb_policies/round_robin.c
390 - src/core/client_config/lb_policy.c
391 - src/core/client_config/lb_policy_factory.c
392 - src/core/client_config/lb_policy_registry.c
393 - src/core/client_config/resolver.c
394 - src/core/client_config/resolver_factory.c
395 - src/core/client_config/resolver_registry.c
396 - src/core/client_config/resolvers/dns_resolver.c
397 - src/core/client_config/resolvers/sockaddr_resolver.c
398 - src/core/client_config/subchannel.c
399 - src/core/client_config/subchannel_factory.c
Craig Tiller694cf8b2016-01-15 21:13:25 -0800400 - src/core/client_config/subchannel_index.c
Craig Tiller25834342015-09-25 08:08:24 -0700401 - src/core/client_config/uri_parser.c
Craig Tiller732a8752016-02-22 15:59:19 -0800402 - src/core/compression/compression_algorithm.c
Craig Tiller25834342015-09-25 08:08:24 -0700403 - src/core/compression/message_compress.c
404 - src/core/debug/trace.c
Matthew Iselin1824f052016-02-10 12:16:06 +1100405 - src/core/http/format_request.c
406 - src/core/http/httpcli.c
407 - src/core/http/parser.c
Craig Tiller25834342015-09-25 08:08:24 -0700408 - src/core/iomgr/closure.c
409 - src/core/iomgr/endpoint.c
410 - src/core/iomgr/endpoint_pair_posix.c
411 - src/core/iomgr/endpoint_pair_windows.c
412 - src/core/iomgr/exec_ctx.c
David Garcia Quintas4bc34632015-10-07 16:12:35 -0700413 - src/core/iomgr/executor.c
Craig Tiller25834342015-09-25 08:08:24 -0700414 - src/core/iomgr/fd_posix.c
415 - src/core/iomgr/iocp_windows.c
416 - src/core/iomgr/iomgr.c
417 - src/core/iomgr/iomgr_posix.c
418 - src/core/iomgr/iomgr_windows.c
419 - src/core/iomgr/pollset_multipoller_with_epoll.c
420 - src/core/iomgr/pollset_multipoller_with_poll_posix.c
421 - src/core/iomgr/pollset_posix.c
422 - src/core/iomgr/pollset_set_posix.c
423 - src/core/iomgr/pollset_set_windows.c
424 - src/core/iomgr/pollset_windows.c
425 - src/core/iomgr/resolve_address_posix.c
426 - src/core/iomgr/resolve_address_windows.c
427 - src/core/iomgr/sockaddr_utils.c
428 - src/core/iomgr/socket_utils_common_posix.c
429 - src/core/iomgr/socket_utils_linux.c
430 - src/core/iomgr/socket_utils_posix.c
431 - src/core/iomgr/socket_windows.c
432 - src/core/iomgr/tcp_client_posix.c
433 - src/core/iomgr/tcp_client_windows.c
434 - src/core/iomgr/tcp_posix.c
435 - src/core/iomgr/tcp_server_posix.c
436 - src/core/iomgr/tcp_server_windows.c
437 - src/core/iomgr/tcp_windows.c
438 - src/core/iomgr/time_averaged_stats.c
David Garcia Quintasb65e4212015-10-14 12:00:21 -0700439 - src/core/iomgr/timer.c
440 - src/core/iomgr/timer_heap.c
Craig Tiller25834342015-09-25 08:08:24 -0700441 - src/core/iomgr/udp_server.c
ahedberg43df2952016-03-18 10:46:38 -0400442 - src/core/iomgr/unix_sockets_posix.c
443 - src/core/iomgr/unix_sockets_posix_noop.c
Craig Tiller25834342015-09-25 08:08:24 -0700444 - src/core/iomgr/wakeup_fd_eventfd.c
445 - src/core/iomgr/wakeup_fd_nospecial.c
446 - src/core/iomgr/wakeup_fd_pipe.c
447 - src/core/iomgr/wakeup_fd_posix.c
448 - src/core/iomgr/workqueue_posix.c
449 - src/core/iomgr/workqueue_windows.c
450 - src/core/json/json.c
451 - src/core/json/json_reader.c
452 - src/core/json/json_string.c
453 - src/core/json/json_writer.c
Craig Tillereb841e22016-02-11 15:49:16 -0800454 - src/core/proto/grpc/lb/v0/load_balancer.pb.c
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100455 - src/core/surface/alarm.c
Craig Tiller2468ff52015-10-05 09:00:17 -0700456 - src/core/surface/api_trace.c
Craig Tiller25834342015-09-25 08:08:24 -0700457 - src/core/surface/byte_buffer.c
Craig Tiller25834342015-09-25 08:08:24 -0700458 - src/core/surface/byte_buffer_reader.c
459 - src/core/surface/call.c
460 - src/core/surface/call_details.c
461 - src/core/surface/call_log_batch.c
462 - src/core/surface/channel.c
463 - src/core/surface/channel_connectivity.c
464 - src/core/surface/channel_create.c
Craig Tiller178edfa2016-02-17 20:54:46 -0800465 - src/core/surface/channel_init.c
Craig Tiller26dab312015-12-07 14:43:47 -0800466 - src/core/surface/channel_ping.c
Craig Tiller178edfa2016-02-17 20:54:46 -0800467 - src/core/surface/channel_stack_type.c
Craig Tiller25834342015-09-25 08:08:24 -0700468 - src/core/surface/completion_queue.c
469 - src/core/surface/event_string.c
470 - src/core/surface/init.c
471 - src/core/surface/lame_client.c
472 - src/core/surface/metadata_array.c
473 - src/core/surface/server.c
474 - src/core/surface/server_chttp2.c
murgatroid99c3910ca2016-01-06 13:14:23 -0800475 - src/core/surface/validate_metadata.c
Craig Tiller25834342015-09-25 08:08:24 -0700476 - src/core/surface/version.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800477 - src/core/transport/byte_stream.c
Craig Tiller25834342015-09-25 08:08:24 -0700478 - src/core/transport/chttp2/alpn.c
479 - src/core/transport/chttp2/bin_encoder.c
480 - src/core/transport/chttp2/frame_data.c
481 - src/core/transport/chttp2/frame_goaway.c
482 - src/core/transport/chttp2/frame_ping.c
483 - src/core/transport/chttp2/frame_rst_stream.c
484 - src/core/transport/chttp2/frame_settings.c
485 - src/core/transport/chttp2/frame_window_update.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800486 - src/core/transport/chttp2/hpack_encoder.c
Craig Tiller25834342015-09-25 08:08:24 -0700487 - src/core/transport/chttp2/hpack_parser.c
488 - src/core/transport/chttp2/hpack_table.c
489 - src/core/transport/chttp2/huffsyms.c
490 - src/core/transport/chttp2/incoming_metadata.c
491 - src/core/transport/chttp2/parsing.c
492 - src/core/transport/chttp2/status_conversion.c
Craig Tiller25834342015-09-25 08:08:24 -0700493 - src/core/transport/chttp2/stream_lists.c
494 - src/core/transport/chttp2/stream_map.c
495 - src/core/transport/chttp2/timeout_encoding.c
496 - src/core/transport/chttp2/varint.c
497 - src/core/transport/chttp2/writing.c
498 - src/core/transport/chttp2_transport.c
499 - src/core/transport/connectivity_state.c
500 - src/core/transport/metadata.c
Craig Tillerca1593a2015-11-02 14:08:33 -0800501 - src/core/transport/metadata_batch.c
Craig Tiller2e7687c2015-11-18 14:56:46 -0800502 - src/core/transport/static_metadata.c
Craig Tiller25834342015-09-25 08:08:24 -0700503 - src/core/transport/transport.c
504 - src/core/transport/transport_op_string.c
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800505- name: grpc_codegen
506 public_headers:
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800507 - include/grpc/impl/codegen/byte_buffer.h
508 - include/grpc/impl/codegen/compression_types.h
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800509 - include/grpc/impl/codegen/connectivity_state.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800510 - include/grpc/impl/codegen/grpc_types.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800511 - include/grpc/impl/codegen/propagation_bits.h
David Garcia Quintas2425bbb2016-01-25 17:32:48 -0800512 - include/grpc/impl/codegen/status.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100513- name: grpc_secure
514 headers:
515 - src/core/security/auth_filters.h
Craig Tiller732a8752016-02-22 15:59:19 -0800516 - src/core/security/b64.h
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100517 - src/core/security/credentials.h
518 - src/core/security/handshake.h
519 - src/core/security/json_token.h
520 - src/core/security/jwt_verifier.h
521 - src/core/security/secure_endpoint.h
522 - src/core/security/security_connector.h
523 - src/core/security/security_context.h
524 - src/core/tsi/fake_transport_security.h
525 - src/core/tsi/ssl_transport_security.h
526 - src/core/tsi/ssl_types.h
527 - src/core/tsi/transport_security.h
528 - src/core/tsi/transport_security_interface.h
529 src:
Matthew Iselin1824f052016-02-10 12:16:06 +1100530 - src/core/http/httpcli_security_connector.c
Craig Tiller732a8752016-02-22 15:59:19 -0800531 - src/core/security/b64.c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100532 - src/core/security/client_auth_filter.c
533 - src/core/security/credentials.c
534 - src/core/security/credentials_metadata.c
535 - src/core/security/credentials_posix.c
536 - src/core/security/credentials_win32.c
537 - src/core/security/google_default_credentials.c
538 - src/core/security/handshake.c
539 - src/core/security/json_token.c
540 - src/core/security/jwt_verifier.c
541 - src/core/security/secure_endpoint.c
542 - src/core/security/security_connector.c
543 - src/core/security/security_context.c
544 - src/core/security/server_auth_filter.c
545 - src/core/security/server_secure_chttp2.c
546 - src/core/surface/init_secure.c
547 - src/core/surface/secure_channel_create.c
548 - src/core/tsi/fake_transport_security.c
549 - src/core/tsi/ssl_transport_security.c
550 - src/core/tsi/transport_security.c
Craig Tillerbf4b2242015-08-31 15:53:53 -0700551- name: grpc_test_util_base
Craig Tiller25834342015-09-25 08:08:24 -0700552 headers:
553 - test/core/end2end/cq_verifier.h
554 - test/core/end2end/fixtures/proxy.h
555 - test/core/iomgr/endpoint_tests.h
Craig Tiller25834342015-09-25 08:08:24 -0700556 - test/core/util/grpc_profiler.h
557 - test/core/util/parse_hexstring.h
558 - test/core/util/port.h
Craig Tiller19d7d802016-03-17 08:47:05 -0700559 - test/core/util/port_server_client.h
Craig Tiller25834342015-09-25 08:08:24 -0700560 - test/core/util/slice_splitter.h
561 src:
562 - test/core/end2end/cq_verifier.c
563 - test/core/end2end/fixtures/proxy.c
564 - test/core/iomgr/endpoint_tests.c
Craig Tiller25834342015-09-25 08:08:24 -0700565 - test/core/util/grpc_profiler.c
566 - test/core/util/parse_hexstring.c
567 - test/core/util/port_posix.c
Craig Tiller19d7d802016-03-17 08:47:05 -0700568 - test/core/util/port_server_client.c
Craig Tiller25834342015-09-25 08:08:24 -0700569 - test/core/util/port_windows.c
570 - test/core/util/slice_splitter.c
Craig Tillereb841e22016-02-11 15:49:16 -0800571- name: nanopb
572 headers:
573 - third_party/nanopb/pb.h
574 - third_party/nanopb/pb_common.h
575 - third_party/nanopb/pb_decode.h
576 - third_party/nanopb/pb_encode.h
577 src:
578 - third_party/nanopb/pb_common.c
579 - third_party/nanopb/pb_decode.c
580 - third_party/nanopb/pb_encode.c
Nicolas "Pixel" Noble09121792016-01-30 09:01:53 +0100581libs:
Craig Tillerda179ce2016-02-09 12:01:53 -0800582- name: gpr
583 build: all
584 language: c
Craig Tillerda179ce2016-02-09 12:01:53 -0800585 filegroups:
Craig Tiller1298afd2016-02-09 12:29:17 -0800586 - gpr
587 - gpr_codegen
Craig Tillerda179ce2016-02-09 12:01:53 -0800588 secure: false
589 vs_project_guid: '{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}'
590- name: gpr_test_util
591 build: private
592 language: c
593 headers:
594 - test/core/util/test_config.h
595 src:
596 - test/core/util/test_config.c
597 deps:
598 - gpr
599 secure: false
600 vs_project_guid: '{EAB0A629-17A9-44DB-B5FF-E91A721FE037}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700601- name: grpc
602 build: all
603 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700604 public_headers:
605 - include/grpc/grpc_security.h
Craig Tillerda179ce2016-02-09 12:01:53 -0800606 deps:
607 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700608 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800609 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700610 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700611 filegroups:
612 - grpc_base
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100613 - grpc_secure
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100614 - grpc_codegen
Craig Tiller25834342015-09-25 08:08:24 -0700615 - census
Craig Tillereb841e22016-02-11 15:49:16 -0800616 - nanopb
Craig Tillerbf4b2242015-08-31 15:53:53 -0700617 secure: true
Craig Tiller25834342015-09-25 08:08:24 -0700618 vs_packages:
619 - grpc.dependencies.openssl
620 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700621 vs_project_guid: '{29D16885-7228-4C31-81ED-5F9187C7F2A9}'
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800622- name: grpc_codegen_lib
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100623 build: protoc
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800624 language: c
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800625 headers: []
626 src: []
627 filegroups:
628 - gpr_codegen
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100629 - grpc_codegen
David Garcia Quintas9f3955c2016-02-19 14:54:48 -0800630 secure: false
631 vs_project_guid: '{A828FD72-44CE-4EA5-8966-6E4624458D58}'
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100632- name: grpc_dll
633 build: private
634 language: c
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100635 src: []
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100636 deps:
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100637 - gpr
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100638 - grpc
Nicolas "Pixel" Noblee0dbd3f2016-02-23 00:21:38 +0100639 build_system:
640 - visual_studio
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100641 deps_linkage: static
Nicolas "Pixel" Noble2e8fdba2016-02-19 02:09:47 +0100642 dll_def: grpc.def
Nicolas "Pixel" Noble3ba2eba2016-02-19 01:39:59 +0100643 vs_config_type: DynamicLibrary
644 vs_packages:
645 - grpc.dependencies.openssl
646 - grpc.dependencies.zlib
647 vs_project_guid: '{A2F6CBBA-A553-41B3-A7DE-F26DECCC27F0}'
648 vs_props:
649 - zlib
650 - openssl
651 - winsock
652 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700653- name: grpc_test_util
654 build: private
655 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700656 headers:
657 - test/core/end2end/data/ssl_test_data.h
Craig Tiller6a275142015-12-02 11:03:09 -0800658 - test/core/security/oauth2_utils.h
Craig Tiller25834342015-09-25 08:08:24 -0700659 src:
660 - test/core/end2end/data/server1_cert.c
661 - test/core/end2end/data/server1_key.c
662 - test/core/end2end/data/test_root_cert.c
Craig Tiller6a275142015-12-02 11:03:09 -0800663 - test/core/security/oauth2_utils.c
Craig Tiller25834342015-09-25 08:08:24 -0700664 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800665 - gpr_test_util
Craig Tiller1298afd2016-02-09 12:29:17 -0800666 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700667 - grpc
668 filegroups:
669 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700670 vs_project_guid: '{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}'
671- name: grpc_test_util_unsecure
672 build: private
673 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700674 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800675 - gpr
676 - gpr_test_util
Craig Tiller6a275142015-12-02 11:03:09 -0800677 - grpc_unsecure
Craig Tiller25834342015-09-25 08:08:24 -0700678 filegroups:
679 - grpc_test_util_base
Craig Tillerbf4b2242015-08-31 15:53:53 -0700680 secure: false
681 vs_project_guid: '{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}'
682- name: grpc_unsecure
683 build: all
684 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700685 src:
686 - src/core/surface/init_unsecure.c
Craig Tillerda179ce2016-02-09 12:01:53 -0800687 deps:
688 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700689 baselib: true
Craig Tiller4a67be42016-02-09 12:40:32 -0800690 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700691 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700692 filegroups:
693 - grpc_base
Craig Tillerad095982016-02-09 12:45:04 -0800694 - grpc_codegen
Craig Tiller25834342015-09-25 08:08:24 -0700695 - census
Craig Tillereb841e22016-02-11 15:49:16 -0800696 - nanopb
Craig Tillerbf4b2242015-08-31 15:53:53 -0700697 secure: false
698 vs_project_guid: '{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}'
699- name: grpc_zookeeper
700 build: all
701 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700702 public_headers:
703 - include/grpc/grpc_zookeeper.h
704 headers:
705 - src/core/client_config/resolvers/zookeeper_resolver.h
706 src:
707 - src/core/client_config/resolvers/zookeeper_resolver.c
708 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800709 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700710 - grpc
711 external_deps:
712 - zookeeper
713 platforms:
714 - linux
Craig Tillerbf4b2242015-08-31 15:53:53 -0700715 secure: false
716- name: reconnect_server
717 build: private
718 language: c
Craig Tiller25834342015-09-25 08:08:24 -0700719 headers:
720 - test/core/util/reconnect_server.h
721 src:
722 - test/core/util/reconnect_server.c
723 deps:
yang-gc9fca182015-11-06 16:41:33 -0800724 - test_tcp_server
725 - grpc_test_util
726 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800727 - gpr_test_util
728 - gpr
yang-gc9fca182015-11-06 16:41:33 -0800729- name: test_tcp_server
730 build: private
731 language: c
732 headers:
733 - test/core/util/test_tcp_server.h
734 src:
735 - test/core/util/test_tcp_server.c
736 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700737 - grpc_test_util
738 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800739 - gpr_test_util
740 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700741- name: grpc++
742 build: all
743 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700744 headers:
745 - src/cpp/client/secure_credentials.h
David Garcia Quintas79d90962016-03-09 13:57:46 -0800746 - src/cpp/common/core_codegen.h
Craig Tiller25834342015-09-25 08:08:24 -0700747 - src/cpp/common/secure_auth_context.h
748 - src/cpp/server/secure_server_credentials.h
749 src:
Craig Tiller25834342015-09-25 08:08:24 -0700750 - src/cpp/client/secure_credentials.cc
751 - src/cpp/common/auth_property_iterator.cc
752 - src/cpp/common/secure_auth_context.cc
yang-g52705592015-11-25 11:45:33 -0800753 - src/cpp/common/secure_channel_arguments.cc
Craig Tiller25834342015-09-25 08:08:24 -0700754 - src/cpp/common/secure_create_auth_context.cc
755 - src/cpp/server/secure_server_credentials.cc
756 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700757 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700758 baselib: true
759 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700760 filegroups:
761 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800762 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700763 secure: check
764 vs_project_guid: '{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}'
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800765- name: grpc++_codegen_lib
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100766 build: protoc
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800767 language: c++
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800768 headers: []
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100769 src: []
David Garcia Quintasbac76af2016-02-18 15:56:40 -0800770 filegroups:
771 - gpr_codegen
Nicolas "Pixel" Noblee8fb8522016-03-14 19:46:57 +0100772 - grpc_codegen
773 - grpc++_codegen
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800774 secure: false
David Garcia Quintasaee7cf12016-02-19 14:05:47 -0800775 vs_project_guid: '{AAC6AF12-94C8-4A3C-A1BF-DAA4738F4500}'
Craig Tillerbf4b2242015-08-31 15:53:53 -0700776- name: grpc++_test_config
777 build: private
778 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700779 headers:
780 - test/cpp/util/test_config.h
781 src:
782 - test/cpp/util/test_config.cc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700783- name: grpc++_test_util
784 build: private
785 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700786 headers:
yang-gd6f7d992016-01-14 16:04:20 -0800787 - test/cpp/end2end/test_service_impl.h
yang-g9f173142016-01-15 12:46:40 -0800788 - test/cpp/util/byte_buffer_proto_helper.h
Craig Tiller25834342015-09-25 08:08:24 -0700789 - test/cpp/util/cli_call.h
790 - test/cpp/util/create_test_channel.h
791 - test/cpp/util/string_ref_helper.h
792 - test/cpp/util/subprocess.h
yang-g7d2a3e12016-02-18 15:41:56 -0800793 - test/cpp/util/test_credentials_provider.h
Craig Tiller25834342015-09-25 08:08:24 -0700794 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800795 - src/proto/grpc/testing/echo_messages.proto
796 - src/proto/grpc/testing/echo.proto
797 - src/proto/grpc/testing/duplicate/echo_duplicate.proto
yang-gd6f7d992016-01-14 16:04:20 -0800798 - test/cpp/end2end/test_service_impl.cc
yang-g9f173142016-01-15 12:46:40 -0800799 - test/cpp/util/byte_buffer_proto_helper.cc
Craig Tiller25834342015-09-25 08:08:24 -0700800 - test/cpp/util/cli_call.cc
801 - test/cpp/util/create_test_channel.cc
802 - test/cpp/util/string_ref_helper.cc
803 - test/cpp/util/subprocess.cc
yang-g7d2a3e12016-02-18 15:41:56 -0800804 - test/cpp/util/test_credentials_provider.cc
Craig Tiller25834342015-09-25 08:08:24 -0700805 deps:
806 - grpc++
807 - grpc_test_util
Craig Tillerbf4b2242015-08-31 15:53:53 -0700808- name: grpc++_unsecure
809 build: all
810 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700811 src:
812 - src/cpp/common/insecure_create_auth_context.cc
813 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -0800814 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700815 - grpc_unsecure
Craig Tillerbf4b2242015-08-31 15:53:53 -0700816 baselib: true
817 dll: true
Craig Tiller25834342015-09-25 08:08:24 -0700818 filegroups:
819 - grpc++_base
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800820 - grpc++_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700821 secure: false
822 vs_project_guid: '{6EE56155-DF7C-4F6E-BFC4-F6F776BEB211}'
823- name: grpc_plugin_support
824 build: protoc
825 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700826 headers:
827 - include/grpc++/support/config.h
828 - include/grpc++/support/config_protobuf.h
829 - src/compiler/config.h
830 - src/compiler/cpp_generator.h
831 - src/compiler/cpp_generator_helpers.h
832 - src/compiler/csharp_generator.h
833 - src/compiler/csharp_generator_helpers.h
834 - src/compiler/generator_helpers.h
835 - src/compiler/objective_c_generator.h
836 - src/compiler/objective_c_generator_helpers.h
837 - src/compiler/python_generator.h
838 - src/compiler/ruby_generator.h
839 - src/compiler/ruby_generator_helpers-inl.h
840 - src/compiler/ruby_generator_map-inl.h
841 - src/compiler/ruby_generator_string-inl.h
842 src:
843 - src/compiler/cpp_generator.cc
844 - src/compiler/csharp_generator.cc
845 - src/compiler/objective_c_generator.cc
846 - src/compiler/python_generator.cc
847 - src/compiler/ruby_generator.cc
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800848 deps:
David Garcia Quintasa8bb0bf2016-02-18 15:09:02 -0800849 - grpc++_codegen_lib
David Garcia Quintasddcb53a2016-01-21 17:48:34 -0800850 filegroups:
Craig Tillerad095982016-02-09 12:45:04 -0800851 - gpr_codegen
Craig Tillerbf4b2242015-08-31 15:53:53 -0700852 secure: false
853 vs_project_guid: '{B6E81D84-2ACB-41B8-8781-493A944C7817}'
Jan Tattermusch6611dde2016-02-22 08:48:02 -0800854 vs_props:
855 - protoc
Craig Tillerbf4b2242015-08-31 15:53:53 -0700856- name: interop_client_helper
857 build: private
858 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700859 headers:
860 - test/cpp/interop/client_helper.h
861 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800862 - src/proto/grpc/testing/messages.proto
Craig Tiller25834342015-09-25 08:08:24 -0700863 - test/cpp/interop/client_helper.cc
864 deps:
865 - grpc++_test_util
866 - grpc_test_util
867 - grpc++
868 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800869 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700870- name: interop_client_main
871 build: private
872 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700873 headers:
874 - test/cpp/interop/interop_client.h
875 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800876 - src/proto/grpc/testing/empty.proto
877 - src/proto/grpc/testing/messages.proto
878 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -0700879 - test/cpp/interop/client.cc
880 - test/cpp/interop/interop_client.cc
881 deps:
882 - interop_client_helper
883 - grpc++_test_util
884 - grpc_test_util
885 - grpc++
886 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800887 - gpr_test_util
888 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700889 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700890- name: interop_server_helper
891 build: private
892 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700893 headers:
894 - test/cpp/interop/server_helper.h
895 src:
896 - test/cpp/interop/server_helper.cc
897 deps:
898 - grpc_test_util
899 - grpc++
900 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800901 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -0700902- name: interop_server_main
903 build: private
904 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700905 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800906 - src/proto/grpc/testing/empty.proto
907 - src/proto/grpc/testing/messages.proto
908 - src/proto/grpc/testing/test.proto
Craig Tiller732a8752016-02-22 15:59:19 -0800909 - test/cpp/interop/server_main.cc
Craig Tiller25834342015-09-25 08:08:24 -0700910 deps:
911 - interop_server_helper
912 - grpc++_test_util
913 - grpc_test_util
914 - grpc++
915 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800916 - gpr_test_util
917 - gpr
Craig Tiller25834342015-09-25 08:08:24 -0700918 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -0700919- name: qps
920 build: private
921 language: c++
Craig Tiller25834342015-09-25 08:08:24 -0700922 headers:
923 - test/cpp/qps/client.h
924 - test/cpp/qps/driver.h
925 - test/cpp/qps/histogram.h
926 - test/cpp/qps/interarrival.h
vjpaic8034422016-01-19 15:32:42 -0800927 - test/cpp/qps/limit_cores.h
Craig Tiller25834342015-09-25 08:08:24 -0700928 - test/cpp/qps/perf_db_client.h
929 - test/cpp/qps/qps_worker.h
930 - test/cpp/qps/report.h
931 - test/cpp/qps/server.h
932 - test/cpp/qps/stats.h
Craig Tiller732a8752016-02-22 15:59:19 -0800933 - test/cpp/qps/usage_timer.h
Craig Tiller25834342015-09-25 08:08:24 -0700934 - test/cpp/util/benchmark_config.h
935 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -0800936 - src/proto/grpc/testing/messages.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800937 - src/proto/grpc/testing/payloads.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800938 - src/proto/grpc/testing/stats.proto
Jan Tattermusch7c60b272016-01-20 18:23:13 -0800939 - src/proto/grpc/testing/control.proto
940 - src/proto/grpc/testing/services.proto
Craig Tiller1b4e3302015-12-17 16:35:00 -0800941 - src/proto/grpc/testing/perf_db.proto
Craig Tiller25834342015-09-25 08:08:24 -0700942 - test/cpp/qps/client_async.cc
943 - test/cpp/qps/client_sync.cc
944 - test/cpp/qps/driver.cc
vjpaic8034422016-01-19 15:32:42 -0800945 - test/cpp/qps/limit_cores.cc
Craig Tiller25834342015-09-25 08:08:24 -0700946 - test/cpp/qps/perf_db_client.cc
947 - test/cpp/qps/qps_worker.cc
948 - test/cpp/qps/report.cc
949 - test/cpp/qps/server_async.cc
950 - test/cpp/qps/server_sync.cc
Craig Tiller732a8752016-02-22 15:59:19 -0800951 - test/cpp/qps/usage_timer.cc
Craig Tiller25834342015-09-25 08:08:24 -0700952 - test/cpp/util/benchmark_config.cc
953 deps:
954 - grpc_test_util
955 - grpc++_test_util
956 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -0700957- name: grpc_csharp_ext
958 build: all
959 language: csharp
Craig Tiller25834342015-09-25 08:08:24 -0700960 src:
961 - src/csharp/ext/grpc_csharp_ext.c
962 deps:
Craig Tiller25834342015-09-25 08:08:24 -0700963 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800964 - gpr
Craig Tiller41304a72016-02-02 13:59:33 -0800965 LDFLAGS: $(if $(subst Linux,,$(SYSTEM)),,-Wl$(comma)-wrap$(comma)memcpy)
Jan Tattermusch324140c2016-01-12 08:54:01 -0800966 deps_linkage: static
Craig Tillerbf4b2242015-08-31 15:53:53 -0700967 dll: only
968 vs_config_type: DynamicLibrary
Craig Tiller25834342015-09-25 08:08:24 -0700969 vs_packages:
970 - grpc.dependencies.openssl
971 - grpc.dependencies.zlib
Craig Tillerbf4b2242015-08-31 15:53:53 -0700972 vs_project_guid: '{D64C6D63-4458-4A88-AB38-35678384A7E4}'
Craig Tiller25834342015-09-25 08:08:24 -0700973 vs_props:
974 - zlib
975 - openssl
976 - winsock
977 - global
Craig Tillerbf4b2242015-08-31 15:53:53 -0700978targets:
Nicolas "Pixel" Nobled5d83aa2016-01-31 06:21:49 +0100979- name: alarm_test
980 build: test
981 language: c
982 src:
983 - test/core/surface/alarm_test.c
984 deps:
985 - grpc_test_util
986 - grpc
Craig Tiller1298afd2016-02-09 12:29:17 -0800987 - gpr_test_util
988 - gpr
David Garcia Quintas48ec8062015-12-11 14:04:59 -0800989- name: algorithm_test
990 build: test
991 language: c
992 src:
993 - test/core/compression/algorithm_test.c
994 deps:
995 - grpc_test_util
996 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -0800997 - gpr_test_util
998 - gpr
David Garcia Quintasa5aa19b2015-12-09 14:17:52 -0800999- name: alloc_test
1000 build: test
1001 language: c
1002 src:
1003 - test/core/support/alloc_test.c
1004 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001005 - gpr_test_util
1006 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001007- name: alpn_test
1008 build: test
1009 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001010 src:
1011 - test/core/transport/chttp2/alpn_test.c
1012 deps:
1013 - grpc_test_util
1014 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001015 - gpr_test_util
1016 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001017- name: bin_encoder_test
1018 build: test
1019 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001020 src:
1021 - test/core/transport/chttp2/bin_encoder_test.c
1022 deps:
1023 - grpc_test_util
1024 - grpc
Alistair Veitch75d5c0f2016-02-02 09:43:02 -08001025- name: census_context_test
1026 build: test
1027 language: c
1028 src:
1029 - test/core/census/context_test.c
1030 deps:
1031 - grpc_test_util
1032 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001033 - gpr_test_util
1034 - gpr
yang-gc0ed5092015-12-09 08:48:08 -08001035- name: channel_create_test
1036 build: test
1037 language: c
1038 src:
1039 - test/core/surface/channel_create_test.c
1040 deps:
1041 - grpc_test_util
1042 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001043 - gpr_test_util
1044 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001045- name: chttp2_hpack_encoder_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001046 build: test
1047 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001048 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001049 - test/core/transport/chttp2/hpack_encoder_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001050 deps:
1051 - grpc_test_util
1052 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001053 - gpr_test_util
1054 - gpr
Craig Tillerca1593a2015-11-02 14:08:33 -08001055- name: chttp2_status_conversion_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001056 build: test
1057 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001058 src:
Craig Tillerca1593a2015-11-02 14:08:33 -08001059 - test/core/transport/chttp2/status_conversion_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001060 deps:
1061 - grpc_test_util
1062 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001063 - gpr_test_util
1064 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001065- name: chttp2_stream_map_test
1066 build: test
1067 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001068 src:
1069 - test/core/transport/chttp2/stream_map_test.c
1070 deps:
1071 - grpc_test_util
1072 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001073 - gpr_test_util
1074 - gpr
Craig Tiller8ab91b22015-12-07 11:28:51 -08001075- name: chttp2_varint_test
1076 build: test
1077 language: c
1078 src:
1079 - test/core/transport/chttp2/varint_test.c
1080 deps:
1081 - grpc_test_util
1082 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001083 - gpr_test_util
1084 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001085- name: compression_test
1086 build: test
1087 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001088 src:
1089 - test/core/compression/compression_test.c
1090 deps:
1091 - grpc_test_util
1092 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001093 - gpr_test_util
1094 - gpr
Craig Tiller57e27432016-03-11 16:53:58 -08001095- name: concurrent_connectivity_test
1096 build: test
1097 language: c
1098 src:
1099 - test/core/surface/concurrent_connectivity_test.c
1100 deps:
1101 - grpc_test_util
1102 - grpc
1103 - gpr_test_util
1104 - gpr
Craig Tillere91ef682016-03-11 08:59:17 -08001105- name: dns_resolver_connectivity_test
Craig Tillere2327db2016-03-11 09:52:42 -08001106 cpu_cost: 0.1
Craig Tillere91ef682016-03-11 08:59:17 -08001107 build: test
1108 language: c
1109 src:
1110 - test/core/client_config/resolvers/dns_resolver_connectivity_test.c
1111 deps:
1112 - grpc_test_util
1113 - grpc
1114 - gpr_test_util
1115 - gpr
Craig Tillera0c7cdd2015-12-11 12:46:58 -08001116- name: dns_resolver_test
1117 build: test
1118 language: c
1119 src:
1120 - test/core/client_config/resolvers/dns_resolver_test.c
1121 deps:
1122 - grpc_test_util
1123 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001124 - gpr_test_util
1125 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001126- name: dualstack_socket_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001127 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001128 build: test
1129 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001130 src:
1131 - test/core/end2end/dualstack_socket_test.c
1132 deps:
1133 - grpc_test_util
1134 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001135 - gpr_test_util
1136 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001137 platforms:
1138 - mac
1139 - linux
1140 - posix
Craig Tillere0b8a422015-08-31 16:03:39 -07001141- name: endpoint_pair_test
1142 build: test
1143 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001144 src:
1145 - test/core/iomgr/endpoint_pair_test.c
1146 deps:
1147 - grpc_test_util
1148 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001149 - gpr_test_util
1150 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001151- name: fd_conservation_posix_test
1152 build: test
1153 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001154 src:
1155 - test/core/iomgr/fd_conservation_posix_test.c
1156 deps:
1157 - grpc_test_util
1158 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001159 - gpr_test_util
1160 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001161 platforms:
1162 - mac
1163 - linux
1164 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001165- name: fd_posix_test
1166 build: test
1167 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001168 src:
1169 - test/core/iomgr/fd_posix_test.c
1170 deps:
1171 - grpc_test_util
1172 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001173 - gpr_test_util
1174 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001175 platforms:
1176 - mac
1177 - linux
1178 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001179- name: fling_client
1180 build: test
1181 run: false
1182 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001183 src:
1184 - test/core/fling/client.c
1185 deps:
1186 - grpc_test_util
1187 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001188 - gpr_test_util
1189 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001190- name: fling_server
1191 build: test
1192 run: false
1193 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001194 src:
1195 - test/core/fling/server.c
1196 deps:
1197 - grpc_test_util
1198 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001199 - gpr_test_util
1200 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001201- name: fling_stream_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001202 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001203 build: test
1204 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001205 src:
1206 - test/core/fling/fling_stream_test.c
1207 deps:
1208 - grpc_test_util
1209 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001210 - gpr_test_util
1211 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001212 platforms:
1213 - mac
1214 - linux
1215 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001216- name: fling_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001217 cpu_cost: 2
Craig Tillerbf4b2242015-08-31 15:53:53 -07001218 build: test
1219 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001220 src:
1221 - test/core/fling/fling_test.c
1222 deps:
1223 - grpc_test_util
1224 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001225 - gpr_test_util
1226 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001227 platforms:
1228 - mac
1229 - linux
1230 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001231- name: gen_hpack_tables
1232 build: tool
1233 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001234 src:
1235 - tools/codegen/core/gen_hpack_tables.c
1236 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001237 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001238 - grpc
Craig Tillerbf4b2242015-08-31 15:53:53 -07001239- name: gen_legal_metadata_characters
1240 build: tool
1241 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001242 src:
1243 - tools/codegen/core/gen_legal_metadata_characters.c
Craig Tillerbf4b2242015-08-31 15:53:53 -07001244 deps: []
Craig Tillerfba79f22015-11-23 11:06:55 -08001245- name: gpr_avl_test
1246 build: test
1247 language: c
1248 src:
1249 - test/core/support/avl_test.c
1250 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001251 - gpr_test_util
1252 - gpr
Craig Tillerc72cc422016-03-11 10:54:36 -08001253- name: gpr_backoff_test
1254 build: test
1255 language: c
1256 src:
1257 - test/core/support/backoff_test.c
1258 deps:
1259 - gpr_test_util
1260 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001261- name: gpr_cmdline_test
1262 build: test
1263 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001264 src:
1265 - test/core/support/cmdline_test.c
1266 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001267 - gpr_test_util
1268 - gpr
Alistair Veitchdcfb3fe2015-10-20 17:01:59 -07001269- name: gpr_cpu_test
1270 build: test
1271 language: c
1272 src:
1273 - test/core/support/cpu_test.c
1274 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001275 - gpr_test_util
1276 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001277- name: gpr_env_test
1278 build: test
1279 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001280 src:
1281 - test/core/support/env_test.c
1282 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001283 - gpr_test_util
1284 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001285- name: gpr_histogram_test
1286 build: test
1287 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001288 src:
1289 - test/core/support/histogram_test.c
1290 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001291 - gpr_test_util
1292 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001293- name: gpr_host_port_test
1294 build: test
1295 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001296 src:
1297 - test/core/support/host_port_test.c
1298 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001299 - gpr_test_util
1300 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001301- name: gpr_load_file_test
1302 build: test
1303 language: c
1304 src:
1305 - test/core/support/load_file_test.c
1306 deps:
1307 - gpr_test_util
1308 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001309- name: gpr_log_test
1310 build: test
1311 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001312 src:
1313 - test/core/support/log_test.c
1314 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001315 - gpr_test_util
1316 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001317- name: gpr_slice_buffer_test
1318 build: test
1319 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001320 src:
1321 - test/core/support/slice_buffer_test.c
1322 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001323 - gpr_test_util
1324 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001325- name: gpr_slice_test
1326 build: test
1327 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001328 src:
1329 - test/core/support/slice_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_stack_lockfree_test
Craig Tillerbfe69362016-01-20 09:38:21 -08001334 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001335 build: test
1336 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001337 src:
1338 - test/core/support/stack_lockfree_test.c
1339 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001340 - gpr_test_util
1341 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001342- name: gpr_string_test
1343 build: test
1344 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001345 src:
1346 - test/core/support/string_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_sync_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/sync_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_thd_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001360 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07001361 build: test
1362 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001363 src:
1364 - test/core/support/thd_test.c
1365 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001366 - gpr_test_util
1367 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001368- name: gpr_time_test
1369 build: test
1370 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001371 src:
1372 - test/core/support/time_test.c
1373 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001374 - gpr_test_util
1375 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001376- name: gpr_tls_test
1377 build: test
1378 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001379 src:
1380 - test/core/support/tls_test.c
1381 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001382 - gpr_test_util
1383 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001384- name: gpr_useful_test
1385 build: test
1386 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001387 src:
1388 - test/core/support/useful_test.c
1389 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001390 - gpr_test_util
1391 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001392- name: grpc_auth_context_test
1393 build: test
1394 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001395 src:
1396 - test/core/security/auth_context_test.c
1397 deps:
1398 - grpc_test_util
1399 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001400 - gpr_test_util
1401 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001402- name: grpc_b64_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001403 build: test
1404 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001405 src:
Craig Tiller732a8752016-02-22 15:59:19 -08001406 - test/core/security/b64_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001407 deps:
1408 - grpc_test_util
1409 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001410 - gpr_test_util
1411 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001412- name: grpc_byte_buffer_reader_test
1413 build: test
1414 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001415 src:
1416 - test/core/surface/byte_buffer_reader_test.c
1417 deps:
1418 - grpc_test_util
1419 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001420 - gpr_test_util
1421 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001422- name: grpc_channel_args_test
1423 build: test
1424 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001425 src:
1426 - test/core/channel/channel_args_test.c
1427 deps:
1428 - grpc_test_util
1429 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001430 - gpr_test_util
1431 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001432- name: grpc_channel_stack_test
1433 build: test
1434 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001435 src:
1436 - test/core/channel/channel_stack_test.c
1437 deps:
1438 - grpc_test_util
1439 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001440 - gpr_test_util
1441 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001442- name: grpc_completion_queue_test
1443 build: test
1444 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001445 src:
1446 - test/core/surface/completion_queue_test.c
1447 deps:
1448 - grpc_test_util
1449 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001450 - gpr_test_util
1451 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001452- name: grpc_create_jwt
1453 build: tool
1454 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001455 src:
1456 - test/core/security/create_jwt.c
1457 deps:
1458 - grpc_test_util
1459 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001460 - gpr_test_util
1461 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001462- name: grpc_credentials_test
1463 build: test
1464 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001465 src:
1466 - test/core/security/credentials_test.c
1467 deps:
1468 - grpc_test_util
1469 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001470 - gpr_test_util
1471 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001472- name: grpc_fetch_oauth2
1473 build: tool
1474 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001475 src:
1476 - test/core/security/fetch_oauth2.c
1477 deps:
1478 - grpc_test_util
1479 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001480 - gpr_test_util
1481 - gpr
yang-ga1fecbc2015-12-07 15:46:49 -08001482- name: grpc_invalid_channel_args_test
1483 build: test
1484 language: c
1485 src:
1486 - test/core/surface/invalid_channel_args_test.c
1487 deps:
1488 - grpc_test_util
1489 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001490 - gpr_test_util
1491 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001492- name: grpc_json_token_test
1493 build: test
1494 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001495 src:
1496 - test/core/security/json_token_test.c
1497 deps:
1498 - grpc_test_util
1499 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001500 - gpr_test_util
1501 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001502 platforms:
1503 - linux
1504 - posix
1505 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07001506- name: grpc_jwt_verifier_test
1507 build: test
1508 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001509 src:
1510 - test/core/security/jwt_verifier_test.c
1511 deps:
1512 - grpc_test_util
1513 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001514 - gpr_test_util
1515 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001516- name: grpc_print_google_default_creds_token
1517 build: tool
1518 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001519 src:
1520 - test/core/security/print_google_default_creds_token.c
1521 deps:
1522 - grpc_test_util
1523 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001524 - gpr_test_util
1525 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001526- name: grpc_security_connector_test
1527 build: test
1528 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001529 src:
1530 - test/core/security/security_connector_test.c
1531 deps:
1532 - grpc_test_util
1533 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001534 - gpr_test_util
1535 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001536- name: grpc_verify_jwt
1537 build: tool
1538 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001539 src:
1540 - test/core/security/verify_jwt.c
1541 deps:
1542 - grpc_test_util
1543 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001544 - gpr_test_util
1545 - gpr
Craig Tiller71c610d2016-03-18 15:57:08 -07001546- name: hpack_parser_fuzzer_test
1547 build: fuzzer
1548 language: c
1549 src:
1550 - test/core/transport/chttp2/hpack_parser_fuzzer_test.c
1551 deps:
1552 - grpc_test_util
1553 - grpc
1554 - gpr_test_util
1555 - gpr
1556 corpus_dirs:
1557 - test/core/transport/chttp2/hpack_parser_corpus
Craig Tillerbf4b2242015-08-31 15:53:53 -07001558- name: hpack_parser_test
1559 build: test
1560 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001561 src:
1562 - test/core/transport/chttp2/hpack_parser_test.c
1563 deps:
1564 - grpc_test_util
1565 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001566 - gpr_test_util
1567 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001568- name: hpack_table_test
1569 build: test
1570 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001571 src:
1572 - test/core/transport/chttp2/hpack_table_test.c
1573 deps:
1574 - grpc_test_util
1575 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001576 - gpr_test_util
1577 - gpr
Craig Tiller21239742016-03-23 16:33:28 -07001578- name: http_fuzzer_test
1579 build: fuzzer
1580 language: c
1581 src:
1582 - test/core/http/fuzzer.c
1583 deps:
1584 - grpc_test_util
1585 - grpc
1586 - gpr_test_util
1587 - gpr
1588 corpus_dirs:
1589 - test/core/http/corpus
Matthew Iselin1824f052016-02-10 12:16:06 +11001590- name: http_parser_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001591 build: test
1592 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001593 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001594 - test/core/http/parser_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001595 deps:
1596 - grpc_test_util
1597 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001598 - gpr_test_util
1599 - gpr
Matthew Iselin1824f052016-02-10 12:16:06 +11001600- name: httpcli_format_request_test
Craig Tillerbf4b2242015-08-31 15:53:53 -07001601 build: test
1602 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001603 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001604 - test/core/http/format_request_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001605 deps:
1606 - grpc_test_util
1607 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001608 - gpr_test_util
1609 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001610- name: httpcli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001611 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001612 build: test
1613 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001614 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001615 - test/core/http/httpcli_test.c
Craig Tiller25834342015-09-25 08:08:24 -07001616 deps:
1617 - grpc_test_util
1618 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001619 - gpr_test_util
1620 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001621 platforms:
1622 - mac
1623 - linux
1624 - posix
Craig Tillercc0535d2015-12-08 15:14:47 -08001625- name: httpscli_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001626 cpu_cost: 0.5
Craig Tillercc0535d2015-12-08 15:14:47 -08001627 build: test
1628 language: c
1629 src:
Matthew Iselin1824f052016-02-10 12:16:06 +11001630 - test/core/http/httpscli_test.c
Craig Tillercc0535d2015-12-08 15:14:47 -08001631 deps:
1632 - grpc_test_util
1633 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001634 - gpr_test_util
1635 - gpr
Craig Tillercc0535d2015-12-08 15:14:47 -08001636 platforms:
Craig Tillercc0535d2015-12-08 15:14:47 -08001637 - linux
yang-gf1183302015-12-07 16:02:05 -08001638- name: init_test
1639 build: test
1640 language: c
1641 src:
1642 - test/core/surface/init_test.c
1643 deps:
1644 - grpc_test_util
1645 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001646 - gpr_test_util
1647 - gpr
yang-g077f6f82015-12-07 11:22:51 -08001648- name: invalid_call_argument_test
1649 build: test
1650 language: c
1651 src:
1652 - test/core/end2end/invalid_call_argument_test.c
1653 deps:
1654 - grpc_test_util
1655 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001656 - gpr_test_util
1657 - gpr
Craig Tiller32173c52016-03-17 14:12:45 -07001658- name: json_fuzzer_test
1659 build: fuzzer
1660 language: c
1661 src:
1662 - test/core/json/fuzzer.c
1663 deps:
1664 - grpc_test_util
1665 - grpc
1666 - gpr_test_util
1667 - gpr
1668 corpus_dirs:
1669 - test/core/json/corpus
Craig Tillerbf4b2242015-08-31 15:53:53 -07001670- name: json_rewrite
1671 build: test
1672 run: false
1673 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001674 src:
1675 - test/core/json/json_rewrite.c
1676 deps:
1677 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001678 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001679- name: json_rewrite_test
1680 build: test
1681 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001682 src:
1683 - test/core/json/json_rewrite_test.c
1684 deps:
1685 - grpc_test_util
1686 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001687 - gpr_test_util
1688 - gpr
Nicolas "Pixel" Noble11c320d2015-12-12 01:47:36 +01001689- name: json_stream_error_test
1690 build: test
1691 language: c
1692 src:
1693 - test/core/json/json_stream_error_test.c
1694 deps:
1695 - grpc_test_util
1696 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001697 - gpr_test_util
1698 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001699- name: json_test
1700 build: test
1701 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001702 src:
1703 - test/core/json/json_test.c
1704 deps:
1705 - grpc_test_util
1706 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001707 - gpr_test_util
1708 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001709- name: lame_client_test
1710 build: test
1711 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001712 src:
1713 - test/core/surface/lame_client_test.c
1714 deps:
1715 - grpc_test_util
1716 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001717 - gpr_test_util
1718 - gpr
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001719- name: lb_policies_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001720 cpu_cost: 0.1
Craig Tillerde7edf82016-03-20 09:12:16 -07001721 flaky: true
David Garcia Quintas4fb049b2015-09-03 17:26:06 -07001722 build: test
1723 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001724 src:
1725 - test/core/client_config/lb_policies_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: low_level_ping_pong_benchmark
1732 build: benchmark
1733 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001734 src:
1735 - test/core/network_benchmarks/low_level_ping_pong.c
1736 deps:
1737 - grpc_test_util
1738 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001739 - gpr_test_util
1740 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001741 platforms:
1742 - mac
1743 - linux
1744 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001745- name: message_compress_test
1746 build: test
1747 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001748 src:
1749 - test/core/compression/message_compress_test.c
1750 deps:
1751 - grpc_test_util
1752 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001753 - gpr_test_util
1754 - gpr
Craig Tiller732a8752016-02-22 15:59:19 -08001755- name: mlog_test
Craig Tillera5abbd22016-03-22 06:56:00 -07001756 flaky: true
Craig Tiller732a8752016-02-22 15:59:19 -08001757 build: test
1758 language: c
1759 src:
1760 - test/core/census/mlog_test.c
1761 deps:
1762 - grpc_test_util
1763 - grpc
1764 - gpr_test_util
1765 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001766- name: multiple_server_queues_test
1767 build: test
1768 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001769 src:
1770 - test/core/end2end/multiple_server_queues_test.c
1771 deps:
1772 - grpc_test_util
1773 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001774 - gpr_test_util
1775 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001776- name: murmur_hash_test
1777 build: test
1778 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001779 src:
1780 - test/core/support/murmur_hash_test.c
1781 deps:
Craig Tillerda179ce2016-02-09 12:01:53 -08001782 - gpr_test_util
1783 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001784- name: no_server_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001785 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07001786 build: test
1787 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001788 src:
1789 - test/core/end2end/no_server_test.c
1790 deps:
1791 - grpc_test_util
1792 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001793 - gpr_test_util
1794 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001795- name: resolve_address_test
1796 build: test
1797 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001798 src:
1799 - test/core/iomgr/resolve_address_test.c
1800 deps:
1801 - grpc_test_util
1802 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001803 - gpr_test_util
1804 - gpr
yang-gd482e592015-12-10 14:04:00 -08001805- name: secure_channel_create_test
1806 build: test
1807 language: c
1808 src:
1809 - test/core/surface/secure_channel_create_test.c
1810 deps:
1811 - grpc_test_util
1812 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001813 - gpr_test_util
1814 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001815- name: secure_endpoint_test
1816 build: test
1817 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001818 src:
1819 - test/core/security/secure_endpoint_test.c
1820 deps:
1821 - grpc_test_util
1822 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001823 - gpr_test_util
1824 - gpr
yang-gfe9a9752015-12-09 10:47:18 -08001825- name: server_chttp2_test
1826 build: test
1827 language: c
1828 src:
1829 - test/core/surface/server_chttp2_test.c
1830 deps:
1831 - grpc_test_util
1832 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001833 - gpr_test_util
1834 - gpr
yang-gc3d94fb2015-12-10 14:38:00 -08001835- name: server_test
1836 build: test
1837 language: c
1838 src:
1839 - test/core/surface/server_test.c
1840 deps:
1841 - grpc_test_util
1842 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001843 - gpr_test_util
1844 - gpr
yang-gc9fca182015-11-06 16:41:33 -08001845- name: set_initial_connect_string_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001846 cpu_cost: 0.1
yang-gc9fca182015-11-06 16:41:33 -08001847 build: test
1848 language: c
1849 src:
1850 - test/core/client_config/set_initial_connect_string_test.c
1851 deps:
1852 - test_tcp_server
1853 - grpc_test_util
1854 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001855 - gpr_test_util
1856 - gpr
Craig Tillerb8bd62e2015-12-10 15:51:15 -08001857- name: sockaddr_resolver_test
1858 build: test
1859 language: c
1860 src:
1861 - test/core/client_config/resolvers/sockaddr_resolver_test.c
1862 deps:
1863 - grpc_test_util
1864 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001865 - gpr_test_util
1866 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001867- name: sockaddr_utils_test
1868 build: test
1869 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001870 src:
1871 - test/core/iomgr/sockaddr_utils_test.c
1872 deps:
1873 - grpc_test_util
1874 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001875 - gpr_test_util
1876 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08001877- name: socket_utils_test
1878 build: test
1879 language: c
1880 src:
1881 - test/core/iomgr/socket_utils_test.c
1882 deps:
1883 - grpc_test_util
1884 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001885 - gpr_test_util
1886 - gpr
Craig Tiller27493202015-12-11 11:30:26 -08001887 platforms:
1888 - mac
1889 - linux
1890 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001891- name: tcp_client_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001892 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001893 build: test
1894 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001895 src:
1896 - test/core/iomgr/tcp_client_posix_test.c
1897 deps:
1898 - grpc_test_util
1899 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001900 - gpr_test_util
1901 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001902 platforms:
1903 - mac
1904 - linux
1905 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001906- name: tcp_posix_test
Craig Tiller5f735a62016-01-20 09:31:15 -08001907 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07001908 build: test
1909 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001910 src:
1911 - test/core/iomgr/tcp_posix_test.c
1912 deps:
1913 - grpc_test_util
1914 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001915 - gpr_test_util
1916 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001917 platforms:
1918 - mac
1919 - linux
1920 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001921- name: tcp_server_posix_test
1922 build: test
1923 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001924 src:
1925 - test/core/iomgr/tcp_server_posix_test.c
1926 deps:
1927 - grpc_test_util
1928 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001929 - gpr_test_util
1930 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07001931 platforms:
1932 - mac
1933 - linux
1934 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07001935- name: time_averaged_stats_test
1936 build: test
1937 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001938 src:
1939 - test/core/iomgr/time_averaged_stats_test.c
1940 deps:
1941 - grpc_test_util
1942 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001943 - gpr_test_util
1944 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001945- name: timeout_encoding_test
1946 build: test
1947 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001948 src:
1949 - test/core/transport/chttp2/timeout_encoding_test.c
1950 deps:
1951 - grpc_test_util
1952 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001953 - gpr_test_util
1954 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001955- name: timer_heap_test
1956 build: test
1957 language: c
1958 src:
1959 - test/core/iomgr/timer_heap_test.c
1960 deps:
1961 - grpc_test_util
1962 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001963 - gpr_test_util
1964 - gpr
David Garcia Quintasb65e4212015-10-14 12:00:21 -07001965- name: timer_list_test
1966 build: test
1967 language: c
1968 src:
1969 - test/core/iomgr/timer_list_test.c
1970 deps:
1971 - grpc_test_util
1972 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001973 - gpr_test_util
1974 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001975- name: timers_test
1976 build: test
1977 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001978 src:
1979 - test/core/profiling/timers_test.c
1980 deps:
1981 - grpc_test_util
1982 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001983 - gpr_test_util
1984 - gpr
Craig Tiller179e6fe2015-12-09 11:09:47 -08001985- name: transport_connectivity_state_test
1986 build: test
1987 language: c
1988 src:
1989 - test/core/transport/connectivity_state_test.c
1990 deps:
1991 - grpc_test_util
1992 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08001993 - gpr_test_util
1994 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07001995- name: transport_metadata_test
1996 build: test
1997 language: c
Craig Tiller25834342015-09-25 08:08:24 -07001998 src:
1999 - test/core/transport/metadata_test.c
2000 deps:
2001 - grpc_test_util
2002 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002003 - gpr_test_util
2004 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002005- name: transport_security_test
2006 build: test
2007 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002008 src:
2009 - test/core/tsi/transport_security_test.c
2010 deps:
2011 - grpc_test_util
2012 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002013 - gpr_test_util
2014 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002015 platforms:
2016 - linux
2017 - posix
2018 - mac
Craig Tillerbf4b2242015-08-31 15:53:53 -07002019- name: udp_server_test
2020 build: test
2021 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002022 src:
2023 - test/core/iomgr/udp_server_test.c
2024 deps:
2025 - grpc_test_util
2026 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002027 - gpr_test_util
2028 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002029 platforms:
2030 - mac
2031 - linux
2032 - posix
Craig Tiller71c610d2016-03-18 15:57:08 -07002033- name: uri_fuzzer_test
2034 build: fuzzer
2035 language: c
2036 src:
2037 - test/core/client_config/uri_fuzzer_test.c
2038 deps:
2039 - grpc_test_util
2040 - grpc
2041 - gpr_test_util
2042 - gpr
2043 corpus_dirs:
2044 - test/core/client_config/uri_corpus
Craig Tillerbf4b2242015-08-31 15:53:53 -07002045- name: uri_parser_test
2046 build: test
2047 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002048 src:
2049 - test/core/client_config/uri_parser_test.c
2050 deps:
2051 - grpc_test_util
2052 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002053 - gpr_test_util
2054 - gpr
Craig Tiller73b66062015-09-09 09:34:46 -07002055- name: workqueue_test
2056 build: test
2057 language: c
Craig Tiller25834342015-09-25 08:08:24 -07002058 src:
2059 - test/core/iomgr/workqueue_test.c
2060 deps:
2061 - grpc_test_util
2062 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002063 - gpr_test_util
2064 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002065 platforms:
2066 - mac
2067 - linux
2068 - posix
vjpai04e992a2016-02-10 16:58:38 -08002069- name: alarm_cpp_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002070 gtest: true
vjpai04e992a2016-02-10 16:58:38 -08002071 build: test
2072 language: c++
2073 src:
2074 - test/cpp/common/alarm_cpp_test.cc
2075 deps:
2076 - grpc++_test_util
2077 - grpc_test_util
2078 - grpc++
2079 - grpc
Vijay Pai29e1d952016-02-11 00:26:18 -08002080 - gpr_test_util
2081 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002082- name: async_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002083 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002084 build: test
2085 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002086 src:
2087 - test/cpp/end2end/async_end2end_test.cc
2088 deps:
2089 - grpc++_test_util
2090 - grpc_test_util
2091 - grpc++
2092 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002093 - gpr_test_util
2094 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002095- name: async_streaming_ping_pong_test
2096 build: test
2097 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002098 src:
2099 - test/cpp/qps/async_streaming_ping_pong_test.cc
2100 deps:
2101 - qps
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 Tiller25834342015-09-25 08:08:24 -07002108 platforms:
2109 - mac
2110 - linux
2111 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002112- name: async_unary_ping_pong_test
2113 build: test
2114 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002115 src:
2116 - test/cpp/qps/async_unary_ping_pong_test.cc
2117 deps:
2118 - qps
2119 - grpc++_test_util
2120 - grpc_test_util
2121 - grpc++
2122 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002123 - gpr_test_util
2124 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002125 platforms:
2126 - mac
2127 - linux
2128 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002129- name: auth_property_iterator_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002130 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002131 build: test
2132 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002133 src:
2134 - test/cpp/common/auth_property_iterator_test.cc
2135 deps:
2136 - grpc++_test_util
2137 - grpc_test_util
2138 - grpc++
2139 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002140 - gpr_test_util
2141 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002142- name: channel_arguments_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002143 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002144 build: test
2145 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002146 src:
yang-g52705592015-11-25 11:45:33 -08002147 - test/cpp/common/channel_arguments_test.cc
Craig Tiller25834342015-09-25 08:08:24 -07002148 deps:
2149 - grpc++
2150 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002151 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002152- name: cli_call_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002153 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002154 build: test
2155 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002156 src:
2157 - test/cpp/util/cli_call_test.cc
2158 deps:
2159 - grpc++_test_util
2160 - grpc_test_util
2161 - grpc++
2162 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002163 - gpr_test_util
2164 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002165- name: client_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002166 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002167 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002168 build: test
2169 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002170 src:
2171 - test/cpp/end2end/client_crash_test.cc
2172 deps:
2173 - grpc++_test_util
2174 - grpc_test_util
2175 - grpc++
2176 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002177 - gpr_test_util
2178 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002179 platforms:
2180 - mac
2181 - linux
2182 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002183- name: client_crash_test_server
2184 build: test
2185 run: false
2186 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002187 src:
2188 - test/cpp/end2end/client_crash_test_server.cc
2189 deps:
2190 - grpc++_test_util
2191 - grpc_test_util
2192 - grpc++
2193 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002194 - gpr_test_util
2195 - gpr
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002196- name: codegen_test
David Garcia Quintasf349c1b2016-03-08 16:28:16 -08002197 gtest: true
David Garcia Quintas4ac52fa2016-03-06 20:31:39 -08002198 build: test
2199 language: c++
2200 src:
2201 - src/proto/grpc/testing/control.proto
2202 - src/proto/grpc/testing/messages.proto
2203 - src/proto/grpc/testing/payloads.proto
2204 - src/proto/grpc/testing/perf_db.proto
2205 - src/proto/grpc/testing/services.proto
2206 - src/proto/grpc/testing/stats.proto
2207 - test/cpp/codegen/codegen_test.cc
2208 deps:
2209 - grpc++_codegen_lib
Craig Tillerbf4b2242015-08-31 15:53:53 -07002210- name: credentials_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002211 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002212 build: test
2213 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002214 src:
2215 - test/cpp/client/credentials_test.cc
2216 deps:
2217 - grpc++
2218 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002219 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002220- name: cxx_byte_buffer_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002221 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002222 build: test
2223 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002224 src:
2225 - test/cpp/util/byte_buffer_test.cc
2226 deps:
2227 - grpc_test_util
2228 - grpc++
2229 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002230 - gpr_test_util
2231 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002232- name: cxx_slice_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002233 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002234 build: test
2235 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002236 src:
2237 - test/cpp/util/slice_test.cc
2238 deps:
2239 - grpc_test_util
2240 - grpc++
2241 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002242 - gpr_test_util
2243 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002244- name: cxx_string_ref_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002245 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002246 build: test
2247 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002248 src:
2249 - test/cpp/util/string_ref_test.cc
2250 deps:
2251 - grpc++
Craig Tillerbf4b2242015-08-31 15:53:53 -07002252- name: cxx_time_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002253 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002254 build: test
2255 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002256 src:
2257 - test/cpp/util/time_test.cc
2258 deps:
2259 - grpc_test_util
2260 - grpc++
2261 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002262 - gpr_test_util
2263 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002264- name: end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002265 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002266 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002267 build: test
2268 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002269 src:
2270 - test/cpp/end2end/end2end_test.cc
2271 deps:
2272 - grpc++_test_util
2273 - grpc_test_util
2274 - grpc++
2275 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002276 - gpr_test_util
2277 - gpr
vjpai083dc622016-01-11 09:41:17 -08002278- name: generic_async_streaming_ping_pong_test
2279 build: test
2280 language: c++
2281 src:
2282 - test/cpp/qps/generic_async_streaming_ping_pong_test.cc
2283 deps:
2284 - qps
2285 - grpc++_test_util
2286 - grpc_test_util
2287 - grpc++
2288 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002289 - gpr_test_util
2290 - gpr
vjpai083dc622016-01-11 09:41:17 -08002291 platforms:
2292 - mac
2293 - linux
2294 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002295- name: generic_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002296 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002297 build: test
2298 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002299 src:
2300 - test/cpp/end2end/generic_end2end_test.cc
2301 deps:
2302 - grpc++_test_util
2303 - grpc_test_util
2304 - grpc++
2305 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002306 - gpr_test_util
2307 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002308- name: grpc_cli
2309 build: test
2310 run: false
2311 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002312 src:
2313 - test/cpp/util/grpc_cli.cc
2314 deps:
2315 - grpc++_test_util
2316 - grpc_test_util
2317 - grpc++
2318 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002319 - gpr_test_util
2320 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002321 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002322- name: grpc_cpp_plugin
2323 build: protoc
2324 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002325 src:
2326 - src/compiler/cpp_plugin.cc
2327 deps:
2328 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002329 secure: false
2330 vs_config_type: Application
2331 vs_project_guid: '{7E51A25F-AC59-488F-906C-C60FAAE706AA}'
2332- name: grpc_csharp_plugin
2333 build: protoc
2334 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002335 src:
2336 - src/compiler/csharp_plugin.cc
2337 deps:
2338 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002339 secure: false
2340 vs_config_type: Application
2341 vs_project_guid: '{3C813052-A49A-4662-B90A-1ADBEC7EE453}'
2342- name: grpc_objective_c_plugin
2343 build: protoc
2344 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002345 src:
2346 - src/compiler/objective_c_plugin.cc
2347 deps:
2348 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002349 secure: false
2350 vs_config_type: Application
2351 vs_project_guid: '{19564640-CEE6-4921-ABA5-676ED79A36F6}'
2352- name: grpc_python_plugin
2353 build: protoc
2354 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002355 src:
2356 - src/compiler/python_plugin.cc
2357 deps:
2358 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002359 secure: false
2360 vs_config_type: Application
2361 vs_project_guid: '{DF52D501-A6CF-4E6F-BA38-6EBE2E8DAFB2}'
2362- name: grpc_ruby_plugin
2363 build: protoc
2364 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002365 src:
2366 - src/compiler/ruby_plugin.cc
2367 deps:
2368 - grpc_plugin_support
Craig Tillerbf4b2242015-08-31 15:53:53 -07002369 secure: false
2370 vs_config_type: Application
2371 vs_project_guid: '{069E9D05-B78B-4751-9252-D21EBAE7DE8E}'
Craig Tillereb841e22016-02-11 15:49:16 -08002372- name: grpclb_api_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002373 gtest: true
Craig Tillereb841e22016-02-11 15:49:16 -08002374 build: test
2375 language: c++
2376 src:
2377 - src/proto/grpc/lb/v0/load_balancer.proto
2378 - test/cpp/grpclb/grpclb_api_test.cc
2379 deps:
2380 - grpc++_test_util
2381 - grpc_test_util
2382 - grpc++
2383 - grpc
yang-gbe5a2c42016-01-14 13:11:15 -08002384- name: hybrid_end2end_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002385 gtest: true
yang-gbe5a2c42016-01-14 13:11:15 -08002386 build: test
2387 language: c++
2388 src:
2389 - test/cpp/end2end/hybrid_end2end_test.cc
2390 deps:
2391 - grpc++_test_util
2392 - grpc_test_util
2393 - grpc++
2394 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002395 - gpr_test_util
2396 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002397- name: interop_client
2398 build: test
2399 run: false
2400 language: c++
2401 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002402 deps:
2403 - interop_client_main
2404 - interop_client_helper
2405 - grpc++_test_util
2406 - grpc_test_util
2407 - grpc++
2408 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002409 - gpr_test_util
2410 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002411 - grpc++_test_config
2412 platforms:
2413 - mac
2414 - linux
2415 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002416- name: interop_server
2417 build: test
2418 run: false
2419 language: c++
2420 src: []
Craig Tiller25834342015-09-25 08:08:24 -07002421 deps:
2422 - interop_server_main
2423 - interop_server_helper
2424 - grpc++_test_util
2425 - grpc_test_util
2426 - grpc++
2427 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002428 - gpr_test_util
2429 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002430 - grpc++_test_config
2431 platforms:
2432 - mac
2433 - linux
2434 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002435- name: interop_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002436 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002437 build: test
2438 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002439 src:
2440 - test/cpp/interop/interop_test.cc
2441 deps:
2442 - grpc_test_util
2443 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002444 - gpr_test_util
2445 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002446 platforms:
2447 - mac
2448 - linux
2449 - posix
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002450- name: metrics_client
2451 build: test
2452 run: false
2453 language: c++
2454 headers:
2455 - test/cpp/util/metrics_server.h
2456 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002457 - src/proto/grpc/testing/metrics.proto
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002458 - test/cpp/interop/metrics_client.cc
2459 deps:
2460 - grpc++
2461 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002462 - gpr
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002463 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002464- name: mock_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002465 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002466 build: test
2467 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002468 src:
2469 - test/cpp/end2end/mock_test.cc
2470 deps:
2471 - grpc++_test_util
2472 - grpc_test_util
2473 - grpc++
2474 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002475 - gpr_test_util
2476 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002477- name: qps_driver
2478 build: benchmark
2479 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002480 src:
2481 - test/cpp/qps/qps_driver.cc
2482 deps:
2483 - qps
2484 - grpc++_test_util
2485 - grpc_test_util
2486 - grpc++
2487 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002488 - gpr_test_util
2489 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002490 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002491- name: qps_interarrival_test
2492 build: test
2493 run: false
2494 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002495 src:
2496 - test/cpp/qps/qps_interarrival_test.cc
2497 deps:
2498 - qps
2499 - grpc++_test_util
2500 - grpc_test_util
2501 - grpc++
2502 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002503 - gpr_test_util
2504 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002505 platforms:
2506 - mac
2507 - linux
2508 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002509- name: qps_openloop_test
Craig Tillerc72cc422016-03-11 10:54:36 -08002510 cpu_cost: 0.5
Craig Tillerbf4b2242015-08-31 15:53:53 -07002511 build: test
2512 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002513 src:
2514 - test/cpp/qps/qps_openloop_test.cc
2515 deps:
2516 - qps
2517 - grpc++_test_util
2518 - grpc_test_util
2519 - grpc++
2520 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002521 - gpr_test_util
2522 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002523 - grpc++_test_config
2524 platforms:
2525 - mac
2526 - linux
2527 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002528- name: qps_test
Craig Tillerbfd05532016-01-20 09:53:15 -08002529 cpu_cost: 10
Craig Tillerbf4b2242015-08-31 15:53:53 -07002530 build: test
2531 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002532 src:
2533 - test/cpp/qps/qps_test.cc
2534 deps:
2535 - qps
2536 - grpc++_test_util
2537 - grpc_test_util
2538 - grpc++
2539 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002540 - gpr_test_util
2541 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002542 - grpc++_test_config
Craig Tiller25834342015-09-25 08:08:24 -07002543 platforms:
2544 - mac
2545 - linux
2546 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002547- name: qps_worker
2548 build: benchmark
2549 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002550 headers:
2551 - test/cpp/qps/client.h
2552 - test/cpp/qps/server.h
2553 src:
2554 - test/cpp/qps/worker.cc
2555 deps:
2556 - qps
2557 - grpc++_test_util
2558 - grpc_test_util
2559 - grpc++
2560 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002561 - gpr_test_util
2562 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002563 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002564- name: reconnect_interop_client
2565 build: test
2566 run: false
2567 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002568 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002569 - src/proto/grpc/testing/empty.proto
2570 - src/proto/grpc/testing/messages.proto
2571 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002572 - test/cpp/interop/reconnect_interop_client.cc
2573 deps:
2574 - grpc++_test_util
2575 - grpc_test_util
2576 - grpc++
2577 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002578 - gpr_test_util
2579 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002580 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002581- name: reconnect_interop_server
2582 build: test
2583 run: false
2584 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002585 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002586 - src/proto/grpc/testing/empty.proto
2587 - src/proto/grpc/testing/messages.proto
2588 - src/proto/grpc/testing/test.proto
Craig Tiller25834342015-09-25 08:08:24 -07002589 - test/cpp/interop/reconnect_interop_server.cc
2590 deps:
2591 - reconnect_server
yang-gc9fca182015-11-06 16:41:33 -08002592 - test_tcp_server
Craig Tiller25834342015-09-25 08:08:24 -07002593 - grpc++_test_util
2594 - grpc_test_util
2595 - grpc++
2596 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002597 - gpr_test_util
2598 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002599 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002600- name: secure_auth_context_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002601 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002602 build: test
2603 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002604 src:
2605 - test/cpp/common/secure_auth_context_test.cc
2606 deps:
2607 - grpc++_test_util
2608 - grpc_test_util
2609 - grpc++
2610 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002611 - gpr_test_util
2612 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002613- name: secure_sync_unary_ping_pong_test
2614 build: test
2615 language: c++
2616 src:
2617 - test/cpp/qps/secure_sync_unary_ping_pong_test.cc
2618 deps:
2619 - qps
2620 - grpc++_test_util
2621 - grpc_test_util
2622 - grpc++
2623 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002624 - gpr_test_util
2625 - gpr
vjpaif8603ad2015-11-04 12:49:33 -08002626 platforms:
2627 - mac
2628 - linux
2629 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002630- name: server_crash_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002631 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002632 cpu_cost: 0.1
Craig Tillerbf4b2242015-08-31 15:53:53 -07002633 build: test
2634 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002635 src:
2636 - test/cpp/end2end/server_crash_test.cc
2637 deps:
2638 - grpc++_test_util
2639 - grpc_test_util
2640 - grpc++
2641 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002642 - gpr_test_util
2643 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002644 platforms:
2645 - mac
2646 - linux
2647 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002648- name: server_crash_test_client
2649 build: test
2650 run: false
2651 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002652 src:
2653 - test/cpp/end2end/server_crash_test_client.cc
2654 deps:
2655 - grpc++_test_util
2656 - grpc_test_util
2657 - grpc++
2658 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002659 - gpr_test_util
2660 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002661- name: shutdown_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002662 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002663 build: test
2664 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002665 src:
2666 - test/cpp/end2end/shutdown_test.cc
2667 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
Craig Tillerbf4b2242015-08-31 15:53:53 -07002674- name: status_test
2675 build: test
2676 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002677 src:
2678 - test/cpp/util/status_test.cc
2679 deps:
2680 - grpc_test_util
2681 - grpc++
2682 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002683 - gpr_test_util
2684 - gpr
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002685- name: streaming_throughput_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002686 gtest: true
Craig Tiller1fdb05b2015-09-01 17:13:30 -07002687 build: test
2688 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002689 src:
2690 - test/cpp/end2end/streaming_throughput_test.cc
2691 deps:
2692 - grpc++_test_util
2693 - grpc_test_util
2694 - grpc++
2695 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002696 - gpr_test_util
2697 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002698 platforms:
2699 - mac
2700 - linux
2701 - posix
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002702- name: stress_test
2703 build: test
Sree Kuchibhotla117c8af2015-10-26 10:59:17 -07002704 run: false
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002705 language: c++
2706 headers:
Sree Kuchibhotla11906242015-10-22 15:04:26 -07002707 - test/cpp/interop/client_helper.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002708 - test/cpp/interop/interop_client.h
2709 - test/cpp/interop/stress_interop_client.h
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002710 - test/cpp/util/metrics_server.h
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002711 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002712 - src/proto/grpc/testing/empty.proto
2713 - src/proto/grpc/testing/messages.proto
2714 - src/proto/grpc/testing/metrics.proto
2715 - src/proto/grpc/testing/test.proto
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002716 - test/cpp/interop/interop_client.cc
2717 - test/cpp/interop/stress_interop_client.cc
2718 - test/cpp/interop/stress_test.cc
Sree Kuchibhotlab5e98c52015-10-27 22:55:26 -07002719 - test/cpp/util/metrics_server.cc
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002720 deps:
2721 - grpc++_test_util
2722 - grpc_test_util
2723 - grpc++
2724 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002725 - gpr_test_util
2726 - gpr
Sree Kuchibhotlafbc376f2015-10-16 10:56:31 -07002727 - grpc++_test_config
Craig Tillerbf4b2242015-08-31 15:53:53 -07002728- name: sync_streaming_ping_pong_test
2729 build: test
2730 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002731 src:
2732 - test/cpp/qps/sync_streaming_ping_pong_test.cc
2733 deps:
2734 - qps
2735 - grpc++_test_util
2736 - grpc_test_util
2737 - grpc++
2738 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002739 - gpr_test_util
2740 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002741 platforms:
2742 - mac
2743 - linux
2744 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002745- name: sync_unary_ping_pong_test
2746 build: test
2747 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002748 src:
2749 - test/cpp/qps/sync_unary_ping_pong_test.cc
2750 deps:
2751 - qps
2752 - grpc++_test_util
2753 - grpc_test_util
2754 - grpc++
2755 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002756 - gpr_test_util
2757 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002758 platforms:
2759 - mac
2760 - linux
2761 - posix
Craig Tillerbf4b2242015-08-31 15:53:53 -07002762- name: thread_stress_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002763 gtest: true
Craig Tillerbfd05532016-01-20 09:53:15 -08002764 cpu_cost: 100
Craig Tillerbf4b2242015-08-31 15:53:53 -07002765 build: test
2766 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002767 src:
2768 - test/cpp/end2end/thread_stress_test.cc
2769 deps:
2770 - grpc++_test_util
2771 - grpc_test_util
2772 - grpc++
2773 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002774 - gpr_test_util
2775 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002776- name: zookeeper_test
Craig Tillerca62ff02016-02-24 22:22:57 -08002777 gtest: true
Craig Tillerbf4b2242015-08-31 15:53:53 -07002778 build: test
Craig Tiller7bedba82015-09-24 08:22:43 -07002779 run: false
Craig Tillerbf4b2242015-08-31 15:53:53 -07002780 language: c++
Craig Tiller25834342015-09-25 08:08:24 -07002781 src:
Craig Tiller1b4e3302015-12-17 16:35:00 -08002782 - src/proto/grpc/testing/echo.proto
Craig Tiller25834342015-09-25 08:08:24 -07002783 - test/cpp/end2end/zookeeper_test.cc
2784 deps:
2785 - grpc++_test_util
2786 - grpc_test_util
2787 - grpc++
2788 - grpc_zookeeper
2789 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002790 - gpr_test_util
2791 - gpr
Craig Tiller25834342015-09-25 08:08:24 -07002792 external_deps:
2793 - zookeeper
2794 platforms:
2795 - linux
Craig Tillerab230452016-01-04 08:18:43 -08002796- name: public_headers_must_be_c89
2797 build: test
2798 language: c89
2799 src:
2800 - test/core/surface/public_headers_must_be_c89.c
2801 deps:
2802 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002803 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07002804vspackages:
Craig Tiller25834342015-09-25 08:08:24 -07002805- linkage: static
2806 name: grpc.dependencies.zlib
2807 props: false
2808 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08002809 version: 1.2.8.10
Jan Tattermuschd5653e42016-01-12 12:43:24 -08002810- linkage: static
2811 name: grpc.dependencies.openssl
Craig Tiller25834342015-09-25 08:08:24 -07002812 props: true
2813 redist: true
Jan Tattermusch36065be2015-11-30 14:48:28 -08002814 version: 1.0.204.1
Craig Tiller25834342015-09-25 08:08:24 -07002815- name: gflags
2816 props: false
2817 redist: false
2818 version: 2.1.2.1
2819- name: gtest
2820 props: false
2821 redist: false
2822 version: 1.7.0.1
Craig Tillera0f85172016-01-20 15:56:06 -08002823configs:
2824 asan:
2825 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07002826 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
2827 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002828 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002829 LD: clang
2830 LDFLAGS: -fsanitize=address
2831 LDXX: clang++
2832 compile_the_world: true
2833 test_environ:
Craig Tiller19482442016-01-25 09:59:20 -08002834 ASAN_OPTIONS: detect_leaks=1:color=always
2835 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
Vijay Pai3b288722016-02-19 00:28:28 -08002836 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08002837 asan-noleaks:
2838 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07002839 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
2840 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002841 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002842 LD: clang
2843 LDFLAGS: -fsanitize=address
2844 LDXX: clang++
Craig Tiller81df68d2016-01-21 13:59:50 -08002845 compile_the_world: true
Craig Tillera0f85172016-01-20 15:56:06 -08002846 test_environ:
2847 ASAN_OPTIONS: detect_leaks=0:color=always
Vijay Pai3b288722016-02-19 00:28:28 -08002848 timeout_multiplier: 3
Craig Tillerae945942016-03-23 21:43:58 -07002849 asan-trace-cmp:
2850 CC: clang
2851 CPPFLAGS: -O0 -fsanitize-coverage=trace-cmp -fsanitize=address -fno-omit-frame-pointer
2852 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
2853 CXX: clang++
2854 LD: clang
2855 LDFLAGS: -fsanitize=address
2856 LDXX: clang++
2857 compile_the_world: true
2858 test_environ:
2859 ASAN_OPTIONS: detect_leaks=1:color=always
2860 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
2861 timeout_multiplier: 3
Craig Tillera0f85172016-01-20 15:56:06 -08002862 basicprof:
2863 CPPFLAGS: -O2 -DGRPC_BASIC_PROFILER -DGRPC_TIMERS_RDTSC
2864 DEFINES: NDEBUG
2865 dbg:
2866 CPPFLAGS: -O0
2867 DEFINES: _DEBUG DEBUG
Craig Tiller3af3f742016-02-28 21:53:13 -08002868 easan:
2869 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07002870 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=address -fno-omit-frame-pointer
2871 -Wno-unused-command-line-argument -DGPR_NO_DIRECT_SYSCALLS
Craig Tiller3af3f742016-02-28 21:53:13 -08002872 CXX: clang++
2873 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
2874 LD: clang
2875 LDFLAGS: -fsanitize=address
2876 LDXX: clang++
2877 compile_the_world: true
2878 test_environ:
2879 ASAN_OPTIONS: detect_leaks=1:color=always
2880 LSAN_OPTIONS: suppressions=tools/lsan_suppressions.txt:report_objects=1
2881 timeout_multiplier: 3
2882 edbg:
2883 CPPFLAGS: -O0
2884 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
2885 etsan:
Craig Tillerd93aa142016-02-28 20:56:13 -08002886 CC: clang
2887 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07002888 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillerd93aa142016-02-28 20:56:13 -08002889 CXX: clang++
Craig Tilleref1bf872016-02-28 17:37:33 -08002890 DEFINES: _DEBUG DEBUG GRPC_EXECUTION_CONTEXT_SANITIZER
Craig Tillerd93aa142016-02-28 20:56:13 -08002891 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07002892 LDFLAGS: -fsanitize=thread
Craig Tillerd93aa142016-02-28 20:56:13 -08002893 LDXX: clang++
2894 compile_the_world: true
2895 test_environ:
2896 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
2897 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08002898 gcov:
2899 CC: gcc
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002900 CPPFLAGS: -O0 -fprofile-arcs -ftest-coverage -Wno-return-type
Craig Tillera0f85172016-01-20 15:56:06 -08002901 CXX: g++
Craig Tillera0f85172016-01-20 15:56:06 -08002902 DEFINES: _DEBUG DEBUG GPR_GCOV
2903 LD: gcc
2904 LDFLAGS: -fprofile-arcs -ftest-coverage -rdynamic
2905 LDXX: g++
2906 helgrind:
2907 CPPFLAGS: -O0
2908 DEFINES: _DEBUG DEBUG
2909 LDFLAGS: -rdynamic
2910 timeout_multiplier: 20
2911 valgrind: --tool=helgrind
2912 memcheck:
2913 CPPFLAGS: -O0
2914 DEFINES: _DEBUG DEBUG
2915 LDFLAGS: -rdynamic
2916 timeout_multiplier: 10
2917 valgrind: --tool=memcheck --leak-check=full
2918 msan:
2919 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07002920 CPPFLAGS: -O0 -fsanitize-coverage=edge -fsanitize=memory -fsanitize-memory-track-origins
2921 -fno-omit-frame-pointer -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
2922 -Wno-unused-command-line-argument -fPIE -pie -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002923 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002924 DEFINES: NDEBUG
2925 LD: clang
2926 LDFLAGS: -fsanitize=memory -DGTEST_HAS_TR1_TUPLE=0 -DGTEST_USE_OWN_TR1_TUPLE=1
2927 -fPIE -pie $(if $(JENKINS_BUILD),-Wl$(comma)-Ttext-segment=0x7e0000000000,)
2928 LDXX: clang++
2929 compile_the_world: true
Vijay Pai3b288722016-02-19 00:28:28 -08002930 timeout_multiplier: 4
Craig Tillera0f85172016-01-20 15:56:06 -08002931 mutrace:
2932 CPPFLAGS: -O0
2933 DEFINES: _DEBUG DEBUG
2934 LDFLAGS: -rdynamic
2935 opt:
2936 CPPFLAGS: -O2
2937 DEFINES: NDEBUG
Craig Tillera0f85172016-01-20 15:56:06 -08002938 stapprof:
2939 CPPFLAGS: -O2 -DGRPC_STAP_PROFILER
2940 DEFINES: NDEBUG
2941 tsan:
2942 CC: clang
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002943 CPPFLAGS: -O0 -fsanitize=thread -fno-omit-frame-pointer -Wno-unused-command-line-argument
Craig Tiller5bda4d42016-03-17 17:27:11 -07002944 -DGPR_NO_DIRECT_SYSCALLS
Craig Tillera0f85172016-01-20 15:56:06 -08002945 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002946 LD: clang
Craig Tiller5bda4d42016-03-17 17:27:11 -07002947 LDFLAGS: -fsanitize=thread
Craig Tillera0f85172016-01-20 15:56:06 -08002948 LDXX: clang++
2949 compile_the_world: true
2950 test_environ:
2951 TSAN_OPTIONS: suppressions=tools/tsan_suppressions.txt:halt_on_error=1:second_deadlock_stack=1
vjpai2146fe82016-02-19 10:05:57 -08002952 timeout_multiplier: 5
Craig Tillera0f85172016-01-20 15:56:06 -08002953 ubsan:
2954 CC: clang
Craig Tiller32173c52016-03-17 14:12:45 -07002955 CPPFLAGS: -O1 -fsanitize-coverage=edge -fsanitize=undefined -fno-omit-frame-pointer
2956 -Wno-unused-command-line-argument
Craig Tillera0f85172016-01-20 15:56:06 -08002957 CXX: clang++
Craig Tillera0f85172016-01-20 15:56:06 -08002958 DEFINES: NDEBUG
2959 LD: clang
2960 LDFLAGS: -fsanitize=undefined
2961 LDXX: clang++
2962 compile_the_world: true
2963 timeout_multiplier: 1.5
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002964defaults:
2965 boringssl:
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01002966 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-unknown-pragmas
Nicolas "Pixel" Noble17230442016-01-29 01:46:19 +01002967 -Wno-implicit-function-declaration -Wno-unused-variable -Wno-sign-compare
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002968 CPPFLAGS: -Ithird_party/boringssl/include -fvisibility=hidden -DOPENSSL_NO_ASM
Nicolas "Pixel" Nobleb8e2f9c2016-01-28 05:00:40 +01002969 -D_GNU_SOURCE -DWIN32_LEAN_AND_MEAN -D_HAS_EXCEPTIONS=0 -DNOMINMAX
Nicolas "Pixel" Noble51b1aee2016-01-28 01:14:58 +01002970 global:
2971 CPPFLAGS: -g -Wall -Wextra -Werror -Wno-long-long -Wno-unused-parameter
2972 LDFLAGS: -g
2973 zlib:
Nicolas "Pixel" Noble45000342016-01-28 05:04:45 +01002974 CFLAGS: -Wno-sign-conversion -Wno-conversion -Wno-unused-value -Wno-implicit-function-declaration
Nicolas "Pixel" Noble545c6c12016-01-28 06:01:46 +01002975 $(W_NO_SHIFT_NEGATIVE_VALUE) -fvisibility=hidden
murgatroid99879bc4f2015-11-05 10:35:04 -08002976node_modules:
2977- deps:
2978 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08002979 - gpr
murgatroid995c56c922016-01-25 13:32:52 -08002980 - boringssl
2981 - z
murgatroid9994a75412015-11-19 14:04:53 -08002982 headers:
2983 - src/node/ext/byte_buffer.h
2984 - src/node/ext/call.h
2985 - src/node/ext/call_credentials.h
2986 - src/node/ext/channel.h
2987 - src/node/ext/channel_credentials.h
2988 - src/node/ext/completion_queue_async_worker.h
2989 - src/node/ext/server.h
2990 - src/node/ext/server_credentials.h
2991 - src/node/ext/timeval.h
2992 js:
2993 - src/node/index.js
2994 - src/node/src/client.js
2995 - src/node/src/common.js
2996 - src/node/src/credentials.js
murgatroid9991629972016-02-03 08:46:45 -08002997 - src/node/src/grpc_extension.js
murgatroid9994a75412015-11-19 14:04:53 -08002998 - src/node/src/metadata.js
2999 - src/node/src/server.js
murgatroid99879bc4f2015-11-05 10:35:04 -08003000 name: grpc_node
3001 src:
3002 - src/node/ext/byte_buffer.cc
3003 - src/node/ext/call.cc
3004 - src/node/ext/call_credentials.cc
3005 - src/node/ext/channel.cc
3006 - src/node/ext/channel_credentials.cc
3007 - src/node/ext/completion_queue_async_worker.cc
3008 - src/node/ext/node_grpc.cc
3009 - src/node/ext/server.cc
3010 - src/node/ext/server_credentials.cc
3011 - src/node/ext/timeval.cc
Craig Tillerb79c1e12016-02-23 10:00:58 -08003012openssl_fallback:
Jan Tattermusch9bb70622016-03-18 10:28:54 -07003013 base_uri: https://openssl.org/source/old/1.0.2/
Craig Tillerb79c1e12016-02-23 10:00:58 -08003014 extraction_dir: openssl-1.0.2f
3015 tarball: openssl-1.0.2f.tar.gz
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003016php_config_m4:
3017 deps:
3018 - grpc
3019 - gpr
3020 - boringssl
Stanley Cheung5adb71f2016-02-13 00:03:02 -08003021 headers:
3022 - src/php/ext/grpc/byte_buffer.h
3023 - src/php/ext/grpc/call.h
3024 - src/php/ext/grpc/call_credentials.h
3025 - src/php/ext/grpc/channel.h
3026 - src/php/ext/grpc/channel_credentials.h
3027 - src/php/ext/grpc/completion_queue.h
3028 - src/php/ext/grpc/php_grpc.h
3029 - src/php/ext/grpc/server.h
3030 - src/php/ext/grpc/server_credentials.h
3031 - src/php/ext/grpc/timeval.h
3032 src:
3033 - src/php/ext/grpc/byte_buffer.c
3034 - src/php/ext/grpc/call.c
3035 - src/php/ext/grpc/call_credentials.c
3036 - src/php/ext/grpc/channel.c
3037 - src/php/ext/grpc/channel_credentials.c
3038 - src/php/ext/grpc/completion_queue.c
3039 - src/php/ext/grpc/php_grpc.c
3040 - src/php/ext/grpc/server.c
3041 - src/php/ext/grpc/server_credentials.c
3042 - src/php/ext/grpc/timeval.c
Masood Malekghassemi116982e2015-12-11 15:53:38 -08003043python_dependencies:
3044 deps:
3045 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003046 - gpr
Masood Malekghassemi387e1162016-01-05 10:16:12 -08003047 - boringssl
Masood Malekghassemi0cc27922016-01-22 16:32:41 -08003048 - z
Nicolas "Pixel" Nobled899dce2016-01-28 20:45:39 +01003049ruby_gem:
3050 deps:
3051 - grpc
Craig Tillerda179ce2016-02-09 12:01:53 -08003052 - gpr
Craig Tillerbf4b2242015-08-31 15:53:53 -07003053 - boringssl
Craig Tillerbf4b2242015-08-31 15:53:53 -07003054 - z