blob: 3d961dd3aea45312e750590b0093a5695d5ee5da [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",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080024 "src/core/support/log_android.c",
ctiller2bbb6c42014-12-17 09:44:44 -080025 "src/core/support/log.c",
26 "src/core/support/log_linux.c",
27 "src/core/support/log_posix.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080028 "src/core/support/log_win32.c",
29 "src/core/support/murmur_hash.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080030 "src/core/support/slice_buffer.c",
ctiller2bbb6c42014-12-17 09:44:44 -080031 "src/core/support/slice.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080032 "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",
ctiller18b49ab2014-12-09 14:39:16 -0800114 "src/core/httpcli/format_request.c",
115 "src/core/httpcli/httpcli.c",
116 "src/core/httpcli/httpcli_security_context.c",
117 "src/core/httpcli/parser.c",
ctiller52103932014-12-20 09:07:32 -0800118 "src/core/iomgr/alarm.c",
119 "src/core/iomgr/alarm_heap.c",
ctiller2bbb6c42014-12-17 09:44:44 -0800120 "src/core/iomgr/endpoint.c",
ctiller18b49ab2014-12-09 14:39:16 -0800121 "src/core/iomgr/endpoint_pair_posix.c",
122 "src/core/iomgr/iomgr_libevent.c",
123 "src/core/iomgr/iomgr_libevent_use_threads.c",
ctillerd79b4862014-12-17 16:36:59 -0800124 "src/core/iomgr/pollset.c",
ctiller18b49ab2014-12-09 14:39:16 -0800125 "src/core/iomgr/resolve_address_posix.c",
126 "src/core/iomgr/sockaddr_utils.c",
127 "src/core/iomgr/socket_utils_common_posix.c",
128 "src/core/iomgr/socket_utils_linux.c",
129 "src/core/iomgr/socket_utils_posix.c",
130 "src/core/iomgr/tcp_client_posix.c",
131 "src/core/iomgr/tcp_posix.c",
132 "src/core/iomgr/tcp_server_posix.c",
ctillerc1ddffb2014-12-15 13:08:18 -0800133 "src/core/iomgr/time_averaged_stats.c",
ctiller18b49ab2014-12-09 14:39:16 -0800134 "src/core/security/auth.c",
jboeufbefd2652014-12-12 15:39:47 -0800135 "src/core/security/base64.c",
ctiller18b49ab2014-12-09 14:39:16 -0800136 "src/core/security/credentials.c",
137 "src/core/security/google_root_certs.c",
jboeufbefd2652014-12-12 15:39:47 -0800138 "src/core/security/json_token.c",
ctiller2bbb6c42014-12-17 09:44:44 -0800139 "src/core/security/secure_endpoint.c",
ctiller18b49ab2014-12-09 14:39:16 -0800140 "src/core/security/secure_transport_setup.c",
141 "src/core/security/security_context.c",
142 "src/core/security/server_secure_chttp2.c",
143 "src/core/statistics/census_init.c",
ctiller2bbb6c42014-12-17 09:44:44 -0800144 "src/core/statistics/census_log.c",
ctiller18b49ab2014-12-09 14:39:16 -0800145 "src/core/statistics/census_rpc_stats.c",
146 "src/core/statistics/census_tracing.c",
147 "src/core/statistics/hash_table.c",
ctiller18b49ab2014-12-09 14:39:16 -0800148 "src/core/statistics/window_stats.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800149 "src/core/surface/byte_buffer.c",
150 "src/core/surface/byte_buffer_reader.c",
151 "src/core/surface/call.c",
152 "src/core/surface/channel.c",
153 "src/core/surface/channel_create.c",
154 "src/core/surface/client.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800155 "src/core/surface/completion_queue.c",
156 "src/core/surface/event_string.c",
157 "src/core/surface/init.c",
ctiller18b49ab2014-12-09 14:39:16 -0800158 "src/core/surface/lame_client.c",
159 "src/core/surface/secure_channel_create.c",
160 "src/core/surface/secure_server_create.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800161 "src/core/surface/server.c",
162 "src/core/surface/server_chttp2.c",
163 "src/core/surface/server_create.c",
nnoble0c475f02014-12-05 15:37:39 -0800164 "src/core/transport/chttp2/alpn.c",
165 "src/core/transport/chttp2/bin_encoder.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800166 "src/core/transport/chttp2/frame_data.c",
nnoble0c475f02014-12-05 15:37:39 -0800167 "src/core/transport/chttp2/frame_goaway.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800168 "src/core/transport/chttp2/frame_ping.c",
169 "src/core/transport/chttp2/frame_rst_stream.c",
170 "src/core/transport/chttp2/frame_settings.c",
171 "src/core/transport/chttp2/frame_window_update.c",
172 "src/core/transport/chttp2/hpack_parser.c",
173 "src/core/transport/chttp2/hpack_table.c",
nnoble0c475f02014-12-05 15:37:39 -0800174 "src/core/transport/chttp2/huffsyms.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800175 "src/core/transport/chttp2/status_conversion.c",
176 "src/core/transport/chttp2/stream_encoder.c",
177 "src/core/transport/chttp2/stream_map.c",
178 "src/core/transport/chttp2/timeout_encoding.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800179 "src/core/transport/chttp2_transport.c",
ctiller18b49ab2014-12-09 14:39:16 -0800180 "src/core/transport/chttp2/varint.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800181 "src/core/transport/metadata.c",
182 "src/core/transport/stream_op.c",
183 "src/core/transport/transport.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800184 "src/core/tsi/fake_transport_security.c",
185 "src/core/tsi/ssl_transport_security.c",
ctiller18b49ab2014-12-09 14:39:16 -0800186 "src/core/tsi/transport_security.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800187 "third_party/cJSON/cJSON.c"
188 ],
189 "public_headers": [
190 "include/grpc/byte_buffer.h",
191 "include/grpc/byte_buffer_reader.h",
192 "include/grpc/grpc.h",
193 "include/grpc/grpc_security.h",
194 "include/grpc/status.h"
195 ],
196 "headers": [
197 "src/core/channel/census_filter.h",
198 "src/core/channel/channel_args.h",
199 "src/core/channel/channel_stack.h",
ctiller82e275f2014-12-12 08:43:28 -0800200 "src/core/channel/child_channel.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800201 "src/core/channel/client_channel.h",
202 "src/core/channel/client_setup.h",
203 "src/core/channel/connected_channel.h",
204 "src/core/channel/http_client_filter.h",
205 "src/core/channel/http_filter.h",
206 "src/core/channel/http_server_filter.h",
207 "src/core/channel/metadata_buffer.h",
208 "src/core/channel/noop_filter.h",
209 "src/core/compression/algorithm.h",
210 "src/core/compression/message_compress.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800211 "src/core/httpcli/format_request.h",
212 "src/core/httpcli/httpcli.h",
213 "src/core/httpcli/httpcli_security_context.h",
214 "src/core/httpcli/parser.h",
ctiller18b49ab2014-12-09 14:39:16 -0800215 "src/core/iomgr/alarm.h",
ctiller52103932014-12-20 09:07:32 -0800216 "src/core/iomgr/alarm_heap.h",
217 "src/core/iomgr/alarm_internal.h",
ctiller2bbb6c42014-12-17 09:44:44 -0800218 "src/core/iomgr/endpoint.h",
ctiller18b49ab2014-12-09 14:39:16 -0800219 "src/core/iomgr/endpoint_pair.h",
220 "src/core/iomgr/iomgr_completion_queue_interface.h",
221 "src/core/iomgr/iomgr.h",
222 "src/core/iomgr/iomgr_libevent.h",
ctillerd79b4862014-12-17 16:36:59 -0800223 "src/core/iomgr/pollset.h",
ctiller18b49ab2014-12-09 14:39:16 -0800224 "src/core/iomgr/resolve_address.h",
225 "src/core/iomgr/sockaddr.h",
226 "src/core/iomgr/sockaddr_posix.h",
227 "src/core/iomgr/sockaddr_utils.h",
228 "src/core/iomgr/sockaddr_win32.h",
229 "src/core/iomgr/socket_utils_posix.h",
230 "src/core/iomgr/tcp_client.h",
231 "src/core/iomgr/tcp_posix.h",
232 "src/core/iomgr/tcp_server.h",
ctillerc1ddffb2014-12-15 13:08:18 -0800233 "src/core/iomgr/time_averaged_stats.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800234 "src/core/security/auth.h",
jboeufbefd2652014-12-12 15:39:47 -0800235 "src/core/security/base64.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800236 "src/core/security/credentials.h",
237 "src/core/security/google_root_certs.h",
jboeufbefd2652014-12-12 15:39:47 -0800238 "src/core/security/json_token.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800239 "src/core/security/secure_transport_setup.h",
240 "src/core/security/security_context.h",
241 "src/core/statistics/census_interface.h",
ctiller2bbb6c42014-12-17 09:44:44 -0800242 "src/core/statistics/census_log.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800243 "src/core/statistics/census_rpc_stats.h",
244 "src/core/statistics/hash_table.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800245 "src/core/statistics/window_stats.h",
246 "src/core/surface/call.h",
247 "src/core/surface/channel.h",
248 "src/core/surface/client.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800249 "src/core/surface/completion_queue.h",
250 "src/core/surface/event_string.h",
ctiller18b49ab2014-12-09 14:39:16 -0800251 "src/core/surface/lame_client.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800252 "src/core/surface/server.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800253 "src/core/surface/surface_trace.h",
nnoble0c475f02014-12-05 15:37:39 -0800254 "src/core/transport/chttp2/bin_encoder.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800255 "src/core/transport/chttp2/frame_data.h",
nnoble0c475f02014-12-05 15:37:39 -0800256 "src/core/transport/chttp2/frame_goaway.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800257 "src/core/transport/chttp2/frame.h",
258 "src/core/transport/chttp2/frame_ping.h",
259 "src/core/transport/chttp2/frame_rst_stream.h",
260 "src/core/transport/chttp2/frame_settings.h",
261 "src/core/transport/chttp2/frame_window_update.h",
262 "src/core/transport/chttp2/hpack_parser.h",
263 "src/core/transport/chttp2/hpack_table.h",
264 "src/core/transport/chttp2/http2_errors.h",
ctiller18b49ab2014-12-09 14:39:16 -0800265 "src/core/transport/chttp2/huffsyms.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800266 "src/core/transport/chttp2/status_conversion.h",
267 "src/core/transport/chttp2/stream_encoder.h",
268 "src/core/transport/chttp2/stream_map.h",
269 "src/core/transport/chttp2/timeout_encoding.h",
270 "src/core/transport/chttp2_transport.h",
271 "src/core/transport/chttp2/varint.h",
272 "src/core/transport/metadata.h",
273 "src/core/transport/stream_op.h",
274 "src/core/transport/transport.h",
275 "src/core/transport/transport_impl.h",
276 "src/core/tsi/fake_transport_security.h",
277 "src/core/tsi/ssl_transport_security.h",
278 "src/core/tsi/transport_security.h",
279 "src/core/tsi/transport_security_interface.h",
280 "src/core/tsi/transport_security_test_lib.h"
281 ]
282 },
283 {
284 "name": "grpc_test_util",
285 "build": "private",
jtattermusch97fb3f62014-12-08 15:13:41 -0800286 "vs_project_guid": "{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800287 "src": [
ctiller2bbb6c42014-12-17 09:44:44 -0800288 "test/core/end2end/cq_verifier.c",
chenw97fd9e52014-12-19 17:12:36 -0800289 "test/core/end2end/data/test_root_cert.c",
290 "test/core/end2end/data/prod_roots_certs.c",
ctiller2bbb6c42014-12-17 09:44:44 -0800291 "test/core/end2end/data/server1_cert.c",
292 "test/core/end2end/data/server1_key.c",
293 "test/core/iomgr/endpoint_tests.c",
294 "test/core/statistics/census_log_tests.c",
295 "test/core/transport/transport_end2end_tests.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800296 "test/core/util/grpc_profiler.c",
297 "test/core/util/parse_hexstring.c",
jtattermusch97fb3f62014-12-08 15:13:41 -0800298 "test/core/util/port_posix.c",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800299 "test/core/util/slice_splitter.c",
ctiller2bbb6c42014-12-17 09:44:44 -0800300 "test/core/util/test_config.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800301 ]
302 },
303 {
304 "name": "grpc++",
305 "build": "all",
306 "c++": true,
307 "secure": true,
jtattermusch97fb3f62014-12-08 15:13:41 -0800308 "vs_project_guid": "{C187A093-A0FE-489D-A40A-6E33DE0F9FEB}",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800309 "src": [
ctiller2bbb6c42014-12-17 09:44:44 -0800310 "src/cpp/client/channel.cc",
yangg59dfc902014-12-19 14:00:14 -0800311 "src/cpp/client/channel_arguments.cc",
ctiller2bbb6c42014-12-17 09:44:44 -0800312 "src/cpp/client/client_context.cc",
313 "src/cpp/client/create_channel.cc",
vpai80b6d012014-12-17 11:47:32 -0800314 "src/cpp/client/credentials.cc",
ctiller2bbb6c42014-12-17 09:44:44 -0800315 "src/cpp/client/internal_stub.cc",
316 "src/cpp/proto/proto_utils.cc",
317 "src/cpp/rpc_method.cc",
318 "src/cpp/server/async_server.cc",
319 "src/cpp/server/async_server_context.cc",
320 "src/cpp/server/completion_queue.cc",
321 "src/cpp/server/server_builder.cc",
yanggfd2f3ac2014-12-17 16:46:06 -0800322 "src/cpp/server/server_context_impl.cc",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800323 "src/cpp/server/server.cc",
324 "src/cpp/server/server_rpc_handler.cc",
vpai80b6d012014-12-17 11:47:32 -0800325 "src/cpp/server/server_credentials.cc",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800326 "src/cpp/server/thread_pool.cc",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800327 "src/cpp/stream/stream_context.cc",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800328 "src/cpp/util/status.cc",
ctiller2bbb6c42014-12-17 09:44:44 -0800329 "src/cpp/util/time.cc"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800330 ],
331 "public_headers": [
ctiller2bbb6c42014-12-17 09:44:44 -0800332 "include/grpc++/async_server_context.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800333 "include/grpc++/async_server.h",
yangg59dfc902014-12-19 14:00:14 -0800334 "include/grpc++/channel_arguments.h",
ctiller2bbb6c42014-12-17 09:44:44 -0800335 "include/grpc++/channel_interface.h",
336 "include/grpc++/client_context.h",
337 "include/grpc++/completion_queue.h",
338 "include/grpc++/config.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800339 "include/grpc++/create_channel.h",
vpai80b6d012014-12-17 11:47:32 -0800340 "include/grpc++/credentials.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800341 "include/grpc++/server_builder.h",
yanggfd2f3ac2014-12-17 16:46:06 -0800342 "include/grpc++/server_context.h",
vpai80b6d012014-12-17 11:47:32 -0800343 "include/grpc++/server_credentials.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800344 "include/grpc++/server.h",
ctiller2bbb6c42014-12-17 09:44:44 -0800345 "include/grpc++/status.h",
346 "include/grpc++/stream_context_interface.h",
vpai80b6d012014-12-17 11:47:32 -0800347 "include/grpc++/stream.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800348 ],
349 "headers": [
ctiller2bbb6c42014-12-17 09:44:44 -0800350 "src/cpp/client/channel.h",
351 "src/cpp/client/internal_stub.h",
352 "src/cpp/proto/proto_utils.h",
353 "src/cpp/rpc_method.h",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800354 "src/cpp/server/rpc_service_method.h",
355 "src/cpp/server/server_rpc_handler.h",
356 "src/cpp/server/thread_pool.h",
357 "src/cpp/stream/stream_context.h",
ctiller2bbb6c42014-12-17 09:44:44 -0800358 "src/cpp/util/time.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800359 ]
360 },
361 {
362 "name": "grpc++_test_util",
363 "build": "test",
364 "src": [
nnoble72309c62014-12-12 11:42:26 -0800365 "test/cpp/util/echo.proto",
yangg59dfc902014-12-19 14:00:14 -0800366 "test/cpp/util/create_test_channel.cc",
nnoble4cb93712014-12-17 14:18:08 -0800367 "test/cpp/end2end/async_test_server.cc"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800368 ],
369 "c++": true
370 }
371 ],
372 "targets": [
373 {
374 "name": "gen_hpack_tables",
375 "build": "tool",
376 "src": [
377 "src/core/transport/chttp2/gen_hpack_tables.c"
378 ],
379 "deps": [
380 "grpc_test_util",
nnoble0c475f02014-12-05 15:37:39 -0800381 "gpr",
382 "grpc"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800383 ]
384 },
nnobleebebb7e2014-12-10 16:31:01 -0800385
386 {
387 "name": "cpp_plugin",
388 "build": "protoc",
nnoblec78b3402014-12-11 16:06:57 -0800389 "c++": true,
nnoble69ac39f2014-12-12 15:43:38 -0800390 "secure": false,
nnobleebebb7e2014-12-10 16:31:01 -0800391 "src": [
392 "src/compiler/cpp_plugin.cpp",
393 "src/compiler/cpp_generator.cpp"
394 ],
395 "headers": [
396 "src/compiler/cpp_generator.h",
397 "src/compiler/cpp_generator_helpers.h"
398 ],
399 "deps": []
400 },
401 {
402 "name": "ruby_plugin",
403 "build": "protoc",
nnoblec78b3402014-12-11 16:06:57 -0800404 "c++": true,
nnoble69ac39f2014-12-12 15:43:38 -0800405 "secure": false,
nnobleebebb7e2014-12-10 16:31:01 -0800406 "src": [
407 "src/compiler/ruby_plugin.cpp",
408 "src/compiler/ruby_generator.cpp"
409 ],
410 "headers": [
411 "src/compiler/cpp_generator.h",
412 "src/compiler/cpp_generator_helpers-inl.h",
413 "src/compiler/cpp_generator_map-inl.h",
414 "src/compiler/cpp_generator_string-inl.h"
415 ],
416 "deps": []
417 },
418
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800419 {
420 "name": "grpc_byte_buffer_reader_test",
421 "build": "test",
422 "src": [
423 "test/core/surface/byte_buffer_reader_test.c"
424 ],
425 "deps": [
426 "grpc_test_util",
427 "grpc",
428 "gpr"
429 ]
430 },
431 {
432 "name": "gpr_cancellable_test",
433 "build": "test",
434 "src": [
435 "test/core/support/cancellable_test.c"
436 ],
437 "deps": [
438 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800439 "gpr"
440 ]
441 },
442 {
443 "name": "gpr_log_test",
444 "build": "test",
445 "src": [
446 "test/core/support/log_test.c"
447 ],
448 "deps": [
449 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800450 "gpr"
451 ]
452 },
453 {
ctiller5e04b132014-12-15 09:24:43 -0800454 "name": "gpr_useful_test",
455 "build": "test",
456 "src": [
457 "test/core/support/useful_test.c"
458 ],
459 "deps": [
460 "grpc_test_util",
461 "gpr"
462 ]
463 },
464 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800465 "name": "gpr_cmdline_test",
466 "build": "test",
467 "src": [
468 "test/core/support/cmdline_test.c"
469 ],
470 "deps": [
471 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800472 "gpr"
473 ]
474 },
475 {
476 "name": "gpr_histogram_test",
477 "build": "test",
478 "src": [
479 "test/core/support/histogram_test.c"
480 ],
481 "deps": [
482 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800483 "gpr"
484 ]
485 },
486 {
487 "name": "gpr_host_port_test",
488 "build": "test",
489 "src": [
490 "test/core/support/host_port_test.c"
491 ],
492 "deps": [
493 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800494 "gpr"
495 ]
496 },
497 {
498 "name": "gpr_slice_buffer_test",
499 "build": "test",
500 "src": [
501 "test/core/support/slice_buffer_test.c"
502 ],
503 "deps": [
504 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800505 "gpr"
506 ]
507 },
508 {
509 "name": "gpr_slice_test",
510 "build": "test",
511 "src": [
512 "test/core/support/slice_test.c"
513 ],
514 "deps": [
515 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800516 "gpr"
517 ]
518 },
519 {
520 "name": "gpr_string_test",
521 "build": "test",
522 "src": [
523 "test/core/support/string_test.c"
524 ],
525 "deps": [
526 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800527 "gpr"
528 ]
529 },
530 {
531 "name": "gpr_sync_test",
532 "build": "test",
533 "src": [
534 "test/core/support/sync_test.c"
535 ],
536 "deps": [
537 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800538 "gpr"
539 ]
540 },
541 {
542 "name": "gpr_thd_test",
543 "build": "test",
544 "src": [
545 "test/core/support/thd_test.c"
546 ],
547 "deps": [
548 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800549 "gpr"
550 ]
551 },
552 {
553 "name": "gpr_time_test",
554 "build": "test",
555 "src": [
556 "test/core/support/time_test.c"
557 ],
558 "deps": [
559 "grpc_test_util",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800560 "gpr"
561 ]
562 },
563 {
564 "name": "murmur_hash_test",
565 "build": "test",
566 "src": [
567 "test/core/support/murmur_hash_test.c"
568 ],
569 "deps": [
570 "grpc_test_util",
571 "grpc",
572 "gpr"
573 ]
574 },
575 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800576 "name": "grpc_stream_op_test",
577 "build": "test",
578 "src": [
579 "test/core/transport/stream_op_test.c"
580 ],
581 "deps": [
582 "grpc_test_util",
583 "grpc",
584 "gpr"
585 ]
586 },
587 {
nnoble0c475f02014-12-05 15:37:39 -0800588 "name": "alpn_test",
589 "build": "test",
590 "src": [
591 "test/core/transport/chttp2/alpn_test.c"
592 ],
593 "deps": [
594 "grpc_test_util",
595 "grpc",
596 "gpr"
597 ]
598 },
599 {
ctillerc1ddffb2014-12-15 13:08:18 -0800600 "name": "time_averaged_stats_test",
601 "build": "test",
602 "src": [
603 "test/core/iomgr/time_averaged_stats_test.c"
604 ],
605 "deps": [
606 "grpc_test_util",
607 "grpc",
608 "gpr"
609 ]
610 },
611 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800612 "name": "chttp2_stream_encoder_test",
613 "build": "test",
614 "src": [
615 "test/core/transport/chttp2/stream_encoder_test.c"
616 ],
617 "deps": [
618 "grpc_test_util",
619 "grpc",
620 "gpr"
621 ]
622 },
623 {
624 "name": "hpack_table_test",
625 "build": "test",
626 "src": [
627 "test/core/transport/chttp2/hpack_table_test.c"
628 ],
629 "deps": [
630 "grpc_test_util",
631 "grpc",
632 "gpr"
633 ]
634 },
635 {
636 "name": "chttp2_stream_map_test",
637 "build": "test",
638 "src": [
639 "test/core/transport/chttp2/stream_map_test.c"
640 ],
641 "deps": [
642 "grpc_test_util",
643 "grpc",
644 "gpr"
645 ]
646 },
647 {
648 "name": "hpack_parser_test",
649 "build": "test",
650 "src": [
651 "test/core/transport/chttp2/hpack_parser_test.c"
652 ],
653 "deps": [
654 "grpc_test_util",
655 "grpc",
656 "gpr"
657 ]
658 },
659 {
660 "name": "transport_metadata_test",
661 "build": "test",
662 "src": [
663 "test/core/transport/metadata_test.c"
664 ],
665 "deps": [
666 "grpc_test_util",
667 "grpc",
668 "gpr"
669 ]
670 },
671 {
672 "name": "chttp2_status_conversion_test",
673 "build": "test",
674 "src": [
675 "test/core/transport/chttp2/status_conversion_test.c"
676 ],
677 "deps": [
678 "grpc_test_util",
679 "grpc",
680 "gpr"
681 ]
682 },
683 {
684 "name": "chttp2_transport_end2end_test",
685 "build": "test",
686 "src": [
687 "test/core/transport/chttp2_transport_end2end_test.c"
688 ],
689 "deps": [
690 "grpc_test_util",
691 "grpc",
692 "gpr"
693 ]
694 },
695 {
ctiller18b49ab2014-12-09 14:39:16 -0800696 "name": "tcp_posix_test",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800697 "build": "test",
698 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800699 "test/core/iomgr/tcp_posix_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800700 ],
701 "deps": [
702 "grpc_test_util",
703 "grpc",
704 "gpr"
705 ]
706 },
707 {
nnoble0c475f02014-12-05 15:37:39 -0800708 "name": "dualstack_socket_test",
709 "build": "test",
710 "src": [
711 "test/core/end2end/dualstack_socket_test.c"
712 ],
713 "deps": [
714 "grpc_test_util",
715 "grpc",
716 "gpr"
717 ]
718 },
719 {
720 "name": "no_server_test",
721 "build": "test",
722 "src": [
723 "test/core/end2end/no_server_test.c"
724 ],
725 "deps": [
726 "grpc_test_util",
727 "grpc",
728 "gpr"
729 ]
730 },
731 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800732 "name": "resolve_address_test",
733 "build": "test",
734 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800735 "test/core/iomgr/resolve_address_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800736 ],
737 "deps": [
738 "grpc_test_util",
739 "grpc",
740 "gpr"
741 ]
742 },
743 {
ctiller18b49ab2014-12-09 14:39:16 -0800744 "name": "sockaddr_utils_test",
nnoble0c475f02014-12-05 15:37:39 -0800745 "build": "test",
746 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800747 "test/core/iomgr/sockaddr_utils_test.c"
nnoble0c475f02014-12-05 15:37:39 -0800748 ],
749 "deps": [
750 "grpc_test_util",
751 "grpc",
752 "gpr"
753 ]
754 },
755 {
ctiller18b49ab2014-12-09 14:39:16 -0800756 "name": "tcp_server_posix_test",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800757 "build": "test",
758 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800759 "test/core/iomgr/tcp_server_posix_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800760 ],
761 "deps": [
762 "grpc_test_util",
763 "grpc",
764 "gpr"
765 ]
766 },
767 {
ctiller18b49ab2014-12-09 14:39:16 -0800768 "name": "tcp_client_posix_test",
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800769 "build": "test",
770 "src": [
ctiller18b49ab2014-12-09 14:39:16 -0800771 "test/core/iomgr/tcp_client_posix_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800772 ],
773 "deps": [
774 "grpc_test_util",
775 "grpc",
776 "gpr"
777 ]
778 },
779 {
780 "name": "grpc_channel_stack_test",
781 "build": "test",
782 "src": [
783 "test/core/channel/channel_stack_test.c"
784 ],
785 "deps": [
786 "grpc_test_util",
787 "grpc",
788 "gpr"
789 ]
790 },
791 {
792 "name": "metadata_buffer_test",
793 "build": "test",
794 "src": [
795 "test/core/channel/metadata_buffer_test.c"
796 ],
797 "deps": [
798 "grpc_test_util",
799 "grpc",
800 "gpr"
801 ]
802 },
803 {
804 "name": "grpc_completion_queue_test",
805 "build": "test",
806 "src": [
807 "test/core/surface/completion_queue_test.c"
808 ],
809 "deps": [
810 "grpc_test_util",
811 "grpc",
812 "gpr"
813 ]
814 },
815 {
816 "name": "grpc_completion_queue_benchmark",
817 "build": "benchmark",
818 "src": [
819 "test/core/surface/completion_queue_benchmark.c"
820 ],
821 "deps": [
822 "grpc_test_util",
823 "grpc",
824 "gpr"
825 ]
826 },
827 {
828 "name": "census_window_stats_test",
829 "build": "test",
830 "src": [
831 "test/core/statistics/window_stats_test.c"
832 ],
833 "deps": [
834 "grpc_test_util",
835 "grpc",
836 "gpr"
837 ]
838 },
839 {
840 "name": "census_statistics_quick_test",
841 "build": "test",
842 "src": [
843 "test/core/statistics/quick_test.c"
844 ],
845 "deps": [
846 "grpc_test_util",
847 "grpc",
848 "gpr"
849 ]
850 },
851 {
aveitch482a5be2014-12-15 10:25:12 -0800852 "name": "census_statistics_small_log_test",
853 "build": "test",
854 "src": [
855 "test/core/statistics/small_log_test.c"
856 ],
857 "deps": [
858 "grpc_test_util",
859 "grpc",
860 "gpr"
861 ]
862 },
863 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -0800864 "name": "census_statistics_performance_test",
865 "build": "test",
866 "src": [
867 "test/core/statistics/performance_test.c"
868 ],
869 "deps": [
870 "grpc_test_util",
871 "grpc",
872 "gpr"
873 ]
874 },
875 {
876 "name": "census_statistics_multiple_writers_test",
877 "build": "test",
878 "src": [
879 "test/core/statistics/multiple_writers_test.c"
880 ],
881 "deps": [
882 "grpc_test_util",
883 "grpc",
884 "gpr"
885 ]
886 },
887 {
888 "name": "census_statistics_multiple_writers_circular_buffer_test",
889 "build": "test",
890 "src": [
891 "test/core/statistics/multiple_writers_circular_buffer_test.c"
892 ],
893 "deps": [
894 "grpc_test_util",
895 "grpc",
896 "gpr"
897 ]
898 },
899 {
900 "name": "census_stub_test",
901 "build": "test",
902 "src": [
903 "test/core/statistics/census_stub_test.c"
904 ],
905 "deps": [
906 "grpc_test_util",
907 "grpc",
908 "gpr"
909 ]
910 },
911 {
912 "name": "census_hash_table_test",
913 "build": "test",
914 "src": [
915 "test/core/statistics/hash_table_test.c"
916 ],
917 "deps": [
918 "grpc_test_util",
919 "grpc",
920 "gpr"
921 ]
922 },
923 {
924 "name": "fling_server",
925 "build": "test",
926 "run": false,
927 "src": [
928 "test/core/fling/server.c"
929 ],
930 "deps": [
931 "grpc_test_util",
932 "grpc",
933 "gpr"
934 ]
935 },
936 {
937 "name": "fling_client",
938 "build": "test",
939 "run": false,
940 "src": [
941 "test/core/fling/client.c"
942 ],
943 "deps": [
944 "grpc_test_util",
945 "grpc",
946 "gpr"
947 ]
948 },
949 {
950 "name": "fling_test",
951 "build": "test",
952 "src": [
953 "test/core/fling/fling_test.c"
954 ],
955 "deps": [
956 "grpc_test_util",
957 "grpc",
958 "gpr"
959 ]
960 },
961 {
962 "name": "echo_server",
963 "build": "test",
964 "run": false,
965 "src": [
966 "test/core/echo/server.c"
967 ],
968 "deps": [
969 "grpc_test_util",
970 "grpc",
971 "gpr"
972 ]
973 },
974 {
975 "name": "echo_client",
976 "build": "test",
977 "run": false,
978 "src": [
979 "test/core/echo/client.c"
980 ],
981 "deps": [
982 "grpc_test_util",
983 "grpc",
984 "gpr"
985 ]
986 },
987 {
988 "name": "echo_test",
989 "build": "test",
990 "src": [
991 "test/core/echo/echo_test.c"
992 ],
993 "deps": [
994 "grpc_test_util",
995 "grpc",
996 "gpr"
997 ]
998 },
999 {
1000 "name": "low_level_ping_pong_benchmark",
1001 "build": "benchmark",
1002 "src": [
1003 "test/core/network_benchmarks/low_level_ping_pong.c"
1004 ],
1005 "deps": [
1006 "grpc_test_util",
1007 "grpc",
1008 "gpr"
1009 ]
1010 },
1011 {
1012 "name": "message_compress_test",
1013 "build": "test",
1014 "src": [
1015 "test/core/compression/message_compress_test.c"
1016 ],
1017 "deps": [
1018 "grpc_test_util",
1019 "grpc",
1020 "gpr"
1021 ]
1022 },
nnoble0c475f02014-12-05 15:37:39 -08001023 {
1024 "name": "bin_encoder_test",
1025 "build": "test",
1026 "src": [
1027 "test/core/transport/chttp2/bin_encoder_test.c"
1028 ],
1029 "deps": [
1030 "grpc_test_util",
1031 "grpc",
1032 "gpr"
1033 ]
1034 },
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001035 {
1036 "name": "secure_endpoint_test",
1037 "build": "test",
1038 "src": [
ctiller2bbb6c42014-12-17 09:44:44 -08001039 "test/core/security/secure_endpoint_test.c"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001040 ],
1041 "deps": [
1042 "grpc_test_util",
1043 "grpc",
1044 "gpr"
1045 ]
1046 },
1047 {
1048 "name": "httpcli_format_request_test",
1049 "build": "test",
1050 "src": [
1051 "test/core/httpcli/format_request_test.c"
1052 ],
1053 "deps": [
1054 "grpc_test_util",
1055 "grpc",
1056 "gpr"
1057 ]
1058 },
1059 {
1060 "name": "httpcli_parser_test",
1061 "build": "test",
1062 "src": [
1063 "test/core/httpcli/parser_test.c"
1064 ],
1065 "deps": [
1066 "grpc_test_util",
1067 "grpc",
1068 "gpr"
1069 ]
1070 },
1071 {
1072 "name": "httpcli_test",
1073 "build": "test",
1074 "src": [
1075 "test/core/httpcli/httpcli_test.c"
1076 ],
1077 "deps": [
1078 "grpc_test_util",
1079 "grpc",
1080 "gpr"
1081 ]
1082 },
1083 {
1084 "name": "grpc_credentials_test",
1085 "build": "test",
1086 "src": [
1087 "test/core/security/credentials_test.c"
1088 ],
1089 "deps": [
1090 "grpc_test_util",
1091 "grpc",
1092 "gpr"
1093 ]
1094 },
1095 {
jboeuf1a809c02014-12-19 15:44:30 -08001096 "name": "grpc_fetch_oauth2",
1097 "build": "tool",
1098 "src": [
1099 "test/core/security/fetch_oauth2.c"
1100 ],
1101 "deps": [
1102 "grpc_test_util",
1103 "grpc",
1104 "gpr"
1105 ]
1106 },
1107 {
jboeufbefd2652014-12-12 15:39:47 -08001108 "name": "grpc_base64_test",
1109 "build": "test",
1110 "src": [
1111 "test/core/security/base64_test.c"
1112 ],
1113 "deps": [
1114 "grpc_test_util",
1115 "grpc",
1116 "gpr"
1117 ]
1118 },
1119 {
1120 "name": "grpc_json_token_test",
1121 "build": "test",
1122 "src": [
1123 "test/core/security/json_token_test.c"
1124 ],
1125 "deps": [
1126 "grpc_test_util",
1127 "grpc",
1128 "gpr"
1129 ]
1130 },
1131 {
ctiller8919f602014-12-10 10:19:42 -08001132 "name": "timeout_encoding_test",
1133 "build": "test",
1134 "src": [
1135 "test/core/transport/chttp2/timeout_encoding_test.c"
1136 ],
1137 "deps": [
1138 "grpc_test_util",
1139 "grpc",
1140 "gpr"
1141 ]
1142 },
1143 {
1144 "name": "fd_posix_test",
1145 "build": "test",
1146 "src": [
1147 "test/core/iomgr/fd_posix_test.c"
1148 ],
1149 "deps": [
1150 "grpc_test_util",
1151 "grpc",
1152 "gpr"
1153 ]
1154 },
1155 {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001156 "name": "fling_stream_test",
1157 "build": "test",
1158 "src": [
1159 "test/core/fling/fling_stream_test.c"
1160 ],
1161 "deps": [
1162 "grpc_test_util",
1163 "grpc",
1164 "gpr"
1165 ]
1166 },
1167 {
1168 "name": "lame_client_test",
1169 "build": "test",
1170 "src": [
1171 "test/core/surface/lame_client_test.c"
1172 ],
1173 "deps": [
1174 "grpc_test_util",
1175 "grpc",
1176 "gpr"
1177 ]
1178 },
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001179 {
1180 "name": "thread_pool_test",
1181 "build": "test",
1182 "c++": true,
1183 "src": [
1184 "test/cpp/server/thread_pool_test.cc"
1185 ],
1186 "deps": [
1187 "grpc_test_util",
1188 "grpc++",
1189 "grpc",
1190 "gpr"
1191 ]
1192 },
1193 {
1194 "name": "status_test",
1195 "build": "test",
1196 "c++": true,
1197 "src": [
1198 "test/cpp/util/status_test.cc"
1199 ],
1200 "deps": [
1201 "grpc_test_util",
1202 "grpc++",
1203 "grpc",
1204 "gpr"
1205 ]
ctiller8919f602014-12-10 10:19:42 -08001206 },
1207 {
1208 "name": "sync_client_async_server_test",
1209 "build": "test",
1210 "c++": true,
1211 "src": [
1212 "test/cpp/end2end/sync_client_async_server_test.cc"
1213 ],
1214 "deps": [
1215 "grpc_test_util",
1216 "grpc++",
1217 "grpc",
1218 "gpr"
1219 ]
1220 },
1221 {
1222 "name": "qps_client",
1223 "build": "test",
1224 "c++": true,
1225 "src": [
vpai80b6d012014-12-17 11:47:32 -08001226 "test/cpp/interop/empty.proto",
1227 "test/cpp/interop/messages.proto",
1228 "test/cpp/interop/test.proto",
1229 "test/cpp/qps/client.cc"
ctiller8919f602014-12-10 10:19:42 -08001230 ],
1231 "deps": [
vpai80b6d012014-12-17 11:47:32 -08001232 "grpc++_test_util",
ctiller8919f602014-12-10 10:19:42 -08001233 "grpc_test_util",
1234 "grpc++",
1235 "grpc",
1236 "gpr"
1237 ]
1238 },
1239 {
1240 "name": "qps_server",
1241 "build": "test",
1242 "c++": true,
1243 "src": [
vpai80b6d012014-12-17 11:47:32 -08001244 "test/cpp/interop/empty.proto",
1245 "test/cpp/interop/messages.proto",
1246 "test/cpp/interop/test.proto",
1247 "test/cpp/qps/server.cc"
ctiller8919f602014-12-10 10:19:42 -08001248 ],
1249 "deps": [
vpai80b6d012014-12-17 11:47:32 -08001250 "grpc++_test_util",
ctiller8919f602014-12-10 10:19:42 -08001251 "grpc_test_util",
1252 "grpc++",
1253 "grpc",
1254 "gpr"
1255 ]
1256 },
1257 {
1258 "name": "interop_server",
1259 "build": "test",
nnoble72309c62014-12-12 11:42:26 -08001260 "run": false,
ctiller8919f602014-12-10 10:19:42 -08001261 "c++": true,
1262 "src": [
nnoble72309c62014-12-12 11:42:26 -08001263 "test/cpp/interop/empty.proto",
1264 "test/cpp/interop/messages.proto",
1265 "test/cpp/interop/test.proto",
ctiller8919f602014-12-10 10:19:42 -08001266 "test/cpp/interop/server.cc"
1267 ],
1268 "deps": [
nnoble72309c62014-12-12 11:42:26 -08001269 "grpc++_test_util",
ctiller8919f602014-12-10 10:19:42 -08001270 "grpc_test_util",
1271 "grpc++",
1272 "grpc",
1273 "gpr"
1274 ]
1275 },
1276 {
1277 "name": "interop_client",
1278 "build": "test",
nnoble72309c62014-12-12 11:42:26 -08001279 "run": false,
ctiller8919f602014-12-10 10:19:42 -08001280 "c++": true,
1281 "src": [
nnoble72309c62014-12-12 11:42:26 -08001282 "test/cpp/interop/empty.proto",
1283 "test/cpp/interop/messages.proto",
1284 "test/cpp/interop/test.proto",
ctiller8919f602014-12-10 10:19:42 -08001285 "test/cpp/interop/client.cc"
1286 ],
1287 "deps": [
nnoble72309c62014-12-12 11:42:26 -08001288 "grpc++_test_util",
ctiller8919f602014-12-10 10:19:42 -08001289 "grpc_test_util",
1290 "grpc++",
1291 "grpc",
1292 "gpr"
1293 ]
1294 },
1295 {
1296 "name": "end2end_test",
1297 "build": "test",
1298 "c++": true,
1299 "src": [
1300 "test/cpp/end2end/end2end_test.cc"
1301 ],
1302 "deps": [
1303 "grpc_test_util",
1304 "grpc++",
1305 "grpc",
1306 "gpr"
1307 ]
1308 },
1309 {
yangg59dfc902014-12-19 14:00:14 -08001310 "name": "channel_arguments_test",
1311 "build": "test",
1312 "c++": true,
1313 "src": [
1314 "test/cpp/client/channel_arguments_test.cc"
1315 ],
1316 "deps": [
1317 "grpc++",
1318 "grpc"
1319 ]
1320 },
1321 {
ctiller8919f602014-12-10 10:19:42 -08001322 "name": "alarm_test",
1323 "build": "test",
1324 "src": [
1325 "test/core/iomgr/alarm_test.c"
1326 ],
1327 "deps": [
1328 "grpc_test_util",
1329 "grpc",
1330 "gpr"
1331 ]
1332 },
1333 {
ctiller3bf466f2014-12-19 16:21:57 -08001334 "name": "alarm_list_test",
1335 "build": "test",
1336 "src": [
1337 "test/core/iomgr/alarm_list_test.c"
1338 ],
1339 "deps": [
1340 "grpc_test_util",
1341 "grpc",
1342 "gpr"
1343 ]
1344 },
1345 {
1346 "name": "alarm_heap_test",
1347 "build": "test",
1348 "src": [
1349 "test/core/iomgr/alarm_heap_test.c"
1350 ],
1351 "deps": [
1352 "grpc_test_util",
1353 "grpc",
1354 "gpr"
1355 ]
1356 },
1357 {
ctiller8919f602014-12-10 10:19:42 -08001358 "name": "time_test",
1359 "build": "test",
1360 "src": [
1361 "test/core/support/time_test.c"
1362 ],
1363 "deps": [
1364 "grpc_test_util",
1365 "grpc",
1366 "gpr"
1367 ]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001368 }
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001369 ]
1370}