blob: 386711fc4df856583c114137035048758632864d [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001{
2 "settings": {
3 "#": "The public version number of the library.",
4 "version": {
5 "major": 0,
6 "minor": 8,
7 "micro": 0,
8 "build": 0
9 }
10 },
11 "libs": [
12 {
13 "name": "gpr",
14 "build": "all",
15 "secure": false,
jtattermusch97fb3f62014-12-08 15:13:41 -080016 "vs_project_guid": "{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080017 "src": [
18 "src/core/support/alloc.c",
19 "src/core/support/cancellable.c",
20 "src/core/support/cmdline.c",
21 "src/core/support/cpu_posix.c",
22 "src/core/support/histogram.c",
23 "src/core/support/host_port.c",
24 "src/core/support/log.c",
25 "src/core/support/log_posix.c",
26 "src/core/support/log_linux.c",
27 "src/core/support/log_android.c",
28 "src/core/support/log_win32.c",
29 "src/core/support/murmur_hash.c",
30 "src/core/support/slice.c",
31 "src/core/support/slice_buffer.c",
32 "src/core/support/string.c",
33 "src/core/support/string_posix.c",
nnoble0c475f02014-12-05 15:37:39 -080034 "src/core/support/string_win32.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080035 "src/core/support/sync.c",
36 "src/core/support/sync_posix.c",
jtattermusch98bffb72014-12-09 12:47:19 -080037 "src/core/support/sync_win32.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080038 "src/core/support/thd_posix.c",
39 "src/core/support/thd_win32.c",
40 "src/core/support/time.c",
41 "src/core/support/time_posix.c",
42 "src/core/support/time_win32.c"
43 ],
44 "public_headers": [
45 "include/grpc/support/alloc.h",
46 "include/grpc/support/atm_gcc_atomic.h",
47 "include/grpc/support/atm_gcc_sync.h",
48 "include/grpc/support/atm.h",
49 "include/grpc/support/atm_win32.h",
50 "include/grpc/support/cancellable_platform.h",
51 "include/grpc/support/cmdline.h",
52 "include/grpc/support/histogram.h",
53 "include/grpc/support/host_port.h",
54 "include/grpc/support/log.h",
55 "include/grpc/support/port_platform.h",
56 "include/grpc/support/slice_buffer.h",
57 "include/grpc/support/slice.h",
58 "include/grpc/support/string.h",
59 "include/grpc/support/sync_generic.h",
60 "include/grpc/support/sync.h",
61 "include/grpc/support/sync_posix.h",
62 "include/grpc/support/sync_win32.h",
63 "include/grpc/support/thd.h",
64 "include/grpc/support/thd_posix.h",
65 "include/grpc/support/thd_win32.h",
66 "include/grpc/support/time.h",
67 "include/grpc/support/time_posix.h",
68 "include/grpc/support/time_win32.h",
69 "include/grpc/support/useful.h"
70 ],
71 "headers": [
72 "src/core/support/cpu.h",
73 "src/core/support/murmur_hash.h",
74 "src/core/support/thd_internal.h"
75 ]
76 },
77 {
78 "name": "grpc",
79 "build": "all",
80 "secure": true,
jtattermusch97fb3f62014-12-08 15:13:41 -080081 "vs_project_guid": "{29D16885-7228-4C31-81ED-5F9187C7F2A9}",
nnoble20e2e3f2014-12-16 15:37:57 -080082 "baselib": true,
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080083 "alternates": [
84 {
85 "name": "grpc_unsecure",
86 "properties": [
87 {
88 "name": "secure",
89 "value": false
90 }
91 ],
92 "exclude_res": [
93 "^src/core/security/",
94 "^src/core/tsi/"
95 ]
96 }
97 ],
98 "src": [
99 "src/core/channel/call_op_string.c",
100 "src/core/channel/census_filter.c",
101 "src/core/channel/channel_args.c",
102 "src/core/channel/channel_stack.c",
ctiller82e275f2014-12-12 08:43:28 -0800103 "src/core/channel/child_channel.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800104 "src/core/channel/client_channel.c",
105 "src/core/channel/client_setup.c",
106 "src/core/channel/connected_channel.c",
107 "src/core/channel/http_client_filter.c",
108 "src/core/channel/http_filter.c",
109 "src/core/channel/http_server_filter.c",
110 "src/core/channel/metadata_buffer.c",
111 "src/core/channel/noop_filter.c",
112 "src/core/compression/algorithm.c",
113 "src/core/compression/message_compress.c",
114 "src/core/endpoint/endpoint.c",
ctiller18b49ab2014-12-09 14:39:16 -0800115 "src/core/endpoint/secure_endpoint.c",
116 "src/core/httpcli/format_request.c",
117 "src/core/httpcli/httpcli.c",
118 "src/core/httpcli/httpcli_security_context.c",
119 "src/core/httpcli/parser.c",
120 "src/core/iomgr/endpoint_pair_posix.c",
121 "src/core/iomgr/iomgr_libevent.c",
122 "src/core/iomgr/iomgr_libevent_use_threads.c",
123 "src/core/iomgr/resolve_address_posix.c",
124 "src/core/iomgr/sockaddr_utils.c",
125 "src/core/iomgr/socket_utils_common_posix.c",
126 "src/core/iomgr/socket_utils_linux.c",
127 "src/core/iomgr/socket_utils_posix.c",
128 "src/core/iomgr/tcp_client_posix.c",
129 "src/core/iomgr/tcp_posix.c",
130 "src/core/iomgr/tcp_server_posix.c",
ctillerc1ddffb2014-12-15 13:08:18 -0800131 "src/core/iomgr/time_averaged_stats.c",
ctiller18b49ab2014-12-09 14:39:16 -0800132 "src/core/security/auth.c",
jboeufbefd2652014-12-12 15:39:47 -0800133 "src/core/security/base64.c",
ctiller18b49ab2014-12-09 14:39:16 -0800134 "src/core/security/credentials.c",
135 "src/core/security/google_root_certs.c",
jboeufbefd2652014-12-12 15:39:47 -0800136 "src/core/security/json_token.c",
ctiller18b49ab2014-12-09 14:39:16 -0800137 "src/core/security/secure_transport_setup.c",
138 "src/core/security/security_context.c",
139 "src/core/security/server_secure_chttp2.c",
140 "src/core/statistics/census_init.c",
141 "src/core/statistics/census_rpc_stats.c",
142 "src/core/statistics/census_tracing.c",
143 "src/core/statistics/hash_table.c",
nnoble8a67b5c2014-12-12 10:48:34 -0800144 "src/core/statistics/census_log.c",
ctiller18b49ab2014-12-09 14:39:16 -0800145 "src/core/statistics/window_stats.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800146 "src/core/surface/byte_buffer.c",
147 "src/core/surface/byte_buffer_reader.c",
148 "src/core/surface/call.c",
149 "src/core/surface/channel.c",
150 "src/core/surface/channel_create.c",
151 "src/core/surface/client.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800152 "src/core/surface/completion_queue.c",
153 "src/core/surface/event_string.c",
154 "src/core/surface/init.c",
ctiller18b49ab2014-12-09 14:39:16 -0800155 "src/core/surface/lame_client.c",
156 "src/core/surface/secure_channel_create.c",
157 "src/core/surface/secure_server_create.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800158 "src/core/surface/server.c",
159 "src/core/surface/server_chttp2.c",
160 "src/core/surface/server_create.c",
nnoble0c475f02014-12-05 15:37:39 -0800161 "src/core/transport/chttp2/alpn.c",
162 "src/core/transport/chttp2/bin_encoder.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800163 "src/core/transport/chttp2/frame_data.c",
nnoble0c475f02014-12-05 15:37:39 -0800164 "src/core/transport/chttp2/frame_goaway.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800165 "src/core/transport/chttp2/frame_ping.c",
166 "src/core/transport/chttp2/frame_rst_stream.c",
167 "src/core/transport/chttp2/frame_settings.c",
168 "src/core/transport/chttp2/frame_window_update.c",
169 "src/core/transport/chttp2/hpack_parser.c",
170 "src/core/transport/chttp2/hpack_table.c",
nnoble0c475f02014-12-05 15:37:39 -0800171 "src/core/transport/chttp2/huffsyms.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800172 "src/core/transport/chttp2/status_conversion.c",
173 "src/core/transport/chttp2/stream_encoder.c",
174 "src/core/transport/chttp2/stream_map.c",
175 "src/core/transport/chttp2/timeout_encoding.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800176 "src/core/transport/chttp2_transport.c",
ctiller18b49ab2014-12-09 14:39:16 -0800177 "src/core/transport/chttp2/varint.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800178 "src/core/transport/metadata.c",
179 "src/core/transport/stream_op.c",
180 "src/core/transport/transport.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800181 "src/core/tsi/fake_transport_security.c",
182 "src/core/tsi/ssl_transport_security.c",
ctiller18b49ab2014-12-09 14:39:16 -0800183 "src/core/tsi/transport_security.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800184 "third_party/cJSON/cJSON.c"
185 ],
186 "public_headers": [
187 "include/grpc/byte_buffer.h",
188 "include/grpc/byte_buffer_reader.h",
189 "include/grpc/grpc.h",
190 "include/grpc/grpc_security.h",
191 "include/grpc/status.h"
192 ],
193 "headers": [
194 "src/core/channel/census_filter.h",
195 "src/core/channel/channel_args.h",
196 "src/core/channel/channel_stack.h",
ctiller82e275f2014-12-12 08:43:28 -0800197 "src/core/channel/child_channel.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800198 "src/core/channel/client_channel.h",
199 "src/core/channel/client_setup.h",
200 "src/core/channel/connected_channel.h",
201 "src/core/channel/http_client_filter.h",
202 "src/core/channel/http_filter.h",
203 "src/core/channel/http_server_filter.h",
204 "src/core/channel/metadata_buffer.h",
205 "src/core/channel/noop_filter.h",
206 "src/core/compression/algorithm.h",
207 "src/core/compression/message_compress.h",
208 "src/core/endpoint/endpoint.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800209 "src/core/httpcli/format_request.h",
210 "src/core/httpcli/httpcli.h",
211 "src/core/httpcli/httpcli_security_context.h",
212 "src/core/httpcli/parser.h",
ctiller18b49ab2014-12-09 14:39:16 -0800213 "src/core/iomgr/alarm.h",
214 "src/core/iomgr/endpoint_pair.h",
215 "src/core/iomgr/iomgr_completion_queue_interface.h",
216 "src/core/iomgr/iomgr.h",
217 "src/core/iomgr/iomgr_libevent.h",
218 "src/core/iomgr/resolve_address.h",
219 "src/core/iomgr/sockaddr.h",
220 "src/core/iomgr/sockaddr_posix.h",
221 "src/core/iomgr/sockaddr_utils.h",
222 "src/core/iomgr/sockaddr_win32.h",
223 "src/core/iomgr/socket_utils_posix.h",
224 "src/core/iomgr/tcp_client.h",
225 "src/core/iomgr/tcp_posix.h",
226 "src/core/iomgr/tcp_server.h",
ctillerc1ddffb2014-12-15 13:08:18 -0800227 "src/core/iomgr/time_averaged_stats.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800228 "src/core/security/auth.h",
jboeufbefd2652014-12-12 15:39:47 -0800229 "src/core/security/base64.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800230 "src/core/security/credentials.h",
231 "src/core/security/google_root_certs.h",
jboeufbefd2652014-12-12 15:39:47 -0800232 "src/core/security/json_token.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800233 "src/core/security/secure_transport_setup.h",
234 "src/core/security/security_context.h",
235 "src/core/statistics/census_interface.h",
236 "src/core/statistics/census_rpc_stats.h",
237 "src/core/statistics/hash_table.h",
nnoble8a67b5c2014-12-12 10:48:34 -0800238 "src/core/statistics/census_log.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800239 "src/core/statistics/window_stats.h",
240 "src/core/surface/call.h",
241 "src/core/surface/channel.h",
242 "src/core/surface/client.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800243 "src/core/surface/completion_queue.h",
244 "src/core/surface/event_string.h",
ctiller18b49ab2014-12-09 14:39:16 -0800245 "src/core/surface/lame_client.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800246 "src/core/surface/server.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800247 "src/core/surface/surface_trace.h",
nnoble0c475f02014-12-05 15:37:39 -0800248 "src/core/transport/chttp2/bin_encoder.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800249 "src/core/transport/chttp2/frame_data.h",
nnoble0c475f02014-12-05 15:37:39 -0800250 "src/core/transport/chttp2/frame_goaway.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800251 "src/core/transport/chttp2/frame.h",
252 "src/core/transport/chttp2/frame_ping.h",
253 "src/core/transport/chttp2/frame_rst_stream.h",
254 "src/core/transport/chttp2/frame_settings.h",
255 "src/core/transport/chttp2/frame_window_update.h",
256 "src/core/transport/chttp2/hpack_parser.h",
257 "src/core/transport/chttp2/hpack_table.h",
258 "src/core/transport/chttp2/http2_errors.h",
ctiller18b49ab2014-12-09 14:39:16 -0800259 "src/core/transport/chttp2/huffsyms.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800260 "src/core/transport/chttp2/status_conversion.h",
261 "src/core/transport/chttp2/stream_encoder.h",
262 "src/core/transport/chttp2/stream_map.h",
263 "src/core/transport/chttp2/timeout_encoding.h",
264 "src/core/transport/chttp2_transport.h",
265 "src/core/transport/chttp2/varint.h",
266 "src/core/transport/metadata.h",
267 "src/core/transport/stream_op.h",
268 "src/core/transport/transport.h",
269 "src/core/transport/transport_impl.h",
270 "src/core/tsi/fake_transport_security.h",
271 "src/core/tsi/ssl_transport_security.h",
272 "src/core/tsi/transport_security.h",
273 "src/core/tsi/transport_security_interface.h",
274 "src/core/tsi/transport_security_test_lib.h"
275 ]
276 },
277 {
278 "name": "grpc_test_util",
279 "build": "private",
jtattermusch97fb3f62014-12-08 15:13:41 -0800280 "vs_project_guid": "{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800281 "src": [
282 "test/core/util/grpc_profiler.c",
jtattermusch94204dd2014-12-11 14:18:58 -0800283 "test/core/util/ipv6_posix.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800284 "test/core/util/parse_hexstring.c",
jtattermusch97fb3f62014-12-08 15:13:41 -0800285 "test/core/util/port_posix.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800286 "test/core/util/slice_splitter.c",
287 "test/core/util/test_config.c",
chenwa8fd44a2014-12-10 15:13:55 -0800288 "test/core/end2end/data/server1_cert.c",
289 "test/core/end2end/data/server1_key.c",
290 "test/core/end2end/data/ca_cert.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800291 "test/core/end2end/cq_verifier.c",
292 "test/core/endpoint/endpoint_tests.c",
293 "test/core/transport/transport_end2end_tests.c",
nnoble69ac39f2014-12-12 15:43:38 -0800294 "test/core/statistics/census_log_tests.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800295 ]
296 },
297 {
298 "name": "grpc++",
299 "build": "all",
300 "c++": true,
301 "secure": true,
jtattermusch97fb3f62014-12-08 15:13:41 -0800302 "vs_project_guid": "{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800303 "src": [
304 "src/cpp/server/server.cc",
305 "src/cpp/server/server_rpc_handler.cc",
306 "src/cpp/server/thread_pool.cc",
307 "src/cpp/server/async_server_context.cc",
308 "src/cpp/server/async_server.cc",
309 "src/cpp/server/completion_queue.cc",
310 "src/cpp/server/server_builder.cc",
311 "src/cpp/stream/stream_context.cc",
312 "src/cpp/client/create_channel.cc",
313 "src/cpp/client/channel.cc",
314 "src/cpp/client/client_context.cc",
315 "src/cpp/client/internal_stub.cc",
316 "src/cpp/util/time.cc",
317 "src/cpp/util/status.cc",
318 "src/cpp/proto/proto_utils.cc",
319 "src/cpp/rpc_method.cc"
320 ],
321 "public_headers": [
322 "include/grpc++/channel_interface.h",
323 "include/grpc++/async_server.h",
324 "include/grpc++/create_channel.h",
325 "include/grpc++/server_builder.h",
326 "include/grpc++/thread_pool_interface.h",
327 "include/grpc++/stream_context_interface.h",
328 "include/grpc++/status.h",
329 "include/grpc++/config.h",
330 "include/grpc++/completion_queue.h",
331 "include/grpc++/stream.h",
332 "include/grpc++/async_server_context.h",
333 "include/grpc++/server.h",
334 "include/grpc++/client_context.h"
335 ],
336 "headers": [
337 "src/cpp/server/rpc_service_method.h",
338 "src/cpp/server/server_rpc_handler.h",
339 "src/cpp/server/thread_pool.h",
340 "src/cpp/stream/stream_context.h",
341 "src/cpp/client/channel.h",
342 "src/cpp/client/internal_stub.h",
343 "src/cpp/util/time.h",
344 "src/cpp/rpc_method.h",
345 "src/cpp/proto/proto_utils.h"
346 ]
347 },
348 {
349 "name": "grpc++_test_util",
350 "build": "test",
351 "src": [
chenwa8fd44a2014-12-10 15:13:55 -0800352 "test/cpp/util/test_ssl_channel.cc",
nnoble72309c62014-12-12 11:42:26 -0800353 "test/cpp/util/echo.proto",
354 "test/cpp/end2end/async_test_server.cc"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800355 ],
356 "c++": true
357 }
358 ],
359 "targets": [
360 {
361 "name": "gen_hpack_tables",
362 "build": "tool",
363 "src": [
364 "src/core/transport/chttp2/gen_hpack_tables.c"
365 ],
366 "deps": [
367 "grpc_test_util",
nnoble0c475f02014-12-05 15:37:39 -0800368 "gpr",
369 "grpc"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800370 ]
371 },
nnobleebebb7e2014-12-10 16:31:01 -0800372
373 {
374 "name": "cpp_plugin",
375 "build": "protoc",
nnoblec78b3402014-12-11 16:06:57 -0800376 "c++": true,
nnoble69ac39f2014-12-12 15:43:38 -0800377 "secure": false,
nnobleebebb7e2014-12-10 16:31:01 -0800378 "src": [
379 "src/compiler/cpp_plugin.cpp",
380 "src/compiler/cpp_generator.cpp"
381 ],
382 "headers": [
383 "src/compiler/cpp_generator.h",
384 "src/compiler/cpp_generator_helpers.h"
385 ],
386 "deps": []
387 },
388 {
389 "name": "ruby_plugin",
390 "build": "protoc",
nnoblec78b3402014-12-11 16:06:57 -0800391 "c++": true,
nnoble69ac39f2014-12-12 15:43:38 -0800392 "secure": false,
nnobleebebb7e2014-12-10 16:31:01 -0800393 "src": [
394 "src/compiler/ruby_plugin.cpp",
395 "src/compiler/ruby_generator.cpp"
396 ],
397 "headers": [
398 "src/compiler/cpp_generator.h",
399 "src/compiler/cpp_generator_helpers-inl.h",
400 "src/compiler/cpp_generator_map-inl.h",
401 "src/compiler/cpp_generator_string-inl.h"
402 ],
403 "deps": []
404 },
405
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800406 {
407 "name": "grpc_byte_buffer_reader_test",
408 "build": "test",
409 "src": [
410 "test/core/surface/byte_buffer_reader_test.c"
411 ],
412 "deps": [
413 "grpc_test_util",
414 "grpc",
415 "gpr"
416 ]
417 },
418 {
419 "name": "gpr_cancellable_test",
420 "build": "test",
421 "src": [
422 "test/core/support/cancellable_test.c"
423 ],
424 "deps": [
425 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800426 "gpr"
427 ]
428 },
429 {
430 "name": "gpr_log_test",
431 "build": "test",
432 "src": [
433 "test/core/support/log_test.c"
434 ],
435 "deps": [
436 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800437 "gpr"
438 ]
439 },
440 {
ctiller5e04b132014-12-15 09:24:43 -0800441 "name": "gpr_useful_test",
442 "build": "test",
443 "src": [
444 "test/core/support/useful_test.c"
445 ],
446 "deps": [
447 "grpc_test_util",
448 "gpr"
449 ]
450 },
451 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800452 "name": "gpr_cmdline_test",
453 "build": "test",
454 "src": [
455 "test/core/support/cmdline_test.c"
456 ],
457 "deps": [
458 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800459 "gpr"
460 ]
461 },
462 {
463 "name": "gpr_histogram_test",
464 "build": "test",
465 "src": [
466 "test/core/support/histogram_test.c"
467 ],
468 "deps": [
469 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800470 "gpr"
471 ]
472 },
473 {
474 "name": "gpr_host_port_test",
475 "build": "test",
476 "src": [
477 "test/core/support/host_port_test.c"
478 ],
479 "deps": [
480 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800481 "gpr"
482 ]
483 },
484 {
485 "name": "gpr_slice_buffer_test",
486 "build": "test",
487 "src": [
488 "test/core/support/slice_buffer_test.c"
489 ],
490 "deps": [
491 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800492 "gpr"
493 ]
494 },
495 {
496 "name": "gpr_slice_test",
497 "build": "test",
498 "src": [
499 "test/core/support/slice_test.c"
500 ],
501 "deps": [
502 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800503 "gpr"
504 ]
505 },
506 {
507 "name": "gpr_string_test",
508 "build": "test",
509 "src": [
510 "test/core/support/string_test.c"
511 ],
512 "deps": [
513 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800514 "gpr"
515 ]
516 },
517 {
518 "name": "gpr_sync_test",
519 "build": "test",
520 "src": [
521 "test/core/support/sync_test.c"
522 ],
523 "deps": [
524 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800525 "gpr"
526 ]
527 },
528 {
529 "name": "gpr_thd_test",
530 "build": "test",
531 "src": [
532 "test/core/support/thd_test.c"
533 ],
534 "deps": [
535 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800536 "gpr"
537 ]
538 },
539 {
540 "name": "gpr_time_test",
541 "build": "test",
542 "src": [
543 "test/core/support/time_test.c"
544 ],
545 "deps": [
546 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800547 "gpr"
548 ]
549 },
550 {
551 "name": "murmur_hash_test",
552 "build": "test",
553 "src": [
554 "test/core/support/murmur_hash_test.c"
555 ],
556 "deps": [
557 "grpc_test_util",
558 "grpc",
559 "gpr"
560 ]
561 },
562 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800563 "name": "grpc_stream_op_test",
564 "build": "test",
565 "src": [
566 "test/core/transport/stream_op_test.c"
567 ],
568 "deps": [
569 "grpc_test_util",
570 "grpc",
571 "gpr"
572 ]
573 },
574 {
nnoble0c475f02014-12-05 15:37:39 -0800575 "name": "alpn_test",
576 "build": "test",
577 "src": [
578 "test/core/transport/chttp2/alpn_test.c"
579 ],
580 "deps": [
581 "grpc_test_util",
582 "grpc",
583 "gpr"
584 ]
585 },
586 {
ctillerc1ddffb2014-12-15 13:08:18 -0800587 "name": "time_averaged_stats_test",
588 "build": "test",
589 "src": [
590 "test/core/iomgr/time_averaged_stats_test.c"
591 ],
592 "deps": [
593 "grpc_test_util",
594 "grpc",
595 "gpr"
596 ]
597 },
598 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800599 "name": "chttp2_stream_encoder_test",
600 "build": "test",
601 "src": [
602 "test/core/transport/chttp2/stream_encoder_test.c"
603 ],
604 "deps": [
605 "grpc_test_util",
606 "grpc",
607 "gpr"
608 ]
609 },
610 {
611 "name": "hpack_table_test",
612 "build": "test",
613 "src": [
614 "test/core/transport/chttp2/hpack_table_test.c"
615 ],
616 "deps": [
617 "grpc_test_util",
618 "grpc",
619 "gpr"
620 ]
621 },
622 {
623 "name": "chttp2_stream_map_test",
624 "build": "test",
625 "src": [
626 "test/core/transport/chttp2/stream_map_test.c"
627 ],
628 "deps": [
629 "grpc_test_util",
630 "grpc",
631 "gpr"
632 ]
633 },
634 {
635 "name": "hpack_parser_test",
636 "build": "test",
637 "src": [
638 "test/core/transport/chttp2/hpack_parser_test.c"
639 ],
640 "deps": [
641 "grpc_test_util",
642 "grpc",
643 "gpr"
644 ]
645 },
646 {
647 "name": "transport_metadata_test",
648 "build": "test",
649 "src": [
650 "test/core/transport/metadata_test.c"
651 ],
652 "deps": [
653 "grpc_test_util",
654 "grpc",
655 "gpr"
656 ]
657 },
658 {
659 "name": "chttp2_status_conversion_test",
660 "build": "test",
661 "src": [
662 "test/core/transport/chttp2/status_conversion_test.c"
663 ],
664 "deps": [
665 "grpc_test_util",
666 "grpc",
667 "gpr"
668 ]
669 },
670 {
671 "name": "chttp2_transport_end2end_test",
672 "build": "test",
673 "src": [
674 "test/core/transport/chttp2_transport_end2end_test.c"
675 ],
676 "deps": [
677 "grpc_test_util",
678 "grpc",
679 "gpr"
680 ]
681 },
682 {
ctiller18b49ab2014-12-09 14:39:16 -0800683 "name": "tcp_posix_test",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800684 "build": "test",
685 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800686 "test/core/iomgr/tcp_posix_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800687 ],
688 "deps": [
689 "grpc_test_util",
690 "grpc",
691 "gpr"
692 ]
693 },
694 {
nnoble0c475f02014-12-05 15:37:39 -0800695 "name": "dualstack_socket_test",
696 "build": "test",
697 "src": [
698 "test/core/end2end/dualstack_socket_test.c"
699 ],
700 "deps": [
701 "grpc_test_util",
702 "grpc",
703 "gpr"
704 ]
705 },
706 {
707 "name": "no_server_test",
708 "build": "test",
709 "src": [
710 "test/core/end2end/no_server_test.c"
711 ],
712 "deps": [
713 "grpc_test_util",
714 "grpc",
715 "gpr"
716 ]
717 },
718 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800719 "name": "resolve_address_test",
720 "build": "test",
721 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800722 "test/core/iomgr/resolve_address_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800723 ],
724 "deps": [
725 "grpc_test_util",
726 "grpc",
727 "gpr"
728 ]
729 },
730 {
ctiller18b49ab2014-12-09 14:39:16 -0800731 "name": "sockaddr_utils_test",
nnoble0c475f02014-12-05 15:37:39 -0800732 "build": "test",
733 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800734 "test/core/iomgr/sockaddr_utils_test.c"
nnoble0c475f02014-12-05 15:37:39 -0800735 ],
736 "deps": [
737 "grpc_test_util",
738 "grpc",
739 "gpr"
740 ]
741 },
742 {
ctiller18b49ab2014-12-09 14:39:16 -0800743 "name": "tcp_server_posix_test",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800744 "build": "test",
745 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800746 "test/core/iomgr/tcp_server_posix_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800747 ],
748 "deps": [
749 "grpc_test_util",
750 "grpc",
751 "gpr"
752 ]
753 },
754 {
ctiller18b49ab2014-12-09 14:39:16 -0800755 "name": "tcp_client_posix_test",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800756 "build": "test",
757 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800758 "test/core/iomgr/tcp_client_posix_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800759 ],
760 "deps": [
761 "grpc_test_util",
762 "grpc",
763 "gpr"
764 ]
765 },
766 {
767 "name": "grpc_channel_stack_test",
768 "build": "test",
769 "src": [
770 "test/core/channel/channel_stack_test.c"
771 ],
772 "deps": [
773 "grpc_test_util",
774 "grpc",
775 "gpr"
776 ]
777 },
778 {
779 "name": "metadata_buffer_test",
780 "build": "test",
781 "src": [
782 "test/core/channel/metadata_buffer_test.c"
783 ],
784 "deps": [
785 "grpc_test_util",
786 "grpc",
787 "gpr"
788 ]
789 },
790 {
791 "name": "grpc_completion_queue_test",
792 "build": "test",
793 "src": [
794 "test/core/surface/completion_queue_test.c"
795 ],
796 "deps": [
797 "grpc_test_util",
798 "grpc",
799 "gpr"
800 ]
801 },
802 {
803 "name": "grpc_completion_queue_benchmark",
804 "build": "benchmark",
805 "src": [
806 "test/core/surface/completion_queue_benchmark.c"
807 ],
808 "deps": [
809 "grpc_test_util",
810 "grpc",
811 "gpr"
812 ]
813 },
814 {
815 "name": "census_window_stats_test",
816 "build": "test",
817 "src": [
818 "test/core/statistics/window_stats_test.c"
819 ],
820 "deps": [
821 "grpc_test_util",
822 "grpc",
823 "gpr"
824 ]
825 },
826 {
827 "name": "census_statistics_quick_test",
828 "build": "test",
829 "src": [
830 "test/core/statistics/quick_test.c"
831 ],
832 "deps": [
833 "grpc_test_util",
834 "grpc",
835 "gpr"
836 ]
837 },
838 {
aveitch482a5be2014-12-15 10:25:12 -0800839 "name": "census_statistics_small_log_test",
840 "build": "test",
841 "src": [
842 "test/core/statistics/small_log_test.c"
843 ],
844 "deps": [
845 "grpc_test_util",
846 "grpc",
847 "gpr"
848 ]
849 },
850 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800851 "name": "census_statistics_performance_test",
852 "build": "test",
853 "src": [
854 "test/core/statistics/performance_test.c"
855 ],
856 "deps": [
857 "grpc_test_util",
858 "grpc",
859 "gpr"
860 ]
861 },
862 {
863 "name": "census_statistics_multiple_writers_test",
864 "build": "test",
865 "src": [
866 "test/core/statistics/multiple_writers_test.c"
867 ],
868 "deps": [
869 "grpc_test_util",
870 "grpc",
871 "gpr"
872 ]
873 },
874 {
875 "name": "census_statistics_multiple_writers_circular_buffer_test",
876 "build": "test",
877 "src": [
878 "test/core/statistics/multiple_writers_circular_buffer_test.c"
879 ],
880 "deps": [
881 "grpc_test_util",
882 "grpc",
883 "gpr"
884 ]
885 },
886 {
887 "name": "census_stub_test",
888 "build": "test",
889 "src": [
890 "test/core/statistics/census_stub_test.c"
891 ],
892 "deps": [
893 "grpc_test_util",
894 "grpc",
895 "gpr"
896 ]
897 },
898 {
899 "name": "census_hash_table_test",
900 "build": "test",
901 "src": [
902 "test/core/statistics/hash_table_test.c"
903 ],
904 "deps": [
905 "grpc_test_util",
906 "grpc",
907 "gpr"
908 ]
909 },
910 {
911 "name": "fling_server",
912 "build": "test",
913 "run": false,
914 "src": [
915 "test/core/fling/server.c"
916 ],
917 "deps": [
918 "grpc_test_util",
919 "grpc",
920 "gpr"
921 ]
922 },
923 {
924 "name": "fling_client",
925 "build": "test",
926 "run": false,
927 "src": [
928 "test/core/fling/client.c"
929 ],
930 "deps": [
931 "grpc_test_util",
932 "grpc",
933 "gpr"
934 ]
935 },
936 {
937 "name": "fling_test",
938 "build": "test",
939 "src": [
940 "test/core/fling/fling_test.c"
941 ],
942 "deps": [
943 "grpc_test_util",
944 "grpc",
945 "gpr"
946 ]
947 },
948 {
949 "name": "echo_server",
950 "build": "test",
951 "run": false,
952 "src": [
953 "test/core/echo/server.c"
954 ],
955 "deps": [
956 "grpc_test_util",
957 "grpc",
958 "gpr"
959 ]
960 },
961 {
962 "name": "echo_client",
963 "build": "test",
964 "run": false,
965 "src": [
966 "test/core/echo/client.c"
967 ],
968 "deps": [
969 "grpc_test_util",
970 "grpc",
971 "gpr"
972 ]
973 },
974 {
975 "name": "echo_test",
976 "build": "test",
977 "src": [
978 "test/core/echo/echo_test.c"
979 ],
980 "deps": [
981 "grpc_test_util",
982 "grpc",
983 "gpr"
984 ]
985 },
986 {
987 "name": "low_level_ping_pong_benchmark",
988 "build": "benchmark",
989 "src": [
990 "test/core/network_benchmarks/low_level_ping_pong.c"
991 ],
992 "deps": [
993 "grpc_test_util",
994 "grpc",
995 "gpr"
996 ]
997 },
998 {
999 "name": "message_compress_test",
1000 "build": "test",
1001 "src": [
1002 "test/core/compression/message_compress_test.c"
1003 ],
1004 "deps": [
1005 "grpc_test_util",
1006 "grpc",
1007 "gpr"
1008 ]
1009 },
nnoble0c475f02014-12-05 15:37:39 -08001010 {
1011 "name": "bin_encoder_test",
1012 "build": "test",
1013 "src": [
1014 "test/core/transport/chttp2/bin_encoder_test.c"
1015 ],
1016 "deps": [
1017 "grpc_test_util",
1018 "grpc",
1019 "gpr"
1020 ]
1021 },
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001022 {
1023 "name": "secure_endpoint_test",
1024 "build": "test",
1025 "src": [
1026 "test/core/endpoint/secure_endpoint_test.c"
1027 ],
1028 "deps": [
1029 "grpc_test_util",
1030 "grpc",
1031 "gpr"
1032 ]
1033 },
1034 {
1035 "name": "httpcli_format_request_test",
1036 "build": "test",
1037 "src": [
1038 "test/core/httpcli/format_request_test.c"
1039 ],
1040 "deps": [
1041 "grpc_test_util",
1042 "grpc",
1043 "gpr"
1044 ]
1045 },
1046 {
1047 "name": "httpcli_parser_test",
1048 "build": "test",
1049 "src": [
1050 "test/core/httpcli/parser_test.c"
1051 ],
1052 "deps": [
1053 "grpc_test_util",
1054 "grpc",
1055 "gpr"
1056 ]
1057 },
1058 {
1059 "name": "httpcli_test",
1060 "build": "test",
1061 "src": [
1062 "test/core/httpcli/httpcli_test.c"
1063 ],
1064 "deps": [
1065 "grpc_test_util",
1066 "grpc",
1067 "gpr"
1068 ]
1069 },
1070 {
1071 "name": "grpc_credentials_test",
1072 "build": "test",
1073 "src": [
1074 "test/core/security/credentials_test.c"
1075 ],
1076 "deps": [
1077 "grpc_test_util",
1078 "grpc",
1079 "gpr"
1080 ]
1081 },
1082 {
jboeufbefd2652014-12-12 15:39:47 -08001083 "name": "grpc_base64_test",
1084 "build": "test",
1085 "src": [
1086 "test/core/security/base64_test.c"
1087 ],
1088 "deps": [
1089 "grpc_test_util",
1090 "grpc",
1091 "gpr"
1092 ]
1093 },
1094 {
1095 "name": "grpc_json_token_test",
1096 "build": "test",
1097 "src": [
1098 "test/core/security/json_token_test.c"
1099 ],
1100 "deps": [
1101 "grpc_test_util",
1102 "grpc",
1103 "gpr"
1104 ]
1105 },
1106 {
ctiller8919f602014-12-10 10:19:42 -08001107 "name": "timeout_encoding_test",
1108 "build": "test",
1109 "src": [
1110 "test/core/transport/chttp2/timeout_encoding_test.c"
1111 ],
1112 "deps": [
1113 "grpc_test_util",
1114 "grpc",
1115 "gpr"
1116 ]
1117 },
1118 {
1119 "name": "fd_posix_test",
1120 "build": "test",
1121 "src": [
1122 "test/core/iomgr/fd_posix_test.c"
1123 ],
1124 "deps": [
1125 "grpc_test_util",
1126 "grpc",
1127 "gpr"
1128 ]
1129 },
1130 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001131 "name": "fling_stream_test",
1132 "build": "test",
1133 "src": [
1134 "test/core/fling/fling_stream_test.c"
1135 ],
1136 "deps": [
1137 "grpc_test_util",
1138 "grpc",
1139 "gpr"
1140 ]
1141 },
1142 {
1143 "name": "lame_client_test",
1144 "build": "test",
1145 "src": [
1146 "test/core/surface/lame_client_test.c"
1147 ],
1148 "deps": [
1149 "grpc_test_util",
1150 "grpc",
1151 "gpr"
1152 ]
1153 },
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001154 {
1155 "name": "thread_pool_test",
1156 "build": "test",
1157 "c++": true,
1158 "src": [
1159 "test/cpp/server/thread_pool_test.cc"
1160 ],
1161 "deps": [
1162 "grpc_test_util",
1163 "grpc++",
1164 "grpc",
1165 "gpr"
1166 ]
1167 },
1168 {
1169 "name": "status_test",
1170 "build": "test",
1171 "c++": true,
1172 "src": [
1173 "test/cpp/util/status_test.cc"
1174 ],
1175 "deps": [
1176 "grpc_test_util",
1177 "grpc++",
1178 "grpc",
1179 "gpr"
1180 ]
ctiller8919f602014-12-10 10:19:42 -08001181 },
1182 {
1183 "name": "sync_client_async_server_test",
1184 "build": "test",
1185 "c++": true,
1186 "src": [
1187 "test/cpp/end2end/sync_client_async_server_test.cc"
1188 ],
1189 "deps": [
1190 "grpc_test_util",
1191 "grpc++",
1192 "grpc",
1193 "gpr"
1194 ]
1195 },
1196 {
1197 "name": "qps_client",
1198 "build": "test",
1199 "c++": true,
1200 "src": [
1201 "test/cpp/qps/qps_client.cc"
1202 ],
1203 "deps": [
1204 "grpc_test_util",
1205 "grpc++",
1206 "grpc",
1207 "gpr"
1208 ]
1209 },
1210 {
1211 "name": "qps_server",
1212 "build": "test",
1213 "c++": true,
1214 "src": [
1215 "test/cpp/end2end/qps_server.cc"
1216 ],
1217 "deps": [
1218 "grpc_test_util",
1219 "grpc++",
1220 "grpc",
1221 "gpr"
1222 ]
1223 },
1224 {
1225 "name": "interop_server",
1226 "build": "test",
nnoble72309c62014-12-12 11:42:26 -08001227 "run": false,
ctiller8919f602014-12-10 10:19:42 -08001228 "c++": true,
1229 "src": [
nnoble72309c62014-12-12 11:42:26 -08001230 "test/cpp/interop/empty.proto",
1231 "test/cpp/interop/messages.proto",
1232 "test/cpp/interop/test.proto",
ctiller8919f602014-12-10 10:19:42 -08001233 "test/cpp/interop/server.cc"
1234 ],
1235 "deps": [
nnoble72309c62014-12-12 11:42:26 -08001236 "grpc++_test_util",
ctiller8919f602014-12-10 10:19:42 -08001237 "grpc_test_util",
1238 "grpc++",
1239 "grpc",
1240 "gpr"
1241 ]
1242 },
1243 {
1244 "name": "interop_client",
1245 "build": "test",
nnoble72309c62014-12-12 11:42:26 -08001246 "run": false,
ctiller8919f602014-12-10 10:19:42 -08001247 "c++": true,
1248 "src": [
nnoble72309c62014-12-12 11:42:26 -08001249 "test/cpp/interop/empty.proto",
1250 "test/cpp/interop/messages.proto",
1251 "test/cpp/interop/test.proto",
ctiller8919f602014-12-10 10:19:42 -08001252 "test/cpp/interop/client.cc"
1253 ],
1254 "deps": [
nnoble72309c62014-12-12 11:42:26 -08001255 "grpc++_test_util",
ctiller8919f602014-12-10 10:19:42 -08001256 "grpc_test_util",
1257 "grpc++",
1258 "grpc",
1259 "gpr"
1260 ]
1261 },
1262 {
1263 "name": "end2end_test",
1264 "build": "test",
1265 "c++": true,
1266 "src": [
1267 "test/cpp/end2end/end2end_test.cc"
1268 ],
1269 "deps": [
1270 "grpc_test_util",
1271 "grpc++",
1272 "grpc",
1273 "gpr"
1274 ]
1275 },
1276 {
1277 "name": "alarm_test",
1278 "build": "test",
1279 "src": [
1280 "test/core/iomgr/alarm_test.c"
1281 ],
1282 "deps": [
1283 "grpc_test_util",
1284 "grpc",
1285 "gpr"
1286 ]
1287 },
1288 {
1289 "name": "time_test",
1290 "build": "test",
1291 "src": [
1292 "test/core/support/time_test.c"
1293 ],
1294 "deps": [
1295 "grpc_test_util",
1296 "grpc",
1297 "gpr"
1298 ]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001299 }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001300 ]
1301}