blob: 7235e338492de11b6e03e346da45653e48f016d6 [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',
Vijay Pai2f4161c2018-03-04 19:28:57 -080037 '-Wframe-larger-than=16384',
Maxim Dzobadd962612017-08-16 17:52:28 -040038 ],
39 'defines': [
40 'NDEBUG',
41 ],
42 },
43 'Debug': {
44 'cflags': [
45 '-O0',
46 ],
47 'defines': [
48 '_DEBUG',
49 'DEBUG',
50 ],
51 },
52 },
53 'cflags': [
54 '-g',
55 '-Wall',
56 '-Wextra',
57 '-Werror',
58 '-Wno-long-long',
59 '-Wno-unused-parameter',
60 '-DOSATOMIC_USE_INLINED=1',
Yuchen Zengc6ae9b52018-01-04 16:29:06 -080061 '-Wno-deprecated-declarations',
Maxim Dzobadd962612017-08-16 17:52:28 -040062 ],
63 'ldflags': [
64 '-g',
65 ],
66 'cflags_c': [
67 '-Werror',
Yihua Zhang04fb58e2018-03-08 06:49:24 -080068 '-std=c99',
Maxim Dzobadd962612017-08-16 17:52:28 -040069 ],
70 'cflags_cc': [
71 '-Werror',
Yihua Zhang04fb58e2018-03-08 06:49:24 -080072 '-std=c++11',
Maxim Dzobadd962612017-08-16 17:52:28 -040073 ],
74 'include_dirs': [
75 '.',
76 '../..',
77 'include',
78 ],
79 'defines': [
80 'GRPC_ARES=0',
81 ],
82 'dependencies': [
83 '<(openssl_gyp_target)',
84 '<(zlib_gyp_target)',
85 ],
86 'conditions': [
87 ['grpc_gcov=="true"', {
88 'cflags': [
89 '-O0',
90 '-fprofile-arcs',
91 '-ftest-coverage',
92 '-Wno-return-type',
93 ],
94 'defines': [
95 '_DEBUG',
96 'DEBUG',
97 'GPR_GCOV',
98 ],
99 'ldflags': [
100 '-fprofile-arcs',
101 '-ftest-coverage',
102 '-rdynamic',
Matt Kwong0c867be2017-09-21 16:25:48 -0700103 '-lstdc++',
Maxim Dzobadd962612017-08-16 17:52:28 -0400104 ],
105 }],
106 ['grpc_alpine=="true"', {
107 'defines': [
108 'GPR_MUSL_LIBC_COMPAT'
109 ]
110 }],
111 ['OS == "win"', {
112 'defines': [
113 '_WIN32_WINNT=0x0600',
114 'WIN32_LEAN_AND_MEAN',
115 '_HAS_EXCEPTIONS=0',
116 'UNICODE',
117 '_UNICODE',
118 'NOMINMAX',
119 ],
120 'msvs_settings': {
121 'VCCLCompilerTool': {
122 'RuntimeLibrary': 1, # static debug
123 }
124 },
125 "libraries": [
126 "ws2_32"
127 ]
128 }],
129 ['OS == "mac"', {
130 'xcode_settings': {
131 'OTHER_CFLAGS': [
132 '-g',
133 '-Wall',
134 '-Wextra',
135 '-Werror',
136 '-Wno-long-long',
137 '-Wno-unused-parameter',
138 '-DOSATOMIC_USE_INLINED=1',
Yuchen Zengc6ae9b52018-01-04 16:29:06 -0800139 '-Wno-deprecated-declarations',
Maxim Dzobadd962612017-08-16 17:52:28 -0400140 ],
141 'OTHER_CPLUSPLUSFLAGS': [
142 '-g',
143 '-Wall',
144 '-Wextra',
145 '-Werror',
146 '-Wno-long-long',
147 '-Wno-unused-parameter',
148 '-DOSATOMIC_USE_INLINED=1',
Yuchen Zengc6ae9b52018-01-04 16:29:06 -0800149 '-Wno-deprecated-declarations',
Maxim Dzobadd962612017-08-16 17:52:28 -0400150 '-stdlib=libc++',
151 '-std=c++11',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800152 '-Wno-error=deprecated-declarations',
Maxim Dzobadd962612017-08-16 17:52:28 -0400153 ],
154 },
155 }]
156 ]
157 },
158 'targets': [
159 {
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800160 'target_name': 'alts_test_util',
161 'type': 'static_library',
162 'dependencies': [
163 'grpc',
164 ],
165 'sources': [
166 'test/core/tsi/alts/crypt/gsec_test_util.cc',
167 'test/core/tsi/alts/handshaker/alts_handshaker_service_api_test_lib.cc',
168 ],
169 },
170 {
Maxim Dzobadd962612017-08-16 17:52:28 -0400171 'target_name': 'gpr',
172 'type': 'static_library',
173 'dependencies': [
174 ],
175 'sources': [
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800176 'src/core/lib/gpr/alloc.cc',
177 'src/core/lib/gpr/arena.cc',
178 'src/core/lib/gpr/atm.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800179 'src/core/lib/gpr/cpu_iphone.cc',
180 'src/core/lib/gpr/cpu_linux.cc',
181 'src/core/lib/gpr/cpu_posix.cc',
182 'src/core/lib/gpr/cpu_windows.cc',
183 'src/core/lib/gpr/env_linux.cc',
184 'src/core/lib/gpr/env_posix.cc',
185 'src/core/lib/gpr/env_windows.cc',
186 'src/core/lib/gpr/fork.cc',
187 'src/core/lib/gpr/host_port.cc',
188 'src/core/lib/gpr/log.cc',
189 'src/core/lib/gpr/log_android.cc',
190 'src/core/lib/gpr/log_linux.cc',
191 'src/core/lib/gpr/log_posix.cc',
192 'src/core/lib/gpr/log_windows.cc',
193 'src/core/lib/gpr/mpscq.cc',
194 'src/core/lib/gpr/murmur_hash.cc',
195 'src/core/lib/gpr/string.cc',
196 'src/core/lib/gpr/string_posix.cc',
197 'src/core/lib/gpr/string_util_windows.cc',
198 'src/core/lib/gpr/string_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800199 'src/core/lib/gpr/sync.cc',
200 'src/core/lib/gpr/sync_posix.cc',
201 'src/core/lib/gpr/sync_windows.cc',
Mark D. Rothdbdf4952018-01-18 11:21:12 -0800202 'src/core/lib/gpr/time.cc',
203 'src/core/lib/gpr/time_posix.cc',
204 'src/core/lib/gpr/time_precise.cc',
205 'src/core/lib/gpr/time_windows.cc',
206 'src/core/lib/gpr/tls_pthread.cc',
207 'src/core/lib/gpr/tmpfile_msys.cc',
208 'src/core/lib/gpr/tmpfile_posix.cc',
209 'src/core/lib/gpr/tmpfile_windows.cc',
210 'src/core/lib/gpr/wrap_memcpy.cc',
Vijay Paida693552018-02-16 22:59:03 -0800211 'src/core/lib/gprpp/thd_posix.cc',
212 'src/core/lib/gprpp/thd_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700213 'src/core/lib/profiling/basic_timers.cc',
214 'src/core/lib/profiling/stap_timers.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400215 ],
216 },
217 {
218 'target_name': 'gpr_test_util',
219 'type': 'static_library',
220 'dependencies': [
221 'gpr',
222 ],
223 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700224 'test/core/util/test_config.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400225 ],
226 },
227 {
228 'target_name': 'grpc',
229 'type': 'static_library',
230 'dependencies': [
231 'gpr',
232 ],
233 'sources': [
Yash Tibrewal83062842017-09-21 18:56:08 -0700234 'src/core/lib/surface/init.cc',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800235 'src/core/lib/avl/avl.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700236 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700237 'src/core/lib/channel/channel_args.cc',
238 'src/core/lib/channel/channel_stack.cc',
239 'src/core/lib/channel/channel_stack_builder.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700240 'src/core/lib/channel/channel_trace.cc',
241 'src/core/lib/channel/channel_trace_registry.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700242 'src/core/lib/channel/connected_channel.cc',
243 'src/core/lib/channel/handshaker.cc',
244 'src/core/lib/channel/handshaker_factory.cc',
245 'src/core/lib/channel/handshaker_registry.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700246 'src/core/lib/channel/status_util.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700247 'src/core/lib/compression/compression.cc',
Muxi Yan03fc8572017-10-06 18:47:09 -0700248 'src/core/lib/compression/compression_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700249 'src/core/lib/compression/message_compress.cc',
250 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700251 'src/core/lib/compression/stream_compression_gzip.cc',
252 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700253 'src/core/lib/debug/stats.cc',
254 'src/core/lib/debug/stats_data.cc',
255 'src/core/lib/http/format_request.cc',
256 'src/core/lib/http/httpcli.cc',
257 'src/core/lib/http/parser.cc',
258 'src/core/lib/iomgr/call_combiner.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700259 'src/core/lib/iomgr/combiner.cc',
260 'src/core/lib/iomgr/endpoint.cc',
261 'src/core/lib/iomgr/endpoint_pair_posix.cc',
262 'src/core/lib/iomgr/endpoint_pair_uv.cc',
263 'src/core/lib/iomgr/endpoint_pair_windows.cc',
264 'src/core/lib/iomgr/error.cc',
265 'src/core/lib/iomgr/ev_epoll1_linux.cc',
266 'src/core/lib/iomgr/ev_epollex_linux.cc',
267 'src/core/lib/iomgr/ev_epollsig_linux.cc',
268 'src/core/lib/iomgr/ev_poll_posix.cc',
269 'src/core/lib/iomgr/ev_posix.cc',
270 'src/core/lib/iomgr/ev_windows.cc',
271 'src/core/lib/iomgr/exec_ctx.cc',
272 'src/core/lib/iomgr/executor.cc',
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100273 'src/core/lib/iomgr/fork_posix.cc',
274 'src/core/lib/iomgr/fork_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700275 'src/core/lib/iomgr/gethostname_fallback.cc',
276 'src/core/lib/iomgr/gethostname_host_name_max.cc',
277 'src/core/lib/iomgr/gethostname_sysconf.cc',
278 'src/core/lib/iomgr/iocp_windows.cc',
279 'src/core/lib/iomgr/iomgr.cc',
kpayson64539f5062018-03-12 19:16:30 -0700280 'src/core/lib/iomgr/iomgr_custom.cc',
281 'src/core/lib/iomgr/iomgr_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700282 'src/core/lib/iomgr/iomgr_posix.cc',
283 'src/core/lib/iomgr/iomgr_uv.cc',
284 'src/core/lib/iomgr/iomgr_windows.cc',
285 'src/core/lib/iomgr/is_epollexclusive_available.cc',
286 'src/core/lib/iomgr/load_file.cc',
287 'src/core/lib/iomgr/lockfree_event.cc',
288 'src/core/lib/iomgr/network_status_tracker.cc',
289 'src/core/lib/iomgr/polling_entity.cc',
kpayson64539f5062018-03-12 19:16:30 -0700290 'src/core/lib/iomgr/pollset.cc',
291 'src/core/lib/iomgr/pollset_custom.cc',
292 'src/core/lib/iomgr/pollset_set.cc',
293 'src/core/lib/iomgr/pollset_set_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700294 'src/core/lib/iomgr/pollset_set_windows.cc',
295 'src/core/lib/iomgr/pollset_uv.cc',
296 'src/core/lib/iomgr/pollset_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700297 'src/core/lib/iomgr/resolve_address.cc',
298 'src/core/lib/iomgr/resolve_address_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700299 'src/core/lib/iomgr/resolve_address_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700300 'src/core/lib/iomgr/resolve_address_windows.cc',
301 'src/core/lib/iomgr/resource_quota.cc',
302 'src/core/lib/iomgr/sockaddr_utils.cc',
303 'src/core/lib/iomgr/socket_factory_posix.cc',
304 'src/core/lib/iomgr/socket_mutator.cc',
305 'src/core/lib/iomgr/socket_utils_common_posix.cc',
306 'src/core/lib/iomgr/socket_utils_linux.cc',
307 'src/core/lib/iomgr/socket_utils_posix.cc',
308 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700309 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700310 'src/core/lib/iomgr/socket_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700311 'src/core/lib/iomgr/tcp_client.cc',
312 'src/core/lib/iomgr/tcp_client_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700313 'src/core/lib/iomgr/tcp_client_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700314 'src/core/lib/iomgr/tcp_client_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700315 'src/core/lib/iomgr/tcp_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700316 'src/core/lib/iomgr/tcp_posix.cc',
kpayson64539f5062018-03-12 19:16:30 -0700317 'src/core/lib/iomgr/tcp_server.cc',
318 'src/core/lib/iomgr/tcp_server_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700319 'src/core/lib/iomgr/tcp_server_posix.cc',
320 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
321 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
322 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700323 'src/core/lib/iomgr/tcp_server_windows.cc',
324 'src/core/lib/iomgr/tcp_uv.cc',
325 'src/core/lib/iomgr/tcp_windows.cc',
326 'src/core/lib/iomgr/time_averaged_stats.cc',
kpayson64539f5062018-03-12 19:16:30 -0700327 'src/core/lib/iomgr/timer.cc',
328 'src/core/lib/iomgr/timer_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700329 'src/core/lib/iomgr/timer_generic.cc',
330 'src/core/lib/iomgr/timer_heap.cc',
331 'src/core/lib/iomgr/timer_manager.cc',
332 'src/core/lib/iomgr/timer_uv.cc',
333 'src/core/lib/iomgr/udp_server.cc',
334 'src/core/lib/iomgr/unix_sockets_posix.cc',
335 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
336 'src/core/lib/iomgr/wakeup_fd_cv.cc',
337 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
338 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
339 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
340 'src/core/lib/iomgr/wakeup_fd_posix.cc',
341 'src/core/lib/json/json.cc',
342 'src/core/lib/json/json_reader.cc',
343 'src/core/lib/json/json_string.cc',
344 'src/core/lib/json/json_writer.cc',
345 'src/core/lib/slice/b64.cc',
346 'src/core/lib/slice/percent_encoding.cc',
347 'src/core/lib/slice/slice.cc',
348 'src/core/lib/slice/slice_buffer.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700349 'src/core/lib/slice/slice_intern.cc',
350 'src/core/lib/slice/slice_string_helpers.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700351 'src/core/lib/surface/api_trace.cc',
352 'src/core/lib/surface/byte_buffer.cc',
353 'src/core/lib/surface/byte_buffer_reader.cc',
354 'src/core/lib/surface/call.cc',
355 'src/core/lib/surface/call_details.cc',
356 'src/core/lib/surface/call_log_batch.cc',
357 'src/core/lib/surface/channel.cc',
358 'src/core/lib/surface/channel_init.cc',
359 'src/core/lib/surface/channel_ping.cc',
360 'src/core/lib/surface/channel_stack_type.cc',
361 'src/core/lib/surface/completion_queue.cc',
362 'src/core/lib/surface/completion_queue_factory.cc',
363 'src/core/lib/surface/event_string.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400364 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700365 'src/core/lib/surface/metadata_array.cc',
366 'src/core/lib/surface/server.cc',
367 'src/core/lib/surface/validate_metadata.cc',
368 'src/core/lib/surface/version.cc',
369 'src/core/lib/transport/bdp_estimator.cc',
370 'src/core/lib/transport/byte_stream.cc',
371 'src/core/lib/transport/connectivity_state.cc',
372 'src/core/lib/transport/error_utils.cc',
373 'src/core/lib/transport/metadata.cc',
374 'src/core/lib/transport/metadata_batch.cc',
375 'src/core/lib/transport/pid_controller.cc',
376 'src/core/lib/transport/service_config.cc',
377 'src/core/lib/transport/static_metadata.cc',
378 'src/core/lib/transport/status_conversion.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -0800379 'src/core/lib/transport/status_metadata.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700380 'src/core/lib/transport/timeout_encoding.cc',
381 'src/core/lib/transport/transport.cc',
382 'src/core/lib/transport/transport_op_string.cc',
383 'src/core/lib/debug/trace.cc',
384 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc',
385 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
386 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
387 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
388 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
389 'src/core/ext/transport/chttp2/transport/flow_control.cc',
390 'src/core/ext/transport/chttp2/transport/frame_data.cc',
391 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
392 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
393 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
394 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
395 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
396 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
397 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
398 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
399 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
400 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
401 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
402 'src/core/ext/transport/chttp2/transport/parsing.cc',
403 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
404 'src/core/ext/transport/chttp2/transport/stream_map.cc',
405 'src/core/ext/transport/chttp2/transport/varint.cc',
406 'src/core/ext/transport/chttp2/transport/writing.cc',
407 'src/core/ext/transport/chttp2/alpn/alpn.cc',
408 'src/core/ext/filters/http/client/http_client_filter.cc',
409 'src/core/ext/filters/http/http_filters_plugin.cc',
410 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
411 'src/core/ext/filters/http/server/http_server_filter.cc',
412 'src/core/lib/http/httpcli_security_connector.cc',
413 'src/core/lib/security/context/security_context.cc',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800414 'src/core/lib/security/credentials/alts/alts_credentials.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700415 'src/core/lib/security/credentials/composite/composite_credentials.cc',
416 'src/core/lib/security/credentials/credentials.cc',
417 'src/core/lib/security/credentials/credentials_metadata.cc',
418 'src/core/lib/security/credentials/fake/fake_credentials.cc',
419 'src/core/lib/security/credentials/google_default/credentials_generic.cc',
420 'src/core/lib/security/credentials/google_default/google_default_credentials.cc',
421 'src/core/lib/security/credentials/iam/iam_credentials.cc',
422 'src/core/lib/security/credentials/jwt/json_token.cc',
423 'src/core/lib/security/credentials/jwt/jwt_credentials.cc',
424 'src/core/lib/security/credentials/jwt/jwt_verifier.cc',
425 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc',
426 'src/core/lib/security/credentials/plugin/plugin_credentials.cc',
427 'src/core/lib/security/credentials/ssl/ssl_credentials.cc',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800428 'src/core/lib/security/security_connector/alts_security_connector.cc',
Yihua Zhang75f0a9f2018-02-20 10:09:47 -0800429 'src/core/lib/security/security_connector/security_connector.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700430 'src/core/lib/security/transport/client_auth_filter.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700431 'src/core/lib/security/transport/secure_endpoint.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700432 'src/core/lib/security/transport/security_handshaker.cc',
433 'src/core/lib/security/transport/server_auth_filter.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800434 'src/core/lib/security/transport/target_authority_table.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700435 'src/core/lib/security/transport/tsi_error.cc',
436 'src/core/lib/security/util/json_util.cc',
437 'src/core/lib/surface/init_secure.cc',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800438 'src/core/tsi/alts/crypt/aes_gcm.cc',
439 'src/core/tsi/alts/crypt/gsec.cc',
440 'src/core/tsi/alts/frame_protector/alts_counter.cc',
441 'src/core/tsi/alts/frame_protector/alts_crypter.cc',
442 'src/core/tsi/alts/frame_protector/alts_frame_protector.cc',
443 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc',
444 'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc',
445 'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc',
446 'src/core/tsi/alts/frame_protector/frame_handler.cc',
447 'src/core/tsi/alts/handshaker/alts_handshaker_client.cc',
448 'src/core/tsi/alts/handshaker/alts_tsi_event.cc',
449 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc',
450 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc',
451 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc',
452 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc',
453 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc',
454 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc',
455 'src/core/lib/security/credentials/alts/check_gcp_environment.cc',
456 'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc',
457 'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc',
458 'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc',
459 'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc',
460 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc',
461 'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc',
462 'src/core/tsi/alts/handshaker/alts_handshaker_service_api.cc',
463 'src/core/tsi/alts/handshaker/alts_handshaker_service_api_util.cc',
464 'src/core/tsi/alts/handshaker/alts_tsi_utils.cc',
465 'src/core/tsi/alts/handshaker/transport_security_common_api.cc',
466 'src/core/tsi/alts/handshaker/altscontext.pb.c',
467 'src/core/tsi/alts/handshaker/handshaker.pb.c',
468 'src/core/tsi/alts/handshaker/transport_security_common.pb.c',
469 'third_party/nanopb/pb_common.c',
470 'third_party/nanopb/pb_decode.c',
471 'third_party/nanopb/pb_encode.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700472 'src/core/tsi/transport_security.cc',
473 'src/core/tsi/transport_security_adapter.cc',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800474 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
475 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
476 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
David Garcia Quintasfa460dc2018-03-23 14:51:41 -0700477 'src/core/ext/filters/client_channel/authority.cc',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700478 'src/core/ext/filters/client_channel/backup_poller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700479 'src/core/ext/filters/client_channel/channel_connectivity.cc',
480 'src/core/ext/filters/client_channel/client_channel.cc',
481 'src/core/ext/filters/client_channel/client_channel_factory.cc',
482 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
483 'src/core/ext/filters/client_channel/connector.cc',
484 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
485 'src/core/ext/filters/client_channel/http_proxy.cc',
486 'src/core/ext/filters/client_channel/lb_policy.cc',
487 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
488 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800489 'src/core/ext/filters/client_channel/method_params.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700490 'src/core/ext/filters/client_channel/parse_address.cc',
491 'src/core/ext/filters/client_channel/proxy_mapper.cc',
492 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
493 'src/core/ext/filters/client_channel/resolver.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700494 'src/core/ext/filters/client_channel/resolver_registry.cc',
495 'src/core/ext/filters/client_channel/retry_throttle.cc',
496 'src/core/ext/filters/client_channel/subchannel.cc',
497 'src/core/ext/filters/client_channel/subchannel_index.cc',
498 'src/core/ext/filters/client_channel/uri_parser.cc',
499 'src/core/ext/filters/deadline/deadline_filter.cc',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800500 'src/core/tsi/alts_transport_security.cc',
501 'src/core/tsi/fake_transport_security.cc',
Ruslan Nigmatullin99d0cee2018-03-20 09:18:29 -0700502 'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc',
503 'src/core/tsi/ssl/session_cache/ssl_session_cache.cc',
504 'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc',
Yihua Zhang04fb58e2018-03-08 06:49:24 -0800505 'src/core/tsi/ssl_transport_security.cc',
506 'src/core/tsi/transport_security_grpc.cc',
507 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
508 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700509 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
510 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700511 'src/core/ext/transport/inproc/inproc_plugin.cc',
512 'src/core/ext/transport/inproc/inproc_transport.cc',
513 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
514 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
515 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc',
516 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
517 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400518 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Yash Tibrewal83062842017-09-21 18:56:08 -0700519 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
520 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
Mark D. Roth5e9848e2017-10-06 13:59:32 -0700521 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700522 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
523 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
524 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
525 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
526 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
527 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
528 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
529 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc',
530 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700531 'src/core/ext/census/grpc_context.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700532 'src/core/ext/filters/max_age/max_age_filter.cc',
533 'src/core/ext/filters/message_size/message_size_filter.cc',
David Garcia Quintas961353a2018-03-15 16:11:05 -0700534 'src/core/ext/filters/http/client_authority_filter.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700535 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
536 'src/core/ext/filters/workarounds/workaround_utils.cc',
Yash Tibrewal1c9b5842017-09-21 15:49:55 -0700537 'src/core/plugin_registry/grpc_plugin_registry.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400538 ],
539 },
540 {
541 'target_name': 'grpc_dll',
542 'type': 'static_library',
543 'dependencies': [
544 'gpr',
545 'grpc',
546 ],
547 'sources': [
548 ],
549 },
550 {
551 'target_name': 'grpc_test_util',
552 'type': 'static_library',
553 'dependencies': [
554 'gpr_test_util',
555 'gpr',
556 'grpc',
557 ],
558 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700559 'test/core/end2end/data/client_certs.cc',
560 'test/core/end2end/data/server1_cert.cc',
561 'test/core/end2end/data/server1_key.cc',
562 'test/core/end2end/data/test_root_cert.cc',
563 'test/core/security/oauth2_utils.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700564 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700565 'test/core/end2end/cq_verifier.cc',
566 'test/core/end2end/fixtures/http_proxy_fixture.cc',
567 'test/core/end2end/fixtures/proxy.cc',
568 'test/core/iomgr/endpoint_tests.cc',
Craig Tiller92226062017-10-08 21:16:12 -0700569 'test/core/util/debugger_macros.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700570 'test/core/util/grpc_profiler.cc',
Vijay Pai195cf1e2017-11-30 10:56:06 -0800571 'test/core/util/histogram.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700572 'test/core/util/memory_counters.cc',
573 'test/core/util/mock_endpoint.cc',
574 'test/core/util/parse_hexstring.cc',
575 'test/core/util/passthru_endpoint.cc',
576 'test/core/util/port.cc',
Adele Zhou5b7cdef2017-11-29 16:25:17 -0800577 'test/core/util/port_isolated_runtime_environment.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700578 'test/core/util/port_server_client.cc',
579 'test/core/util/slice_splitter.cc',
Vijay Pai8a99fdb2018-01-25 15:38:20 -0800580 'test/core/util/subprocess_posix.cc',
581 'test/core/util/subprocess_windows.cc',
ncteisenaa3b1972017-11-17 15:56:27 -0800582 'test/core/util/tracer_util.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700583 'test/core/util/trickle_endpoint.cc',
Vijay Pai80e23d12018-01-25 21:50:18 -0800584 'test/core/util/cmdline.cc',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800585 'src/core/lib/avl/avl.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700586 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700587 'src/core/lib/channel/channel_args.cc',
588 'src/core/lib/channel/channel_stack.cc',
589 'src/core/lib/channel/channel_stack_builder.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700590 'src/core/lib/channel/channel_trace.cc',
591 'src/core/lib/channel/channel_trace_registry.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700592 'src/core/lib/channel/connected_channel.cc',
593 'src/core/lib/channel/handshaker.cc',
594 'src/core/lib/channel/handshaker_factory.cc',
595 'src/core/lib/channel/handshaker_registry.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700596 'src/core/lib/channel/status_util.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700597 'src/core/lib/compression/compression.cc',
Muxi Yan03fc8572017-10-06 18:47:09 -0700598 'src/core/lib/compression/compression_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700599 'src/core/lib/compression/message_compress.cc',
600 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700601 'src/core/lib/compression/stream_compression_gzip.cc',
602 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700603 'src/core/lib/debug/stats.cc',
604 'src/core/lib/debug/stats_data.cc',
605 'src/core/lib/http/format_request.cc',
606 'src/core/lib/http/httpcli.cc',
607 'src/core/lib/http/parser.cc',
608 'src/core/lib/iomgr/call_combiner.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700609 'src/core/lib/iomgr/combiner.cc',
610 'src/core/lib/iomgr/endpoint.cc',
611 'src/core/lib/iomgr/endpoint_pair_posix.cc',
612 'src/core/lib/iomgr/endpoint_pair_uv.cc',
613 'src/core/lib/iomgr/endpoint_pair_windows.cc',
614 'src/core/lib/iomgr/error.cc',
615 'src/core/lib/iomgr/ev_epoll1_linux.cc',
616 'src/core/lib/iomgr/ev_epollex_linux.cc',
617 'src/core/lib/iomgr/ev_epollsig_linux.cc',
618 'src/core/lib/iomgr/ev_poll_posix.cc',
619 'src/core/lib/iomgr/ev_posix.cc',
620 'src/core/lib/iomgr/ev_windows.cc',
621 'src/core/lib/iomgr/exec_ctx.cc',
622 'src/core/lib/iomgr/executor.cc',
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100623 'src/core/lib/iomgr/fork_posix.cc',
624 'src/core/lib/iomgr/fork_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700625 'src/core/lib/iomgr/gethostname_fallback.cc',
626 'src/core/lib/iomgr/gethostname_host_name_max.cc',
627 'src/core/lib/iomgr/gethostname_sysconf.cc',
628 'src/core/lib/iomgr/iocp_windows.cc',
629 'src/core/lib/iomgr/iomgr.cc',
kpayson64539f5062018-03-12 19:16:30 -0700630 'src/core/lib/iomgr/iomgr_custom.cc',
631 'src/core/lib/iomgr/iomgr_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700632 'src/core/lib/iomgr/iomgr_posix.cc',
633 'src/core/lib/iomgr/iomgr_uv.cc',
634 'src/core/lib/iomgr/iomgr_windows.cc',
635 'src/core/lib/iomgr/is_epollexclusive_available.cc',
636 'src/core/lib/iomgr/load_file.cc',
637 'src/core/lib/iomgr/lockfree_event.cc',
638 'src/core/lib/iomgr/network_status_tracker.cc',
639 'src/core/lib/iomgr/polling_entity.cc',
kpayson64539f5062018-03-12 19:16:30 -0700640 'src/core/lib/iomgr/pollset.cc',
641 'src/core/lib/iomgr/pollset_custom.cc',
642 'src/core/lib/iomgr/pollset_set.cc',
643 'src/core/lib/iomgr/pollset_set_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700644 'src/core/lib/iomgr/pollset_set_windows.cc',
645 'src/core/lib/iomgr/pollset_uv.cc',
646 'src/core/lib/iomgr/pollset_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700647 'src/core/lib/iomgr/resolve_address.cc',
648 'src/core/lib/iomgr/resolve_address_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700649 'src/core/lib/iomgr/resolve_address_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700650 'src/core/lib/iomgr/resolve_address_windows.cc',
651 'src/core/lib/iomgr/resource_quota.cc',
652 'src/core/lib/iomgr/sockaddr_utils.cc',
653 'src/core/lib/iomgr/socket_factory_posix.cc',
654 'src/core/lib/iomgr/socket_mutator.cc',
655 'src/core/lib/iomgr/socket_utils_common_posix.cc',
656 'src/core/lib/iomgr/socket_utils_linux.cc',
657 'src/core/lib/iomgr/socket_utils_posix.cc',
658 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700659 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700660 'src/core/lib/iomgr/socket_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700661 'src/core/lib/iomgr/tcp_client.cc',
662 'src/core/lib/iomgr/tcp_client_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700663 'src/core/lib/iomgr/tcp_client_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700664 'src/core/lib/iomgr/tcp_client_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700665 'src/core/lib/iomgr/tcp_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700666 'src/core/lib/iomgr/tcp_posix.cc',
kpayson64539f5062018-03-12 19:16:30 -0700667 'src/core/lib/iomgr/tcp_server.cc',
668 'src/core/lib/iomgr/tcp_server_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700669 'src/core/lib/iomgr/tcp_server_posix.cc',
670 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
671 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
672 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700673 'src/core/lib/iomgr/tcp_server_windows.cc',
674 'src/core/lib/iomgr/tcp_uv.cc',
675 'src/core/lib/iomgr/tcp_windows.cc',
676 'src/core/lib/iomgr/time_averaged_stats.cc',
kpayson64539f5062018-03-12 19:16:30 -0700677 'src/core/lib/iomgr/timer.cc',
678 'src/core/lib/iomgr/timer_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700679 'src/core/lib/iomgr/timer_generic.cc',
680 'src/core/lib/iomgr/timer_heap.cc',
681 'src/core/lib/iomgr/timer_manager.cc',
682 'src/core/lib/iomgr/timer_uv.cc',
683 'src/core/lib/iomgr/udp_server.cc',
684 'src/core/lib/iomgr/unix_sockets_posix.cc',
685 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
686 'src/core/lib/iomgr/wakeup_fd_cv.cc',
687 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
688 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
689 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
690 'src/core/lib/iomgr/wakeup_fd_posix.cc',
691 'src/core/lib/json/json.cc',
692 'src/core/lib/json/json_reader.cc',
693 'src/core/lib/json/json_string.cc',
694 'src/core/lib/json/json_writer.cc',
695 'src/core/lib/slice/b64.cc',
696 'src/core/lib/slice/percent_encoding.cc',
697 'src/core/lib/slice/slice.cc',
698 'src/core/lib/slice/slice_buffer.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700699 'src/core/lib/slice/slice_intern.cc',
700 'src/core/lib/slice/slice_string_helpers.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700701 'src/core/lib/surface/api_trace.cc',
702 'src/core/lib/surface/byte_buffer.cc',
703 'src/core/lib/surface/byte_buffer_reader.cc',
704 'src/core/lib/surface/call.cc',
705 'src/core/lib/surface/call_details.cc',
706 'src/core/lib/surface/call_log_batch.cc',
707 'src/core/lib/surface/channel.cc',
708 'src/core/lib/surface/channel_init.cc',
709 'src/core/lib/surface/channel_ping.cc',
710 'src/core/lib/surface/channel_stack_type.cc',
711 'src/core/lib/surface/completion_queue.cc',
712 'src/core/lib/surface/completion_queue_factory.cc',
713 'src/core/lib/surface/event_string.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400714 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700715 'src/core/lib/surface/metadata_array.cc',
716 'src/core/lib/surface/server.cc',
717 'src/core/lib/surface/validate_metadata.cc',
718 'src/core/lib/surface/version.cc',
719 'src/core/lib/transport/bdp_estimator.cc',
720 'src/core/lib/transport/byte_stream.cc',
721 'src/core/lib/transport/connectivity_state.cc',
722 'src/core/lib/transport/error_utils.cc',
723 'src/core/lib/transport/metadata.cc',
724 'src/core/lib/transport/metadata_batch.cc',
725 'src/core/lib/transport/pid_controller.cc',
726 'src/core/lib/transport/service_config.cc',
727 'src/core/lib/transport/static_metadata.cc',
728 'src/core/lib/transport/status_conversion.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -0800729 'src/core/lib/transport/status_metadata.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700730 'src/core/lib/transport/timeout_encoding.cc',
731 'src/core/lib/transport/transport.cc',
732 'src/core/lib/transport/transport_op_string.cc',
733 'src/core/lib/debug/trace.cc',
David Garcia Quintasfa460dc2018-03-23 14:51:41 -0700734 'src/core/ext/filters/client_channel/authority.cc',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700735 'src/core/ext/filters/client_channel/backup_poller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700736 'src/core/ext/filters/client_channel/channel_connectivity.cc',
737 'src/core/ext/filters/client_channel/client_channel.cc',
738 'src/core/ext/filters/client_channel/client_channel_factory.cc',
739 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
740 'src/core/ext/filters/client_channel/connector.cc',
741 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
742 'src/core/ext/filters/client_channel/http_proxy.cc',
743 'src/core/ext/filters/client_channel/lb_policy.cc',
744 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
745 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800746 'src/core/ext/filters/client_channel/method_params.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700747 'src/core/ext/filters/client_channel/parse_address.cc',
748 'src/core/ext/filters/client_channel/proxy_mapper.cc',
749 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
750 'src/core/ext/filters/client_channel/resolver.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700751 'src/core/ext/filters/client_channel/resolver_registry.cc',
752 'src/core/ext/filters/client_channel/retry_throttle.cc',
753 'src/core/ext/filters/client_channel/subchannel.cc',
754 'src/core/ext/filters/client_channel/subchannel_index.cc',
755 'src/core/ext/filters/client_channel/uri_parser.cc',
756 'src/core/ext/filters/deadline/deadline_filter.cc',
757 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
758 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
759 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
760 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
761 'src/core/ext/transport/chttp2/transport/flow_control.cc',
762 'src/core/ext/transport/chttp2/transport/frame_data.cc',
763 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
764 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
765 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
766 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
767 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
768 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
769 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
770 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
771 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
772 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
773 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
774 'src/core/ext/transport/chttp2/transport/parsing.cc',
775 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
776 'src/core/ext/transport/chttp2/transport/stream_map.cc',
777 'src/core/ext/transport/chttp2/transport/varint.cc',
778 'src/core/ext/transport/chttp2/transport/writing.cc',
779 'src/core/ext/transport/chttp2/alpn/alpn.cc',
780 'src/core/ext/filters/http/client/http_client_filter.cc',
781 'src/core/ext/filters/http/http_filters_plugin.cc',
782 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
783 'src/core/ext/filters/http/server/http_server_filter.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400784 ],
785 },
786 {
787 'target_name': 'grpc_test_util_unsecure',
788 'type': 'static_library',
789 'dependencies': [
790 'gpr',
791 'gpr_test_util',
792 'grpc_unsecure',
793 ],
794 'sources': [
Yash Tibrewal83062842017-09-21 18:56:08 -0700795 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700796 'test/core/end2end/cq_verifier.cc',
797 'test/core/end2end/fixtures/http_proxy_fixture.cc',
798 'test/core/end2end/fixtures/proxy.cc',
799 'test/core/iomgr/endpoint_tests.cc',
Craig Tiller92226062017-10-08 21:16:12 -0700800 'test/core/util/debugger_macros.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700801 'test/core/util/grpc_profiler.cc',
Vijay Pai195cf1e2017-11-30 10:56:06 -0800802 'test/core/util/histogram.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700803 'test/core/util/memory_counters.cc',
804 'test/core/util/mock_endpoint.cc',
805 'test/core/util/parse_hexstring.cc',
806 'test/core/util/passthru_endpoint.cc',
807 'test/core/util/port.cc',
Adele Zhou5b7cdef2017-11-29 16:25:17 -0800808 'test/core/util/port_isolated_runtime_environment.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700809 'test/core/util/port_server_client.cc',
810 'test/core/util/slice_splitter.cc',
Vijay Pai8a99fdb2018-01-25 15:38:20 -0800811 'test/core/util/subprocess_posix.cc',
812 'test/core/util/subprocess_windows.cc',
ncteisenaa3b1972017-11-17 15:56:27 -0800813 'test/core/util/tracer_util.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -0700814 'test/core/util/trickle_endpoint.cc',
Vijay Pai80e23d12018-01-25 21:50:18 -0800815 'test/core/util/cmdline.cc',
Vijay Pai8f4fbb12018-02-08 10:04:08 -0800816 'src/core/lib/avl/avl.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -0700817 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700818 'src/core/lib/channel/channel_args.cc',
819 'src/core/lib/channel/channel_stack.cc',
820 'src/core/lib/channel/channel_stack_builder.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700821 'src/core/lib/channel/channel_trace.cc',
822 'src/core/lib/channel/channel_trace_registry.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700823 'src/core/lib/channel/connected_channel.cc',
824 'src/core/lib/channel/handshaker.cc',
825 'src/core/lib/channel/handshaker_factory.cc',
826 'src/core/lib/channel/handshaker_registry.cc',
ncteisen3b42f832018-03-19 13:22:35 -0700827 'src/core/lib/channel/status_util.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700828 'src/core/lib/compression/compression.cc',
Muxi Yan03fc8572017-10-06 18:47:09 -0700829 'src/core/lib/compression/compression_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700830 'src/core/lib/compression/message_compress.cc',
831 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -0700832 'src/core/lib/compression/stream_compression_gzip.cc',
833 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700834 'src/core/lib/debug/stats.cc',
835 'src/core/lib/debug/stats_data.cc',
836 'src/core/lib/http/format_request.cc',
837 'src/core/lib/http/httpcli.cc',
838 'src/core/lib/http/parser.cc',
839 'src/core/lib/iomgr/call_combiner.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700840 'src/core/lib/iomgr/combiner.cc',
841 'src/core/lib/iomgr/endpoint.cc',
842 'src/core/lib/iomgr/endpoint_pair_posix.cc',
843 'src/core/lib/iomgr/endpoint_pair_uv.cc',
844 'src/core/lib/iomgr/endpoint_pair_windows.cc',
845 'src/core/lib/iomgr/error.cc',
846 'src/core/lib/iomgr/ev_epoll1_linux.cc',
847 'src/core/lib/iomgr/ev_epollex_linux.cc',
848 'src/core/lib/iomgr/ev_epollsig_linux.cc',
849 'src/core/lib/iomgr/ev_poll_posix.cc',
850 'src/core/lib/iomgr/ev_posix.cc',
851 'src/core/lib/iomgr/ev_windows.cc',
852 'src/core/lib/iomgr/exec_ctx.cc',
853 'src/core/lib/iomgr/executor.cc',
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +0100854 'src/core/lib/iomgr/fork_posix.cc',
855 'src/core/lib/iomgr/fork_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700856 'src/core/lib/iomgr/gethostname_fallback.cc',
857 'src/core/lib/iomgr/gethostname_host_name_max.cc',
858 'src/core/lib/iomgr/gethostname_sysconf.cc',
859 'src/core/lib/iomgr/iocp_windows.cc',
860 'src/core/lib/iomgr/iomgr.cc',
kpayson64539f5062018-03-12 19:16:30 -0700861 'src/core/lib/iomgr/iomgr_custom.cc',
862 'src/core/lib/iomgr/iomgr_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700863 'src/core/lib/iomgr/iomgr_posix.cc',
864 'src/core/lib/iomgr/iomgr_uv.cc',
865 'src/core/lib/iomgr/iomgr_windows.cc',
866 'src/core/lib/iomgr/is_epollexclusive_available.cc',
867 'src/core/lib/iomgr/load_file.cc',
868 'src/core/lib/iomgr/lockfree_event.cc',
869 'src/core/lib/iomgr/network_status_tracker.cc',
870 'src/core/lib/iomgr/polling_entity.cc',
kpayson64539f5062018-03-12 19:16:30 -0700871 'src/core/lib/iomgr/pollset.cc',
872 'src/core/lib/iomgr/pollset_custom.cc',
873 'src/core/lib/iomgr/pollset_set.cc',
874 'src/core/lib/iomgr/pollset_set_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700875 'src/core/lib/iomgr/pollset_set_windows.cc',
876 'src/core/lib/iomgr/pollset_uv.cc',
877 'src/core/lib/iomgr/pollset_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700878 'src/core/lib/iomgr/resolve_address.cc',
879 'src/core/lib/iomgr/resolve_address_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700880 'src/core/lib/iomgr/resolve_address_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700881 'src/core/lib/iomgr/resolve_address_windows.cc',
882 'src/core/lib/iomgr/resource_quota.cc',
883 'src/core/lib/iomgr/sockaddr_utils.cc',
884 'src/core/lib/iomgr/socket_factory_posix.cc',
885 'src/core/lib/iomgr/socket_mutator.cc',
886 'src/core/lib/iomgr/socket_utils_common_posix.cc',
887 'src/core/lib/iomgr/socket_utils_linux.cc',
888 'src/core/lib/iomgr/socket_utils_posix.cc',
889 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -0700890 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700891 'src/core/lib/iomgr/socket_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700892 'src/core/lib/iomgr/tcp_client.cc',
893 'src/core/lib/iomgr/tcp_client_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700894 'src/core/lib/iomgr/tcp_client_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700895 'src/core/lib/iomgr/tcp_client_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -0700896 'src/core/lib/iomgr/tcp_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700897 'src/core/lib/iomgr/tcp_posix.cc',
kpayson64539f5062018-03-12 19:16:30 -0700898 'src/core/lib/iomgr/tcp_server.cc',
899 'src/core/lib/iomgr/tcp_server_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700900 'src/core/lib/iomgr/tcp_server_posix.cc',
901 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
902 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
903 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700904 'src/core/lib/iomgr/tcp_server_windows.cc',
905 'src/core/lib/iomgr/tcp_uv.cc',
906 'src/core/lib/iomgr/tcp_windows.cc',
907 'src/core/lib/iomgr/time_averaged_stats.cc',
kpayson64539f5062018-03-12 19:16:30 -0700908 'src/core/lib/iomgr/timer.cc',
909 'src/core/lib/iomgr/timer_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700910 'src/core/lib/iomgr/timer_generic.cc',
911 'src/core/lib/iomgr/timer_heap.cc',
912 'src/core/lib/iomgr/timer_manager.cc',
913 'src/core/lib/iomgr/timer_uv.cc',
914 'src/core/lib/iomgr/udp_server.cc',
915 'src/core/lib/iomgr/unix_sockets_posix.cc',
916 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
917 'src/core/lib/iomgr/wakeup_fd_cv.cc',
918 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
919 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
920 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
921 'src/core/lib/iomgr/wakeup_fd_posix.cc',
922 'src/core/lib/json/json.cc',
923 'src/core/lib/json/json_reader.cc',
924 'src/core/lib/json/json_string.cc',
925 'src/core/lib/json/json_writer.cc',
926 'src/core/lib/slice/b64.cc',
927 'src/core/lib/slice/percent_encoding.cc',
928 'src/core/lib/slice/slice.cc',
929 'src/core/lib/slice/slice_buffer.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700930 'src/core/lib/slice/slice_intern.cc',
931 'src/core/lib/slice/slice_string_helpers.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700932 'src/core/lib/surface/api_trace.cc',
933 'src/core/lib/surface/byte_buffer.cc',
934 'src/core/lib/surface/byte_buffer_reader.cc',
935 'src/core/lib/surface/call.cc',
936 'src/core/lib/surface/call_details.cc',
937 'src/core/lib/surface/call_log_batch.cc',
938 'src/core/lib/surface/channel.cc',
939 'src/core/lib/surface/channel_init.cc',
940 'src/core/lib/surface/channel_ping.cc',
941 'src/core/lib/surface/channel_stack_type.cc',
942 'src/core/lib/surface/completion_queue.cc',
943 'src/core/lib/surface/completion_queue_factory.cc',
944 'src/core/lib/surface/event_string.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -0400945 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700946 'src/core/lib/surface/metadata_array.cc',
947 'src/core/lib/surface/server.cc',
948 'src/core/lib/surface/validate_metadata.cc',
949 'src/core/lib/surface/version.cc',
950 'src/core/lib/transport/bdp_estimator.cc',
951 'src/core/lib/transport/byte_stream.cc',
952 'src/core/lib/transport/connectivity_state.cc',
953 'src/core/lib/transport/error_utils.cc',
954 'src/core/lib/transport/metadata.cc',
955 'src/core/lib/transport/metadata_batch.cc',
956 'src/core/lib/transport/pid_controller.cc',
957 'src/core/lib/transport/service_config.cc',
958 'src/core/lib/transport/static_metadata.cc',
959 'src/core/lib/transport/status_conversion.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -0800960 'src/core/lib/transport/status_metadata.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700961 'src/core/lib/transport/timeout_encoding.cc',
962 'src/core/lib/transport/transport.cc',
963 'src/core/lib/transport/transport_op_string.cc',
964 'src/core/lib/debug/trace.cc',
David Garcia Quintasfa460dc2018-03-23 14:51:41 -0700965 'src/core/ext/filters/client_channel/authority.cc',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -0700966 'src/core/ext/filters/client_channel/backup_poller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700967 'src/core/ext/filters/client_channel/channel_connectivity.cc',
968 'src/core/ext/filters/client_channel/client_channel.cc',
969 'src/core/ext/filters/client_channel/client_channel_factory.cc',
970 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
971 'src/core/ext/filters/client_channel/connector.cc',
972 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
973 'src/core/ext/filters/client_channel/http_proxy.cc',
974 'src/core/ext/filters/client_channel/lb_policy.cc',
975 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
976 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -0800977 'src/core/ext/filters/client_channel/method_params.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700978 'src/core/ext/filters/client_channel/parse_address.cc',
979 'src/core/ext/filters/client_channel/proxy_mapper.cc',
980 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
981 'src/core/ext/filters/client_channel/resolver.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -0700982 'src/core/ext/filters/client_channel/resolver_registry.cc',
983 'src/core/ext/filters/client_channel/retry_throttle.cc',
984 'src/core/ext/filters/client_channel/subchannel.cc',
985 'src/core/ext/filters/client_channel/subchannel_index.cc',
986 'src/core/ext/filters/client_channel/uri_parser.cc',
987 'src/core/ext/filters/deadline/deadline_filter.cc',
988 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
989 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
990 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
991 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
992 'src/core/ext/transport/chttp2/transport/flow_control.cc',
993 'src/core/ext/transport/chttp2/transport/frame_data.cc',
994 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
995 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
996 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
997 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
998 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
999 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
1000 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
1001 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
1002 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
1003 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
1004 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
1005 'src/core/ext/transport/chttp2/transport/parsing.cc',
1006 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
1007 'src/core/ext/transport/chttp2/transport/stream_map.cc',
1008 'src/core/ext/transport/chttp2/transport/varint.cc',
1009 'src/core/ext/transport/chttp2/transport/writing.cc',
1010 'src/core/ext/transport/chttp2/alpn/alpn.cc',
1011 'src/core/ext/filters/http/client/http_client_filter.cc',
1012 'src/core/ext/filters/http/http_filters_plugin.cc',
1013 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
1014 'src/core/ext/filters/http/server/http_server_filter.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001015 ],
1016 },
1017 {
1018 'target_name': 'grpc_unsecure',
1019 'type': 'static_library',
1020 'dependencies': [
1021 'gpr',
1022 ],
1023 'sources': [
Yash Tibrewal83062842017-09-21 18:56:08 -07001024 'src/core/lib/surface/init.cc',
1025 'src/core/lib/surface/init_unsecure.cc',
Vijay Pai8f4fbb12018-02-08 10:04:08 -08001026 'src/core/lib/avl/avl.cc',
Craig Tillerd48bd072017-10-06 11:25:14 -07001027 'src/core/lib/backoff/backoff.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001028 'src/core/lib/channel/channel_args.cc',
1029 'src/core/lib/channel/channel_stack.cc',
1030 'src/core/lib/channel/channel_stack_builder.cc',
ncteisen3b42f832018-03-19 13:22:35 -07001031 'src/core/lib/channel/channel_trace.cc',
1032 'src/core/lib/channel/channel_trace_registry.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001033 'src/core/lib/channel/connected_channel.cc',
1034 'src/core/lib/channel/handshaker.cc',
1035 'src/core/lib/channel/handshaker_factory.cc',
1036 'src/core/lib/channel/handshaker_registry.cc',
ncteisen3b42f832018-03-19 13:22:35 -07001037 'src/core/lib/channel/status_util.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001038 'src/core/lib/compression/compression.cc',
Muxi Yan03fc8572017-10-06 18:47:09 -07001039 'src/core/lib/compression/compression_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001040 'src/core/lib/compression/message_compress.cc',
1041 'src/core/lib/compression/stream_compression.cc',
Yash Tibrewalbc460fa2017-10-02 17:42:41 -07001042 'src/core/lib/compression/stream_compression_gzip.cc',
1043 'src/core/lib/compression/stream_compression_identity.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001044 'src/core/lib/debug/stats.cc',
1045 'src/core/lib/debug/stats_data.cc',
1046 'src/core/lib/http/format_request.cc',
1047 'src/core/lib/http/httpcli.cc',
1048 'src/core/lib/http/parser.cc',
1049 'src/core/lib/iomgr/call_combiner.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001050 'src/core/lib/iomgr/combiner.cc',
1051 'src/core/lib/iomgr/endpoint.cc',
1052 'src/core/lib/iomgr/endpoint_pair_posix.cc',
1053 'src/core/lib/iomgr/endpoint_pair_uv.cc',
1054 'src/core/lib/iomgr/endpoint_pair_windows.cc',
1055 'src/core/lib/iomgr/error.cc',
1056 'src/core/lib/iomgr/ev_epoll1_linux.cc',
1057 'src/core/lib/iomgr/ev_epollex_linux.cc',
1058 'src/core/lib/iomgr/ev_epollsig_linux.cc',
1059 'src/core/lib/iomgr/ev_poll_posix.cc',
1060 'src/core/lib/iomgr/ev_posix.cc',
1061 'src/core/lib/iomgr/ev_windows.cc',
1062 'src/core/lib/iomgr/exec_ctx.cc',
1063 'src/core/lib/iomgr/executor.cc',
Nicolas "Pixel" Noble18a68372017-11-20 23:33:22 +01001064 'src/core/lib/iomgr/fork_posix.cc',
1065 'src/core/lib/iomgr/fork_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001066 'src/core/lib/iomgr/gethostname_fallback.cc',
1067 'src/core/lib/iomgr/gethostname_host_name_max.cc',
1068 'src/core/lib/iomgr/gethostname_sysconf.cc',
1069 'src/core/lib/iomgr/iocp_windows.cc',
1070 'src/core/lib/iomgr/iomgr.cc',
kpayson64539f5062018-03-12 19:16:30 -07001071 'src/core/lib/iomgr/iomgr_custom.cc',
1072 'src/core/lib/iomgr/iomgr_internal.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001073 'src/core/lib/iomgr/iomgr_posix.cc',
1074 'src/core/lib/iomgr/iomgr_uv.cc',
1075 'src/core/lib/iomgr/iomgr_windows.cc',
1076 'src/core/lib/iomgr/is_epollexclusive_available.cc',
1077 'src/core/lib/iomgr/load_file.cc',
1078 'src/core/lib/iomgr/lockfree_event.cc',
1079 'src/core/lib/iomgr/network_status_tracker.cc',
1080 'src/core/lib/iomgr/polling_entity.cc',
kpayson64539f5062018-03-12 19:16:30 -07001081 'src/core/lib/iomgr/pollset.cc',
1082 'src/core/lib/iomgr/pollset_custom.cc',
1083 'src/core/lib/iomgr/pollset_set.cc',
1084 'src/core/lib/iomgr/pollset_set_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001085 'src/core/lib/iomgr/pollset_set_windows.cc',
1086 'src/core/lib/iomgr/pollset_uv.cc',
1087 'src/core/lib/iomgr/pollset_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -07001088 'src/core/lib/iomgr/resolve_address.cc',
1089 'src/core/lib/iomgr/resolve_address_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001090 'src/core/lib/iomgr/resolve_address_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001091 'src/core/lib/iomgr/resolve_address_windows.cc',
1092 'src/core/lib/iomgr/resource_quota.cc',
1093 'src/core/lib/iomgr/sockaddr_utils.cc',
1094 'src/core/lib/iomgr/socket_factory_posix.cc',
1095 'src/core/lib/iomgr/socket_mutator.cc',
1096 'src/core/lib/iomgr/socket_utils_common_posix.cc',
1097 'src/core/lib/iomgr/socket_utils_linux.cc',
1098 'src/core/lib/iomgr/socket_utils_posix.cc',
1099 'src/core/lib/iomgr/socket_utils_uv.cc',
Yash Tibrewal26c78032017-09-28 14:34:43 -07001100 'src/core/lib/iomgr/socket_utils_windows.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001101 'src/core/lib/iomgr/socket_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -07001102 'src/core/lib/iomgr/tcp_client.cc',
1103 'src/core/lib/iomgr/tcp_client_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001104 'src/core/lib/iomgr/tcp_client_posix.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001105 'src/core/lib/iomgr/tcp_client_windows.cc',
kpayson64539f5062018-03-12 19:16:30 -07001106 'src/core/lib/iomgr/tcp_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001107 'src/core/lib/iomgr/tcp_posix.cc',
kpayson64539f5062018-03-12 19:16:30 -07001108 'src/core/lib/iomgr/tcp_server.cc',
1109 'src/core/lib/iomgr/tcp_server_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001110 'src/core/lib/iomgr/tcp_server_posix.cc',
1111 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc',
1112 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc',
1113 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001114 'src/core/lib/iomgr/tcp_server_windows.cc',
1115 'src/core/lib/iomgr/tcp_uv.cc',
1116 'src/core/lib/iomgr/tcp_windows.cc',
1117 'src/core/lib/iomgr/time_averaged_stats.cc',
kpayson64539f5062018-03-12 19:16:30 -07001118 'src/core/lib/iomgr/timer.cc',
1119 'src/core/lib/iomgr/timer_custom.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001120 'src/core/lib/iomgr/timer_generic.cc',
1121 'src/core/lib/iomgr/timer_heap.cc',
1122 'src/core/lib/iomgr/timer_manager.cc',
1123 'src/core/lib/iomgr/timer_uv.cc',
1124 'src/core/lib/iomgr/udp_server.cc',
1125 'src/core/lib/iomgr/unix_sockets_posix.cc',
1126 'src/core/lib/iomgr/unix_sockets_posix_noop.cc',
1127 'src/core/lib/iomgr/wakeup_fd_cv.cc',
1128 'src/core/lib/iomgr/wakeup_fd_eventfd.cc',
1129 'src/core/lib/iomgr/wakeup_fd_nospecial.cc',
1130 'src/core/lib/iomgr/wakeup_fd_pipe.cc',
1131 'src/core/lib/iomgr/wakeup_fd_posix.cc',
1132 'src/core/lib/json/json.cc',
1133 'src/core/lib/json/json_reader.cc',
1134 'src/core/lib/json/json_string.cc',
1135 'src/core/lib/json/json_writer.cc',
1136 'src/core/lib/slice/b64.cc',
1137 'src/core/lib/slice/percent_encoding.cc',
1138 'src/core/lib/slice/slice.cc',
1139 'src/core/lib/slice/slice_buffer.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001140 'src/core/lib/slice/slice_intern.cc',
1141 'src/core/lib/slice/slice_string_helpers.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001142 'src/core/lib/surface/api_trace.cc',
1143 'src/core/lib/surface/byte_buffer.cc',
1144 'src/core/lib/surface/byte_buffer_reader.cc',
1145 'src/core/lib/surface/call.cc',
1146 'src/core/lib/surface/call_details.cc',
1147 'src/core/lib/surface/call_log_batch.cc',
1148 'src/core/lib/surface/channel.cc',
1149 'src/core/lib/surface/channel_init.cc',
1150 'src/core/lib/surface/channel_ping.cc',
1151 'src/core/lib/surface/channel_stack_type.cc',
1152 'src/core/lib/surface/completion_queue.cc',
1153 'src/core/lib/surface/completion_queue_factory.cc',
1154 'src/core/lib/surface/event_string.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001155 'src/core/lib/surface/lame_client.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001156 'src/core/lib/surface/metadata_array.cc',
1157 'src/core/lib/surface/server.cc',
1158 'src/core/lib/surface/validate_metadata.cc',
1159 'src/core/lib/surface/version.cc',
1160 'src/core/lib/transport/bdp_estimator.cc',
1161 'src/core/lib/transport/byte_stream.cc',
1162 'src/core/lib/transport/connectivity_state.cc',
1163 'src/core/lib/transport/error_utils.cc',
1164 'src/core/lib/transport/metadata.cc',
1165 'src/core/lib/transport/metadata_batch.cc',
1166 'src/core/lib/transport/pid_controller.cc',
1167 'src/core/lib/transport/service_config.cc',
1168 'src/core/lib/transport/static_metadata.cc',
1169 'src/core/lib/transport/status_conversion.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -08001170 'src/core/lib/transport/status_metadata.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001171 'src/core/lib/transport/timeout_encoding.cc',
1172 'src/core/lib/transport/transport.cc',
1173 'src/core/lib/transport/transport_op_string.cc',
1174 'src/core/lib/debug/trace.cc',
1175 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc',
1176 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc',
1177 'src/core/ext/transport/chttp2/transport/bin_decoder.cc',
1178 'src/core/ext/transport/chttp2/transport/bin_encoder.cc',
1179 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc',
1180 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc',
1181 'src/core/ext/transport/chttp2/transport/flow_control.cc',
1182 'src/core/ext/transport/chttp2/transport/frame_data.cc',
1183 'src/core/ext/transport/chttp2/transport/frame_goaway.cc',
1184 'src/core/ext/transport/chttp2/transport/frame_ping.cc',
1185 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc',
1186 'src/core/ext/transport/chttp2/transport/frame_settings.cc',
1187 'src/core/ext/transport/chttp2/transport/frame_window_update.cc',
1188 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc',
1189 'src/core/ext/transport/chttp2/transport/hpack_parser.cc',
1190 'src/core/ext/transport/chttp2/transport/hpack_table.cc',
1191 'src/core/ext/transport/chttp2/transport/http2_settings.cc',
1192 'src/core/ext/transport/chttp2/transport/huffsyms.cc',
1193 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc',
1194 'src/core/ext/transport/chttp2/transport/parsing.cc',
1195 'src/core/ext/transport/chttp2/transport/stream_lists.cc',
1196 'src/core/ext/transport/chttp2/transport/stream_map.cc',
1197 'src/core/ext/transport/chttp2/transport/varint.cc',
1198 'src/core/ext/transport/chttp2/transport/writing.cc',
1199 'src/core/ext/transport/chttp2/alpn/alpn.cc',
1200 'src/core/ext/filters/http/client/http_client_filter.cc',
1201 'src/core/ext/filters/http/http_filters_plugin.cc',
1202 'src/core/ext/filters/http/message_compress/message_compress_filter.cc',
1203 'src/core/ext/filters/http/server/http_server_filter.cc',
1204 'src/core/ext/transport/chttp2/server/chttp2_server.cc',
1205 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc',
1206 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc',
1207 'src/core/ext/transport/chttp2/client/chttp2_connector.cc',
David Garcia Quintasfa460dc2018-03-23 14:51:41 -07001208 'src/core/ext/filters/client_channel/authority.cc',
Yuchen Zeng0bad30a2017-10-05 21:47:39 -07001209 'src/core/ext/filters/client_channel/backup_poller.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001210 'src/core/ext/filters/client_channel/channel_connectivity.cc',
1211 'src/core/ext/filters/client_channel/client_channel.cc',
1212 'src/core/ext/filters/client_channel/client_channel_factory.cc',
1213 'src/core/ext/filters/client_channel/client_channel_plugin.cc',
1214 'src/core/ext/filters/client_channel/connector.cc',
1215 'src/core/ext/filters/client_channel/http_connect_handshaker.cc',
1216 'src/core/ext/filters/client_channel/http_proxy.cc',
1217 'src/core/ext/filters/client_channel/lb_policy.cc',
1218 'src/core/ext/filters/client_channel/lb_policy_factory.cc',
1219 'src/core/ext/filters/client_channel/lb_policy_registry.cc',
Mark D. Roth3e7f2df2018-02-26 13:17:06 -08001220 'src/core/ext/filters/client_channel/method_params.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001221 'src/core/ext/filters/client_channel/parse_address.cc',
1222 'src/core/ext/filters/client_channel/proxy_mapper.cc',
1223 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc',
1224 'src/core/ext/filters/client_channel/resolver.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001225 'src/core/ext/filters/client_channel/resolver_registry.cc',
1226 'src/core/ext/filters/client_channel/retry_throttle.cc',
1227 'src/core/ext/filters/client_channel/subchannel.cc',
1228 'src/core/ext/filters/client_channel/subchannel_index.cc',
1229 'src/core/ext/filters/client_channel/uri_parser.cc',
1230 'src/core/ext/filters/deadline/deadline_filter.cc',
1231 'src/core/ext/transport/inproc/inproc_plugin.cc',
1232 'src/core/ext/transport/inproc/inproc_transport.cc',
1233 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc',
1234 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc',
1235 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc',
1236 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc',
1237 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc',
1238 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc',
1239 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc',
1240 'src/core/ext/filters/load_reporting/server_load_reporting_filter.cc',
1241 'src/core/ext/filters/load_reporting/server_load_reporting_plugin.cc',
1242 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc',
1243 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc',
1244 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.cc',
1245 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc',
1246 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001247 'src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/load_balancer.pb.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001248 'third_party/nanopb/pb_common.c',
1249 'third_party/nanopb/pb_decode.c',
1250 'third_party/nanopb/pb_encode.c',
Yash Tibrewal83062842017-09-21 18:56:08 -07001251 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc',
Mark D. Roth5e9848e2017-10-06 13:59:32 -07001252 'src/core/ext/filters/client_channel/lb_policy/subchannel_list.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001253 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001254 'src/core/ext/census/grpc_context.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001255 'src/core/ext/filters/max_age/max_age_filter.cc',
1256 'src/core/ext/filters/message_size/message_size_filter.cc',
David Garcia Quintas961353a2018-03-15 16:11:05 -07001257 'src/core/ext/filters/http/client_authority_filter.cc',
Yash Tibrewal83062842017-09-21 18:56:08 -07001258 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc',
1259 'src/core/ext/filters/workarounds/workaround_utils.cc',
Yash Tibrewal1c9b5842017-09-21 15:49:55 -07001260 'src/core/plugin_registry/grpc_unsecure_plugin_registry.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001261 ],
1262 },
1263 {
1264 'target_name': 'reconnect_server',
1265 'type': 'static_library',
1266 'dependencies': [
1267 'test_tcp_server',
1268 'grpc_test_util',
1269 'grpc',
1270 'gpr_test_util',
1271 'gpr',
1272 ],
1273 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -07001274 'test/core/util/reconnect_server.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001275 ],
1276 },
1277 {
1278 'target_name': 'test_tcp_server',
1279 'type': 'static_library',
1280 'dependencies': [
1281 'grpc_test_util',
1282 'grpc',
1283 'gpr_test_util',
1284 'gpr',
1285 ],
1286 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -07001287 'test/core/util/test_tcp_server.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001288 ],
1289 },
1290 {
1291 'target_name': 'grpc++',
1292 'type': 'static_library',
1293 'dependencies': [
1294 'grpc',
1295 'gpr',
1296 ],
1297 'sources': [
1298 'src/cpp/client/insecure_credentials.cc',
1299 'src/cpp/client/secure_credentials.cc',
1300 'src/cpp/common/auth_property_iterator.cc',
1301 'src/cpp/common/secure_auth_context.cc',
1302 'src/cpp/common/secure_channel_arguments.cc',
1303 'src/cpp/common/secure_create_auth_context.cc',
1304 'src/cpp/server/insecure_server_credentials.cc',
1305 'src/cpp/server/secure_server_credentials.cc',
1306 'src/cpp/client/channel_cc.cc',
1307 'src/cpp/client/client_context.cc',
1308 'src/cpp/client/create_channel.cc',
1309 'src/cpp/client/create_channel_internal.cc',
1310 'src/cpp/client/create_channel_posix.cc',
1311 'src/cpp/client/credentials_cc.cc',
1312 'src/cpp/client/generic_stub.cc',
Vijay Pai2b226ad2018-01-11 16:11:35 -08001313 'src/cpp/common/alarm.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001314 'src/cpp/common/channel_arguments.cc',
1315 'src/cpp/common/channel_filter.cc',
1316 'src/cpp/common/completion_queue_cc.cc',
1317 'src/cpp/common/core_codegen.cc',
1318 'src/cpp/common/resource_quota_cc.cc',
1319 'src/cpp/common/rpc_method.cc',
1320 'src/cpp/common/version_cc.cc',
1321 'src/cpp/server/async_generic_service.cc',
1322 'src/cpp/server/channel_argument_option.cc',
1323 'src/cpp/server/create_default_thread_pool.cc',
1324 'src/cpp/server/dynamic_thread_pool.cc',
1325 'src/cpp/server/health/default_health_check_service.cc',
1326 'src/cpp/server/health/health.pb.c',
1327 'src/cpp/server/health/health_check_service.cc',
1328 'src/cpp/server/health/health_check_service_server_builder_option.cc',
1329 'src/cpp/server/server_builder.cc',
1330 'src/cpp/server/server_cc.cc',
1331 'src/cpp/server/server_context.cc',
1332 'src/cpp/server/server_credentials.cc',
1333 'src/cpp/server/server_posix.cc',
1334 'src/cpp/thread_manager/thread_manager.cc',
1335 'src/cpp/util/byte_buffer_cc.cc',
1336 'src/cpp/util/slice_cc.cc',
1337 'src/cpp/util/status.cc',
1338 'src/cpp/util/string_ref.cc',
1339 'src/cpp/util/time_cc.cc',
1340 'src/cpp/codegen/codegen_init.cc',
1341 ],
1342 },
1343 {
Craig Tiller28972352017-08-31 15:52:57 -07001344 'target_name': 'grpc++_core_stats',
1345 'type': 'static_library',
1346 'dependencies': [
1347 'grpc++',
1348 ],
1349 'sources': [
1350 'src/proto/grpc/core/stats.proto',
1351 'src/cpp/util/core_stats.cc',
1352 ],
1353 },
1354 {
Maxim Dzobadd962612017-08-16 17:52:28 -04001355 'target_name': 'grpc++_error_details',
1356 'type': 'static_library',
1357 'dependencies': [
1358 'grpc++',
1359 ],
1360 'sources': [
1361 'src/proto/grpc/status/status.proto',
1362 'src/cpp/util/error_details.cc',
1363 ],
1364 },
1365 {
1366 'target_name': 'grpc++_proto_reflection_desc_db',
1367 'type': 'static_library',
1368 'dependencies': [
1369 'grpc++',
1370 'grpc',
1371 ],
1372 'sources': [
1373 'test/cpp/util/proto_reflection_descriptor_database.cc',
1374 'src/proto/grpc/reflection/v1alpha/reflection.proto',
1375 ],
1376 },
1377 {
1378 'target_name': 'grpc++_reflection',
1379 'type': 'static_library',
1380 'dependencies': [
1381 'grpc++',
1382 'grpc',
1383 ],
1384 'sources': [
1385 'src/cpp/ext/proto_server_reflection.cc',
1386 'src/cpp/ext/proto_server_reflection_plugin.cc',
1387 'src/proto/grpc/reflection/v1alpha/reflection.proto',
1388 ],
1389 },
1390 {
1391 'target_name': 'grpc++_test_config',
1392 'type': 'static_library',
1393 'dependencies': [
1394 ],
1395 'sources': [
1396 'test/cpp/util/test_config_cc.cc',
1397 ],
1398 },
1399 {
1400 'target_name': 'grpc++_test_util',
1401 'type': 'static_library',
1402 'dependencies': [
1403 'grpc++',
1404 'grpc_test_util',
1405 'grpc',
1406 ],
1407 'sources': [
ncteisen3b42f832018-03-19 13:22:35 -07001408 'src/proto/grpc/channelz/channelz.proto',
Maxim Dzobadd962612017-08-16 17:52:28 -04001409 'src/proto/grpc/health/v1/health.proto',
1410 'src/proto/grpc/testing/echo_messages.proto',
1411 'src/proto/grpc/testing/echo.proto',
1412 'src/proto/grpc/testing/duplicate/echo_duplicate.proto',
1413 'test/cpp/end2end/test_service_impl.cc',
1414 'test/cpp/util/byte_buffer_proto_helper.cc',
ncteisen3b42f832018-03-19 13:22:35 -07001415 'test/cpp/util/channel_trace_proto_helper.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001416 'test/cpp/util/create_test_channel.cc',
1417 'test/cpp/util/string_ref_helper.cc',
1418 'test/cpp/util/subprocess.cc',
1419 'test/cpp/util/test_credentials_provider.cc',
1420 'src/cpp/codegen/codegen_init.cc',
1421 ],
1422 },
1423 {
1424 'target_name': 'grpc++_test_util_unsecure',
1425 'type': 'static_library',
1426 'dependencies': [
1427 'grpc++_unsecure',
1428 'grpc_test_util_unsecure',
1429 'grpc_unsecure',
1430 ],
1431 'sources': [
1432 'src/proto/grpc/health/v1/health.proto',
1433 'src/proto/grpc/testing/echo_messages.proto',
1434 'src/proto/grpc/testing/echo.proto',
1435 'src/proto/grpc/testing/duplicate/echo_duplicate.proto',
1436 'test/cpp/end2end/test_service_impl.cc',
1437 'test/cpp/util/byte_buffer_proto_helper.cc',
1438 'test/cpp/util/string_ref_helper.cc',
1439 'test/cpp/util/subprocess.cc',
1440 'src/cpp/codegen/codegen_init.cc',
1441 ],
1442 },
1443 {
1444 'target_name': 'grpc++_unsecure',
1445 'type': 'static_library',
1446 'dependencies': [
1447 'gpr',
1448 'grpc_unsecure',
1449 ],
1450 'sources': [
1451 'src/cpp/client/insecure_credentials.cc',
1452 'src/cpp/common/insecure_create_auth_context.cc',
1453 'src/cpp/server/insecure_server_credentials.cc',
1454 'src/cpp/client/channel_cc.cc',
1455 'src/cpp/client/client_context.cc',
1456 'src/cpp/client/create_channel.cc',
1457 'src/cpp/client/create_channel_internal.cc',
1458 'src/cpp/client/create_channel_posix.cc',
1459 'src/cpp/client/credentials_cc.cc',
1460 'src/cpp/client/generic_stub.cc',
Vijay Pai2b226ad2018-01-11 16:11:35 -08001461 'src/cpp/common/alarm.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001462 'src/cpp/common/channel_arguments.cc',
1463 'src/cpp/common/channel_filter.cc',
1464 'src/cpp/common/completion_queue_cc.cc',
1465 'src/cpp/common/core_codegen.cc',
1466 'src/cpp/common/resource_quota_cc.cc',
1467 'src/cpp/common/rpc_method.cc',
1468 'src/cpp/common/version_cc.cc',
1469 'src/cpp/server/async_generic_service.cc',
1470 'src/cpp/server/channel_argument_option.cc',
1471 'src/cpp/server/create_default_thread_pool.cc',
1472 'src/cpp/server/dynamic_thread_pool.cc',
1473 'src/cpp/server/health/default_health_check_service.cc',
1474 'src/cpp/server/health/health.pb.c',
1475 'src/cpp/server/health/health_check_service.cc',
1476 'src/cpp/server/health/health_check_service_server_builder_option.cc',
1477 'src/cpp/server/server_builder.cc',
1478 'src/cpp/server/server_cc.cc',
1479 'src/cpp/server/server_context.cc',
1480 'src/cpp/server/server_credentials.cc',
1481 'src/cpp/server/server_posix.cc',
1482 'src/cpp/thread_manager/thread_manager.cc',
1483 'src/cpp/util/byte_buffer_cc.cc',
1484 'src/cpp/util/slice_cc.cc',
1485 'src/cpp/util/status.cc',
1486 'src/cpp/util/string_ref.cc',
1487 'src/cpp/util/time_cc.cc',
1488 'src/cpp/codegen/codegen_init.cc',
1489 ],
1490 },
1491 {
1492 'target_name': 'grpc_benchmark',
1493 'type': 'static_library',
1494 'dependencies': [
1495 'benchmark',
1496 'grpc++_unsecure',
1497 'grpc_test_util_unsecure',
1498 'grpc_unsecure',
1499 ],
1500 'sources': [
1501 'test/cpp/microbenchmarks/helpers.cc',
1502 ],
1503 },
1504 {
1505 'target_name': 'grpc_cli_libs',
1506 'type': 'static_library',
1507 'dependencies': [
1508 'grpc++_proto_reflection_desc_db',
1509 'grpc++',
1510 'grpc',
1511 ],
1512 'sources': [
1513 'test/cpp/util/cli_call.cc',
1514 'test/cpp/util/cli_credentials.cc',
1515 'test/cpp/util/grpc_tool.cc',
1516 'test/cpp/util/proto_file_parser.cc',
1517 'test/cpp/util/service_describer.cc',
1518 'src/proto/grpc/reflection/v1alpha/reflection.proto',
1519 ],
1520 },
1521 {
1522 'target_name': 'grpc_plugin_support',
1523 'type': 'static_library',
1524 'dependencies': [
1525 ],
1526 'sources': [
1527 'src/compiler/cpp_generator.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001528 'src/compiler/csharp_generator.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04001529 'src/compiler/node_generator.cc',
1530 'src/compiler/objective_c_generator.cc',
1531 'src/compiler/php_generator.cc',
1532 'src/compiler/python_generator.cc',
1533 'src/compiler/ruby_generator.cc',
1534 ],
1535 },
1536 {
1537 'target_name': 'http2_client_main',
1538 'type': 'static_library',
1539 'dependencies': [
1540 'grpc++_test_util',
1541 'grpc_test_util',
1542 'grpc++',
1543 'grpc',
1544 'grpc++_test_config',
1545 ],
1546 'sources': [
1547 'src/proto/grpc/testing/empty.proto',
1548 'src/proto/grpc/testing/messages.proto',
1549 'src/proto/grpc/testing/test.proto',
1550 'test/cpp/interop/http2_client.cc',
1551 ],
1552 },
1553 {
1554 'target_name': 'interop_client_helper',
1555 'type': 'static_library',
1556 'dependencies': [
1557 'grpc++_test_util',
1558 'grpc_test_util',
1559 'grpc++',
1560 'grpc',
1561 'gpr',
1562 ],
1563 'sources': [
1564 'src/proto/grpc/testing/messages.proto',
1565 'test/cpp/interop/client_helper.cc',
1566 ],
1567 },
1568 {
1569 'target_name': 'interop_client_main',
1570 'type': 'static_library',
1571 'dependencies': [
1572 'interop_client_helper',
1573 'grpc++_test_util',
1574 'grpc_test_util',
1575 'grpc++',
1576 'grpc',
1577 'gpr_test_util',
1578 'gpr',
1579 'grpc++_test_config',
1580 ],
1581 'sources': [
1582 'src/proto/grpc/testing/empty.proto',
1583 'src/proto/grpc/testing/messages.proto',
1584 'src/proto/grpc/testing/test.proto',
1585 'test/cpp/interop/client.cc',
1586 'test/cpp/interop/interop_client.cc',
1587 ],
1588 },
1589 {
1590 'target_name': 'interop_server_helper',
1591 'type': 'static_library',
1592 'dependencies': [
1593 'grpc++_test_util',
1594 'grpc_test_util',
1595 'grpc++',
1596 'grpc',
1597 'gpr',
1598 ],
1599 'sources': [
1600 'test/cpp/interop/server_helper.cc',
1601 ],
1602 },
1603 {
1604 'target_name': 'interop_server_lib',
1605 'type': 'static_library',
1606 'dependencies': [
1607 'interop_server_helper',
1608 'grpc++_test_util',
1609 'grpc_test_util',
1610 'grpc++',
1611 'grpc',
1612 'gpr_test_util',
1613 'gpr',
1614 'grpc++_test_config',
1615 ],
1616 'sources': [
1617 'src/proto/grpc/testing/empty.proto',
1618 'src/proto/grpc/testing/messages.proto',
1619 'src/proto/grpc/testing/test.proto',
1620 'test/cpp/interop/interop_server.cc',
1621 ],
1622 },
1623 {
1624 'target_name': 'interop_server_main',
1625 'type': 'static_library',
1626 'dependencies': [
1627 'interop_server_lib',
1628 ],
1629 'sources': [
1630 'test/cpp/interop/interop_server_bootstrap.cc',
1631 ],
1632 },
1633 {
1634 'target_name': 'qps',
1635 'type': 'static_library',
1636 'dependencies': [
1637 'grpc_test_util',
1638 'grpc++_test_util',
Craig Tiller28972352017-08-31 15:52:57 -07001639 'grpc++_core_stats',
Maxim Dzobadd962612017-08-16 17:52:28 -04001640 'grpc++',
1641 'grpc',
1642 ],
1643 'sources': [
1644 'src/proto/grpc/testing/messages.proto',
1645 'src/proto/grpc/testing/payloads.proto',
1646 'src/proto/grpc/testing/stats.proto',
1647 'src/proto/grpc/testing/control.proto',
1648 'src/proto/grpc/testing/services.proto',
1649 'test/cpp/qps/benchmark_config.cc',
1650 'test/cpp/qps/client_async.cc',
1651 'test/cpp/qps/client_sync.cc',
1652 'test/cpp/qps/driver.cc',
1653 'test/cpp/qps/parse_json.cc',
1654 'test/cpp/qps/qps_worker.cc',
1655 'test/cpp/qps/report.cc',
1656 'test/cpp/qps/server_async.cc',
1657 'test/cpp/qps/server_sync.cc',
1658 'test/cpp/qps/usage_timer.cc',
1659 ],
1660 },
1661 {
1662 'target_name': 'grpc_csharp_ext',
1663 'type': 'static_library',
1664 'dependencies': [
1665 'grpc',
1666 'gpr',
1667 ],
1668 'sources': [
1669 'src/csharp/ext/grpc_csharp_ext.c',
1670 ],
1671 },
1672 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001673 'target_name': 'boringssl',
1674 'type': 'static_library',
1675 'dependencies': [
1676 ],
1677 'sources': [
1678 'src/boringssl/err_data.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001679 'third_party/boringssl/crypto/asn1/a_bitstr.c',
1680 'third_party/boringssl/crypto/asn1/a_bool.c',
1681 'third_party/boringssl/crypto/asn1/a_d2i_fp.c',
1682 'third_party/boringssl/crypto/asn1/a_dup.c',
1683 'third_party/boringssl/crypto/asn1/a_enum.c',
1684 'third_party/boringssl/crypto/asn1/a_gentm.c',
1685 'third_party/boringssl/crypto/asn1/a_i2d_fp.c',
1686 'third_party/boringssl/crypto/asn1/a_int.c',
1687 'third_party/boringssl/crypto/asn1/a_mbstr.c',
1688 'third_party/boringssl/crypto/asn1/a_object.c',
1689 'third_party/boringssl/crypto/asn1/a_octet.c',
1690 'third_party/boringssl/crypto/asn1/a_print.c',
1691 'third_party/boringssl/crypto/asn1/a_strnid.c',
1692 'third_party/boringssl/crypto/asn1/a_time.c',
1693 'third_party/boringssl/crypto/asn1/a_type.c',
1694 'third_party/boringssl/crypto/asn1/a_utctm.c',
1695 'third_party/boringssl/crypto/asn1/a_utf8.c',
1696 'third_party/boringssl/crypto/asn1/asn1_lib.c',
1697 'third_party/boringssl/crypto/asn1/asn1_par.c',
1698 'third_party/boringssl/crypto/asn1/asn_pack.c',
1699 'third_party/boringssl/crypto/asn1/f_enum.c',
1700 'third_party/boringssl/crypto/asn1/f_int.c',
1701 'third_party/boringssl/crypto/asn1/f_string.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001702 'third_party/boringssl/crypto/asn1/tasn_dec.c',
1703 'third_party/boringssl/crypto/asn1/tasn_enc.c',
1704 'third_party/boringssl/crypto/asn1/tasn_fre.c',
1705 'third_party/boringssl/crypto/asn1/tasn_new.c',
1706 'third_party/boringssl/crypto/asn1/tasn_typ.c',
1707 'third_party/boringssl/crypto/asn1/tasn_utl.c',
1708 'third_party/boringssl/crypto/asn1/time_support.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001709 'third_party/boringssl/crypto/base64/base64.c',
1710 'third_party/boringssl/crypto/bio/bio.c',
1711 'third_party/boringssl/crypto/bio/bio_mem.c',
1712 'third_party/boringssl/crypto/bio/connect.c',
1713 'third_party/boringssl/crypto/bio/fd.c',
1714 'third_party/boringssl/crypto/bio/file.c',
1715 'third_party/boringssl/crypto/bio/hexdump.c',
1716 'third_party/boringssl/crypto/bio/pair.c',
1717 'third_party/boringssl/crypto/bio/printf.c',
1718 'third_party/boringssl/crypto/bio/socket.c',
1719 'third_party/boringssl/crypto/bio/socket_helper.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001720 'third_party/boringssl/crypto/bn_extra/bn_asn1.c',
1721 'third_party/boringssl/crypto/bn_extra/convert.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001722 'third_party/boringssl/crypto/buf/buf.c',
1723 'third_party/boringssl/crypto/bytestring/asn1_compat.c',
1724 'third_party/boringssl/crypto/bytestring/ber.c',
1725 'third_party/boringssl/crypto/bytestring/cbb.c',
1726 'third_party/boringssl/crypto/bytestring/cbs.c',
1727 'third_party/boringssl/crypto/chacha/chacha.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001728 'third_party/boringssl/crypto/cipher_extra/cipher_extra.c',
1729 'third_party/boringssl/crypto/cipher_extra/derive_key.c',
1730 'third_party/boringssl/crypto/cipher_extra/e_aesctrhmac.c',
1731 'third_party/boringssl/crypto/cipher_extra/e_aesgcmsiv.c',
1732 'third_party/boringssl/crypto/cipher_extra/e_chacha20poly1305.c',
1733 'third_party/boringssl/crypto/cipher_extra/e_null.c',
1734 'third_party/boringssl/crypto/cipher_extra/e_rc2.c',
1735 'third_party/boringssl/crypto/cipher_extra/e_rc4.c',
1736 'third_party/boringssl/crypto/cipher_extra/e_ssl3.c',
1737 'third_party/boringssl/crypto/cipher_extra/e_tls.c',
1738 'third_party/boringssl/crypto/cipher_extra/tls_cbc.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001739 'third_party/boringssl/crypto/cmac/cmac.c',
1740 'third_party/boringssl/crypto/conf/conf.c',
1741 'third_party/boringssl/crypto/cpu-aarch64-linux.c',
1742 'third_party/boringssl/crypto/cpu-arm-linux.c',
1743 'third_party/boringssl/crypto/cpu-arm.c',
1744 'third_party/boringssl/crypto/cpu-intel.c',
1745 'third_party/boringssl/crypto/cpu-ppc64le.c',
1746 'third_party/boringssl/crypto/crypto.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001747 'third_party/boringssl/crypto/curve25519/spake25519.c',
1748 'third_party/boringssl/crypto/curve25519/x25519-x86_64.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001749 'third_party/boringssl/crypto/dh/check.c',
1750 'third_party/boringssl/crypto/dh/dh.c',
1751 'third_party/boringssl/crypto/dh/dh_asn1.c',
1752 'third_party/boringssl/crypto/dh/params.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001753 'third_party/boringssl/crypto/digest_extra/digest_extra.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001754 'third_party/boringssl/crypto/dsa/dsa.c',
1755 'third_party/boringssl/crypto/dsa/dsa_asn1.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001756 'third_party/boringssl/crypto/ec_extra/ec_asn1.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001757 'third_party/boringssl/crypto/ecdh/ecdh.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001758 'third_party/boringssl/crypto/ecdsa_extra/ecdsa_asn1.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001759 'third_party/boringssl/crypto/engine/engine.c',
1760 'third_party/boringssl/crypto/err/err.c',
1761 'third_party/boringssl/crypto/evp/digestsign.c',
1762 'third_party/boringssl/crypto/evp/evp.c',
1763 'third_party/boringssl/crypto/evp/evp_asn1.c',
1764 'third_party/boringssl/crypto/evp/evp_ctx.c',
1765 'third_party/boringssl/crypto/evp/p_dsa_asn1.c',
1766 'third_party/boringssl/crypto/evp/p_ec.c',
1767 'third_party/boringssl/crypto/evp/p_ec_asn1.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001768 'third_party/boringssl/crypto/evp/p_ed25519.c',
1769 'third_party/boringssl/crypto/evp/p_ed25519_asn1.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001770 'third_party/boringssl/crypto/evp/p_rsa.c',
1771 'third_party/boringssl/crypto/evp/p_rsa_asn1.c',
1772 'third_party/boringssl/crypto/evp/pbkdf.c',
1773 'third_party/boringssl/crypto/evp/print.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001774 'third_party/boringssl/crypto/evp/scrypt.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001775 'third_party/boringssl/crypto/evp/sign.c',
1776 'third_party/boringssl/crypto/ex_data.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001777 'third_party/boringssl/crypto/fipsmodule/bcm.c',
1778 'third_party/boringssl/crypto/fipsmodule/is_fips.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001779 'third_party/boringssl/crypto/hkdf/hkdf.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001780 'third_party/boringssl/crypto/lhash/lhash.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001781 'third_party/boringssl/crypto/mem.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001782 'third_party/boringssl/crypto/obj/obj.c',
1783 'third_party/boringssl/crypto/obj/obj_xref.c',
1784 'third_party/boringssl/crypto/pem/pem_all.c',
1785 'third_party/boringssl/crypto/pem/pem_info.c',
1786 'third_party/boringssl/crypto/pem/pem_lib.c',
1787 'third_party/boringssl/crypto/pem/pem_oth.c',
1788 'third_party/boringssl/crypto/pem/pem_pk8.c',
1789 'third_party/boringssl/crypto/pem/pem_pkey.c',
1790 'third_party/boringssl/crypto/pem/pem_x509.c',
1791 'third_party/boringssl/crypto/pem/pem_xaux.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001792 'third_party/boringssl/crypto/pkcs7/pkcs7.c',
1793 'third_party/boringssl/crypto/pkcs7/pkcs7_x509.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001794 'third_party/boringssl/crypto/pkcs8/p5_pbev2.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001795 'third_party/boringssl/crypto/pkcs8/pkcs8.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001796 'third_party/boringssl/crypto/pkcs8/pkcs8_x509.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001797 'third_party/boringssl/crypto/poly1305/poly1305.c',
1798 'third_party/boringssl/crypto/poly1305/poly1305_arm.c',
1799 'third_party/boringssl/crypto/poly1305/poly1305_vec.c',
1800 'third_party/boringssl/crypto/pool/pool.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001801 'third_party/boringssl/crypto/rand_extra/deterministic.c',
1802 'third_party/boringssl/crypto/rand_extra/forkunsafe.c',
1803 'third_party/boringssl/crypto/rand_extra/fuchsia.c',
1804 'third_party/boringssl/crypto/rand_extra/rand_extra.c',
1805 'third_party/boringssl/crypto/rand_extra/windows.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001806 'third_party/boringssl/crypto/rc4/rc4.c',
1807 'third_party/boringssl/crypto/refcount_c11.c',
1808 'third_party/boringssl/crypto/refcount_lock.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001809 'third_party/boringssl/crypto/rsa_extra/rsa_asn1.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001810 'third_party/boringssl/crypto/stack/stack.c',
1811 'third_party/boringssl/crypto/thread.c',
1812 'third_party/boringssl/crypto/thread_none.c',
1813 'third_party/boringssl/crypto/thread_pthread.c',
1814 'third_party/boringssl/crypto/thread_win.c',
1815 'third_party/boringssl/crypto/x509/a_digest.c',
1816 'third_party/boringssl/crypto/x509/a_sign.c',
1817 'third_party/boringssl/crypto/x509/a_strex.c',
1818 'third_party/boringssl/crypto/x509/a_verify.c',
1819 'third_party/boringssl/crypto/x509/algorithm.c',
1820 'third_party/boringssl/crypto/x509/asn1_gen.c',
1821 'third_party/boringssl/crypto/x509/by_dir.c',
1822 'third_party/boringssl/crypto/x509/by_file.c',
1823 'third_party/boringssl/crypto/x509/i2d_pr.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001824 'third_party/boringssl/crypto/x509/rsa_pss.c',
1825 'third_party/boringssl/crypto/x509/t_crl.c',
1826 'third_party/boringssl/crypto/x509/t_req.c',
1827 'third_party/boringssl/crypto/x509/t_x509.c',
1828 'third_party/boringssl/crypto/x509/t_x509a.c',
1829 'third_party/boringssl/crypto/x509/x509.c',
1830 'third_party/boringssl/crypto/x509/x509_att.c',
1831 'third_party/boringssl/crypto/x509/x509_cmp.c',
1832 'third_party/boringssl/crypto/x509/x509_d2.c',
1833 'third_party/boringssl/crypto/x509/x509_def.c',
1834 'third_party/boringssl/crypto/x509/x509_ext.c',
1835 'third_party/boringssl/crypto/x509/x509_lu.c',
1836 'third_party/boringssl/crypto/x509/x509_obj.c',
1837 'third_party/boringssl/crypto/x509/x509_r2x.c',
1838 'third_party/boringssl/crypto/x509/x509_req.c',
1839 'third_party/boringssl/crypto/x509/x509_set.c',
1840 'third_party/boringssl/crypto/x509/x509_trs.c',
1841 'third_party/boringssl/crypto/x509/x509_txt.c',
1842 'third_party/boringssl/crypto/x509/x509_v3.c',
1843 'third_party/boringssl/crypto/x509/x509_vfy.c',
1844 'third_party/boringssl/crypto/x509/x509_vpm.c',
1845 'third_party/boringssl/crypto/x509/x509cset.c',
1846 'third_party/boringssl/crypto/x509/x509name.c',
1847 'third_party/boringssl/crypto/x509/x509rset.c',
1848 'third_party/boringssl/crypto/x509/x509spki.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001849 'third_party/boringssl/crypto/x509/x_algor.c',
1850 'third_party/boringssl/crypto/x509/x_all.c',
1851 'third_party/boringssl/crypto/x509/x_attrib.c',
1852 'third_party/boringssl/crypto/x509/x_crl.c',
1853 'third_party/boringssl/crypto/x509/x_exten.c',
1854 'third_party/boringssl/crypto/x509/x_info.c',
1855 'third_party/boringssl/crypto/x509/x_name.c',
1856 'third_party/boringssl/crypto/x509/x_pkey.c',
1857 'third_party/boringssl/crypto/x509/x_pubkey.c',
1858 'third_party/boringssl/crypto/x509/x_req.c',
1859 'third_party/boringssl/crypto/x509/x_sig.c',
1860 'third_party/boringssl/crypto/x509/x_spki.c',
1861 'third_party/boringssl/crypto/x509/x_val.c',
1862 'third_party/boringssl/crypto/x509/x_x509.c',
1863 'third_party/boringssl/crypto/x509/x_x509a.c',
1864 'third_party/boringssl/crypto/x509v3/pcy_cache.c',
1865 'third_party/boringssl/crypto/x509v3/pcy_data.c',
1866 'third_party/boringssl/crypto/x509v3/pcy_lib.c',
1867 'third_party/boringssl/crypto/x509v3/pcy_map.c',
1868 'third_party/boringssl/crypto/x509v3/pcy_node.c',
1869 'third_party/boringssl/crypto/x509v3/pcy_tree.c',
1870 'third_party/boringssl/crypto/x509v3/v3_akey.c',
1871 'third_party/boringssl/crypto/x509v3/v3_akeya.c',
1872 'third_party/boringssl/crypto/x509v3/v3_alt.c',
1873 'third_party/boringssl/crypto/x509v3/v3_bcons.c',
1874 'third_party/boringssl/crypto/x509v3/v3_bitst.c',
1875 'third_party/boringssl/crypto/x509v3/v3_conf.c',
1876 'third_party/boringssl/crypto/x509v3/v3_cpols.c',
1877 'third_party/boringssl/crypto/x509v3/v3_crld.c',
1878 'third_party/boringssl/crypto/x509v3/v3_enum.c',
1879 'third_party/boringssl/crypto/x509v3/v3_extku.c',
1880 'third_party/boringssl/crypto/x509v3/v3_genn.c',
1881 'third_party/boringssl/crypto/x509v3/v3_ia5.c',
1882 'third_party/boringssl/crypto/x509v3/v3_info.c',
1883 'third_party/boringssl/crypto/x509v3/v3_int.c',
1884 'third_party/boringssl/crypto/x509v3/v3_lib.c',
1885 'third_party/boringssl/crypto/x509v3/v3_ncons.c',
1886 'third_party/boringssl/crypto/x509v3/v3_pci.c',
1887 'third_party/boringssl/crypto/x509v3/v3_pcia.c',
1888 'third_party/boringssl/crypto/x509v3/v3_pcons.c',
1889 'third_party/boringssl/crypto/x509v3/v3_pku.c',
1890 'third_party/boringssl/crypto/x509v3/v3_pmaps.c',
1891 'third_party/boringssl/crypto/x509v3/v3_prn.c',
1892 'third_party/boringssl/crypto/x509v3/v3_purp.c',
1893 'third_party/boringssl/crypto/x509v3/v3_skey.c',
1894 'third_party/boringssl/crypto/x509v3/v3_sxnet.c',
1895 'third_party/boringssl/crypto/x509v3/v3_utl.c',
Matt Kwonga110c742017-09-22 14:31:22 -07001896 'third_party/boringssl/ssl/bio_ssl.cc',
1897 'third_party/boringssl/ssl/custom_extensions.cc',
1898 'third_party/boringssl/ssl/d1_both.cc',
1899 'third_party/boringssl/ssl/d1_lib.cc',
1900 'third_party/boringssl/ssl/d1_pkt.cc',
1901 'third_party/boringssl/ssl/d1_srtp.cc',
1902 'third_party/boringssl/ssl/dtls_method.cc',
1903 'third_party/boringssl/ssl/dtls_record.cc',
1904 'third_party/boringssl/ssl/handshake.cc',
1905 'third_party/boringssl/ssl/handshake_client.cc',
1906 'third_party/boringssl/ssl/handshake_server.cc',
1907 'third_party/boringssl/ssl/s3_both.cc',
1908 'third_party/boringssl/ssl/s3_lib.cc',
1909 'third_party/boringssl/ssl/s3_pkt.cc',
1910 'third_party/boringssl/ssl/ssl_aead_ctx.cc',
1911 'third_party/boringssl/ssl/ssl_asn1.cc',
1912 'third_party/boringssl/ssl/ssl_buffer.cc',
1913 'third_party/boringssl/ssl/ssl_cert.cc',
1914 'third_party/boringssl/ssl/ssl_cipher.cc',
1915 'third_party/boringssl/ssl/ssl_file.cc',
1916 'third_party/boringssl/ssl/ssl_key_share.cc',
1917 'third_party/boringssl/ssl/ssl_lib.cc',
1918 'third_party/boringssl/ssl/ssl_privkey.cc',
1919 'third_party/boringssl/ssl/ssl_session.cc',
1920 'third_party/boringssl/ssl/ssl_stat.cc',
1921 'third_party/boringssl/ssl/ssl_transcript.cc',
1922 'third_party/boringssl/ssl/ssl_versions.cc',
1923 'third_party/boringssl/ssl/ssl_x509.cc',
1924 'third_party/boringssl/ssl/t1_enc.cc',
1925 'third_party/boringssl/ssl/t1_lib.cc',
1926 'third_party/boringssl/ssl/tls13_both.cc',
1927 'third_party/boringssl/ssl/tls13_client.cc',
1928 'third_party/boringssl/ssl/tls13_enc.cc',
1929 'third_party/boringssl/ssl/tls13_server.cc',
1930 'third_party/boringssl/ssl/tls_method.cc',
1931 'third_party/boringssl/ssl/tls_record.cc',
Jan Tattermuschd606e362018-03-07 21:21:38 +01001932 'third_party/boringssl/third_party/fiat/curve25519.c',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001933 ],
1934 },
1935 {
1936 'target_name': 'boringssl_test_util',
1937 'type': 'static_library',
1938 'dependencies': [
1939 ],
1940 'sources': [
1941 'third_party/boringssl/crypto/test/file_test.cc',
1942 'third_party/boringssl/crypto/test/malloc.cc',
1943 'third_party/boringssl/crypto/test/test_util.cc',
1944 ],
1945 },
1946 {
Matt Kwonga110c742017-09-22 14:31:22 -07001947 'target_name': 'boringssl_crypto_test_data_lib',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001948 'type': 'static_library',
1949 'dependencies': [
1950 'boringssl_test_util',
1951 'boringssl',
1952 ],
1953 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07001954 'src/boringssl/crypto_test_data.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04001955 ],
1956 },
1957 {
1958 'target_name': 'boringssl_asn1_test_lib',
1959 'type': 'static_library',
1960 'dependencies': [
1961 'boringssl_test_util',
1962 'boringssl',
1963 ],
1964 'sources': [
1965 'third_party/boringssl/crypto/asn1/asn1_test.cc',
1966 ],
1967 },
1968 {
1969 'target_name': 'boringssl_base64_test_lib',
1970 'type': 'static_library',
1971 'dependencies': [
1972 'boringssl_test_util',
1973 'boringssl',
1974 ],
1975 'sources': [
1976 'third_party/boringssl/crypto/base64/base64_test.cc',
1977 ],
1978 },
1979 {
1980 'target_name': 'boringssl_bio_test_lib',
1981 'type': 'static_library',
1982 'dependencies': [
1983 'boringssl_test_util',
1984 'boringssl',
1985 ],
1986 'sources': [
1987 'third_party/boringssl/crypto/bio/bio_test.cc',
1988 ],
1989 },
1990 {
Jan Tattermuschd606e362018-03-07 21:21:38 +01001991 'target_name': 'boringssl_buf_test_lib',
1992 'type': 'static_library',
1993 'dependencies': [
1994 'boringssl_test_util',
1995 'boringssl',
1996 ],
1997 'sources': [
1998 'third_party/boringssl/crypto/buf/buf_test.cc',
1999 ],
2000 },
2001 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002002 'target_name': 'boringssl_bytestring_test_lib',
2003 'type': 'static_library',
2004 'dependencies': [
2005 'boringssl_test_util',
2006 'boringssl',
2007 ],
2008 'sources': [
2009 'third_party/boringssl/crypto/bytestring/bytestring_test.cc',
2010 ],
2011 },
2012 {
Matt Kwonga110c742017-09-22 14:31:22 -07002013 'target_name': 'boringssl_chacha_test_lib',
2014 'type': 'static_library',
2015 'dependencies': [
2016 'boringssl_test_util',
2017 'boringssl',
2018 ],
2019 'sources': [
2020 'third_party/boringssl/crypto/chacha/chacha_test.cc',
2021 ],
2022 },
2023 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002024 'target_name': 'boringssl_aead_test_lib',
2025 'type': 'static_library',
2026 'dependencies': [
2027 'boringssl_test_util',
2028 'boringssl',
2029 ],
2030 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002031 'third_party/boringssl/crypto/cipher_extra/aead_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002032 ],
2033 },
2034 {
2035 'target_name': 'boringssl_cipher_test_lib',
2036 'type': 'static_library',
2037 'dependencies': [
2038 'boringssl_test_util',
2039 'boringssl',
2040 ],
2041 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002042 'third_party/boringssl/crypto/cipher_extra/cipher_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002043 ],
2044 },
2045 {
2046 'target_name': 'boringssl_cmac_test_lib',
2047 'type': 'static_library',
2048 'dependencies': [
2049 'boringssl_test_util',
2050 'boringssl',
2051 ],
2052 'sources': [
2053 'third_party/boringssl/crypto/cmac/cmac_test.cc',
2054 ],
2055 },
2056 {
Matt Kwonga110c742017-09-22 14:31:22 -07002057 'target_name': 'boringssl_compiler_test_lib',
2058 'type': 'static_library',
2059 'dependencies': [
2060 'boringssl_test_util',
2061 'boringssl',
2062 ],
2063 'sources': [
2064 'third_party/boringssl/crypto/compiler_test.cc',
2065 ],
2066 },
2067 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002068 'target_name': 'boringssl_constant_time_test_lib',
2069 'type': 'static_library',
2070 'dependencies': [
2071 'boringssl_test_util',
2072 'boringssl',
2073 ],
2074 'sources': [
2075 'third_party/boringssl/crypto/constant_time_test.cc',
2076 ],
2077 },
2078 {
2079 'target_name': 'boringssl_ed25519_test_lib',
2080 'type': 'static_library',
2081 'dependencies': [
2082 'boringssl_test_util',
2083 'boringssl',
2084 ],
2085 'sources': [
2086 'third_party/boringssl/crypto/curve25519/ed25519_test.cc',
2087 ],
2088 },
2089 {
2090 'target_name': 'boringssl_spake25519_test_lib',
2091 'type': 'static_library',
2092 'dependencies': [
2093 'boringssl_test_util',
2094 'boringssl',
2095 ],
2096 'sources': [
2097 'third_party/boringssl/crypto/curve25519/spake25519_test.cc',
2098 ],
2099 },
2100 {
2101 'target_name': 'boringssl_x25519_test_lib',
2102 'type': 'static_library',
2103 'dependencies': [
2104 'boringssl_test_util',
2105 'boringssl',
2106 ],
2107 'sources': [
2108 'third_party/boringssl/crypto/curve25519/x25519_test.cc',
2109 ],
2110 },
2111 {
Matt Kwonga110c742017-09-22 14:31:22 -07002112 'target_name': 'boringssl_dh_test_lib',
2113 'type': 'static_library',
2114 'dependencies': [
2115 'boringssl_test_util',
2116 'boringssl',
2117 ],
2118 'sources': [
2119 'third_party/boringssl/crypto/dh/dh_test.cc',
2120 ],
2121 },
2122 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002123 'target_name': 'boringssl_digest_test_lib',
2124 'type': 'static_library',
2125 'dependencies': [
2126 'boringssl_test_util',
2127 'boringssl',
2128 ],
2129 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002130 'third_party/boringssl/crypto/digest_extra/digest_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002131 ],
2132 },
2133 {
Matt Kwonga110c742017-09-22 14:31:22 -07002134 'target_name': 'boringssl_dsa_test_lib',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002135 'type': 'static_library',
2136 'dependencies': [
2137 'boringssl_test_util',
2138 'boringssl',
2139 ],
2140 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002141 'third_party/boringssl/crypto/dsa/dsa_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002142 ],
2143 },
2144 {
2145 'target_name': 'boringssl_ecdh_test_lib',
2146 'type': 'static_library',
2147 'dependencies': [
2148 'boringssl_test_util',
2149 'boringssl',
2150 ],
2151 'sources': [
2152 'third_party/boringssl/crypto/ecdh/ecdh_test.cc',
2153 ],
2154 },
2155 {
Matt Kwonga110c742017-09-22 14:31:22 -07002156 'target_name': 'boringssl_err_test_lib',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002157 'type': 'static_library',
2158 'dependencies': [
2159 'boringssl_test_util',
2160 'boringssl',
2161 ],
2162 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002163 'third_party/boringssl/crypto/err/err_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002164 ],
2165 },
2166 {
2167 'target_name': 'boringssl_evp_extra_test_lib',
2168 'type': 'static_library',
2169 'dependencies': [
2170 'boringssl_test_util',
2171 'boringssl',
2172 ],
2173 'sources': [
2174 'third_party/boringssl/crypto/evp/evp_extra_test.cc',
2175 ],
2176 },
2177 {
2178 'target_name': 'boringssl_evp_test_lib',
2179 'type': 'static_library',
2180 'dependencies': [
2181 'boringssl_test_util',
2182 'boringssl',
2183 ],
2184 'sources': [
2185 'third_party/boringssl/crypto/evp/evp_test.cc',
2186 ],
2187 },
2188 {
2189 'target_name': 'boringssl_pbkdf_test_lib',
2190 'type': 'static_library',
2191 'dependencies': [
2192 'boringssl_test_util',
2193 'boringssl',
2194 ],
2195 'sources': [
2196 'third_party/boringssl/crypto/evp/pbkdf_test.cc',
2197 ],
2198 },
2199 {
Matt Kwonga110c742017-09-22 14:31:22 -07002200 'target_name': 'boringssl_scrypt_test_lib',
2201 'type': 'static_library',
2202 'dependencies': [
2203 'boringssl_test_util',
2204 'boringssl',
2205 ],
2206 'sources': [
2207 'third_party/boringssl/crypto/evp/scrypt_test.cc',
2208 ],
2209 },
2210 {
2211 'target_name': 'boringssl_aes_test_lib',
2212 'type': 'static_library',
2213 'dependencies': [
2214 'boringssl_test_util',
2215 'boringssl',
2216 ],
2217 'sources': [
2218 'third_party/boringssl/crypto/fipsmodule/aes/aes_test.cc',
2219 ],
2220 },
2221 {
2222 'target_name': 'boringssl_bn_test_lib',
2223 'type': 'static_library',
2224 'dependencies': [
2225 'boringssl_test_util',
2226 'boringssl',
2227 ],
2228 'sources': [
2229 'third_party/boringssl/crypto/fipsmodule/bn/bn_test.cc',
2230 ],
2231 },
2232 {
2233 'target_name': 'boringssl_ec_test_lib',
2234 'type': 'static_library',
2235 'dependencies': [
2236 'boringssl_test_util',
2237 'boringssl',
2238 ],
2239 'sources': [
2240 'third_party/boringssl/crypto/fipsmodule/ec/ec_test.cc',
2241 ],
2242 },
2243 {
2244 'target_name': 'boringssl_p256-x86_64_test_lib',
2245 'type': 'static_library',
2246 'dependencies': [
2247 'boringssl_test_util',
2248 'boringssl',
2249 ],
2250 'sources': [
2251 'third_party/boringssl/crypto/fipsmodule/ec/p256-x86_64_test.cc',
2252 ],
2253 },
2254 {
2255 'target_name': 'boringssl_ecdsa_test_lib',
2256 'type': 'static_library',
2257 'dependencies': [
2258 'boringssl_test_util',
2259 'boringssl',
2260 ],
2261 'sources': [
2262 'third_party/boringssl/crypto/fipsmodule/ecdsa/ecdsa_test.cc',
2263 ],
2264 },
2265 {
2266 'target_name': 'boringssl_gcm_test_lib',
2267 'type': 'static_library',
2268 'dependencies': [
2269 'boringssl_test_util',
2270 'boringssl',
2271 ],
2272 'sources': [
2273 'third_party/boringssl/crypto/fipsmodule/modes/gcm_test.cc',
2274 ],
2275 },
2276 {
2277 'target_name': 'boringssl_ctrdrbg_test_lib',
2278 'type': 'static_library',
2279 'dependencies': [
2280 'boringssl_test_util',
2281 'boringssl',
2282 ],
2283 'sources': [
2284 'third_party/boringssl/crypto/fipsmodule/rand/ctrdrbg_test.cc',
2285 ],
2286 },
2287 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002288 'target_name': 'boringssl_hkdf_test_lib',
2289 'type': 'static_library',
2290 'dependencies': [
2291 'boringssl_test_util',
2292 'boringssl',
2293 ],
2294 'sources': [
2295 'third_party/boringssl/crypto/hkdf/hkdf_test.cc',
2296 ],
2297 },
2298 {
2299 'target_name': 'boringssl_hmac_test_lib',
2300 'type': 'static_library',
2301 'dependencies': [
2302 'boringssl_test_util',
2303 'boringssl',
2304 ],
2305 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002306 'third_party/boringssl/crypto/hmac_extra/hmac_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002307 ],
2308 },
2309 {
2310 'target_name': 'boringssl_lhash_test_lib',
2311 'type': 'static_library',
2312 'dependencies': [
2313 'boringssl_test_util',
2314 'boringssl',
2315 ],
2316 'sources': [
2317 'third_party/boringssl/crypto/lhash/lhash_test.cc',
2318 ],
2319 },
2320 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002321 'target_name': 'boringssl_obj_test_lib',
2322 'type': 'static_library',
2323 'dependencies': [
2324 'boringssl_test_util',
2325 'boringssl',
2326 ],
2327 'sources': [
2328 'third_party/boringssl/crypto/obj/obj_test.cc',
2329 ],
2330 },
2331 {
Matt Kwonga110c742017-09-22 14:31:22 -07002332 'target_name': 'boringssl_pkcs7_test_lib',
2333 'type': 'static_library',
2334 'dependencies': [
2335 'boringssl_test_util',
2336 'boringssl',
2337 ],
2338 'sources': [
2339 'third_party/boringssl/crypto/pkcs7/pkcs7_test.cc',
2340 ],
2341 },
2342 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002343 'target_name': 'boringssl_pkcs12_test_lib',
2344 'type': 'static_library',
2345 'dependencies': [
2346 'boringssl_test_util',
2347 'boringssl',
2348 ],
2349 'sources': [
2350 'third_party/boringssl/crypto/pkcs8/pkcs12_test.cc',
2351 ],
2352 },
2353 {
2354 'target_name': 'boringssl_pkcs8_test_lib',
2355 'type': 'static_library',
2356 'dependencies': [
2357 'boringssl_test_util',
2358 'boringssl',
2359 ],
2360 'sources': [
2361 'third_party/boringssl/crypto/pkcs8/pkcs8_test.cc',
2362 ],
2363 },
2364 {
2365 'target_name': 'boringssl_poly1305_test_lib',
2366 'type': 'static_library',
2367 'dependencies': [
2368 'boringssl_test_util',
2369 'boringssl',
2370 ],
2371 'sources': [
2372 'third_party/boringssl/crypto/poly1305/poly1305_test.cc',
2373 ],
2374 },
2375 {
2376 'target_name': 'boringssl_pool_test_lib',
2377 'type': 'static_library',
2378 'dependencies': [
2379 'boringssl_test_util',
2380 'boringssl',
2381 ],
2382 'sources': [
2383 'third_party/boringssl/crypto/pool/pool_test.cc',
2384 ],
2385 },
2386 {
2387 'target_name': 'boringssl_refcount_test_lib',
2388 'type': 'static_library',
2389 'dependencies': [
2390 'boringssl_test_util',
2391 'boringssl',
2392 ],
2393 'sources': [
2394 'third_party/boringssl/crypto/refcount_test.cc',
2395 ],
2396 },
2397 {
Matt Kwonga110c742017-09-22 14:31:22 -07002398 'target_name': 'boringssl_rsa_test_lib',
2399 'type': 'static_library',
2400 'dependencies': [
2401 'boringssl_test_util',
2402 'boringssl',
2403 ],
2404 'sources': [
2405 'third_party/boringssl/crypto/rsa_extra/rsa_test.cc',
2406 ],
2407 },
2408 {
2409 'target_name': 'boringssl_file_test_gtest_lib',
2410 'type': 'static_library',
2411 'dependencies': [
2412 'boringssl_test_util',
2413 'boringssl',
2414 ],
2415 'sources': [
2416 'third_party/boringssl/crypto/test/file_test_gtest.cc',
2417 ],
2418 },
2419 {
2420 'target_name': 'boringssl_gtest_main_lib',
2421 'type': 'static_library',
2422 'dependencies': [
2423 'boringssl_test_util',
2424 'boringssl',
2425 ],
2426 'sources': [
2427 'third_party/boringssl/crypto/test/gtest_main.cc',
2428 ],
2429 },
2430 {
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002431 'target_name': 'boringssl_thread_test_lib',
2432 'type': 'static_library',
2433 'dependencies': [
2434 'boringssl_test_util',
2435 'boringssl',
2436 ],
2437 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002438 'third_party/boringssl/crypto/thread_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002439 ],
2440 },
2441 {
2442 'target_name': 'boringssl_x509_test_lib',
2443 'type': 'static_library',
2444 'dependencies': [
2445 'boringssl_test_util',
2446 'boringssl',
2447 ],
2448 'sources': [
2449 'third_party/boringssl/crypto/x509/x509_test.cc',
2450 ],
2451 },
2452 {
2453 'target_name': 'boringssl_tab_test_lib',
2454 'type': 'static_library',
2455 'dependencies': [
2456 'boringssl_test_util',
2457 'boringssl',
2458 ],
2459 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002460 'third_party/boringssl/crypto/x509v3/tab_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002461 ],
2462 },
2463 {
2464 'target_name': 'boringssl_v3name_test_lib',
2465 'type': 'static_library',
2466 'dependencies': [
2467 'boringssl_test_util',
2468 'boringssl',
2469 ],
2470 'sources': [
Matt Kwonga110c742017-09-22 14:31:22 -07002471 'third_party/boringssl/crypto/x509v3/v3name_test.cc',
2472 ],
2473 },
2474 {
2475 'target_name': 'boringssl_span_test_lib',
2476 'type': 'static_library',
2477 'dependencies': [
2478 'boringssl_test_util',
2479 'boringssl',
2480 ],
2481 'sources': [
2482 'third_party/boringssl/ssl/span_test.cc',
2483 ],
2484 },
2485 {
2486 'target_name': 'boringssl_ssl_test_lib',
2487 'type': 'static_library',
2488 'dependencies': [
2489 'boringssl_test_util',
2490 'boringssl',
2491 ],
2492 'sources': [
2493 'third_party/boringssl/ssl/ssl_test.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002494 ],
2495 },
2496 {
Maxim Dzobadd962612017-08-16 17:52:28 -04002497 'target_name': 'benchmark',
2498 'type': 'static_library',
2499 'dependencies': [
2500 ],
2501 'sources': [
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002502 'third_party/benchmark/src/benchmark.cc',
2503 'third_party/benchmark/src/benchmark_register.cc',
2504 'third_party/benchmark/src/colorprint.cc',
2505 'third_party/benchmark/src/commandlineflags.cc',
2506 'third_party/benchmark/src/complexity.cc',
2507 'third_party/benchmark/src/console_reporter.cc',
Ken Payson667aa2b2017-10-27 14:33:17 -07002508 'third_party/benchmark/src/counter.cc',
Maxim Dzoba22c4ae62017-08-16 22:04:08 -04002509 'third_party/benchmark/src/csv_reporter.cc',
2510 'third_party/benchmark/src/json_reporter.cc',
2511 'third_party/benchmark/src/reporter.cc',
2512 'third_party/benchmark/src/sleep.cc',
2513 'third_party/benchmark/src/string_util.cc',
2514 'third_party/benchmark/src/sysinfo.cc',
2515 'third_party/benchmark/src/timers.cc',
2516 ],
2517 },
2518 {
2519 'target_name': 'z',
2520 'type': 'static_library',
2521 'dependencies': [
2522 ],
2523 'sources': [
2524 'third_party/zlib/adler32.c',
2525 'third_party/zlib/compress.c',
2526 'third_party/zlib/crc32.c',
2527 'third_party/zlib/deflate.c',
2528 'third_party/zlib/gzclose.c',
2529 'third_party/zlib/gzlib.c',
2530 'third_party/zlib/gzread.c',
2531 'third_party/zlib/gzwrite.c',
2532 'third_party/zlib/infback.c',
2533 'third_party/zlib/inffast.c',
2534 'third_party/zlib/inflate.c',
2535 'third_party/zlib/inftrees.c',
2536 'third_party/zlib/trees.c',
2537 'third_party/zlib/uncompr.c',
2538 'third_party/zlib/zutil.c',
Maxim Dzobadd962612017-08-16 17:52:28 -04002539 ],
2540 },
2541 {
2542 'target_name': 'bad_client_test',
2543 'type': 'static_library',
2544 'dependencies': [
2545 'grpc_test_util_unsecure',
2546 'grpc_unsecure',
2547 'gpr_test_util',
2548 'gpr',
2549 ],
2550 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002551 'test/core/bad_client/bad_client.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04002552 ],
2553 },
2554 {
2555 'target_name': 'end2end_tests',
2556 'type': 'static_library',
2557 'dependencies': [
2558 'grpc_test_util',
2559 'grpc',
2560 'gpr_test_util',
2561 'gpr',
2562 ],
2563 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002564 'test/core/end2end/end2end_tests.cc',
2565 'test/core/end2end/end2end_test_utils.cc',
2566 'test/core/end2end/tests/authority_not_supported.cc',
2567 'test/core/end2end/tests/bad_hostname.cc',
2568 'test/core/end2end/tests/bad_ping.cc',
2569 'test/core/end2end/tests/binary_metadata.cc',
2570 'test/core/end2end/tests/call_creds.cc',
2571 'test/core/end2end/tests/cancel_after_accept.cc',
2572 'test/core/end2end/tests/cancel_after_client_done.cc',
2573 'test/core/end2end/tests/cancel_after_invoke.cc',
2574 'test/core/end2end/tests/cancel_after_round_trip.cc',
2575 'test/core/end2end/tests/cancel_before_invoke.cc',
2576 'test/core/end2end/tests/cancel_in_a_vacuum.cc',
2577 'test/core/end2end/tests/cancel_with_status.cc',
2578 'test/core/end2end/tests/compressed_payload.cc',
2579 'test/core/end2end/tests/connectivity.cc',
2580 'test/core/end2end/tests/default_host.cc',
2581 'test/core/end2end/tests/disappearing_server.cc',
2582 'test/core/end2end/tests/empty_batch.cc',
2583 'test/core/end2end/tests/filter_call_init_fails.cc',
2584 'test/core/end2end/tests/filter_causes_close.cc',
2585 'test/core/end2end/tests/filter_latency.cc',
Ken Paysonb3532972018-01-11 20:25:30 -08002586 'test/core/end2end/tests/filter_status_code.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002587 'test/core/end2end/tests/graceful_server_shutdown.cc',
2588 'test/core/end2end/tests/high_initial_seqno.cc',
2589 'test/core/end2end/tests/hpack_size.cc',
2590 'test/core/end2end/tests/idempotent_request.cc',
2591 'test/core/end2end/tests/invoke_large_request.cc',
2592 'test/core/end2end/tests/keepalive_timeout.cc',
2593 'test/core/end2end/tests/large_metadata.cc',
2594 'test/core/end2end/tests/load_reporting_hook.cc',
2595 'test/core/end2end/tests/max_concurrent_streams.cc',
2596 'test/core/end2end/tests/max_connection_age.cc',
2597 'test/core/end2end/tests/max_connection_idle.cc',
2598 'test/core/end2end/tests/max_message_length.cc',
2599 'test/core/end2end/tests/negative_deadline.cc',
2600 'test/core/end2end/tests/network_status_change.cc',
2601 'test/core/end2end/tests/no_logging.cc',
2602 'test/core/end2end/tests/no_op.cc',
2603 'test/core/end2end/tests/payload.cc',
2604 'test/core/end2end/tests/ping.cc',
2605 'test/core/end2end/tests/ping_pong_streaming.cc',
2606 'test/core/end2end/tests/proxy_auth.cc',
2607 'test/core/end2end/tests/registered_call.cc',
2608 'test/core/end2end/tests/request_with_flags.cc',
2609 'test/core/end2end/tests/request_with_payload.cc',
2610 'test/core/end2end/tests/resource_quota_server.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -08002611 'test/core/end2end/tests/retry.cc',
2612 'test/core/end2end/tests/retry_cancellation.cc',
2613 'test/core/end2end/tests/retry_disabled.cc',
2614 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc',
2615 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc',
2616 'test/core/end2end/tests/retry_non_retriable_status.cc',
2617 'test/core/end2end/tests/retry_recv_initial_metadata.cc',
2618 'test/core/end2end/tests/retry_recv_message.cc',
2619 'test/core/end2end/tests/retry_server_pushback_delay.cc',
2620 'test/core/end2end/tests/retry_server_pushback_disabled.cc',
2621 'test/core/end2end/tests/retry_streaming.cc',
2622 'test/core/end2end/tests/retry_streaming_after_commit.cc',
2623 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc',
2624 'test/core/end2end/tests/retry_throttled.cc',
2625 'test/core/end2end/tests/retry_too_many_attempts.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002626 'test/core/end2end/tests/server_finishes_request.cc',
2627 'test/core/end2end/tests/shutdown_finishes_calls.cc',
2628 'test/core/end2end/tests/shutdown_finishes_tags.cc',
2629 'test/core/end2end/tests/simple_cacheable_request.cc',
2630 'test/core/end2end/tests/simple_delayed_request.cc',
2631 'test/core/end2end/tests/simple_metadata.cc',
2632 'test/core/end2end/tests/simple_request.cc',
2633 'test/core/end2end/tests/stream_compression_compressed_payload.cc',
2634 'test/core/end2end/tests/stream_compression_payload.cc',
2635 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc',
2636 'test/core/end2end/tests/streaming_error_response.cc',
2637 'test/core/end2end/tests/trailing_metadata.cc',
2638 'test/core/end2end/tests/workaround_cronet_compression.cc',
2639 'test/core/end2end/tests/write_buffering.cc',
2640 'test/core/end2end/tests/write_buffering_at_end.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04002641 ],
2642 },
2643 {
2644 'target_name': 'end2end_nosec_tests',
2645 'type': 'static_library',
2646 'dependencies': [
2647 'grpc_test_util_unsecure',
2648 'grpc_unsecure',
2649 'gpr_test_util',
2650 'gpr',
2651 ],
2652 'sources': [
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002653 'test/core/end2end/end2end_nosec_tests.cc',
2654 'test/core/end2end/end2end_test_utils.cc',
2655 'test/core/end2end/tests/authority_not_supported.cc',
2656 'test/core/end2end/tests/bad_hostname.cc',
2657 'test/core/end2end/tests/bad_ping.cc',
2658 'test/core/end2end/tests/binary_metadata.cc',
2659 'test/core/end2end/tests/cancel_after_accept.cc',
2660 'test/core/end2end/tests/cancel_after_client_done.cc',
2661 'test/core/end2end/tests/cancel_after_invoke.cc',
2662 'test/core/end2end/tests/cancel_after_round_trip.cc',
2663 'test/core/end2end/tests/cancel_before_invoke.cc',
2664 'test/core/end2end/tests/cancel_in_a_vacuum.cc',
2665 'test/core/end2end/tests/cancel_with_status.cc',
2666 'test/core/end2end/tests/compressed_payload.cc',
2667 'test/core/end2end/tests/connectivity.cc',
2668 'test/core/end2end/tests/default_host.cc',
2669 'test/core/end2end/tests/disappearing_server.cc',
2670 'test/core/end2end/tests/empty_batch.cc',
2671 'test/core/end2end/tests/filter_call_init_fails.cc',
2672 'test/core/end2end/tests/filter_causes_close.cc',
2673 'test/core/end2end/tests/filter_latency.cc',
Ken Paysonb3532972018-01-11 20:25:30 -08002674 'test/core/end2end/tests/filter_status_code.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002675 'test/core/end2end/tests/graceful_server_shutdown.cc',
2676 'test/core/end2end/tests/high_initial_seqno.cc',
2677 'test/core/end2end/tests/hpack_size.cc',
2678 'test/core/end2end/tests/idempotent_request.cc',
2679 'test/core/end2end/tests/invoke_large_request.cc',
2680 'test/core/end2end/tests/keepalive_timeout.cc',
2681 'test/core/end2end/tests/large_metadata.cc',
2682 'test/core/end2end/tests/load_reporting_hook.cc',
2683 'test/core/end2end/tests/max_concurrent_streams.cc',
2684 'test/core/end2end/tests/max_connection_age.cc',
2685 'test/core/end2end/tests/max_connection_idle.cc',
2686 'test/core/end2end/tests/max_message_length.cc',
2687 'test/core/end2end/tests/negative_deadline.cc',
2688 'test/core/end2end/tests/network_status_change.cc',
2689 'test/core/end2end/tests/no_logging.cc',
2690 'test/core/end2end/tests/no_op.cc',
2691 'test/core/end2end/tests/payload.cc',
2692 'test/core/end2end/tests/ping.cc',
2693 'test/core/end2end/tests/ping_pong_streaming.cc',
2694 'test/core/end2end/tests/proxy_auth.cc',
2695 'test/core/end2end/tests/registered_call.cc',
2696 'test/core/end2end/tests/request_with_flags.cc',
2697 'test/core/end2end/tests/request_with_payload.cc',
2698 'test/core/end2end/tests/resource_quota_server.cc',
Mark D. Roth718c8342018-02-28 13:00:04 -08002699 'test/core/end2end/tests/retry.cc',
2700 'test/core/end2end/tests/retry_cancellation.cc',
2701 'test/core/end2end/tests/retry_disabled.cc',
2702 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc',
2703 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc',
2704 'test/core/end2end/tests/retry_non_retriable_status.cc',
2705 'test/core/end2end/tests/retry_recv_initial_metadata.cc',
2706 'test/core/end2end/tests/retry_recv_message.cc',
2707 'test/core/end2end/tests/retry_server_pushback_delay.cc',
2708 'test/core/end2end/tests/retry_server_pushback_disabled.cc',
2709 'test/core/end2end/tests/retry_streaming.cc',
2710 'test/core/end2end/tests/retry_streaming_after_commit.cc',
2711 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc',
2712 'test/core/end2end/tests/retry_throttled.cc',
2713 'test/core/end2end/tests/retry_too_many_attempts.cc',
Yash Tibrewal34a57d02017-10-23 15:33:21 -07002714 'test/core/end2end/tests/server_finishes_request.cc',
2715 'test/core/end2end/tests/shutdown_finishes_calls.cc',
2716 'test/core/end2end/tests/shutdown_finishes_tags.cc',
2717 'test/core/end2end/tests/simple_cacheable_request.cc',
2718 'test/core/end2end/tests/simple_delayed_request.cc',
2719 'test/core/end2end/tests/simple_metadata.cc',
2720 'test/core/end2end/tests/simple_request.cc',
2721 'test/core/end2end/tests/stream_compression_compressed_payload.cc',
2722 'test/core/end2end/tests/stream_compression_payload.cc',
2723 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc',
2724 'test/core/end2end/tests/streaming_error_response.cc',
2725 'test/core/end2end/tests/trailing_metadata.cc',
2726 'test/core/end2end/tests/workaround_cronet_compression.cc',
2727 'test/core/end2end/tests/write_buffering.cc',
2728 'test/core/end2end/tests/write_buffering_at_end.cc',
Maxim Dzobadd962612017-08-16 17:52:28 -04002729 ],
2730 },
2731 ]
2732}