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