blob: 4176137dc37d51aa6c82b3583ab5fe5aa7f64e94 [file] [log] [blame]
Maxim Dzobadd962612017-08-16 17:52:28 -04001# GRPC GYP build file
2
3# This file has been automatically generated from a template file.
4# Please look at the templates directory instead.
5# This file can be regenerated from the template by running
6# tools/buildgen/generate_projects.sh
7
8# Copyright 2015 gRPC authors.
9#
10# Licensed under the Apache License, Version 2.0 (the "License");
11# you may not use this file except in compliance with the License.
12# You may obtain a copy of the License at
13#
14# http://www.apache.org/licenses/LICENSE-2.0
15#
16# Unless required by applicable law or agreed to in writing, software
17# distributed under the License is distributed on an "AS IS" BASIS,
18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19# See the License for the specific language governing permissions and
20# limitations under the License.
21
22{
23 'variables': {
24 # The openssl and zlib dependencies must be passed in as variables
25 # defined in an included gypi file, usually common.gypi.
26 'openssl_gyp_target%': 'Please Define openssl_gyp_target variable',
27 'zlib_gyp_target%': 'Please Define zlib_gyp_target variable',
28
29 'grpc_gcov%': 'false',
30 'grpc_alpine%': 'false',
31 },
32 'target_defaults': {
33 'configurations': {
34 'Release': {
35 'cflags': [
36 '-O2',
37 ],
38 'defines': [
39 'NDEBUG',
40 ],
41 },
42 'Debug': {
43 'cflags': [
44 '-O0',
45 ],
46 'defines': [
47 '_DEBUG',
48 'DEBUG',
49 ],
50 },
51 },
52 'cflags': [
53 '-g',
54 '-Wall',
55 '-Wextra',
56 '-Werror',
57 '-Wno-long-long',
58 '-Wno-unused-parameter',
59 '-DOSATOMIC_USE_INLINED=1',
Craig Tillerb7a8cac2017-10-05 09:50:18 -070060 '-Ithird_party/abseil-cpp',
Maxim Dzobadd962612017-08-16 17:52:28 -040061 ],
62 'ldflags': [
63 '-g',
64 ],
65 'cflags_c': [
66 '-Werror',
67 '-std=c99'
68 ],
69 'cflags_cc': [
70 '-Werror',
71 '-std=c++11'
72 ],
73 'include_dirs': [
74 '.',
75 '../..',
76 'include',
77 ],
78 'defines': [
79 'GRPC_ARES=0',
80 ],
81 'dependencies': [
82 '<(openssl_gyp_target)',
83 '<(zlib_gyp_target)',
84 ],
85 'conditions': [
86 ['grpc_gcov=="true"', {
87 'cflags': [
88 '-O0',
89 '-fprofile-arcs',
90 '-ftest-coverage',
91 '-Wno-return-type',
92 ],
93 'defines': [
94 '_DEBUG',
95 'DEBUG',
96 'GPR_GCOV',
97 ],
98 'ldflags': [
99 '-fprofile-arcs',
100 '-ftest-coverage',
101 '-rdynamic',
Matt Kwong0c867be2017-09-21 16:25:48 -0700102 '-lstdc++',
Maxim Dzobadd962612017-08-16 17:52:28 -0400103 ],
104 }],
105 ['grpc_alpine=="true"', {
106 'defines': [
107 'GPR_MUSL_LIBC_COMPAT'
108 ]
109 }],
110 ['OS == "win"', {
111 'defines': [
112 '_WIN32_WINNT=0x0600',
113 'WIN32_LEAN_AND_MEAN',
114 '_HAS_EXCEPTIONS=0',
115 'UNICODE',
116 '_UNICODE',
117 'NOMINMAX',
118 ],
119 'msvs_settings': {
120 'VCCLCompilerTool': {
121 'RuntimeLibrary': 1, # static debug
122 }
123 },
124 "libraries": [
125 "ws2_32"
126 ]
127 }],
128 ['OS == "mac"', {
129 'xcode_settings': {
130 'OTHER_CFLAGS': [
131 '-g',
132 '-Wall',
133 '-Wextra',
134 '-Werror',
135 '-Wno-long-long',
136 '-Wno-unused-parameter',
137 '-DOSATOMIC_USE_INLINED=1',
Craig Tillerb7a8cac2017-10-05 09:50:18 -0700138 '-Ithird_party/abseil-cpp',
Maxim Dzobadd962612017-08-16 17:52:28 -0400139 ],
140 'OTHER_CPLUSPLUSFLAGS': [
141 '-g',
142 '-Wall',
143 '-Wextra',
144 '-Werror',
145 '-Wno-long-long',
146 '-Wno-unused-parameter',
147 '-DOSATOMIC_USE_INLINED=1',
Craig Tillerb7a8cac2017-10-05 09:50:18 -0700148 '-Ithird_party/abseil-cpp',
Maxim Dzobadd962612017-08-16 17:52:28 -0400149 '-stdlib=libc++',
150 '-std=c++11',
151 '-Wno-error=deprecated-declarations'
152 ],
153 },
154 }]
155 ]
156 },
157 'targets': [
158 {
159 'target_name': 'gpr',
160 'type': 'static_library',
161 'dependencies': [
162 ],
163 'sources': [
164 'src/core/lib/profiling/basic_timers.c',
165 'src/core/lib/profiling/stap_timers.c',
166 'src/core/lib/support/alloc.c',
167 'src/core/lib/support/arena.c',
168 'src/core/lib/support/atm.c',
169 'src/core/lib/support/avl.c',
170 'src/core/lib/support/backoff.c',
171 'src/core/lib/support/cmdline.c',
172 'src/core/lib/support/cpu_iphone.c',
173 'src/core/lib/support/cpu_linux.c',
174 'src/core/lib/support/cpu_posix.c',
175 'src/core/lib/support/cpu_windows.c',
176 'src/core/lib/support/env_linux.c',
177 'src/core/lib/support/env_posix.c',
178 'src/core/lib/support/env_windows.c',
179 'src/core/lib/support/histogram.c',
180 'src/core/lib/support/host_port.c',
181 'src/core/lib/support/log.c',
182 'src/core/lib/support/log_android.c',
183 'src/core/lib/support/log_linux.c',
184 'src/core/lib/support/log_posix.c',
185 'src/core/lib/support/log_windows.c',
186 'src/core/lib/support/mpscq.c',
187 'src/core/lib/support/murmur_hash.c',
188 'src/core/lib/support/stack_lockfree.c',
189 'src/core/lib/support/string.c',
190 'src/core/lib/support/string_posix.c',
191 'src/core/lib/support/string_util_windows.c',
192 'src/core/lib/support/string_windows.c',
193 'src/core/lib/support/subprocess_posix.c',
194 'src/core/lib/support/subprocess_windows.c',
195 'src/core/lib/support/sync.c',
196 'src/core/lib/support/sync_posix.c',
197 'src/core/lib/support/sync_windows.c',
198 'src/core/lib/support/thd.c',
199 'src/core/lib/support/thd_posix.c',
200 'src/core/lib/support/thd_windows.c',
201 'src/core/lib/support/time.c',
202 'src/core/lib/support/time_posix.c',
203 'src/core/lib/support/time_precise.c',
204 'src/core/lib/support/time_windows.c',
205 'src/core/lib/support/tls_pthread.c',
206 'src/core/lib/support/tmpfile_msys.c',
207 'src/core/lib/support/tmpfile_posix.c',
208 'src/core/lib/support/tmpfile_windows.c',
209 'src/core/lib/support/wrap_memcpy.c',
210 ],
211 },
212 {
213 'target_name': 'gpr_test_util',
214 'type': 'static_library',
215 'dependencies': [
216 'gpr',
217 ],
218 'sources': [
219 'test/core/util/test_config.c',
220 ],
221 },
222 {
223 'target_name': 'grpc',
224 'type': 'static_library',
225 'dependencies': [
226 'gpr',
227 ],
228 'sources': [
229 'src/core/lib/surface/init.c',
230 'src/core/lib/channel/channel_args.c',
231 'src/core/lib/channel/channel_stack.c',
232 'src/core/lib/channel/channel_stack_builder.c',
233 'src/core/lib/channel/connected_channel.c',
234 'src/core/lib/channel/handshaker.c',
235 'src/core/lib/channel/handshaker_factory.c',
236 'src/core/lib/channel/handshaker_registry.c',
237 'src/core/lib/compression/compression.c',
238 'src/core/lib/compression/message_compress.c',
239 'src/core/lib/compression/stream_compression.c',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700240 'src/core/lib/compression/stream_compression_gzip.c',
241 'src/core/lib/compression/stream_compression_identity.c',
Craig Tiller03c908f2017-08-29 12:34:10 -0700242 'src/core/lib/debug/stats.c',
243 'src/core/lib/debug/stats_data.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400244 'src/core/lib/http/format_request.c',
245 'src/core/lib/http/httpcli.c',
246 'src/core/lib/http/parser.c',
Mark D. Roth764cf042017-09-01 09:00:06 -0700247 'src/core/lib/iomgr/call_combiner.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400248 'src/core/lib/iomgr/closure.c',
249 'src/core/lib/iomgr/combiner.c',
250 'src/core/lib/iomgr/endpoint.c',
251 'src/core/lib/iomgr/endpoint_pair_posix.c',
252 'src/core/lib/iomgr/endpoint_pair_uv.c',
253 'src/core/lib/iomgr/endpoint_pair_windows.c',
254 'src/core/lib/iomgr/error.c',
255 'src/core/lib/iomgr/ev_epoll1_linux.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400256 'src/core/lib/iomgr/ev_epollex_linux.c',
257 'src/core/lib/iomgr/ev_epollsig_linux.c',
258 'src/core/lib/iomgr/ev_poll_posix.c',
259 'src/core/lib/iomgr/ev_posix.c',
260 'src/core/lib/iomgr/ev_windows.c',
261 'src/core/lib/iomgr/exec_ctx.c',
262 'src/core/lib/iomgr/executor.c',
263 'src/core/lib/iomgr/gethostname_fallback.c',
264 'src/core/lib/iomgr/gethostname_host_name_max.c',
265 'src/core/lib/iomgr/gethostname_sysconf.c',
266 'src/core/lib/iomgr/iocp_windows.c',
267 'src/core/lib/iomgr/iomgr.c',
268 'src/core/lib/iomgr/iomgr_posix.c',
269 'src/core/lib/iomgr/iomgr_uv.c',
270 'src/core/lib/iomgr/iomgr_windows.c',
271 'src/core/lib/iomgr/is_epollexclusive_available.c',
272 'src/core/lib/iomgr/load_file.c',
273 'src/core/lib/iomgr/lockfree_event.c',
274 'src/core/lib/iomgr/network_status_tracker.c',
275 'src/core/lib/iomgr/polling_entity.c',
276 'src/core/lib/iomgr/pollset_set_uv.c',
277 'src/core/lib/iomgr/pollset_set_windows.c',
278 'src/core/lib/iomgr/pollset_uv.c',
279 'src/core/lib/iomgr/pollset_windows.c',
280 'src/core/lib/iomgr/resolve_address_posix.c',
281 'src/core/lib/iomgr/resolve_address_uv.c',
282 'src/core/lib/iomgr/resolve_address_windows.c',
283 'src/core/lib/iomgr/resource_quota.c',
284 'src/core/lib/iomgr/sockaddr_utils.c',
285 'src/core/lib/iomgr/socket_factory_posix.c',
286 'src/core/lib/iomgr/socket_mutator.c',
287 'src/core/lib/iomgr/socket_utils_common_posix.c',
288 'src/core/lib/iomgr/socket_utils_linux.c',
289 'src/core/lib/iomgr/socket_utils_posix.c',
290 'src/core/lib/iomgr/socket_utils_uv.c',
291 'src/core/lib/iomgr/socket_utils_windows.c',
292 'src/core/lib/iomgr/socket_windows.c',
293 'src/core/lib/iomgr/tcp_client_posix.c',
294 'src/core/lib/iomgr/tcp_client_uv.c',
295 'src/core/lib/iomgr/tcp_client_windows.c',
296 'src/core/lib/iomgr/tcp_posix.c',
297 'src/core/lib/iomgr/tcp_server_posix.c',
298 'src/core/lib/iomgr/tcp_server_utils_posix_common.c',
299 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c',
300 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c',
301 'src/core/lib/iomgr/tcp_server_uv.c',
302 'src/core/lib/iomgr/tcp_server_windows.c',
303 'src/core/lib/iomgr/tcp_uv.c',
304 'src/core/lib/iomgr/tcp_windows.c',
305 'src/core/lib/iomgr/time_averaged_stats.c',
306 'src/core/lib/iomgr/timer_generic.c',
307 'src/core/lib/iomgr/timer_heap.c',
308 'src/core/lib/iomgr/timer_manager.c',
309 'src/core/lib/iomgr/timer_uv.c',
310 'src/core/lib/iomgr/udp_server.c',
311 'src/core/lib/iomgr/unix_sockets_posix.c',
312 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
313 'src/core/lib/iomgr/wakeup_fd_cv.c',
314 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
315 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
316 'src/core/lib/iomgr/wakeup_fd_pipe.c',
317 'src/core/lib/iomgr/wakeup_fd_posix.c',
318 'src/core/lib/json/json.c',
319 'src/core/lib/json/json_reader.c',
320 'src/core/lib/json/json_string.c',
321 'src/core/lib/json/json_writer.c',
322 'src/core/lib/slice/b64.c',
323 'src/core/lib/slice/percent_encoding.c',
324 'src/core/lib/slice/slice.c',
325 'src/core/lib/slice/slice_buffer.c',
326 'src/core/lib/slice/slice_hash_table.c',
327 'src/core/lib/slice/slice_intern.c',
328 'src/core/lib/slice/slice_string_helpers.c',
329 'src/core/lib/surface/alarm.c',
330 'src/core/lib/surface/api_trace.c',
331 'src/core/lib/surface/byte_buffer.c',
332 'src/core/lib/surface/byte_buffer_reader.c',
333 'src/core/lib/surface/call.c',
334 'src/core/lib/surface/call_details.c',
335 'src/core/lib/surface/call_log_batch.c',
336 'src/core/lib/surface/channel.c',
337 'src/core/lib/surface/channel_init.c',
338 'src/core/lib/surface/channel_ping.c',
339 'src/core/lib/surface/channel_stack_type.c',
340 'src/core/lib/surface/completion_queue.c',
341 'src/core/lib/surface/completion_queue_factory.c',
342 'src/core/lib/surface/event_string.c',
343 'src/core/lib/surface/lame_client.cc',
344 'src/core/lib/surface/metadata_array.c',
345 'src/core/lib/surface/server.c',
346 'src/core/lib/surface/validate_metadata.c',
347 'src/core/lib/surface/version.c',
348 'src/core/lib/transport/bdp_estimator.c',
349 'src/core/lib/transport/byte_stream.c',
350 'src/core/lib/transport/connectivity_state.c',
351 'src/core/lib/transport/error_utils.c',
352 'src/core/lib/transport/metadata.c',
353 'src/core/lib/transport/metadata_batch.c',
354 'src/core/lib/transport/pid_controller.c',
355 'src/core/lib/transport/service_config.c',
356 'src/core/lib/transport/static_metadata.c',
357 'src/core/lib/transport/status_conversion.c',
358 'src/core/lib/transport/timeout_encoding.c',
359 'src/core/lib/transport/transport.c',
360 'src/core/lib/transport/transport_op_string.c',
361 'src/core/lib/debug/trace.c',
362 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.c',
363 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
364 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
365 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
366 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
367 'src/core/ext/transport/chttp2/transport/flow_control.c',
368 'src/core/ext/transport/chttp2/transport/frame_data.c',
369 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
370 'src/core/ext/transport/chttp2/transport/frame_ping.c',
371 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
372 'src/core/ext/transport/chttp2/transport/frame_settings.c',
373 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
374 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
375 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
376 'src/core/ext/transport/chttp2/transport/hpack_table.c',
377 'src/core/ext/transport/chttp2/transport/http2_settings.c',
378 'src/core/ext/transport/chttp2/transport/huffsyms.c',
379 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
380 'src/core/ext/transport/chttp2/transport/parsing.c',
381 'src/core/ext/transport/chttp2/transport/stream_lists.c',
382 'src/core/ext/transport/chttp2/transport/stream_map.c',
383 'src/core/ext/transport/chttp2/transport/varint.c',
384 'src/core/ext/transport/chttp2/transport/writing.c',
385 'src/core/ext/transport/chttp2/alpn/alpn.c',
386 'src/core/ext/filters/http/client/http_client_filter.c',
387 'src/core/ext/filters/http/http_filters_plugin.c',
388 'src/core/ext/filters/http/message_compress/message_compress_filter.c',
389 'src/core/ext/filters/http/server/http_server_filter.c',
390 'src/core/lib/http/httpcli_security_connector.c',
391 'src/core/lib/security/context/security_context.c',
392 'src/core/lib/security/credentials/composite/composite_credentials.c',
393 'src/core/lib/security/credentials/credentials.c',
394 'src/core/lib/security/credentials/credentials_metadata.c',
395 'src/core/lib/security/credentials/fake/fake_credentials.c',
396 'src/core/lib/security/credentials/google_default/credentials_generic.c',
397 'src/core/lib/security/credentials/google_default/google_default_credentials.c',
398 'src/core/lib/security/credentials/iam/iam_credentials.c',
399 'src/core/lib/security/credentials/jwt/json_token.c',
400 'src/core/lib/security/credentials/jwt/jwt_credentials.c',
401 'src/core/lib/security/credentials/jwt/jwt_verifier.c',
402 'src/core/lib/security/credentials/oauth2/oauth2_credentials.c',
403 'src/core/lib/security/credentials/plugin/plugin_credentials.c',
404 'src/core/lib/security/credentials/ssl/ssl_credentials.c',
405 'src/core/lib/security/transport/client_auth_filter.c',
406 'src/core/lib/security/transport/lb_targets_info.c',
407 'src/core/lib/security/transport/secure_endpoint.c',
408 'src/core/lib/security/transport/security_connector.c',
409 'src/core/lib/security/transport/security_handshaker.c',
410 'src/core/lib/security/transport/server_auth_filter.c',
411 'src/core/lib/security/transport/tsi_error.c',
412 'src/core/lib/security/util/json_util.c',
413 'src/core/lib/surface/init_secure.c',
414 'src/core/tsi/fake_transport_security.c',
415 'src/core/tsi/gts_transport_security.c',
416 'src/core/tsi/ssl_transport_security.c',
417 'src/core/tsi/transport_security_grpc.c',
418 'src/core/tsi/transport_security.c',
419 'src/core/tsi/transport_security_adapter.c',
420 'src/core/ext/transport/chttp2/server/chttp2_server.c',
421 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.c',
422 'src/core/ext/filters/client_channel/channel_connectivity.c',
423 'src/core/ext/filters/client_channel/client_channel.c',
424 'src/core/ext/filters/client_channel/client_channel_factory.c',
425 'src/core/ext/filters/client_channel/client_channel_plugin.c',
426 'src/core/ext/filters/client_channel/connector.c',
427 'src/core/ext/filters/client_channel/http_connect_handshaker.c',
428 'src/core/ext/filters/client_channel/http_proxy.c',
429 'src/core/ext/filters/client_channel/lb_policy.c',
430 'src/core/ext/filters/client_channel/lb_policy_factory.c',
431 'src/core/ext/filters/client_channel/lb_policy_registry.c',
432 'src/core/ext/filters/client_channel/parse_address.c',
433 'src/core/ext/filters/client_channel/proxy_mapper.c',
434 'src/core/ext/filters/client_channel/proxy_mapper_registry.c',
435 'src/core/ext/filters/client_channel/resolver.c',
436 'src/core/ext/filters/client_channel/resolver_factory.c',
437 'src/core/ext/filters/client_channel/resolver_registry.c',
438 'src/core/ext/filters/client_channel/retry_throttle.c',
439 'src/core/ext/filters/client_channel/subchannel.c',
440 'src/core/ext/filters/client_channel/subchannel_index.c',
441 'src/core/ext/filters/client_channel/uri_parser.c',
442 'src/core/ext/filters/deadline/deadline_filter.c',
443 'src/core/ext/transport/chttp2/client/chttp2_connector.c',
444 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c',
445 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c',
446 'src/core/ext/transport/chttp2/client/insecure/channel_create.c',
447 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c',
448 'src/core/ext/transport/inproc/inproc_plugin.c',
449 'src/core/ext/transport/inproc/inproc_transport.c',
450 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c',
451 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c',
452 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.c',
453 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c',
454 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c',
455 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -0400456 'third_party/nanopb/pb_common.c',
457 'third_party/nanopb/pb_decode.c',
458 'third_party/nanopb/pb_encode.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400459 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.c',
460 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c',
461 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c',
462 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c',
463 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c',
464 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c',
465 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.c',
466 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c',
467 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c',
David Garcia Quintas0822d332017-09-06 17:40:42 -0700468 'src/core/ext/filters/load_reporting/server_load_reporting_filter.c',
469 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400470 'src/core/ext/census/base_resources.c',
471 'src/core/ext/census/context.c',
472 'src/core/ext/census/gen/census.pb.c',
473 'src/core/ext/census/gen/trace_context.pb.c',
474 'src/core/ext/census/grpc_context.c',
475 'src/core/ext/census/grpc_filter.c',
476 'src/core/ext/census/grpc_plugin.c',
477 'src/core/ext/census/initialize.c',
478 'src/core/ext/census/intrusive_hash_map.c',
479 'src/core/ext/census/mlog.c',
480 'src/core/ext/census/operation.c',
481 'src/core/ext/census/placeholders.c',
482 'src/core/ext/census/resource.c',
483 'src/core/ext/census/trace_context.c',
484 'src/core/ext/census/tracing.c',
485 'src/core/ext/filters/max_age/max_age_filter.c',
486 'src/core/ext/filters/message_size/message_size_filter.c',
487 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.c',
488 'src/core/ext/filters/workarounds/workaround_utils.c',
489 'src/core/plugin_registry/grpc_plugin_registry.c',
490 ],
491 },
492 {
493 'target_name': 'grpc_dll',
494 'type': 'static_library',
495 'dependencies': [
496 'gpr',
497 'grpc',
498 ],
499 'sources': [
500 ],
501 },
502 {
503 'target_name': 'grpc_test_util',
504 'type': 'static_library',
505 'dependencies': [
506 'gpr_test_util',
507 'gpr',
508 'grpc',
509 ],
510 'sources': [
511 'test/core/end2end/data/client_certs.c',
512 'test/core/end2end/data/server1_cert.c',
513 'test/core/end2end/data/server1_key.c',
514 'test/core/end2end/data/test_root_cert.c',
515 'test/core/security/oauth2_utils.c',
516 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.c',
517 'test/core/end2end/cq_verifier.c',
518 'test/core/end2end/fixtures/http_proxy_fixture.c',
519 'test/core/end2end/fixtures/proxy.c',
520 'test/core/iomgr/endpoint_tests.c',
521 'test/core/util/debugger_macros.c',
522 'test/core/util/grpc_profiler.c',
523 'test/core/util/memory_counters.c',
524 'test/core/util/mock_endpoint.c',
525 'test/core/util/parse_hexstring.c',
526 'test/core/util/passthru_endpoint.c',
527 'test/core/util/port.c',
528 'test/core/util/port_server_client.c',
529 'test/core/util/slice_splitter.c',
530 'test/core/util/trickle_endpoint.c',
531 'src/core/lib/channel/channel_args.c',
532 'src/core/lib/channel/channel_stack.c',
533 'src/core/lib/channel/channel_stack_builder.c',
534 'src/core/lib/channel/connected_channel.c',
535 'src/core/lib/channel/handshaker.c',
536 'src/core/lib/channel/handshaker_factory.c',
537 'src/core/lib/channel/handshaker_registry.c',
538 'src/core/lib/compression/compression.c',
539 'src/core/lib/compression/message_compress.c',
540 'src/core/lib/compression/stream_compression.c',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700541 'src/core/lib/compression/stream_compression_gzip.c',
542 'src/core/lib/compression/stream_compression_identity.c',
Craig Tiller03c908f2017-08-29 12:34:10 -0700543 'src/core/lib/debug/stats.c',
544 'src/core/lib/debug/stats_data.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400545 'src/core/lib/http/format_request.c',
546 'src/core/lib/http/httpcli.c',
547 'src/core/lib/http/parser.c',
Mark D. Roth764cf042017-09-01 09:00:06 -0700548 'src/core/lib/iomgr/call_combiner.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400549 'src/core/lib/iomgr/closure.c',
550 'src/core/lib/iomgr/combiner.c',
551 'src/core/lib/iomgr/endpoint.c',
552 'src/core/lib/iomgr/endpoint_pair_posix.c',
553 'src/core/lib/iomgr/endpoint_pair_uv.c',
554 'src/core/lib/iomgr/endpoint_pair_windows.c',
555 'src/core/lib/iomgr/error.c',
556 'src/core/lib/iomgr/ev_epoll1_linux.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400557 'src/core/lib/iomgr/ev_epollex_linux.c',
558 'src/core/lib/iomgr/ev_epollsig_linux.c',
559 'src/core/lib/iomgr/ev_poll_posix.c',
560 'src/core/lib/iomgr/ev_posix.c',
561 'src/core/lib/iomgr/ev_windows.c',
562 'src/core/lib/iomgr/exec_ctx.c',
563 'src/core/lib/iomgr/executor.c',
564 'src/core/lib/iomgr/gethostname_fallback.c',
565 'src/core/lib/iomgr/gethostname_host_name_max.c',
566 'src/core/lib/iomgr/gethostname_sysconf.c',
567 'src/core/lib/iomgr/iocp_windows.c',
568 'src/core/lib/iomgr/iomgr.c',
569 'src/core/lib/iomgr/iomgr_posix.c',
570 'src/core/lib/iomgr/iomgr_uv.c',
571 'src/core/lib/iomgr/iomgr_windows.c',
572 'src/core/lib/iomgr/is_epollexclusive_available.c',
573 'src/core/lib/iomgr/load_file.c',
574 'src/core/lib/iomgr/lockfree_event.c',
575 'src/core/lib/iomgr/network_status_tracker.c',
576 'src/core/lib/iomgr/polling_entity.c',
577 'src/core/lib/iomgr/pollset_set_uv.c',
578 'src/core/lib/iomgr/pollset_set_windows.c',
579 'src/core/lib/iomgr/pollset_uv.c',
580 'src/core/lib/iomgr/pollset_windows.c',
581 'src/core/lib/iomgr/resolve_address_posix.c',
582 'src/core/lib/iomgr/resolve_address_uv.c',
583 'src/core/lib/iomgr/resolve_address_windows.c',
584 'src/core/lib/iomgr/resource_quota.c',
585 'src/core/lib/iomgr/sockaddr_utils.c',
586 'src/core/lib/iomgr/socket_factory_posix.c',
587 'src/core/lib/iomgr/socket_mutator.c',
588 'src/core/lib/iomgr/socket_utils_common_posix.c',
589 'src/core/lib/iomgr/socket_utils_linux.c',
590 'src/core/lib/iomgr/socket_utils_posix.c',
591 'src/core/lib/iomgr/socket_utils_uv.c',
592 'src/core/lib/iomgr/socket_utils_windows.c',
593 'src/core/lib/iomgr/socket_windows.c',
594 'src/core/lib/iomgr/tcp_client_posix.c',
595 'src/core/lib/iomgr/tcp_client_uv.c',
596 'src/core/lib/iomgr/tcp_client_windows.c',
597 'src/core/lib/iomgr/tcp_posix.c',
598 'src/core/lib/iomgr/tcp_server_posix.c',
599 'src/core/lib/iomgr/tcp_server_utils_posix_common.c',
600 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c',
601 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c',
602 'src/core/lib/iomgr/tcp_server_uv.c',
603 'src/core/lib/iomgr/tcp_server_windows.c',
604 'src/core/lib/iomgr/tcp_uv.c',
605 'src/core/lib/iomgr/tcp_windows.c',
606 'src/core/lib/iomgr/time_averaged_stats.c',
607 'src/core/lib/iomgr/timer_generic.c',
608 'src/core/lib/iomgr/timer_heap.c',
609 'src/core/lib/iomgr/timer_manager.c',
610 'src/core/lib/iomgr/timer_uv.c',
611 'src/core/lib/iomgr/udp_server.c',
612 'src/core/lib/iomgr/unix_sockets_posix.c',
613 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
614 'src/core/lib/iomgr/wakeup_fd_cv.c',
615 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
616 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
617 'src/core/lib/iomgr/wakeup_fd_pipe.c',
618 'src/core/lib/iomgr/wakeup_fd_posix.c',
619 'src/core/lib/json/json.c',
620 'src/core/lib/json/json_reader.c',
621 'src/core/lib/json/json_string.c',
622 'src/core/lib/json/json_writer.c',
623 'src/core/lib/slice/b64.c',
624 'src/core/lib/slice/percent_encoding.c',
625 'src/core/lib/slice/slice.c',
626 'src/core/lib/slice/slice_buffer.c',
627 'src/core/lib/slice/slice_hash_table.c',
628 'src/core/lib/slice/slice_intern.c',
629 'src/core/lib/slice/slice_string_helpers.c',
630 'src/core/lib/surface/alarm.c',
631 'src/core/lib/surface/api_trace.c',
632 'src/core/lib/surface/byte_buffer.c',
633 'src/core/lib/surface/byte_buffer_reader.c',
634 'src/core/lib/surface/call.c',
635 'src/core/lib/surface/call_details.c',
636 'src/core/lib/surface/call_log_batch.c',
637 'src/core/lib/surface/channel.c',
638 'src/core/lib/surface/channel_init.c',
639 'src/core/lib/surface/channel_ping.c',
640 'src/core/lib/surface/channel_stack_type.c',
641 'src/core/lib/surface/completion_queue.c',
642 'src/core/lib/surface/completion_queue_factory.c',
643 'src/core/lib/surface/event_string.c',
644 'src/core/lib/surface/lame_client.cc',
645 'src/core/lib/surface/metadata_array.c',
646 'src/core/lib/surface/server.c',
647 'src/core/lib/surface/validate_metadata.c',
648 'src/core/lib/surface/version.c',
649 'src/core/lib/transport/bdp_estimator.c',
650 'src/core/lib/transport/byte_stream.c',
651 'src/core/lib/transport/connectivity_state.c',
652 'src/core/lib/transport/error_utils.c',
653 'src/core/lib/transport/metadata.c',
654 'src/core/lib/transport/metadata_batch.c',
655 'src/core/lib/transport/pid_controller.c',
656 'src/core/lib/transport/service_config.c',
657 'src/core/lib/transport/static_metadata.c',
658 'src/core/lib/transport/status_conversion.c',
659 'src/core/lib/transport/timeout_encoding.c',
660 'src/core/lib/transport/transport.c',
661 'src/core/lib/transport/transport_op_string.c',
662 'src/core/lib/debug/trace.c',
663 'src/core/ext/filters/client_channel/channel_connectivity.c',
664 'src/core/ext/filters/client_channel/client_channel.c',
665 'src/core/ext/filters/client_channel/client_channel_factory.c',
666 'src/core/ext/filters/client_channel/client_channel_plugin.c',
667 'src/core/ext/filters/client_channel/connector.c',
668 'src/core/ext/filters/client_channel/http_connect_handshaker.c',
669 'src/core/ext/filters/client_channel/http_proxy.c',
670 'src/core/ext/filters/client_channel/lb_policy.c',
671 'src/core/ext/filters/client_channel/lb_policy_factory.c',
672 'src/core/ext/filters/client_channel/lb_policy_registry.c',
673 'src/core/ext/filters/client_channel/parse_address.c',
674 'src/core/ext/filters/client_channel/proxy_mapper.c',
675 'src/core/ext/filters/client_channel/proxy_mapper_registry.c',
676 'src/core/ext/filters/client_channel/resolver.c',
677 'src/core/ext/filters/client_channel/resolver_factory.c',
678 'src/core/ext/filters/client_channel/resolver_registry.c',
679 'src/core/ext/filters/client_channel/retry_throttle.c',
680 'src/core/ext/filters/client_channel/subchannel.c',
681 'src/core/ext/filters/client_channel/subchannel_index.c',
682 'src/core/ext/filters/client_channel/uri_parser.c',
683 'src/core/ext/filters/deadline/deadline_filter.c',
684 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
685 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
686 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
687 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
688 'src/core/ext/transport/chttp2/transport/flow_control.c',
689 'src/core/ext/transport/chttp2/transport/frame_data.c',
690 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
691 'src/core/ext/transport/chttp2/transport/frame_ping.c',
692 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
693 'src/core/ext/transport/chttp2/transport/frame_settings.c',
694 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
695 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
696 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
697 'src/core/ext/transport/chttp2/transport/hpack_table.c',
698 'src/core/ext/transport/chttp2/transport/http2_settings.c',
699 'src/core/ext/transport/chttp2/transport/huffsyms.c',
700 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
701 'src/core/ext/transport/chttp2/transport/parsing.c',
702 'src/core/ext/transport/chttp2/transport/stream_lists.c',
703 'src/core/ext/transport/chttp2/transport/stream_map.c',
704 'src/core/ext/transport/chttp2/transport/varint.c',
705 'src/core/ext/transport/chttp2/transport/writing.c',
706 'src/core/ext/transport/chttp2/alpn/alpn.c',
707 'src/core/ext/filters/http/client/http_client_filter.c',
708 'src/core/ext/filters/http/http_filters_plugin.c',
709 'src/core/ext/filters/http/message_compress/message_compress_filter.c',
710 'src/core/ext/filters/http/server/http_server_filter.c',
711 ],
712 },
713 {
714 'target_name': 'grpc_test_util_unsecure',
715 'type': 'static_library',
716 'dependencies': [
717 'gpr',
718 'gpr_test_util',
719 'grpc_unsecure',
720 ],
721 'sources': [
722 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.c',
723 'test/core/end2end/cq_verifier.c',
724 'test/core/end2end/fixtures/http_proxy_fixture.c',
725 'test/core/end2end/fixtures/proxy.c',
726 'test/core/iomgr/endpoint_tests.c',
727 'test/core/util/debugger_macros.c',
728 'test/core/util/grpc_profiler.c',
729 'test/core/util/memory_counters.c',
730 'test/core/util/mock_endpoint.c',
731 'test/core/util/parse_hexstring.c',
732 'test/core/util/passthru_endpoint.c',
733 'test/core/util/port.c',
734 'test/core/util/port_server_client.c',
735 'test/core/util/slice_splitter.c',
736 'test/core/util/trickle_endpoint.c',
737 'src/core/lib/channel/channel_args.c',
738 'src/core/lib/channel/channel_stack.c',
739 'src/core/lib/channel/channel_stack_builder.c',
740 'src/core/lib/channel/connected_channel.c',
741 'src/core/lib/channel/handshaker.c',
742 'src/core/lib/channel/handshaker_factory.c',
743 'src/core/lib/channel/handshaker_registry.c',
744 'src/core/lib/compression/compression.c',
745 'src/core/lib/compression/message_compress.c',
746 'src/core/lib/compression/stream_compression.c',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700747 'src/core/lib/compression/stream_compression_gzip.c',
748 'src/core/lib/compression/stream_compression_identity.c',
Craig Tiller03c908f2017-08-29 12:34:10 -0700749 'src/core/lib/debug/stats.c',
750 'src/core/lib/debug/stats_data.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400751 'src/core/lib/http/format_request.c',
752 'src/core/lib/http/httpcli.c',
753 'src/core/lib/http/parser.c',
Mark D. Roth764cf042017-09-01 09:00:06 -0700754 'src/core/lib/iomgr/call_combiner.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400755 'src/core/lib/iomgr/closure.c',
756 'src/core/lib/iomgr/combiner.c',
757 'src/core/lib/iomgr/endpoint.c',
758 'src/core/lib/iomgr/endpoint_pair_posix.c',
759 'src/core/lib/iomgr/endpoint_pair_uv.c',
760 'src/core/lib/iomgr/endpoint_pair_windows.c',
761 'src/core/lib/iomgr/error.c',
762 'src/core/lib/iomgr/ev_epoll1_linux.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400763 'src/core/lib/iomgr/ev_epollex_linux.c',
764 'src/core/lib/iomgr/ev_epollsig_linux.c',
765 'src/core/lib/iomgr/ev_poll_posix.c',
766 'src/core/lib/iomgr/ev_posix.c',
767 'src/core/lib/iomgr/ev_windows.c',
768 'src/core/lib/iomgr/exec_ctx.c',
769 'src/core/lib/iomgr/executor.c',
770 'src/core/lib/iomgr/gethostname_fallback.c',
771 'src/core/lib/iomgr/gethostname_host_name_max.c',
772 'src/core/lib/iomgr/gethostname_sysconf.c',
773 'src/core/lib/iomgr/iocp_windows.c',
774 'src/core/lib/iomgr/iomgr.c',
775 'src/core/lib/iomgr/iomgr_posix.c',
776 'src/core/lib/iomgr/iomgr_uv.c',
777 'src/core/lib/iomgr/iomgr_windows.c',
778 'src/core/lib/iomgr/is_epollexclusive_available.c',
779 'src/core/lib/iomgr/load_file.c',
780 'src/core/lib/iomgr/lockfree_event.c',
781 'src/core/lib/iomgr/network_status_tracker.c',
782 'src/core/lib/iomgr/polling_entity.c',
783 'src/core/lib/iomgr/pollset_set_uv.c',
784 'src/core/lib/iomgr/pollset_set_windows.c',
785 'src/core/lib/iomgr/pollset_uv.c',
786 'src/core/lib/iomgr/pollset_windows.c',
787 'src/core/lib/iomgr/resolve_address_posix.c',
788 'src/core/lib/iomgr/resolve_address_uv.c',
789 'src/core/lib/iomgr/resolve_address_windows.c',
790 'src/core/lib/iomgr/resource_quota.c',
791 'src/core/lib/iomgr/sockaddr_utils.c',
792 'src/core/lib/iomgr/socket_factory_posix.c',
793 'src/core/lib/iomgr/socket_mutator.c',
794 'src/core/lib/iomgr/socket_utils_common_posix.c',
795 'src/core/lib/iomgr/socket_utils_linux.c',
796 'src/core/lib/iomgr/socket_utils_posix.c',
797 'src/core/lib/iomgr/socket_utils_uv.c',
798 'src/core/lib/iomgr/socket_utils_windows.c',
799 'src/core/lib/iomgr/socket_windows.c',
800 'src/core/lib/iomgr/tcp_client_posix.c',
801 'src/core/lib/iomgr/tcp_client_uv.c',
802 'src/core/lib/iomgr/tcp_client_windows.c',
803 'src/core/lib/iomgr/tcp_posix.c',
804 'src/core/lib/iomgr/tcp_server_posix.c',
805 'src/core/lib/iomgr/tcp_server_utils_posix_common.c',
806 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c',
807 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c',
808 'src/core/lib/iomgr/tcp_server_uv.c',
809 'src/core/lib/iomgr/tcp_server_windows.c',
810 'src/core/lib/iomgr/tcp_uv.c',
811 'src/core/lib/iomgr/tcp_windows.c',
812 'src/core/lib/iomgr/time_averaged_stats.c',
813 'src/core/lib/iomgr/timer_generic.c',
814 'src/core/lib/iomgr/timer_heap.c',
815 'src/core/lib/iomgr/timer_manager.c',
816 'src/core/lib/iomgr/timer_uv.c',
817 'src/core/lib/iomgr/udp_server.c',
818 'src/core/lib/iomgr/unix_sockets_posix.c',
819 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
820 'src/core/lib/iomgr/wakeup_fd_cv.c',
821 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
822 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
823 'src/core/lib/iomgr/wakeup_fd_pipe.c',
824 'src/core/lib/iomgr/wakeup_fd_posix.c',
825 'src/core/lib/json/json.c',
826 'src/core/lib/json/json_reader.c',
827 'src/core/lib/json/json_string.c',
828 'src/core/lib/json/json_writer.c',
829 'src/core/lib/slice/b64.c',
830 'src/core/lib/slice/percent_encoding.c',
831 'src/core/lib/slice/slice.c',
832 'src/core/lib/slice/slice_buffer.c',
833 'src/core/lib/slice/slice_hash_table.c',
834 'src/core/lib/slice/slice_intern.c',
835 'src/core/lib/slice/slice_string_helpers.c',
836 'src/core/lib/surface/alarm.c',
837 'src/core/lib/surface/api_trace.c',
838 'src/core/lib/surface/byte_buffer.c',
839 'src/core/lib/surface/byte_buffer_reader.c',
840 'src/core/lib/surface/call.c',
841 'src/core/lib/surface/call_details.c',
842 'src/core/lib/surface/call_log_batch.c',
843 'src/core/lib/surface/channel.c',
844 'src/core/lib/surface/channel_init.c',
845 'src/core/lib/surface/channel_ping.c',
846 'src/core/lib/surface/channel_stack_type.c',
847 'src/core/lib/surface/completion_queue.c',
848 'src/core/lib/surface/completion_queue_factory.c',
849 'src/core/lib/surface/event_string.c',
850 'src/core/lib/surface/lame_client.cc',
851 'src/core/lib/surface/metadata_array.c',
852 'src/core/lib/surface/server.c',
853 'src/core/lib/surface/validate_metadata.c',
854 'src/core/lib/surface/version.c',
855 'src/core/lib/transport/bdp_estimator.c',
856 'src/core/lib/transport/byte_stream.c',
857 'src/core/lib/transport/connectivity_state.c',
858 'src/core/lib/transport/error_utils.c',
859 'src/core/lib/transport/metadata.c',
860 'src/core/lib/transport/metadata_batch.c',
861 'src/core/lib/transport/pid_controller.c',
862 'src/core/lib/transport/service_config.c',
863 'src/core/lib/transport/static_metadata.c',
864 'src/core/lib/transport/status_conversion.c',
865 'src/core/lib/transport/timeout_encoding.c',
866 'src/core/lib/transport/transport.c',
867 'src/core/lib/transport/transport_op_string.c',
868 'src/core/lib/debug/trace.c',
869 'src/core/ext/filters/client_channel/channel_connectivity.c',
870 'src/core/ext/filters/client_channel/client_channel.c',
871 'src/core/ext/filters/client_channel/client_channel_factory.c',
872 'src/core/ext/filters/client_channel/client_channel_plugin.c',
873 'src/core/ext/filters/client_channel/connector.c',
874 'src/core/ext/filters/client_channel/http_connect_handshaker.c',
875 'src/core/ext/filters/client_channel/http_proxy.c',
876 'src/core/ext/filters/client_channel/lb_policy.c',
877 'src/core/ext/filters/client_channel/lb_policy_factory.c',
878 'src/core/ext/filters/client_channel/lb_policy_registry.c',
879 'src/core/ext/filters/client_channel/parse_address.c',
880 'src/core/ext/filters/client_channel/proxy_mapper.c',
881 'src/core/ext/filters/client_channel/proxy_mapper_registry.c',
882 'src/core/ext/filters/client_channel/resolver.c',
883 'src/core/ext/filters/client_channel/resolver_factory.c',
884 'src/core/ext/filters/client_channel/resolver_registry.c',
885 'src/core/ext/filters/client_channel/retry_throttle.c',
886 'src/core/ext/filters/client_channel/subchannel.c',
887 'src/core/ext/filters/client_channel/subchannel_index.c',
888 'src/core/ext/filters/client_channel/uri_parser.c',
889 'src/core/ext/filters/deadline/deadline_filter.c',
890 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
891 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
892 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
893 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
894 'src/core/ext/transport/chttp2/transport/flow_control.c',
895 'src/core/ext/transport/chttp2/transport/frame_data.c',
896 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
897 'src/core/ext/transport/chttp2/transport/frame_ping.c',
898 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
899 'src/core/ext/transport/chttp2/transport/frame_settings.c',
900 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
901 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
902 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
903 'src/core/ext/transport/chttp2/transport/hpack_table.c',
904 'src/core/ext/transport/chttp2/transport/http2_settings.c',
905 'src/core/ext/transport/chttp2/transport/huffsyms.c',
906 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
907 'src/core/ext/transport/chttp2/transport/parsing.c',
908 'src/core/ext/transport/chttp2/transport/stream_lists.c',
909 'src/core/ext/transport/chttp2/transport/stream_map.c',
910 'src/core/ext/transport/chttp2/transport/varint.c',
911 'src/core/ext/transport/chttp2/transport/writing.c',
912 'src/core/ext/transport/chttp2/alpn/alpn.c',
913 'src/core/ext/filters/http/client/http_client_filter.c',
914 'src/core/ext/filters/http/http_filters_plugin.c',
915 'src/core/ext/filters/http/message_compress/message_compress_filter.c',
916 'src/core/ext/filters/http/server/http_server_filter.c',
917 ],
918 },
919 {
920 'target_name': 'grpc_unsecure',
921 'type': 'static_library',
922 'dependencies': [
923 'gpr',
924 ],
925 'sources': [
926 'src/core/lib/surface/init.c',
927 'src/core/lib/surface/init_unsecure.c',
928 'src/core/lib/channel/channel_args.c',
929 'src/core/lib/channel/channel_stack.c',
930 'src/core/lib/channel/channel_stack_builder.c',
931 'src/core/lib/channel/connected_channel.c',
932 'src/core/lib/channel/handshaker.c',
933 'src/core/lib/channel/handshaker_factory.c',
934 'src/core/lib/channel/handshaker_registry.c',
935 'src/core/lib/compression/compression.c',
936 'src/core/lib/compression/message_compress.c',
937 'src/core/lib/compression/stream_compression.c',
Muxi Yanbf5484e2017-09-01 18:03:03 -0700938 'src/core/lib/compression/stream_compression_gzip.c',
939 'src/core/lib/compression/stream_compression_identity.c',
Craig Tiller03c908f2017-08-29 12:34:10 -0700940 'src/core/lib/debug/stats.c',
941 'src/core/lib/debug/stats_data.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400942 'src/core/lib/http/format_request.c',
943 'src/core/lib/http/httpcli.c',
944 'src/core/lib/http/parser.c',
Mark D. Roth764cf042017-09-01 09:00:06 -0700945 'src/core/lib/iomgr/call_combiner.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400946 'src/core/lib/iomgr/closure.c',
947 'src/core/lib/iomgr/combiner.c',
948 'src/core/lib/iomgr/endpoint.c',
949 'src/core/lib/iomgr/endpoint_pair_posix.c',
950 'src/core/lib/iomgr/endpoint_pair_uv.c',
951 'src/core/lib/iomgr/endpoint_pair_windows.c',
952 'src/core/lib/iomgr/error.c',
953 'src/core/lib/iomgr/ev_epoll1_linux.c',
Maxim Dzobadd962612017-08-16 17:52:28 -0400954 'src/core/lib/iomgr/ev_epollex_linux.c',
955 'src/core/lib/iomgr/ev_epollsig_linux.c',
956 'src/core/lib/iomgr/ev_poll_posix.c',
957 'src/core/lib/iomgr/ev_posix.c',
958 'src/core/lib/iomgr/ev_windows.c',
959 'src/core/lib/iomgr/exec_ctx.c',
960 'src/core/lib/iomgr/executor.c',
961 'src/core/lib/iomgr/gethostname_fallback.c',
962 'src/core/lib/iomgr/gethostname_host_name_max.c',
963 'src/core/lib/iomgr/gethostname_sysconf.c',
964 'src/core/lib/iomgr/iocp_windows.c',
965 'src/core/lib/iomgr/iomgr.c',
966 'src/core/lib/iomgr/iomgr_posix.c',
967 'src/core/lib/iomgr/iomgr_uv.c',
968 'src/core/lib/iomgr/iomgr_windows.c',
969 'src/core/lib/iomgr/is_epollexclusive_available.c',
970 'src/core/lib/iomgr/load_file.c',
971 'src/core/lib/iomgr/lockfree_event.c',
972 'src/core/lib/iomgr/network_status_tracker.c',
973 'src/core/lib/iomgr/polling_entity.c',
974 'src/core/lib/iomgr/pollset_set_uv.c',
975 'src/core/lib/iomgr/pollset_set_windows.c',
976 'src/core/lib/iomgr/pollset_uv.c',
977 'src/core/lib/iomgr/pollset_windows.c',
978 'src/core/lib/iomgr/resolve_address_posix.c',
979 'src/core/lib/iomgr/resolve_address_uv.c',
980 'src/core/lib/iomgr/resolve_address_windows.c',
981 'src/core/lib/iomgr/resource_quota.c',
982 'src/core/lib/iomgr/sockaddr_utils.c',
983 'src/core/lib/iomgr/socket_factory_posix.c',
984 'src/core/lib/iomgr/socket_mutator.c',
985 'src/core/lib/iomgr/socket_utils_common_posix.c',
986 'src/core/lib/iomgr/socket_utils_linux.c',
987 'src/core/lib/iomgr/socket_utils_posix.c',
988 'src/core/lib/iomgr/socket_utils_uv.c',
989 'src/core/lib/iomgr/socket_utils_windows.c',
990 'src/core/lib/iomgr/socket_windows.c',
991 'src/core/lib/iomgr/tcp_client_posix.c',
992 'src/core/lib/iomgr/tcp_client_uv.c',
993 'src/core/lib/iomgr/tcp_client_windows.c',
994 'src/core/lib/iomgr/tcp_posix.c',
995 'src/core/lib/iomgr/tcp_server_posix.c',
996 'src/core/lib/iomgr/tcp_server_utils_posix_common.c',
997 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.c',
998 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.c',
999 'src/core/lib/iomgr/tcp_server_uv.c',
1000 'src/core/lib/iomgr/tcp_server_windows.c',
1001 'src/core/lib/iomgr/tcp_uv.c',
1002 'src/core/lib/iomgr/tcp_windows.c',
1003 'src/core/lib/iomgr/time_averaged_stats.c',
1004 'src/core/lib/iomgr/timer_generic.c',
1005 'src/core/lib/iomgr/timer_heap.c',
1006 'src/core/lib/iomgr/timer_manager.c',
1007 'src/core/lib/iomgr/timer_uv.c',
1008 'src/core/lib/iomgr/udp_server.c',
1009 'src/core/lib/iomgr/unix_sockets_posix.c',
1010 'src/core/lib/iomgr/unix_sockets_posix_noop.c',
1011 'src/core/lib/iomgr/wakeup_fd_cv.c',
1012 'src/core/lib/iomgr/wakeup_fd_eventfd.c',
1013 'src/core/lib/iomgr/wakeup_fd_nospecial.c',
1014 'src/core/lib/iomgr/wakeup_fd_pipe.c',
1015 'src/core/lib/iomgr/wakeup_fd_posix.c',
1016 'src/core/lib/json/json.c',
1017 'src/core/lib/json/json_reader.c',
1018 'src/core/lib/json/json_string.c',
1019 'src/core/lib/json/json_writer.c',
1020 'src/core/lib/slice/b64.c',
1021 'src/core/lib/slice/percent_encoding.c',
1022 'src/core/lib/slice/slice.c',
1023 'src/core/lib/slice/slice_buffer.c',
1024 'src/core/lib/slice/slice_hash_table.c',
1025 'src/core/lib/slice/slice_intern.c',
1026 'src/core/lib/slice/slice_string_helpers.c',
1027 'src/core/lib/surface/alarm.c',
1028 'src/core/lib/surface/api_trace.c',
1029 'src/core/lib/surface/byte_buffer.c',
1030 'src/core/lib/surface/byte_buffer_reader.c',
1031 'src/core/lib/surface/call.c',
1032 'src/core/lib/surface/call_details.c',
1033 'src/core/lib/surface/call_log_batch.c',
1034 'src/core/lib/surface/channel.c',
1035 'src/core/lib/surface/channel_init.c',
1036 'src/core/lib/surface/channel_ping.c',
1037 'src/core/lib/surface/channel_stack_type.c',
1038 'src/core/lib/surface/completion_queue.c',
1039 'src/core/lib/surface/completion_queue_factory.c',
1040 'src/core/lib/surface/event_string.c',
1041 'src/core/lib/surface/lame_client.cc',
1042 'src/core/lib/surface/metadata_array.c',
1043 'src/core/lib/surface/server.c',
1044 'src/core/lib/surface/validate_metadata.c',
1045 'src/core/lib/surface/version.c',
1046 'src/core/lib/transport/bdp_estimator.c',
1047 'src/core/lib/transport/byte_stream.c',
1048 'src/core/lib/transport/connectivity_state.c',
1049 'src/core/lib/transport/error_utils.c',
1050 'src/core/lib/transport/metadata.c',
1051 'src/core/lib/transport/metadata_batch.c',
1052 'src/core/lib/transport/pid_controller.c',
1053 'src/core/lib/transport/service_config.c',
1054 'src/core/lib/transport/static_metadata.c',
1055 'src/core/lib/transport/status_conversion.c',
1056 'src/core/lib/transport/timeout_encoding.c',
1057 'src/core/lib/transport/transport.c',
1058 'src/core/lib/transport/transport_op_string.c',
1059 'src/core/lib/debug/trace.c',
1060 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.c',
1061 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.c',
1062 'src/core/ext/transport/chttp2/transport/bin_decoder.c',
1063 'src/core/ext/transport/chttp2/transport/bin_encoder.c',
1064 'src/core/ext/transport/chttp2/transport/chttp2_plugin.c',
1065 'src/core/ext/transport/chttp2/transport/chttp2_transport.c',
1066 'src/core/ext/transport/chttp2/transport/flow_control.c',
1067 'src/core/ext/transport/chttp2/transport/frame_data.c',
1068 'src/core/ext/transport/chttp2/transport/frame_goaway.c',
1069 'src/core/ext/transport/chttp2/transport/frame_ping.c',
1070 'src/core/ext/transport/chttp2/transport/frame_rst_stream.c',
1071 'src/core/ext/transport/chttp2/transport/frame_settings.c',
1072 'src/core/ext/transport/chttp2/transport/frame_window_update.c',
1073 'src/core/ext/transport/chttp2/transport/hpack_encoder.c',
1074 'src/core/ext/transport/chttp2/transport/hpack_parser.c',
1075 'src/core/ext/transport/chttp2/transport/hpack_table.c',
1076 'src/core/ext/transport/chttp2/transport/http2_settings.c',
1077 'src/core/ext/transport/chttp2/transport/huffsyms.c',
1078 'src/core/ext/transport/chttp2/transport/incoming_metadata.c',
1079 'src/core/ext/transport/chttp2/transport/parsing.c',
1080 'src/core/ext/transport/chttp2/transport/stream_lists.c',
1081 'src/core/ext/transport/chttp2/transport/stream_map.c',
1082 'src/core/ext/transport/chttp2/transport/varint.c',
1083 'src/core/ext/transport/chttp2/transport/writing.c',
1084 'src/core/ext/transport/chttp2/alpn/alpn.c',
1085 'src/core/ext/filters/http/client/http_client_filter.c',
1086 'src/core/ext/filters/http/http_filters_plugin.c',
1087 'src/core/ext/filters/http/message_compress/message_compress_filter.c',
1088 'src/core/ext/filters/http/server/http_server_filter.c',
1089 'src/core/ext/transport/chttp2/server/chttp2_server.c',
1090 'src/core/ext/transport/chttp2/client/insecure/channel_create.c',
1091 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c',
1092 'src/core/ext/transport/chttp2/client/chttp2_connector.c',
1093 'src/core/ext/filters/client_channel/channel_connectivity.c',
1094 'src/core/ext/filters/client_channel/client_channel.c',
1095 'src/core/ext/filters/client_channel/client_channel_factory.c',
1096 'src/core/ext/filters/client_channel/client_channel_plugin.c',
1097 'src/core/ext/filters/client_channel/connector.c',
1098 'src/core/ext/filters/client_channel/http_connect_handshaker.c',
1099 'src/core/ext/filters/client_channel/http_proxy.c',
1100 'src/core/ext/filters/client_channel/lb_policy.c',
1101 'src/core/ext/filters/client_channel/lb_policy_factory.c',
1102 'src/core/ext/filters/client_channel/lb_policy_registry.c',
1103 'src/core/ext/filters/client_channel/parse_address.c',
1104 'src/core/ext/filters/client_channel/proxy_mapper.c',
1105 'src/core/ext/filters/client_channel/proxy_mapper_registry.c',
1106 'src/core/ext/filters/client_channel/resolver.c',
1107 'src/core/ext/filters/client_channel/resolver_factory.c',
1108 'src/core/ext/filters/client_channel/resolver_registry.c',
1109 'src/core/ext/filters/client_channel/retry_throttle.c',
1110 'src/core/ext/filters/client_channel/subchannel.c',
1111 'src/core/ext/filters/client_channel/subchannel_index.c',
1112 'src/core/ext/filters/client_channel/uri_parser.c',
1113 'src/core/ext/filters/deadline/deadline_filter.c',
1114 'src/core/ext/transport/inproc/inproc_plugin.c',
1115 'src/core/ext/transport/inproc/inproc_transport.c',
1116 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.c',
1117 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.c',
1118 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.c',
1119 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.c',
1120 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.c',
1121 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.c',
1122 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.c',
David Garcia Quintas0822d332017-09-06 17:40:42 -07001123 'src/core/ext/filters/load_reporting/server_load_reporting_filter.c',
1124 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.c',
Maxim Dzobadd962612017-08-16 17:52:28 -04001125 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.c',
1126 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c',
1127 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.c',
1128 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.c',
1129 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.c',
1130 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001131 'third_party/nanopb/pb_common.c',
1132 'third_party/nanopb/pb_decode.c',
1133 'third_party/nanopb/pb_encode.c',
Maxim Dzobadd962612017-08-16 17:52:28 -04001134 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.c',
1135 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.c',
1136 'src/core/ext/census/base_resources.c',
1137 'src/core/ext/census/context.c',
1138 'src/core/ext/census/gen/census.pb.c',
1139 'src/core/ext/census/gen/trace_context.pb.c',
1140 'src/core/ext/census/grpc_context.c',
1141 'src/core/ext/census/grpc_filter.c',
1142 'src/core/ext/census/grpc_plugin.c',
1143 'src/core/ext/census/initialize.c',
1144 'src/core/ext/census/intrusive_hash_map.c',
1145 'src/core/ext/census/mlog.c',
1146 'src/core/ext/census/operation.c',
1147 'src/core/ext/census/placeholders.c',
1148 'src/core/ext/census/resource.c',
1149 'src/core/ext/census/trace_context.c',
1150 'src/core/ext/census/tracing.c',
1151 'src/core/ext/filters/max_age/max_age_filter.c',
1152 'src/core/ext/filters/message_size/message_size_filter.c',
1153 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.c',
1154 'src/core/ext/filters/workarounds/workaround_utils.c',
1155 'src/core/plugin_registry/grpc_unsecure_plugin_registry.c',
1156 ],
1157 },
1158 {
1159 'target_name': 'reconnect_server',
1160 'type': 'static_library',
1161 'dependencies': [
1162 'test_tcp_server',
1163 'grpc_test_util',
1164 'grpc',
1165 'gpr_test_util',
1166 'gpr',
1167 ],
1168 'sources': [
1169 'test/core/util/reconnect_server.c',
1170 ],
1171 },
1172 {
1173 'target_name': 'test_tcp_server',
1174 'type': 'static_library',
1175 'dependencies': [
1176 'grpc_test_util',
1177 'grpc',
1178 'gpr_test_util',
1179 'gpr',
1180 ],
1181 'sources': [
1182 'test/core/util/test_tcp_server.c',
1183 ],
1184 },
1185 {
1186 'target_name': 'grpc++',
1187 'type': 'static_library',
1188 'dependencies': [
1189 'grpc',
1190 'gpr',
1191 ],
1192 'sources': [
1193 'src/cpp/client/insecure_credentials.cc',
1194 'src/cpp/client/secure_credentials.cc',
1195 'src/cpp/common/auth_property_iterator.cc',
1196 'src/cpp/common/secure_auth_context.cc',
1197 'src/cpp/common/secure_channel_arguments.cc',
1198 'src/cpp/common/secure_create_auth_context.cc',
1199 'src/cpp/server/insecure_server_credentials.cc',
1200 'src/cpp/server/secure_server_credentials.cc',
1201 'src/cpp/client/channel_cc.cc',
1202 'src/cpp/client/client_context.cc',
1203 'src/cpp/client/create_channel.cc',
1204 'src/cpp/client/create_channel_internal.cc',
1205 'src/cpp/client/create_channel_posix.cc',
1206 'src/cpp/client/credentials_cc.cc',
1207 'src/cpp/client/generic_stub.cc',
1208 'src/cpp/common/channel_arguments.cc',
1209 'src/cpp/common/channel_filter.cc',
1210 'src/cpp/common/completion_queue_cc.cc',
1211 'src/cpp/common/core_codegen.cc',
1212 'src/cpp/common/resource_quota_cc.cc',
1213 'src/cpp/common/rpc_method.cc',
1214 'src/cpp/common/version_cc.cc',
1215 'src/cpp/server/async_generic_service.cc',
1216 'src/cpp/server/channel_argument_option.cc',
1217 'src/cpp/server/create_default_thread_pool.cc',
1218 'src/cpp/server/dynamic_thread_pool.cc',
1219 'src/cpp/server/health/default_health_check_service.cc',
1220 'src/cpp/server/health/health.pb.c',
1221 'src/cpp/server/health/health_check_service.cc',
1222 'src/cpp/server/health/health_check_service_server_builder_option.cc',
1223 'src/cpp/server/server_builder.cc',
1224 'src/cpp/server/server_cc.cc',
1225 'src/cpp/server/server_context.cc',
1226 'src/cpp/server/server_credentials.cc',
1227 'src/cpp/server/server_posix.cc',
1228 'src/cpp/thread_manager/thread_manager.cc',
1229 'src/cpp/util/byte_buffer_cc.cc',
1230 'src/cpp/util/slice_cc.cc',
1231 'src/cpp/util/status.cc',
1232 'src/cpp/util/string_ref.cc',
1233 'src/cpp/util/time_cc.cc',
1234 'src/cpp/codegen/codegen_init.cc',
1235 ],
1236 },
1237 {
Craig Tiller28972352017-08-31 15:52:57 -07001238 'target_name': 'grpc++_core_stats',
1239 'type': 'static_library',
1240 'dependencies': [
1241 'grpc++',
1242 ],
1243 'sources': [
1244 'src/proto/grpc/core/stats.proto',
1245 'src/cpp/util/core_stats.cc',
1246 ],
1247 },
1248 {
Maxim Dzobadd962612017-08-16 17:52:28 -04001249 'target_name': 'grpc++_error_details',
1250 'type': 'static_library',
1251 'dependencies': [
1252 'grpc++',
1253 ],
1254 'sources': [
1255 'src/proto/grpc/status/status.proto',
1256 'src/cpp/util/error_details.cc',
1257 ],
1258 },
1259 {
1260 'target_name': 'grpc++_proto_reflection_desc_db',
1261 'type': 'static_library',
1262 'dependencies': [
1263 'grpc++',
1264 'grpc',
1265 ],
1266 'sources': [
1267 'test/cpp/util/proto_reflection_descriptor_database.cc',
1268 'src/proto/grpc/reflection/v1alpha/reflection.proto',
1269 ],
1270 },
1271 {
1272 'target_name': 'grpc++_reflection',
1273 'type': 'static_library',
1274 'dependencies': [
1275 'grpc++',
1276 'grpc',
1277 ],
1278 'sources': [
1279 'src/cpp/ext/proto_server_reflection.cc',
1280 'src/cpp/ext/proto_server_reflection_plugin.cc',
1281 'src/proto/grpc/reflection/v1alpha/reflection.proto',
1282 ],
1283 },
1284 {
1285 'target_name': 'grpc++_test_config',
1286 'type': 'static_library',
1287 'dependencies': [
1288 ],
1289 'sources': [
1290 'test/cpp/util/test_config_cc.cc',
1291 ],
1292 },
1293 {
1294 'target_name': 'grpc++_test_util',
1295 'type': 'static_library',
1296 'dependencies': [
1297 'grpc++',
1298 'grpc_test_util',
1299 'grpc',
1300 ],
1301 'sources': [
1302 'src/proto/grpc/health/v1/health.proto',
1303 'src/proto/grpc/testing/echo_messages.proto',
1304 'src/proto/grpc/testing/echo.proto',
1305 'src/proto/grpc/testing/duplicate/echo_duplicate.proto',
1306 'test/cpp/end2end/test_service_impl.cc',
1307 'test/cpp/util/byte_buffer_proto_helper.cc',
1308 'test/cpp/util/create_test_channel.cc',
1309 'test/cpp/util/string_ref_helper.cc',
1310 'test/cpp/util/subprocess.cc',
1311 'test/cpp/util/test_credentials_provider.cc',
1312 'src/cpp/codegen/codegen_init.cc',
1313 ],
1314 },
1315 {
1316 'target_name': 'grpc++_test_util_unsecure',
1317 'type': 'static_library',
1318 'dependencies': [
1319 'grpc++_unsecure',
1320 'grpc_test_util_unsecure',
1321 'grpc_unsecure',
1322 ],
1323 'sources': [
1324 'src/proto/grpc/health/v1/health.proto',
1325 'src/proto/grpc/testing/echo_messages.proto',
1326 'src/proto/grpc/testing/echo.proto',
1327 'src/proto/grpc/testing/duplicate/echo_duplicate.proto',
1328 'test/cpp/end2end/test_service_impl.cc',
1329 'test/cpp/util/byte_buffer_proto_helper.cc',
1330 'test/cpp/util/string_ref_helper.cc',
1331 'test/cpp/util/subprocess.cc',
1332 'src/cpp/codegen/codegen_init.cc',
1333 ],
1334 },
1335 {
1336 'target_name': 'grpc++_unsecure',
1337 'type': 'static_library',
1338 'dependencies': [
1339 'gpr',
1340 'grpc_unsecure',
1341 ],
1342 'sources': [
1343 'src/cpp/client/insecure_credentials.cc',
1344 'src/cpp/common/insecure_create_auth_context.cc',
1345 'src/cpp/server/insecure_server_credentials.cc',
1346 'src/cpp/client/channel_cc.cc',
1347 'src/cpp/client/client_context.cc',
1348 'src/cpp/client/create_channel.cc',
1349 'src/cpp/client/create_channel_internal.cc',
1350 'src/cpp/client/create_channel_posix.cc',
1351 'src/cpp/client/credentials_cc.cc',
1352 'src/cpp/client/generic_stub.cc',
1353 'src/cpp/common/channel_arguments.cc',
1354 'src/cpp/common/channel_filter.cc',
1355 'src/cpp/common/completion_queue_cc.cc',
1356 'src/cpp/common/core_codegen.cc',
1357 'src/cpp/common/resource_quota_cc.cc',
1358 'src/cpp/common/rpc_method.cc',
1359 'src/cpp/common/version_cc.cc',
1360 'src/cpp/server/async_generic_service.cc',
1361 'src/cpp/server/channel_argument_option.cc',
1362 'src/cpp/server/create_default_thread_pool.cc',
1363 'src/cpp/server/dynamic_thread_pool.cc',
1364 'src/cpp/server/health/default_health_check_service.cc',
1365 'src/cpp/server/health/health.pb.c',
1366 'src/cpp/server/health/health_check_service.cc',
1367 'src/cpp/server/health/health_check_service_server_builder_option.cc',
1368 'src/cpp/server/server_builder.cc',
1369 'src/cpp/server/server_cc.cc',
1370 'src/cpp/server/server_context.cc',
1371 'src/cpp/server/server_credentials.cc',
1372 'src/cpp/server/server_posix.cc',
1373 'src/cpp/thread_manager/thread_manager.cc',
1374 'src/cpp/util/byte_buffer_cc.cc',
1375 'src/cpp/util/slice_cc.cc',
1376 'src/cpp/util/status.cc',
1377 'src/cpp/util/string_ref.cc',
1378 'src/cpp/util/time_cc.cc',
1379 'src/cpp/codegen/codegen_init.cc',
1380 ],
1381 },
1382 {
1383 'target_name': 'grpc_benchmark',
1384 'type': 'static_library',
1385 'dependencies': [
1386 'benchmark',
1387 'grpc++_unsecure',
1388 'grpc_test_util_unsecure',
1389 'grpc_unsecure',
1390 ],
1391 'sources': [
1392 'test/cpp/microbenchmarks/helpers.cc',
1393 ],
1394 },
1395 {
1396 'target_name': 'grpc_cli_libs',
1397 'type': 'static_library',
1398 'dependencies': [
1399 'grpc++_proto_reflection_desc_db',
1400 'grpc++',
1401 'grpc',
1402 ],
1403 'sources': [
1404 'test/cpp/util/cli_call.cc',
1405 'test/cpp/util/cli_credentials.cc',
1406 'test/cpp/util/grpc_tool.cc',
1407 'test/cpp/util/proto_file_parser.cc',
1408 'test/cpp/util/service_describer.cc',
1409 'src/proto/grpc/reflection/v1alpha/reflection.proto',
1410 ],
1411 },
1412 {
1413 'target_name': 'grpc_plugin_support',
1414 'type': 'static_library',
1415 'dependencies': [
1416 ],
1417 'sources': [
1418 'src/compiler/cpp_generator.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001419 'src/compiler/csharp_generator.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001420 'src/compiler/node_generator.cc',
1421 'src/compiler/objective_c_generator.cc',
1422 'src/compiler/php_generator.cc',
1423 'src/compiler/python_generator.cc',
1424 'src/compiler/ruby_generator.cc',
1425 ],
1426 },
1427 {
1428 'target_name': 'http2_client_main',
1429 'type': 'static_library',
1430 'dependencies': [
1431 'grpc++_test_util',
1432 'grpc_test_util',
1433 'grpc++',
1434 'grpc',
1435 'grpc++_test_config',
1436 ],
1437 'sources': [
1438 'src/proto/grpc/testing/empty.proto',
1439 'src/proto/grpc/testing/messages.proto',
1440 'src/proto/grpc/testing/test.proto',
1441 'test/cpp/interop/http2_client.cc',
1442 ],
1443 },
1444 {
1445 'target_name': 'interop_client_helper',
1446 'type': 'static_library',
1447 'dependencies': [
1448 'grpc++_test_util',
1449 'grpc_test_util',
1450 'grpc++',
1451 'grpc',
1452 'gpr',
1453 ],
1454 'sources': [
1455 'src/proto/grpc/testing/messages.proto',
1456 'test/cpp/interop/client_helper.cc',
1457 ],
1458 },
1459 {
1460 'target_name': 'interop_client_main',
1461 'type': 'static_library',
1462 'dependencies': [
1463 'interop_client_helper',
1464 'grpc++_test_util',
1465 'grpc_test_util',
1466 'grpc++',
1467 'grpc',
1468 'gpr_test_util',
1469 'gpr',
1470 'grpc++_test_config',
1471 ],
1472 'sources': [
1473 'src/proto/grpc/testing/empty.proto',
1474 'src/proto/grpc/testing/messages.proto',
1475 'src/proto/grpc/testing/test.proto',
1476 'test/cpp/interop/client.cc',
1477 'test/cpp/interop/interop_client.cc',
1478 ],
1479 },
1480 {
1481 'target_name': 'interop_server_helper',
1482 'type': 'static_library',
1483 'dependencies': [
1484 'grpc++_test_util',
1485 'grpc_test_util',
1486 'grpc++',
1487 'grpc',
1488 'gpr',
1489 ],
1490 'sources': [
1491 'test/cpp/interop/server_helper.cc',
1492 ],
1493 },
1494 {
1495 'target_name': 'interop_server_lib',
1496 'type': 'static_library',
1497 'dependencies': [
1498 'interop_server_helper',
1499 'grpc++_test_util',
1500 'grpc_test_util',
1501 'grpc++',
1502 'grpc',
1503 'gpr_test_util',
1504 'gpr',
1505 'grpc++_test_config',
1506 ],
1507 'sources': [
1508 'src/proto/grpc/testing/empty.proto',
1509 'src/proto/grpc/testing/messages.proto',
1510 'src/proto/grpc/testing/test.proto',
1511 'test/cpp/interop/interop_server.cc',
1512 ],
1513 },
1514 {
1515 'target_name': 'interop_server_main',
1516 'type': 'static_library',
1517 'dependencies': [
1518 'interop_server_lib',
1519 ],
1520 'sources': [
1521 'test/cpp/interop/interop_server_bootstrap.cc',
1522 ],
1523 },
1524 {
1525 'target_name': 'qps',
1526 'type': 'static_library',
1527 'dependencies': [
1528 'grpc_test_util',
1529 'grpc++_test_util',
Craig Tiller28972352017-08-31 15:52:57 -07001530 'grpc++_core_stats',
Maxim Dzobadd962612017-08-16 17:52:28 -04001531 'grpc++',
1532 'grpc',
1533 ],
1534 'sources': [
1535 'src/proto/grpc/testing/messages.proto',
1536 'src/proto/grpc/testing/payloads.proto',
1537 'src/proto/grpc/testing/stats.proto',
1538 'src/proto/grpc/testing/control.proto',
1539 'src/proto/grpc/testing/services.proto',
1540 'test/cpp/qps/benchmark_config.cc',
1541 'test/cpp/qps/client_async.cc',
1542 'test/cpp/qps/client_sync.cc',
1543 'test/cpp/qps/driver.cc',
1544 'test/cpp/qps/parse_json.cc',
1545 'test/cpp/qps/qps_worker.cc',
1546 'test/cpp/qps/report.cc',
1547 'test/cpp/qps/server_async.cc',
1548 'test/cpp/qps/server_sync.cc',
1549 'test/cpp/qps/usage_timer.cc',
1550 ],
1551 },
1552 {
1553 'target_name': 'grpc_csharp_ext',
1554 'type': 'static_library',
1555 'dependencies': [
1556 'grpc',
1557 'gpr',
1558 ],
1559 'sources': [
1560 'src/csharp/ext/grpc_csharp_ext.c',
1561 ],
1562 },
1563 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001564 'target_name': 'boringssl',
1565 'type': 'static_library',
1566 'dependencies': [
1567 ],
1568 'sources': [
1569 'src/boringssl/err_data.c',
1570 'third_party/boringssl/crypto/aes/aes.c',
1571 'third_party/boringssl/crypto/aes/key_wrap.c',
1572 'third_party/boringssl/crypto/aes/mode_wrappers.c',
1573 'third_party/boringssl/crypto/asn1/a_bitstr.c',
1574 'third_party/boringssl/crypto/asn1/a_bool.c',
1575 'third_party/boringssl/crypto/asn1/a_d2i_fp.c',
1576 'third_party/boringssl/crypto/asn1/a_dup.c',
1577 'third_party/boringssl/crypto/asn1/a_enum.c',
1578 'third_party/boringssl/crypto/asn1/a_gentm.c',
1579 'third_party/boringssl/crypto/asn1/a_i2d_fp.c',
1580 'third_party/boringssl/crypto/asn1/a_int.c',
1581 'third_party/boringssl/crypto/asn1/a_mbstr.c',
1582 'third_party/boringssl/crypto/asn1/a_object.c',
1583 'third_party/boringssl/crypto/asn1/a_octet.c',
1584 'third_party/boringssl/crypto/asn1/a_print.c',
1585 'third_party/boringssl/crypto/asn1/a_strnid.c',
1586 'third_party/boringssl/crypto/asn1/a_time.c',
1587 'third_party/boringssl/crypto/asn1/a_type.c',
1588 'third_party/boringssl/crypto/asn1/a_utctm.c',
1589 'third_party/boringssl/crypto/asn1/a_utf8.c',
1590 'third_party/boringssl/crypto/asn1/asn1_lib.c',
1591 'third_party/boringssl/crypto/asn1/asn1_par.c',
1592 'third_party/boringssl/crypto/asn1/asn_pack.c',
1593 'third_party/boringssl/crypto/asn1/f_enum.c',
1594 'third_party/boringssl/crypto/asn1/f_int.c',
1595 'third_party/boringssl/crypto/asn1/f_string.c',
1596 'third_party/boringssl/crypto/asn1/t_bitst.c',
1597 'third_party/boringssl/crypto/asn1/tasn_dec.c',
1598 'third_party/boringssl/crypto/asn1/tasn_enc.c',
1599 'third_party/boringssl/crypto/asn1/tasn_fre.c',
1600 'third_party/boringssl/crypto/asn1/tasn_new.c',
1601 'third_party/boringssl/crypto/asn1/tasn_typ.c',
1602 'third_party/boringssl/crypto/asn1/tasn_utl.c',
1603 'third_party/boringssl/crypto/asn1/time_support.c',
1604 'third_party/boringssl/crypto/asn1/x_bignum.c',
1605 'third_party/boringssl/crypto/asn1/x_long.c',
1606 'third_party/boringssl/crypto/base64/base64.c',
1607 'third_party/boringssl/crypto/bio/bio.c',
1608 'third_party/boringssl/crypto/bio/bio_mem.c',
1609 'third_party/boringssl/crypto/bio/connect.c',
1610 'third_party/boringssl/crypto/bio/fd.c',
1611 'third_party/boringssl/crypto/bio/file.c',
1612 'third_party/boringssl/crypto/bio/hexdump.c',
1613 'third_party/boringssl/crypto/bio/pair.c',
1614 'third_party/boringssl/crypto/bio/printf.c',
1615 'third_party/boringssl/crypto/bio/socket.c',
1616 'third_party/boringssl/crypto/bio/socket_helper.c',
1617 'third_party/boringssl/crypto/bn/add.c',
1618 'third_party/boringssl/crypto/bn/asm/x86_64-gcc.c',
1619 'third_party/boringssl/crypto/bn/bn.c',
1620 'third_party/boringssl/crypto/bn/bn_asn1.c',
1621 'third_party/boringssl/crypto/bn/cmp.c',
1622 'third_party/boringssl/crypto/bn/convert.c',
1623 'third_party/boringssl/crypto/bn/ctx.c',
1624 'third_party/boringssl/crypto/bn/div.c',
1625 'third_party/boringssl/crypto/bn/exponentiation.c',
1626 'third_party/boringssl/crypto/bn/gcd.c',
1627 'third_party/boringssl/crypto/bn/generic.c',
1628 'third_party/boringssl/crypto/bn/kronecker.c',
1629 'third_party/boringssl/crypto/bn/montgomery.c',
1630 'third_party/boringssl/crypto/bn/montgomery_inv.c',
1631 'third_party/boringssl/crypto/bn/mul.c',
1632 'third_party/boringssl/crypto/bn/prime.c',
1633 'third_party/boringssl/crypto/bn/random.c',
1634 'third_party/boringssl/crypto/bn/rsaz_exp.c',
1635 'third_party/boringssl/crypto/bn/shift.c',
1636 'third_party/boringssl/crypto/bn/sqrt.c',
1637 'third_party/boringssl/crypto/buf/buf.c',
1638 'third_party/boringssl/crypto/bytestring/asn1_compat.c',
1639 'third_party/boringssl/crypto/bytestring/ber.c',
1640 'third_party/boringssl/crypto/bytestring/cbb.c',
1641 'third_party/boringssl/crypto/bytestring/cbs.c',
1642 'third_party/boringssl/crypto/chacha/chacha.c',
1643 'third_party/boringssl/crypto/cipher/aead.c',
1644 'third_party/boringssl/crypto/cipher/cipher.c',
1645 'third_party/boringssl/crypto/cipher/derive_key.c',
1646 'third_party/boringssl/crypto/cipher/e_aes.c',
1647 'third_party/boringssl/crypto/cipher/e_chacha20poly1305.c',
1648 'third_party/boringssl/crypto/cipher/e_des.c',
1649 'third_party/boringssl/crypto/cipher/e_null.c',
1650 'third_party/boringssl/crypto/cipher/e_rc2.c',
1651 'third_party/boringssl/crypto/cipher/e_rc4.c',
1652 'third_party/boringssl/crypto/cipher/e_ssl3.c',
1653 'third_party/boringssl/crypto/cipher/e_tls.c',
1654 'third_party/boringssl/crypto/cipher/tls_cbc.c',
1655 'third_party/boringssl/crypto/cmac/cmac.c',
1656 'third_party/boringssl/crypto/conf/conf.c',
1657 'third_party/boringssl/crypto/cpu-aarch64-linux.c',
1658 'third_party/boringssl/crypto/cpu-arm-linux.c',
1659 'third_party/boringssl/crypto/cpu-arm.c',
1660 'third_party/boringssl/crypto/cpu-intel.c',
1661 'third_party/boringssl/crypto/cpu-ppc64le.c',
1662 'third_party/boringssl/crypto/crypto.c',
1663 'third_party/boringssl/crypto/curve25519/curve25519.c',
1664 'third_party/boringssl/crypto/curve25519/spake25519.c',
1665 'third_party/boringssl/crypto/curve25519/x25519-x86_64.c',
1666 'third_party/boringssl/crypto/des/des.c',
1667 'third_party/boringssl/crypto/dh/check.c',
1668 'third_party/boringssl/crypto/dh/dh.c',
1669 'third_party/boringssl/crypto/dh/dh_asn1.c',
1670 'third_party/boringssl/crypto/dh/params.c',
1671 'third_party/boringssl/crypto/digest/digest.c',
1672 'third_party/boringssl/crypto/digest/digests.c',
1673 'third_party/boringssl/crypto/dsa/dsa.c',
1674 'third_party/boringssl/crypto/dsa/dsa_asn1.c',
1675 'third_party/boringssl/crypto/ec/ec.c',
1676 'third_party/boringssl/crypto/ec/ec_asn1.c',
1677 'third_party/boringssl/crypto/ec/ec_key.c',
1678 'third_party/boringssl/crypto/ec/ec_montgomery.c',
1679 'third_party/boringssl/crypto/ec/oct.c',
1680 'third_party/boringssl/crypto/ec/p224-64.c',
1681 'third_party/boringssl/crypto/ec/p256-64.c',
1682 'third_party/boringssl/crypto/ec/p256-x86_64.c',
1683 'third_party/boringssl/crypto/ec/simple.c',
1684 'third_party/boringssl/crypto/ec/util-64.c',
1685 'third_party/boringssl/crypto/ec/wnaf.c',
1686 'third_party/boringssl/crypto/ecdh/ecdh.c',
1687 'third_party/boringssl/crypto/ecdsa/ecdsa.c',
1688 'third_party/boringssl/crypto/ecdsa/ecdsa_asn1.c',
1689 'third_party/boringssl/crypto/engine/engine.c',
1690 'third_party/boringssl/crypto/err/err.c',
1691 'third_party/boringssl/crypto/evp/digestsign.c',
1692 'third_party/boringssl/crypto/evp/evp.c',
1693 'third_party/boringssl/crypto/evp/evp_asn1.c',
1694 'third_party/boringssl/crypto/evp/evp_ctx.c',
1695 'third_party/boringssl/crypto/evp/p_dsa_asn1.c',
1696 'third_party/boringssl/crypto/evp/p_ec.c',
1697 'third_party/boringssl/crypto/evp/p_ec_asn1.c',
1698 'third_party/boringssl/crypto/evp/p_rsa.c',
1699 'third_party/boringssl/crypto/evp/p_rsa_asn1.c',
1700 'third_party/boringssl/crypto/evp/pbkdf.c',
1701 'third_party/boringssl/crypto/evp/print.c',
1702 'third_party/boringssl/crypto/evp/sign.c',
1703 'third_party/boringssl/crypto/ex_data.c',
1704 'third_party/boringssl/crypto/hkdf/hkdf.c',
1705 'third_party/boringssl/crypto/hmac/hmac.c',
1706 'third_party/boringssl/crypto/lhash/lhash.c',
1707 'third_party/boringssl/crypto/md4/md4.c',
1708 'third_party/boringssl/crypto/md5/md5.c',
1709 'third_party/boringssl/crypto/mem.c',
1710 'third_party/boringssl/crypto/modes/cbc.c',
1711 'third_party/boringssl/crypto/modes/cfb.c',
1712 'third_party/boringssl/crypto/modes/ctr.c',
1713 'third_party/boringssl/crypto/modes/gcm.c',
1714 'third_party/boringssl/crypto/modes/ofb.c',
1715 'third_party/boringssl/crypto/modes/polyval.c',
1716 'third_party/boringssl/crypto/obj/obj.c',
1717 'third_party/boringssl/crypto/obj/obj_xref.c',
1718 'third_party/boringssl/crypto/pem/pem_all.c',
1719 'third_party/boringssl/crypto/pem/pem_info.c',
1720 'third_party/boringssl/crypto/pem/pem_lib.c',
1721 'third_party/boringssl/crypto/pem/pem_oth.c',
1722 'third_party/boringssl/crypto/pem/pem_pk8.c',
1723 'third_party/boringssl/crypto/pem/pem_pkey.c',
1724 'third_party/boringssl/crypto/pem/pem_x509.c',
1725 'third_party/boringssl/crypto/pem/pem_xaux.c',
1726 'third_party/boringssl/crypto/pkcs8/p5_pbev2.c',
1727 'third_party/boringssl/crypto/pkcs8/p8_pkey.c',
1728 'third_party/boringssl/crypto/pkcs8/pkcs8.c',
1729 'third_party/boringssl/crypto/poly1305/poly1305.c',
1730 'third_party/boringssl/crypto/poly1305/poly1305_arm.c',
1731 'third_party/boringssl/crypto/poly1305/poly1305_vec.c',
1732 'third_party/boringssl/crypto/pool/pool.c',
1733 'third_party/boringssl/crypto/rand/deterministic.c',
1734 'third_party/boringssl/crypto/rand/fuchsia.c',
1735 'third_party/boringssl/crypto/rand/rand.c',
1736 'third_party/boringssl/crypto/rand/urandom.c',
1737 'third_party/boringssl/crypto/rand/windows.c',
1738 'third_party/boringssl/crypto/rc4/rc4.c',
1739 'third_party/boringssl/crypto/refcount_c11.c',
1740 'third_party/boringssl/crypto/refcount_lock.c',
1741 'third_party/boringssl/crypto/rsa/blinding.c',
1742 'third_party/boringssl/crypto/rsa/padding.c',
1743 'third_party/boringssl/crypto/rsa/rsa.c',
1744 'third_party/boringssl/crypto/rsa/rsa_asn1.c',
1745 'third_party/boringssl/crypto/rsa/rsa_impl.c',
1746 'third_party/boringssl/crypto/sha/sha1-altivec.c',
1747 'third_party/boringssl/crypto/sha/sha1.c',
1748 'third_party/boringssl/crypto/sha/sha256.c',
1749 'third_party/boringssl/crypto/sha/sha512.c',
1750 'third_party/boringssl/crypto/stack/stack.c',
1751 'third_party/boringssl/crypto/thread.c',
1752 'third_party/boringssl/crypto/thread_none.c',
1753 'third_party/boringssl/crypto/thread_pthread.c',
1754 'third_party/boringssl/crypto/thread_win.c',
1755 'third_party/boringssl/crypto/x509/a_digest.c',
1756 'third_party/boringssl/crypto/x509/a_sign.c',
1757 'third_party/boringssl/crypto/x509/a_strex.c',
1758 'third_party/boringssl/crypto/x509/a_verify.c',
1759 'third_party/boringssl/crypto/x509/algorithm.c',
1760 'third_party/boringssl/crypto/x509/asn1_gen.c',
1761 'third_party/boringssl/crypto/x509/by_dir.c',
1762 'third_party/boringssl/crypto/x509/by_file.c',
1763 'third_party/boringssl/crypto/x509/i2d_pr.c',
1764 'third_party/boringssl/crypto/x509/pkcs7.c',
1765 'third_party/boringssl/crypto/x509/rsa_pss.c',
1766 'third_party/boringssl/crypto/x509/t_crl.c',
1767 'third_party/boringssl/crypto/x509/t_req.c',
1768 'third_party/boringssl/crypto/x509/t_x509.c',
1769 'third_party/boringssl/crypto/x509/t_x509a.c',
1770 'third_party/boringssl/crypto/x509/x509.c',
1771 'third_party/boringssl/crypto/x509/x509_att.c',
1772 'third_party/boringssl/crypto/x509/x509_cmp.c',
1773 'third_party/boringssl/crypto/x509/x509_d2.c',
1774 'third_party/boringssl/crypto/x509/x509_def.c',
1775 'third_party/boringssl/crypto/x509/x509_ext.c',
1776 'third_party/boringssl/crypto/x509/x509_lu.c',
1777 'third_party/boringssl/crypto/x509/x509_obj.c',
1778 'third_party/boringssl/crypto/x509/x509_r2x.c',
1779 'third_party/boringssl/crypto/x509/x509_req.c',
1780 'third_party/boringssl/crypto/x509/x509_set.c',
1781 'third_party/boringssl/crypto/x509/x509_trs.c',
1782 'third_party/boringssl/crypto/x509/x509_txt.c',
1783 'third_party/boringssl/crypto/x509/x509_v3.c',
1784 'third_party/boringssl/crypto/x509/x509_vfy.c',
1785 'third_party/boringssl/crypto/x509/x509_vpm.c',
1786 'third_party/boringssl/crypto/x509/x509cset.c',
1787 'third_party/boringssl/crypto/x509/x509name.c',
1788 'third_party/boringssl/crypto/x509/x509rset.c',
1789 'third_party/boringssl/crypto/x509/x509spki.c',
1790 'third_party/boringssl/crypto/x509/x509type.c',
1791 'third_party/boringssl/crypto/x509/x_algor.c',
1792 'third_party/boringssl/crypto/x509/x_all.c',
1793 'third_party/boringssl/crypto/x509/x_attrib.c',
1794 'third_party/boringssl/crypto/x509/x_crl.c',
1795 'third_party/boringssl/crypto/x509/x_exten.c',
1796 'third_party/boringssl/crypto/x509/x_info.c',
1797 'third_party/boringssl/crypto/x509/x_name.c',
1798 'third_party/boringssl/crypto/x509/x_pkey.c',
1799 'third_party/boringssl/crypto/x509/x_pubkey.c',
1800 'third_party/boringssl/crypto/x509/x_req.c',
1801 'third_party/boringssl/crypto/x509/x_sig.c',
1802 'third_party/boringssl/crypto/x509/x_spki.c',
1803 'third_party/boringssl/crypto/x509/x_val.c',
1804 'third_party/boringssl/crypto/x509/x_x509.c',
1805 'third_party/boringssl/crypto/x509/x_x509a.c',
1806 'third_party/boringssl/crypto/x509v3/pcy_cache.c',
1807 'third_party/boringssl/crypto/x509v3/pcy_data.c',
1808 'third_party/boringssl/crypto/x509v3/pcy_lib.c',
1809 'third_party/boringssl/crypto/x509v3/pcy_map.c',
1810 'third_party/boringssl/crypto/x509v3/pcy_node.c',
1811 'third_party/boringssl/crypto/x509v3/pcy_tree.c',
1812 'third_party/boringssl/crypto/x509v3/v3_akey.c',
1813 'third_party/boringssl/crypto/x509v3/v3_akeya.c',
1814 'third_party/boringssl/crypto/x509v3/v3_alt.c',
1815 'third_party/boringssl/crypto/x509v3/v3_bcons.c',
1816 'third_party/boringssl/crypto/x509v3/v3_bitst.c',
1817 'third_party/boringssl/crypto/x509v3/v3_conf.c',
1818 'third_party/boringssl/crypto/x509v3/v3_cpols.c',
1819 'third_party/boringssl/crypto/x509v3/v3_crld.c',
1820 'third_party/boringssl/crypto/x509v3/v3_enum.c',
1821 'third_party/boringssl/crypto/x509v3/v3_extku.c',
1822 'third_party/boringssl/crypto/x509v3/v3_genn.c',
1823 'third_party/boringssl/crypto/x509v3/v3_ia5.c',
1824 'third_party/boringssl/crypto/x509v3/v3_info.c',
1825 'third_party/boringssl/crypto/x509v3/v3_int.c',
1826 'third_party/boringssl/crypto/x509v3/v3_lib.c',
1827 'third_party/boringssl/crypto/x509v3/v3_ncons.c',
1828 'third_party/boringssl/crypto/x509v3/v3_pci.c',
1829 'third_party/boringssl/crypto/x509v3/v3_pcia.c',
1830 'third_party/boringssl/crypto/x509v3/v3_pcons.c',
1831 'third_party/boringssl/crypto/x509v3/v3_pku.c',
1832 'third_party/boringssl/crypto/x509v3/v3_pmaps.c',
1833 'third_party/boringssl/crypto/x509v3/v3_prn.c',
1834 'third_party/boringssl/crypto/x509v3/v3_purp.c',
1835 'third_party/boringssl/crypto/x509v3/v3_skey.c',
1836 'third_party/boringssl/crypto/x509v3/v3_sxnet.c',
1837 'third_party/boringssl/crypto/x509v3/v3_utl.c',
1838 'third_party/boringssl/ssl/bio_ssl.c',
1839 'third_party/boringssl/ssl/custom_extensions.c',
1840 'third_party/boringssl/ssl/d1_both.c',
1841 'third_party/boringssl/ssl/d1_lib.c',
1842 'third_party/boringssl/ssl/d1_pkt.c',
1843 'third_party/boringssl/ssl/d1_srtp.c',
1844 'third_party/boringssl/ssl/dtls_method.c',
1845 'third_party/boringssl/ssl/dtls_record.c',
1846 'third_party/boringssl/ssl/handshake_client.c',
1847 'third_party/boringssl/ssl/handshake_server.c',
1848 'third_party/boringssl/ssl/s3_both.c',
1849 'third_party/boringssl/ssl/s3_lib.c',
1850 'third_party/boringssl/ssl/s3_pkt.c',
1851 'third_party/boringssl/ssl/ssl_aead_ctx.c',
1852 'third_party/boringssl/ssl/ssl_asn1.c',
1853 'third_party/boringssl/ssl/ssl_buffer.c',
1854 'third_party/boringssl/ssl/ssl_cert.c',
1855 'third_party/boringssl/ssl/ssl_cipher.c',
1856 'third_party/boringssl/ssl/ssl_ecdh.c',
1857 'third_party/boringssl/ssl/ssl_file.c',
1858 'third_party/boringssl/ssl/ssl_lib.c',
1859 'third_party/boringssl/ssl/ssl_privkey.c',
1860 'third_party/boringssl/ssl/ssl_privkey_cc.cc',
1861 'third_party/boringssl/ssl/ssl_session.c',
1862 'third_party/boringssl/ssl/ssl_stat.c',
1863 'third_party/boringssl/ssl/ssl_transcript.c',
1864 'third_party/boringssl/ssl/ssl_x509.c',
1865 'third_party/boringssl/ssl/t1_enc.c',
1866 'third_party/boringssl/ssl/t1_lib.c',
1867 'third_party/boringssl/ssl/tls13_both.c',
1868 'third_party/boringssl/ssl/tls13_client.c',
1869 'third_party/boringssl/ssl/tls13_enc.c',
1870 'third_party/boringssl/ssl/tls13_server.c',
1871 'third_party/boringssl/ssl/tls_method.c',
1872 'third_party/boringssl/ssl/tls_record.c',
1873 ],
1874 },
1875 {
1876 'target_name': 'boringssl_test_util',
1877 'type': 'static_library',
1878 'dependencies': [
1879 ],
1880 'sources': [
1881 'third_party/boringssl/crypto/test/file_test.cc',
1882 'third_party/boringssl/crypto/test/malloc.cc',
1883 'third_party/boringssl/crypto/test/test_util.cc',
1884 ],
1885 },
1886 {
1887 'target_name': 'boringssl_aes_test_lib',
1888 'type': 'static_library',
1889 'dependencies': [
1890 'boringssl_test_util',
1891 'boringssl',
1892 ],
1893 'sources': [
1894 'third_party/boringssl/crypto/aes/aes_test.cc',
1895 ],
1896 },
1897 {
1898 'target_name': 'boringssl_asn1_test_lib',
1899 'type': 'static_library',
1900 'dependencies': [
1901 'boringssl_test_util',
1902 'boringssl',
1903 ],
1904 'sources': [
1905 'third_party/boringssl/crypto/asn1/asn1_test.cc',
1906 ],
1907 },
1908 {
1909 'target_name': 'boringssl_base64_test_lib',
1910 'type': 'static_library',
1911 'dependencies': [
1912 'boringssl_test_util',
1913 'boringssl',
1914 ],
1915 'sources': [
1916 'third_party/boringssl/crypto/base64/base64_test.cc',
1917 ],
1918 },
1919 {
1920 'target_name': 'boringssl_bio_test_lib',
1921 'type': 'static_library',
1922 'dependencies': [
1923 'boringssl_test_util',
1924 'boringssl',
1925 ],
1926 'sources': [
1927 'third_party/boringssl/crypto/bio/bio_test.cc',
1928 ],
1929 },
1930 {
1931 'target_name': 'boringssl_bn_test_lib',
1932 'type': 'static_library',
1933 'dependencies': [
1934 'boringssl_test_util',
1935 'boringssl',
1936 ],
1937 'sources': [
1938 'third_party/boringssl/crypto/bn/bn_test.cc',
1939 ],
1940 },
1941 {
1942 'target_name': 'boringssl_bytestring_test_lib',
1943 'type': 'static_library',
1944 'dependencies': [
1945 'boringssl_test_util',
1946 'boringssl',
1947 ],
1948 'sources': [
1949 'third_party/boringssl/crypto/bytestring/bytestring_test.cc',
1950 ],
1951 },
1952 {
1953 'target_name': 'boringssl_aead_test_lib',
1954 'type': 'static_library',
1955 'dependencies': [
1956 'boringssl_test_util',
1957 'boringssl',
1958 ],
1959 'sources': [
1960 'third_party/boringssl/crypto/cipher/aead_test.cc',
1961 ],
1962 },
1963 {
1964 'target_name': 'boringssl_cipher_test_lib',
1965 'type': 'static_library',
1966 'dependencies': [
1967 'boringssl_test_util',
1968 'boringssl',
1969 ],
1970 'sources': [
1971 'third_party/boringssl/crypto/cipher/cipher_test.cc',
1972 ],
1973 },
1974 {
1975 'target_name': 'boringssl_cmac_test_lib',
1976 'type': 'static_library',
1977 'dependencies': [
1978 'boringssl_test_util',
1979 'boringssl',
1980 ],
1981 'sources': [
1982 'third_party/boringssl/crypto/cmac/cmac_test.cc',
1983 ],
1984 },
1985 {
1986 'target_name': 'boringssl_constant_time_test_lib',
1987 'type': 'static_library',
1988 'dependencies': [
1989 'boringssl_test_util',
1990 'boringssl',
1991 ],
1992 'sources': [
1993 'third_party/boringssl/crypto/constant_time_test.cc',
1994 ],
1995 },
1996 {
1997 'target_name': 'boringssl_ed25519_test_lib',
1998 'type': 'static_library',
1999 'dependencies': [
2000 'boringssl_test_util',
2001 'boringssl',
2002 ],
2003 'sources': [
2004 'third_party/boringssl/crypto/curve25519/ed25519_test.cc',
2005 ],
2006 },
2007 {
2008 'target_name': 'boringssl_spake25519_test_lib',
2009 'type': 'static_library',
2010 'dependencies': [
2011 'boringssl_test_util',
2012 'boringssl',
2013 ],
2014 'sources': [
2015 'third_party/boringssl/crypto/curve25519/spake25519_test.cc',
2016 ],
2017 },
2018 {
2019 'target_name': 'boringssl_x25519_test_lib',
2020 'type': 'static_library',
2021 'dependencies': [
2022 'boringssl_test_util',
2023 'boringssl',
2024 ],
2025 'sources': [
2026 'third_party/boringssl/crypto/curve25519/x25519_test.cc',
2027 ],
2028 },
2029 {
2030 'target_name': 'boringssl_digest_test_lib',
2031 'type': 'static_library',
2032 'dependencies': [
2033 'boringssl_test_util',
2034 'boringssl',
2035 ],
2036 'sources': [
2037 'third_party/boringssl/crypto/digest/digest_test.cc',
2038 ],
2039 },
2040 {
2041 'target_name': 'boringssl_example_mul_lib',
2042 'type': 'static_library',
2043 'dependencies': [
2044 'boringssl_test_util',
2045 'boringssl',
2046 ],
2047 'sources': [
2048 'third_party/boringssl/crypto/ec/example_mul.c',
2049 ],
2050 },
2051 {
2052 'target_name': 'boringssl_p256-x86_64_test_lib',
2053 'type': 'static_library',
2054 'dependencies': [
2055 'boringssl_test_util',
2056 'boringssl',
2057 ],
2058 'sources': [
2059 'third_party/boringssl/crypto/ec/p256-x86_64_test.cc',
2060 ],
2061 },
2062 {
2063 'target_name': 'boringssl_ecdh_test_lib',
2064 'type': 'static_library',
2065 'dependencies': [
2066 'boringssl_test_util',
2067 'boringssl',
2068 ],
2069 'sources': [
2070 'third_party/boringssl/crypto/ecdh/ecdh_test.cc',
2071 ],
2072 },
2073 {
2074 'target_name': 'boringssl_ecdsa_sign_test_lib',
2075 'type': 'static_library',
2076 'dependencies': [
2077 'boringssl_test_util',
2078 'boringssl',
2079 ],
2080 'sources': [
2081 'third_party/boringssl/crypto/ecdsa/ecdsa_sign_test.cc',
2082 ],
2083 },
2084 {
2085 'target_name': 'boringssl_ecdsa_test_lib',
2086 'type': 'static_library',
2087 'dependencies': [
2088 'boringssl_test_util',
2089 'boringssl',
2090 ],
2091 'sources': [
2092 'third_party/boringssl/crypto/ecdsa/ecdsa_test.cc',
2093 ],
2094 },
2095 {
2096 'target_name': 'boringssl_ecdsa_verify_test_lib',
2097 'type': 'static_library',
2098 'dependencies': [
2099 'boringssl_test_util',
2100 'boringssl',
2101 ],
2102 'sources': [
2103 'third_party/boringssl/crypto/ecdsa/ecdsa_verify_test.cc',
2104 ],
2105 },
2106 {
2107 'target_name': 'boringssl_evp_extra_test_lib',
2108 'type': 'static_library',
2109 'dependencies': [
2110 'boringssl_test_util',
2111 'boringssl',
2112 ],
2113 'sources': [
2114 'third_party/boringssl/crypto/evp/evp_extra_test.cc',
2115 ],
2116 },
2117 {
2118 'target_name': 'boringssl_evp_test_lib',
2119 'type': 'static_library',
2120 'dependencies': [
2121 'boringssl_test_util',
2122 'boringssl',
2123 ],
2124 'sources': [
2125 'third_party/boringssl/crypto/evp/evp_test.cc',
2126 ],
2127 },
2128 {
2129 'target_name': 'boringssl_pbkdf_test_lib',
2130 'type': 'static_library',
2131 'dependencies': [
2132 'boringssl_test_util',
2133 'boringssl',
2134 ],
2135 'sources': [
2136 'third_party/boringssl/crypto/evp/pbkdf_test.cc',
2137 ],
2138 },
2139 {
2140 'target_name': 'boringssl_hkdf_test_lib',
2141 'type': 'static_library',
2142 'dependencies': [
2143 'boringssl_test_util',
2144 'boringssl',
2145 ],
2146 'sources': [
2147 'third_party/boringssl/crypto/hkdf/hkdf_test.cc',
2148 ],
2149 },
2150 {
2151 'target_name': 'boringssl_hmac_test_lib',
2152 'type': 'static_library',
2153 'dependencies': [
2154 'boringssl_test_util',
2155 'boringssl',
2156 ],
2157 'sources': [
2158 'third_party/boringssl/crypto/hmac/hmac_test.cc',
2159 ],
2160 },
2161 {
2162 'target_name': 'boringssl_lhash_test_lib',
2163 'type': 'static_library',
2164 'dependencies': [
2165 'boringssl_test_util',
2166 'boringssl',
2167 ],
2168 'sources': [
2169 'third_party/boringssl/crypto/lhash/lhash_test.cc',
2170 ],
2171 },
2172 {
2173 'target_name': 'boringssl_gcm_test_lib',
2174 'type': 'static_library',
2175 'dependencies': [
2176 'boringssl_test_util',
2177 'boringssl',
2178 ],
2179 'sources': [
2180 'third_party/boringssl/crypto/modes/gcm_test.cc',
2181 ],
2182 },
2183 {
2184 'target_name': 'boringssl_obj_test_lib',
2185 'type': 'static_library',
2186 'dependencies': [
2187 'boringssl_test_util',
2188 'boringssl',
2189 ],
2190 'sources': [
2191 'third_party/boringssl/crypto/obj/obj_test.cc',
2192 ],
2193 },
2194 {
2195 'target_name': 'boringssl_pkcs12_test_lib',
2196 'type': 'static_library',
2197 'dependencies': [
2198 'boringssl_test_util',
2199 'boringssl',
2200 ],
2201 'sources': [
2202 'third_party/boringssl/crypto/pkcs8/pkcs12_test.cc',
2203 ],
2204 },
2205 {
2206 'target_name': 'boringssl_pkcs8_test_lib',
2207 'type': 'static_library',
2208 'dependencies': [
2209 'boringssl_test_util',
2210 'boringssl',
2211 ],
2212 'sources': [
2213 'third_party/boringssl/crypto/pkcs8/pkcs8_test.cc',
2214 ],
2215 },
2216 {
2217 'target_name': 'boringssl_poly1305_test_lib',
2218 'type': 'static_library',
2219 'dependencies': [
2220 'boringssl_test_util',
2221 'boringssl',
2222 ],
2223 'sources': [
2224 'third_party/boringssl/crypto/poly1305/poly1305_test.cc',
2225 ],
2226 },
2227 {
2228 'target_name': 'boringssl_pool_test_lib',
2229 'type': 'static_library',
2230 'dependencies': [
2231 'boringssl_test_util',
2232 'boringssl',
2233 ],
2234 'sources': [
2235 'third_party/boringssl/crypto/pool/pool_test.cc',
2236 ],
2237 },
2238 {
2239 'target_name': 'boringssl_refcount_test_lib',
2240 'type': 'static_library',
2241 'dependencies': [
2242 'boringssl_test_util',
2243 'boringssl',
2244 ],
2245 'sources': [
2246 'third_party/boringssl/crypto/refcount_test.cc',
2247 ],
2248 },
2249 {
2250 'target_name': 'boringssl_thread_test_lib',
2251 'type': 'static_library',
2252 'dependencies': [
2253 'boringssl_test_util',
2254 'boringssl',
2255 ],
2256 'sources': [
2257 'third_party/boringssl/crypto/thread_test.c',
2258 ],
2259 },
2260 {
2261 'target_name': 'boringssl_pkcs7_test_lib',
2262 'type': 'static_library',
2263 'dependencies': [
2264 'boringssl_test_util',
2265 'boringssl',
2266 ],
2267 'sources': [
2268 'third_party/boringssl/crypto/x509/pkcs7_test.c',
2269 ],
2270 },
2271 {
2272 'target_name': 'boringssl_x509_test_lib',
2273 'type': 'static_library',
2274 'dependencies': [
2275 'boringssl_test_util',
2276 'boringssl',
2277 ],
2278 'sources': [
2279 'third_party/boringssl/crypto/x509/x509_test.cc',
2280 ],
2281 },
2282 {
2283 'target_name': 'boringssl_tab_test_lib',
2284 'type': 'static_library',
2285 'dependencies': [
2286 'boringssl_test_util',
2287 'boringssl',
2288 ],
2289 'sources': [
2290 'third_party/boringssl/crypto/x509v3/tab_test.c',
2291 ],
2292 },
2293 {
2294 'target_name': 'boringssl_v3name_test_lib',
2295 'type': 'static_library',
2296 'dependencies': [
2297 'boringssl_test_util',
2298 'boringssl',
2299 ],
2300 'sources': [
2301 'third_party/boringssl/crypto/x509v3/v3name_test.c',
2302 ],
2303 },
2304 {
Maxim Dzobadd962612017-08-16 17:52:28 -04002305 'target_name': 'benchmark',
2306 'type': 'static_library',
2307 'dependencies': [
2308 ],
2309 'sources': [
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002310 'third_party/benchmark/src/benchmark.cc',
2311 'third_party/benchmark/src/benchmark_register.cc',
2312 'third_party/benchmark/src/colorprint.cc',
2313 'third_party/benchmark/src/commandlineflags.cc',
2314 'third_party/benchmark/src/complexity.cc',
2315 'third_party/benchmark/src/console_reporter.cc',
2316 'third_party/benchmark/src/csv_reporter.cc',
2317 'third_party/benchmark/src/json_reporter.cc',
2318 'third_party/benchmark/src/reporter.cc',
2319 'third_party/benchmark/src/sleep.cc',
2320 'third_party/benchmark/src/string_util.cc',
2321 'third_party/benchmark/src/sysinfo.cc',
2322 'third_party/benchmark/src/timers.cc',
2323 ],
2324 },
2325 {
2326 'target_name': 'z',
2327 'type': 'static_library',
2328 'dependencies': [
2329 ],
2330 'sources': [
2331 'third_party/zlib/adler32.c',
2332 'third_party/zlib/compress.c',
2333 'third_party/zlib/crc32.c',
2334 'third_party/zlib/deflate.c',
2335 'third_party/zlib/gzclose.c',
2336 'third_party/zlib/gzlib.c',
2337 'third_party/zlib/gzread.c',
2338 'third_party/zlib/gzwrite.c',
2339 'third_party/zlib/infback.c',
2340 'third_party/zlib/inffast.c',
2341 'third_party/zlib/inflate.c',
2342 'third_party/zlib/inftrees.c',
2343 'third_party/zlib/trees.c',
2344 'third_party/zlib/uncompr.c',
2345 'third_party/zlib/zutil.c',
Maxim Dzobadd962612017-08-16 17:52:28 -04002346 ],
2347 },
2348 {
2349 'target_name': 'bad_client_test',
2350 'type': 'static_library',
2351 'dependencies': [
2352 'grpc_test_util_unsecure',
2353 'grpc_unsecure',
2354 'gpr_test_util',
2355 'gpr',
2356 ],
2357 'sources': [
2358 'test/core/bad_client/bad_client.c',
2359 ],
2360 },
2361 {
2362 'target_name': 'end2end_tests',
2363 'type': 'static_library',
2364 'dependencies': [
2365 'grpc_test_util',
2366 'grpc',
2367 'gpr_test_util',
2368 'gpr',
2369 ],
2370 'sources': [
2371 'test/core/end2end/end2end_tests.c',
2372 'test/core/end2end/end2end_test_utils.c',
2373 'test/core/end2end/tests/authority_not_supported.c',
2374 'test/core/end2end/tests/bad_hostname.c',
2375 'test/core/end2end/tests/bad_ping.c',
2376 'test/core/end2end/tests/binary_metadata.c',
2377 'test/core/end2end/tests/call_creds.c',
2378 'test/core/end2end/tests/cancel_after_accept.c',
2379 'test/core/end2end/tests/cancel_after_client_done.c',
2380 'test/core/end2end/tests/cancel_after_invoke.c',
2381 'test/core/end2end/tests/cancel_after_round_trip.c',
2382 'test/core/end2end/tests/cancel_before_invoke.c',
2383 'test/core/end2end/tests/cancel_in_a_vacuum.c',
2384 'test/core/end2end/tests/cancel_with_status.c',
2385 'test/core/end2end/tests/compressed_payload.c',
2386 'test/core/end2end/tests/connectivity.c',
2387 'test/core/end2end/tests/default_host.c',
2388 'test/core/end2end/tests/disappearing_server.c',
2389 'test/core/end2end/tests/empty_batch.c',
2390 'test/core/end2end/tests/filter_call_init_fails.c',
2391 'test/core/end2end/tests/filter_causes_close.c',
2392 'test/core/end2end/tests/filter_latency.c',
2393 'test/core/end2end/tests/graceful_server_shutdown.c',
2394 'test/core/end2end/tests/high_initial_seqno.c',
2395 'test/core/end2end/tests/hpack_size.c',
2396 'test/core/end2end/tests/idempotent_request.c',
2397 'test/core/end2end/tests/invoke_large_request.c',
2398 'test/core/end2end/tests/keepalive_timeout.c',
2399 'test/core/end2end/tests/large_metadata.c',
2400 'test/core/end2end/tests/load_reporting_hook.c',
2401 'test/core/end2end/tests/max_concurrent_streams.c',
2402 'test/core/end2end/tests/max_connection_age.c',
2403 'test/core/end2end/tests/max_connection_idle.c',
2404 'test/core/end2end/tests/max_message_length.c',
2405 'test/core/end2end/tests/negative_deadline.c',
2406 'test/core/end2end/tests/network_status_change.c',
2407 'test/core/end2end/tests/no_logging.c',
2408 'test/core/end2end/tests/no_op.c',
2409 'test/core/end2end/tests/payload.c',
2410 'test/core/end2end/tests/ping.c',
2411 'test/core/end2end/tests/ping_pong_streaming.c',
2412 'test/core/end2end/tests/proxy_auth.c',
2413 'test/core/end2end/tests/registered_call.c',
2414 'test/core/end2end/tests/request_with_flags.c',
2415 'test/core/end2end/tests/request_with_payload.c',
2416 'test/core/end2end/tests/resource_quota_server.c',
2417 'test/core/end2end/tests/server_finishes_request.c',
2418 'test/core/end2end/tests/shutdown_finishes_calls.c',
2419 'test/core/end2end/tests/shutdown_finishes_tags.c',
2420 'test/core/end2end/tests/simple_cacheable_request.c',
2421 'test/core/end2end/tests/simple_delayed_request.c',
2422 'test/core/end2end/tests/simple_metadata.c',
2423 'test/core/end2end/tests/simple_request.c',
Muxi Yan44a46ad2017-08-21 15:25:22 -07002424 'test/core/end2end/tests/stream_compression_compressed_payload.c',
2425 'test/core/end2end/tests/stream_compression_payload.c',
2426 'test/core/end2end/tests/stream_compression_ping_pong_streaming.c',
Maxim Dzobadd962612017-08-16 17:52:28 -04002427 'test/core/end2end/tests/streaming_error_response.c',
2428 'test/core/end2end/tests/trailing_metadata.c',
2429 'test/core/end2end/tests/workaround_cronet_compression.c',
2430 'test/core/end2end/tests/write_buffering.c',
2431 'test/core/end2end/tests/write_buffering_at_end.c',
2432 ],
2433 },
2434 {
2435 'target_name': 'end2end_nosec_tests',
2436 'type': 'static_library',
2437 'dependencies': [
2438 'grpc_test_util_unsecure',
2439 'grpc_unsecure',
2440 'gpr_test_util',
2441 'gpr',
2442 ],
2443 'sources': [
2444 'test/core/end2end/end2end_nosec_tests.c',
2445 'test/core/end2end/end2end_test_utils.c',
2446 'test/core/end2end/tests/authority_not_supported.c',
2447 'test/core/end2end/tests/bad_hostname.c',
2448 'test/core/end2end/tests/bad_ping.c',
2449 'test/core/end2end/tests/binary_metadata.c',
2450 'test/core/end2end/tests/cancel_after_accept.c',
2451 'test/core/end2end/tests/cancel_after_client_done.c',
2452 'test/core/end2end/tests/cancel_after_invoke.c',
2453 'test/core/end2end/tests/cancel_after_round_trip.c',
2454 'test/core/end2end/tests/cancel_before_invoke.c',
2455 'test/core/end2end/tests/cancel_in_a_vacuum.c',
2456 'test/core/end2end/tests/cancel_with_status.c',
2457 'test/core/end2end/tests/compressed_payload.c',
2458 'test/core/end2end/tests/connectivity.c',
2459 'test/core/end2end/tests/default_host.c',
2460 'test/core/end2end/tests/disappearing_server.c',
2461 'test/core/end2end/tests/empty_batch.c',
2462 'test/core/end2end/tests/filter_call_init_fails.c',
2463 'test/core/end2end/tests/filter_causes_close.c',
2464 'test/core/end2end/tests/filter_latency.c',
2465 'test/core/end2end/tests/graceful_server_shutdown.c',
2466 'test/core/end2end/tests/high_initial_seqno.c',
2467 'test/core/end2end/tests/hpack_size.c',
2468 'test/core/end2end/tests/idempotent_request.c',
2469 'test/core/end2end/tests/invoke_large_request.c',
2470 'test/core/end2end/tests/keepalive_timeout.c',
2471 'test/core/end2end/tests/large_metadata.c',
2472 'test/core/end2end/tests/load_reporting_hook.c',
2473 'test/core/end2end/tests/max_concurrent_streams.c',
2474 'test/core/end2end/tests/max_connection_age.c',
2475 'test/core/end2end/tests/max_connection_idle.c',
2476 'test/core/end2end/tests/max_message_length.c',
2477 'test/core/end2end/tests/negative_deadline.c',
2478 'test/core/end2end/tests/network_status_change.c',
2479 'test/core/end2end/tests/no_logging.c',
2480 'test/core/end2end/tests/no_op.c',
2481 'test/core/end2end/tests/payload.c',
2482 'test/core/end2end/tests/ping.c',
2483 'test/core/end2end/tests/ping_pong_streaming.c',
2484 'test/core/end2end/tests/proxy_auth.c',
2485 'test/core/end2end/tests/registered_call.c',
2486 'test/core/end2end/tests/request_with_flags.c',
2487 'test/core/end2end/tests/request_with_payload.c',
2488 'test/core/end2end/tests/resource_quota_server.c',
2489 'test/core/end2end/tests/server_finishes_request.c',
2490 'test/core/end2end/tests/shutdown_finishes_calls.c',
2491 'test/core/end2end/tests/shutdown_finishes_tags.c',
2492 'test/core/end2end/tests/simple_cacheable_request.c',
2493 'test/core/end2end/tests/simple_delayed_request.c',
2494 'test/core/end2end/tests/simple_metadata.c',
2495 'test/core/end2end/tests/simple_request.c',
Muxi Yan44a46ad2017-08-21 15:25:22 -07002496 'test/core/end2end/tests/stream_compression_compressed_payload.c',
2497 'test/core/end2end/tests/stream_compression_payload.c',
2498 'test/core/end2end/tests/stream_compression_ping_pong_streaming.c',
Maxim Dzobadd962612017-08-16 17:52:28 -04002499 'test/core/end2end/tests/streaming_error_response.c',
2500 'test/core/end2end/tests/trailing_metadata.c',
2501 'test/core/end2end/tests/workaround_cronet_compression.c',
2502 'test/core/end2end/tests/write_buffering.c',
2503 'test/core/end2end/tests/write_buffering_at_end.c',
2504 ],
2505 },
2506 ]
2507}