1# GRPC GYP build file 2 3# This file has been automatically generated from a template file. 4# Please look at the templates directory instead. 5# This file can be regenerated from the template by running 6# tools/buildgen/generate_projects.sh 7 8# Copyright 2015 gRPC authors. 9# 10# Licensed under the Apache License, Version 2.0 (the "License"); 11# you may not use this file except in compliance with the License. 12# You may obtain a copy of the License at 13# 14# http://www.apache.org/licenses/LICENSE-2.0 15# 16# Unless required by applicable law or agreed to in writing, software 17# distributed under the License is distributed on an "AS IS" BASIS, 18# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 19# See the License for the specific language governing permissions and 20# limitations under the License. 21 22{ 23 'variables': { 24 # The openssl and zlib dependencies must be passed in as variables 25 # defined in an included gypi file, usually common.gypi. 26 'openssl_gyp_target%': 'Please Define openssl_gyp_target variable', 27 'zlib_gyp_target%': 'Please Define zlib_gyp_target variable', 28 29 'grpc_gcov%': 'false', 30 'grpc_alpine%': 'false', 31 }, 32 'target_defaults': { 33 'configurations': { 34 'Release': { 35 'cflags': [ 36 '-O2', 37 '-Wframe-larger-than=16384', 38 ], 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 '-DOSATOMIC_USE_INLINED=1', 58 '-Ithird_party/abseil-cpp', 59 '-Ithird_party/re2', 60 '-Ithird_party/upb', 61 '-Isrc/core/ext/upb-generated', 62 ], 63 'ldflags': [ 64 '-g', 65 ], 66 'cflags_c': [ 67 '-Werror', 68 '-std=c99', 69 ], 70 'cflags_cc': [ 71 '-Werror', 72 '-std=c++11', 73 ], 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', 103 '-lstdc++', 104 ], 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 '-DOSATOMIC_USE_INLINED=1', 136 '-Ithird_party/abseil-cpp', 137 '-Ithird_party/re2', 138 '-Ithird_party/upb', 139 '-Isrc/core/ext/upb-generated', 140 ], 141 'OTHER_CPLUSPLUSFLAGS': [ 142 '-g', 143 '-Wall', 144 '-Wextra', 145 '-DOSATOMIC_USE_INLINED=1', 146 '-Ithird_party/abseil-cpp', 147 '-Ithird_party/re2', 148 '-Ithird_party/upb', 149 '-Isrc/core/ext/upb-generated', 150 '-stdlib=libc++', 151 '-std=c++11', 152 '-Wno-error=deprecated-declarations', 153 ], 154 }, 155 }] 156 ] 157 }, 158 'targets': [ 159 { 160 'target_name': 'address_sorting', 161 'type': 'static_library', 162 'dependencies': [ 163 ], 164 'sources': [ 165 'third_party/address_sorting/address_sorting.c', 166 'third_party/address_sorting/address_sorting_posix.c', 167 'third_party/address_sorting/address_sorting_windows.c', 168 ], 169 }, 170 { 171 'target_name': 'end2end_nosec_tests', 172 'type': 'static_library', 173 'dependencies': [ 174 'grpc_test_util', 175 'grpc', 176 'gpr', 177 'address_sorting', 178 'upb', 179 ], 180 'sources': [ 181 'test/core/end2end/cq_verifier.cc', 182 'test/core/end2end/data/client_certs.cc', 183 'test/core/end2end/data/server1_cert.cc', 184 'test/core/end2end/data/server1_key.cc', 185 'test/core/end2end/data/test_root_cert.cc', 186 'test/core/end2end/end2end_nosec_tests.cc', 187 'test/core/end2end/end2end_test_utils.cc', 188 'test/core/end2end/fixtures/http_proxy_fixture.cc', 189 'test/core/end2end/fixtures/local_util.cc', 190 'test/core/end2end/fixtures/proxy.cc', 191 'test/core/end2end/tests/authority_not_supported.cc', 192 'test/core/end2end/tests/bad_hostname.cc', 193 'test/core/end2end/tests/bad_ping.cc', 194 'test/core/end2end/tests/binary_metadata.cc', 195 'test/core/end2end/tests/call_host_override.cc', 196 'test/core/end2end/tests/cancel_after_accept.cc', 197 'test/core/end2end/tests/cancel_after_client_done.cc', 198 'test/core/end2end/tests/cancel_after_invoke.cc', 199 'test/core/end2end/tests/cancel_after_round_trip.cc', 200 'test/core/end2end/tests/cancel_before_invoke.cc', 201 'test/core/end2end/tests/cancel_in_a_vacuum.cc', 202 'test/core/end2end/tests/cancel_with_status.cc', 203 'test/core/end2end/tests/channelz.cc', 204 'test/core/end2end/tests/client_streaming.cc', 205 'test/core/end2end/tests/compressed_payload.cc', 206 'test/core/end2end/tests/connectivity.cc', 207 'test/core/end2end/tests/default_host.cc', 208 'test/core/end2end/tests/disappearing_server.cc', 209 'test/core/end2end/tests/empty_batch.cc', 210 'test/core/end2end/tests/filter_call_init_fails.cc', 211 'test/core/end2end/tests/filter_causes_close.cc', 212 'test/core/end2end/tests/filter_context.cc', 213 'test/core/end2end/tests/filter_latency.cc', 214 'test/core/end2end/tests/filter_status_code.cc', 215 'test/core/end2end/tests/graceful_server_shutdown.cc', 216 'test/core/end2end/tests/high_initial_seqno.cc', 217 'test/core/end2end/tests/hpack_size.cc', 218 'test/core/end2end/tests/idempotent_request.cc', 219 'test/core/end2end/tests/invoke_large_request.cc', 220 'test/core/end2end/tests/keepalive_timeout.cc', 221 'test/core/end2end/tests/large_metadata.cc', 222 'test/core/end2end/tests/max_concurrent_streams.cc', 223 'test/core/end2end/tests/max_connection_age.cc', 224 'test/core/end2end/tests/max_connection_idle.cc', 225 'test/core/end2end/tests/max_message_length.cc', 226 'test/core/end2end/tests/negative_deadline.cc', 227 'test/core/end2end/tests/no_error_on_hotpath.cc', 228 'test/core/end2end/tests/no_logging.cc', 229 'test/core/end2end/tests/no_op.cc', 230 'test/core/end2end/tests/payload.cc', 231 'test/core/end2end/tests/ping.cc', 232 'test/core/end2end/tests/ping_pong_streaming.cc', 233 'test/core/end2end/tests/proxy_auth.cc', 234 'test/core/end2end/tests/registered_call.cc', 235 'test/core/end2end/tests/request_with_flags.cc', 236 'test/core/end2end/tests/request_with_payload.cc', 237 'test/core/end2end/tests/resource_quota_server.cc', 238 'test/core/end2end/tests/retry.cc', 239 'test/core/end2end/tests/retry_cancellation.cc', 240 'test/core/end2end/tests/retry_disabled.cc', 241 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc', 242 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc', 243 'test/core/end2end/tests/retry_non_retriable_status.cc', 244 'test/core/end2end/tests/retry_non_retriable_status_before_recv_trailing_metadata_started.cc', 245 'test/core/end2end/tests/retry_recv_initial_metadata.cc', 246 'test/core/end2end/tests/retry_recv_message.cc', 247 'test/core/end2end/tests/retry_server_pushback_delay.cc', 248 'test/core/end2end/tests/retry_server_pushback_disabled.cc', 249 'test/core/end2end/tests/retry_streaming.cc', 250 'test/core/end2end/tests/retry_streaming_after_commit.cc', 251 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc', 252 'test/core/end2end/tests/retry_throttled.cc', 253 'test/core/end2end/tests/retry_too_many_attempts.cc', 254 'test/core/end2end/tests/server_finishes_request.cc', 255 'test/core/end2end/tests/shutdown_finishes_calls.cc', 256 'test/core/end2end/tests/shutdown_finishes_tags.cc', 257 'test/core/end2end/tests/simple_cacheable_request.cc', 258 'test/core/end2end/tests/simple_delayed_request.cc', 259 'test/core/end2end/tests/simple_metadata.cc', 260 'test/core/end2end/tests/simple_request.cc', 261 'test/core/end2end/tests/stream_compression_compressed_payload.cc', 262 'test/core/end2end/tests/stream_compression_payload.cc', 263 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc', 264 'test/core/end2end/tests/streaming_error_response.cc', 265 'test/core/end2end/tests/trailing_metadata.cc', 266 'test/core/end2end/tests/workaround_cronet_compression.cc', 267 'test/core/end2end/tests/write_buffering.cc', 268 'test/core/end2end/tests/write_buffering_at_end.cc', 269 ], 270 }, 271 { 272 'target_name': 'end2end_tests', 273 'type': 'static_library', 274 'dependencies': [ 275 'grpc_test_util', 276 'grpc', 277 'gpr', 278 'address_sorting', 279 'upb', 280 ], 281 'sources': [ 282 'test/core/end2end/cq_verifier.cc', 283 'test/core/end2end/data/client_certs.cc', 284 'test/core/end2end/data/server1_cert.cc', 285 'test/core/end2end/data/server1_key.cc', 286 'test/core/end2end/data/test_root_cert.cc', 287 'test/core/end2end/end2end_test_utils.cc', 288 'test/core/end2end/end2end_tests.cc', 289 'test/core/end2end/fixtures/http_proxy_fixture.cc', 290 'test/core/end2end/fixtures/local_util.cc', 291 'test/core/end2end/fixtures/proxy.cc', 292 'test/core/end2end/tests/authority_not_supported.cc', 293 'test/core/end2end/tests/bad_hostname.cc', 294 'test/core/end2end/tests/bad_ping.cc', 295 'test/core/end2end/tests/binary_metadata.cc', 296 'test/core/end2end/tests/call_creds.cc', 297 'test/core/end2end/tests/call_host_override.cc', 298 'test/core/end2end/tests/cancel_after_accept.cc', 299 'test/core/end2end/tests/cancel_after_client_done.cc', 300 'test/core/end2end/tests/cancel_after_invoke.cc', 301 'test/core/end2end/tests/cancel_after_round_trip.cc', 302 'test/core/end2end/tests/cancel_before_invoke.cc', 303 'test/core/end2end/tests/cancel_in_a_vacuum.cc', 304 'test/core/end2end/tests/cancel_with_status.cc', 305 'test/core/end2end/tests/channelz.cc', 306 'test/core/end2end/tests/client_streaming.cc', 307 'test/core/end2end/tests/compressed_payload.cc', 308 'test/core/end2end/tests/connectivity.cc', 309 'test/core/end2end/tests/default_host.cc', 310 'test/core/end2end/tests/disappearing_server.cc', 311 'test/core/end2end/tests/empty_batch.cc', 312 'test/core/end2end/tests/filter_call_init_fails.cc', 313 'test/core/end2end/tests/filter_causes_close.cc', 314 'test/core/end2end/tests/filter_context.cc', 315 'test/core/end2end/tests/filter_latency.cc', 316 'test/core/end2end/tests/filter_status_code.cc', 317 'test/core/end2end/tests/graceful_server_shutdown.cc', 318 'test/core/end2end/tests/high_initial_seqno.cc', 319 'test/core/end2end/tests/hpack_size.cc', 320 'test/core/end2end/tests/idempotent_request.cc', 321 'test/core/end2end/tests/invoke_large_request.cc', 322 'test/core/end2end/tests/keepalive_timeout.cc', 323 'test/core/end2end/tests/large_metadata.cc', 324 'test/core/end2end/tests/max_concurrent_streams.cc', 325 'test/core/end2end/tests/max_connection_age.cc', 326 'test/core/end2end/tests/max_connection_idle.cc', 327 'test/core/end2end/tests/max_message_length.cc', 328 'test/core/end2end/tests/negative_deadline.cc', 329 'test/core/end2end/tests/no_error_on_hotpath.cc', 330 'test/core/end2end/tests/no_logging.cc', 331 'test/core/end2end/tests/no_op.cc', 332 'test/core/end2end/tests/payload.cc', 333 'test/core/end2end/tests/ping.cc', 334 'test/core/end2end/tests/ping_pong_streaming.cc', 335 'test/core/end2end/tests/proxy_auth.cc', 336 'test/core/end2end/tests/registered_call.cc', 337 'test/core/end2end/tests/request_with_flags.cc', 338 'test/core/end2end/tests/request_with_payload.cc', 339 'test/core/end2end/tests/resource_quota_server.cc', 340 'test/core/end2end/tests/retry.cc', 341 'test/core/end2end/tests/retry_cancellation.cc', 342 'test/core/end2end/tests/retry_disabled.cc', 343 'test/core/end2end/tests/retry_exceeds_buffer_size_in_initial_batch.cc', 344 'test/core/end2end/tests/retry_exceeds_buffer_size_in_subsequent_batch.cc', 345 'test/core/end2end/tests/retry_non_retriable_status.cc', 346 'test/core/end2end/tests/retry_non_retriable_status_before_recv_trailing_metadata_started.cc', 347 'test/core/end2end/tests/retry_recv_initial_metadata.cc', 348 'test/core/end2end/tests/retry_recv_message.cc', 349 'test/core/end2end/tests/retry_server_pushback_delay.cc', 350 'test/core/end2end/tests/retry_server_pushback_disabled.cc', 351 'test/core/end2end/tests/retry_streaming.cc', 352 'test/core/end2end/tests/retry_streaming_after_commit.cc', 353 'test/core/end2end/tests/retry_streaming_succeeds_before_replay_finished.cc', 354 'test/core/end2end/tests/retry_throttled.cc', 355 'test/core/end2end/tests/retry_too_many_attempts.cc', 356 'test/core/end2end/tests/server_finishes_request.cc', 357 'test/core/end2end/tests/shutdown_finishes_calls.cc', 358 'test/core/end2end/tests/shutdown_finishes_tags.cc', 359 'test/core/end2end/tests/simple_cacheable_request.cc', 360 'test/core/end2end/tests/simple_delayed_request.cc', 361 'test/core/end2end/tests/simple_metadata.cc', 362 'test/core/end2end/tests/simple_request.cc', 363 'test/core/end2end/tests/stream_compression_compressed_payload.cc', 364 'test/core/end2end/tests/stream_compression_payload.cc', 365 'test/core/end2end/tests/stream_compression_ping_pong_streaming.cc', 366 'test/core/end2end/tests/streaming_error_response.cc', 367 'test/core/end2end/tests/trailing_metadata.cc', 368 'test/core/end2end/tests/workaround_cronet_compression.cc', 369 'test/core/end2end/tests/write_buffering.cc', 370 'test/core/end2end/tests/write_buffering_at_end.cc', 371 ], 372 }, 373 { 374 'target_name': 'gpr', 375 'type': 'static_library', 376 'dependencies': [ 377 'absl/time:time', 378 'absl/strings:strings', 379 'absl/strings:str_format', 380 'absl/memory:memory', 381 ], 382 'sources': [ 383 'src/core/lib/gpr/alloc.cc', 384 'src/core/lib/gpr/atm.cc', 385 'src/core/lib/gpr/cpu_iphone.cc', 386 'src/core/lib/gpr/cpu_linux.cc', 387 'src/core/lib/gpr/cpu_posix.cc', 388 'src/core/lib/gpr/cpu_windows.cc', 389 'src/core/lib/gpr/env_linux.cc', 390 'src/core/lib/gpr/env_posix.cc', 391 'src/core/lib/gpr/env_windows.cc', 392 'src/core/lib/gpr/log.cc', 393 'src/core/lib/gpr/log_android.cc', 394 'src/core/lib/gpr/log_linux.cc', 395 'src/core/lib/gpr/log_posix.cc', 396 'src/core/lib/gpr/log_windows.cc', 397 'src/core/lib/gpr/murmur_hash.cc', 398 'src/core/lib/gpr/string.cc', 399 'src/core/lib/gpr/string_posix.cc', 400 'src/core/lib/gpr/string_util_windows.cc', 401 'src/core/lib/gpr/string_windows.cc', 402 'src/core/lib/gpr/sync.cc', 403 'src/core/lib/gpr/sync_abseil.cc', 404 'src/core/lib/gpr/sync_posix.cc', 405 'src/core/lib/gpr/sync_windows.cc', 406 'src/core/lib/gpr/time.cc', 407 'src/core/lib/gpr/time_posix.cc', 408 'src/core/lib/gpr/time_precise.cc', 409 'src/core/lib/gpr/time_windows.cc', 410 'src/core/lib/gpr/tls_pthread.cc', 411 'src/core/lib/gpr/tmpfile_msys.cc', 412 'src/core/lib/gpr/tmpfile_posix.cc', 413 'src/core/lib/gpr/tmpfile_windows.cc', 414 'src/core/lib/gpr/wrap_memcpy.cc', 415 'src/core/lib/gprpp/arena.cc', 416 'src/core/lib/gprpp/fork.cc', 417 'src/core/lib/gprpp/global_config_env.cc', 418 'src/core/lib/gprpp/host_port.cc', 419 'src/core/lib/gprpp/mpscq.cc', 420 'src/core/lib/gprpp/thd_posix.cc', 421 'src/core/lib/gprpp/thd_windows.cc', 422 'src/core/lib/profiling/basic_timers.cc', 423 'src/core/lib/profiling/stap_timers.cc', 424 ], 425 }, 426 { 427 'target_name': 'grpc', 428 'type': 'static_library', 429 'dependencies': [ 430 'gpr', 431 'address_sorting', 432 'upb', 433 'absl/types:optional', 434 'absl/strings:strings', 435 'absl/container:inlined_vector', 436 ], 437 'sources': [ 438 'src/core/ext/filters/census/grpc_context.cc', 439 'src/core/ext/filters/client_channel/backend_metric.cc', 440 'src/core/ext/filters/client_channel/backup_poller.cc', 441 'src/core/ext/filters/client_channel/channel_connectivity.cc', 442 'src/core/ext/filters/client_channel/client_channel.cc', 443 'src/core/ext/filters/client_channel/client_channel_channelz.cc', 444 'src/core/ext/filters/client_channel/client_channel_factory.cc', 445 'src/core/ext/filters/client_channel/client_channel_plugin.cc', 446 'src/core/ext/filters/client_channel/config_selector.cc', 447 'src/core/ext/filters/client_channel/global_subchannel_pool.cc', 448 'src/core/ext/filters/client_channel/health/health_check_client.cc', 449 'src/core/ext/filters/client_channel/http_connect_handshaker.cc', 450 'src/core/ext/filters/client_channel/http_proxy.cc', 451 'src/core/ext/filters/client_channel/lb_policy.cc', 452 'src/core/ext/filters/client_channel/lb_policy/address_filtering.cc', 453 'src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc', 454 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc', 455 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc', 456 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc', 457 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc', 458 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc', 459 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc', 460 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc', 461 'src/core/ext/filters/client_channel/lb_policy/priority/priority.cc', 462 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc', 463 'src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc', 464 'src/core/ext/filters/client_channel/lb_policy/xds/cds.cc', 465 'src/core/ext/filters/client_channel/lb_policy/xds/eds.cc', 466 'src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc', 467 'src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc', 468 'src/core/ext/filters/client_channel/lb_policy_registry.cc', 469 'src/core/ext/filters/client_channel/local_subchannel_pool.cc', 470 'src/core/ext/filters/client_channel/parse_address.cc', 471 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc', 472 'src/core/ext/filters/client_channel/resolver.cc', 473 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc', 474 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc', 475 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc', 476 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc', 477 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc', 478 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc', 479 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc', 480 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc', 481 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc', 482 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc', 483 'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc', 484 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc', 485 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc', 486 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc', 487 'src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc', 488 'src/core/ext/filters/client_channel/resolver_registry.cc', 489 'src/core/ext/filters/client_channel/resolver_result_parsing.cc', 490 'src/core/ext/filters/client_channel/resolving_lb_policy.cc', 491 'src/core/ext/filters/client_channel/retry_throttle.cc', 492 'src/core/ext/filters/client_channel/server_address.cc', 493 'src/core/ext/filters/client_channel/service_config.cc', 494 'src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc', 495 'src/core/ext/filters/client_channel/service_config_parser.cc', 496 'src/core/ext/filters/client_channel/subchannel.cc', 497 'src/core/ext/filters/client_channel/subchannel_pool_interface.cc', 498 'src/core/ext/filters/client_channel/xds/xds_api.cc', 499 'src/core/ext/filters/client_channel/xds/xds_bootstrap.cc', 500 'src/core/ext/filters/client_channel/xds/xds_channel_secure.cc', 501 'src/core/ext/filters/client_channel/xds/xds_client.cc', 502 'src/core/ext/filters/client_channel/xds/xds_client_stats.cc', 503 'src/core/ext/filters/client_idle/client_idle_filter.cc', 504 'src/core/ext/filters/deadline/deadline_filter.cc', 505 'src/core/ext/filters/http/client/http_client_filter.cc', 506 'src/core/ext/filters/http/client_authority_filter.cc', 507 'src/core/ext/filters/http/http_filters_plugin.cc', 508 'src/core/ext/filters/http/message_compress/message_compress_filter.cc', 509 'src/core/ext/filters/http/message_compress/message_decompress_filter.cc', 510 'src/core/ext/filters/http/server/http_server_filter.cc', 511 'src/core/ext/filters/max_age/max_age_filter.cc', 512 'src/core/ext/filters/message_size/message_size_filter.cc', 513 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc', 514 'src/core/ext/filters/workarounds/workaround_utils.cc', 515 'src/core/ext/transport/chttp2/alpn/alpn.cc', 516 'src/core/ext/transport/chttp2/client/authority.cc', 517 'src/core/ext/transport/chttp2/client/chttp2_connector.cc', 518 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc', 519 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc', 520 'src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc', 521 'src/core/ext/transport/chttp2/server/chttp2_server.cc', 522 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc', 523 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc', 524 'src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc', 525 'src/core/ext/transport/chttp2/transport/bin_decoder.cc', 526 'src/core/ext/transport/chttp2/transport/bin_encoder.cc', 527 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc', 528 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc', 529 'src/core/ext/transport/chttp2/transport/context_list.cc', 530 'src/core/ext/transport/chttp2/transport/flow_control.cc', 531 'src/core/ext/transport/chttp2/transport/frame_data.cc', 532 'src/core/ext/transport/chttp2/transport/frame_goaway.cc', 533 'src/core/ext/transport/chttp2/transport/frame_ping.cc', 534 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc', 535 'src/core/ext/transport/chttp2/transport/frame_settings.cc', 536 'src/core/ext/transport/chttp2/transport/frame_window_update.cc', 537 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc', 538 'src/core/ext/transport/chttp2/transport/hpack_parser.cc', 539 'src/core/ext/transport/chttp2/transport/hpack_table.cc', 540 'src/core/ext/transport/chttp2/transport/http2_settings.cc', 541 'src/core/ext/transport/chttp2/transport/huffsyms.cc', 542 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc', 543 'src/core/ext/transport/chttp2/transport/parsing.cc', 544 'src/core/ext/transport/chttp2/transport/stream_lists.cc', 545 'src/core/ext/transport/chttp2/transport/stream_map.cc', 546 'src/core/ext/transport/chttp2/transport/varint.cc', 547 'src/core/ext/transport/chttp2/transport/writing.cc', 548 'src/core/ext/transport/inproc/inproc_plugin.cc', 549 'src/core/ext/transport/inproc/inproc_transport.cc', 550 'src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c', 551 'src/core/ext/upb-generated/envoy/annotations/resource.upb.c', 552 'src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c', 553 'src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c', 554 'src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c', 555 'src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c', 556 'src/core/ext/upb-generated/envoy/api/v2/cds.upb.c', 557 'src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c', 558 'src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c', 559 'src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c', 560 'src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c', 561 'src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c', 562 'src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c', 563 'src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c', 564 'src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c', 565 'src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c', 566 'src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c', 567 'src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c', 568 'src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c', 569 'src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c', 570 'src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c', 571 'src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c', 572 'src/core/ext/upb-generated/envoy/api/v2/eds.upb.c', 573 'src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c', 574 'src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c', 575 'src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c', 576 'src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c', 577 'src/core/ext/upb-generated/envoy/api/v2/lds.upb.c', 578 'src/core/ext/upb-generated/envoy/api/v2/listener.upb.c', 579 'src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c', 580 'src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c', 581 'src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c', 582 'src/core/ext/upb-generated/envoy/api/v2/rds.upb.c', 583 'src/core/ext/upb-generated/envoy/api/v2/route.upb.c', 584 'src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c', 585 'src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c', 586 'src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c', 587 'src/core/ext/upb-generated/envoy/api/v2/srds.upb.c', 588 'src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c', 589 'src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c', 590 'src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c', 591 'src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c', 592 'src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c', 593 'src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c', 594 'src/core/ext/upb-generated/envoy/type/http.upb.c', 595 'src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c', 596 'src/core/ext/upb-generated/envoy/type/matcher/string.upb.c', 597 'src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c', 598 'src/core/ext/upb-generated/envoy/type/percent.upb.c', 599 'src/core/ext/upb-generated/envoy/type/range.upb.c', 600 'src/core/ext/upb-generated/envoy/type/semantic_version.upb.c', 601 'src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c', 602 'src/core/ext/upb-generated/gogoproto/gogo.upb.c', 603 'src/core/ext/upb-generated/google/api/annotations.upb.c', 604 'src/core/ext/upb-generated/google/api/http.upb.c', 605 'src/core/ext/upb-generated/google/protobuf/any.upb.c', 606 'src/core/ext/upb-generated/google/protobuf/descriptor.upb.c', 607 'src/core/ext/upb-generated/google/protobuf/duration.upb.c', 608 'src/core/ext/upb-generated/google/protobuf/empty.upb.c', 609 'src/core/ext/upb-generated/google/protobuf/struct.upb.c', 610 'src/core/ext/upb-generated/google/protobuf/timestamp.upb.c', 611 'src/core/ext/upb-generated/google/protobuf/wrappers.upb.c', 612 'src/core/ext/upb-generated/google/rpc/status.upb.c', 613 'src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c', 614 'src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c', 615 'src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c', 616 'src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c', 617 'src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c', 618 'src/core/ext/upb-generated/udpa/annotations/migrate.upb.c', 619 'src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c', 620 'src/core/ext/upb-generated/udpa/annotations/status.upb.c', 621 'src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c', 622 'src/core/ext/upb-generated/validate/validate.upb.c', 623 'src/core/lib/avl/avl.cc', 624 'src/core/lib/backoff/backoff.cc', 625 'src/core/lib/channel/channel_args.cc', 626 'src/core/lib/channel/channel_stack.cc', 627 'src/core/lib/channel/channel_stack_builder.cc', 628 'src/core/lib/channel/channel_trace.cc', 629 'src/core/lib/channel/channelz.cc', 630 'src/core/lib/channel/channelz_registry.cc', 631 'src/core/lib/channel/connected_channel.cc', 632 'src/core/lib/channel/handshaker.cc', 633 'src/core/lib/channel/handshaker_registry.cc', 634 'src/core/lib/channel/status_util.cc', 635 'src/core/lib/compression/compression.cc', 636 'src/core/lib/compression/compression_args.cc', 637 'src/core/lib/compression/compression_internal.cc', 638 'src/core/lib/compression/message_compress.cc', 639 'src/core/lib/compression/stream_compression.cc', 640 'src/core/lib/compression/stream_compression_gzip.cc', 641 'src/core/lib/compression/stream_compression_identity.cc', 642 'src/core/lib/debug/stats.cc', 643 'src/core/lib/debug/stats_data.cc', 644 'src/core/lib/debug/trace.cc', 645 'src/core/lib/http/format_request.cc', 646 'src/core/lib/http/httpcli.cc', 647 'src/core/lib/http/httpcli_security_connector.cc', 648 'src/core/lib/http/parser.cc', 649 'src/core/lib/iomgr/buffer_list.cc', 650 'src/core/lib/iomgr/call_combiner.cc', 651 'src/core/lib/iomgr/cfstream_handle.cc', 652 'src/core/lib/iomgr/combiner.cc', 653 'src/core/lib/iomgr/dualstack_socket_posix.cc', 654 'src/core/lib/iomgr/endpoint.cc', 655 'src/core/lib/iomgr/endpoint_cfstream.cc', 656 'src/core/lib/iomgr/endpoint_pair_posix.cc', 657 'src/core/lib/iomgr/endpoint_pair_uv.cc', 658 'src/core/lib/iomgr/endpoint_pair_windows.cc', 659 'src/core/lib/iomgr/error.cc', 660 'src/core/lib/iomgr/error_cfstream.cc', 661 'src/core/lib/iomgr/ev_apple.cc', 662 'src/core/lib/iomgr/ev_epoll1_linux.cc', 663 'src/core/lib/iomgr/ev_epollex_linux.cc', 664 'src/core/lib/iomgr/ev_poll_posix.cc', 665 'src/core/lib/iomgr/ev_posix.cc', 666 'src/core/lib/iomgr/ev_windows.cc', 667 'src/core/lib/iomgr/exec_ctx.cc', 668 'src/core/lib/iomgr/executor.cc', 669 'src/core/lib/iomgr/executor/mpmcqueue.cc', 670 'src/core/lib/iomgr/executor/threadpool.cc', 671 'src/core/lib/iomgr/fork_posix.cc', 672 'src/core/lib/iomgr/fork_windows.cc', 673 'src/core/lib/iomgr/gethostname_fallback.cc', 674 'src/core/lib/iomgr/gethostname_host_name_max.cc', 675 'src/core/lib/iomgr/gethostname_sysconf.cc', 676 'src/core/lib/iomgr/grpc_if_nametoindex_posix.cc', 677 'src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc', 678 'src/core/lib/iomgr/internal_errqueue.cc', 679 'src/core/lib/iomgr/iocp_windows.cc', 680 'src/core/lib/iomgr/iomgr.cc', 681 'src/core/lib/iomgr/iomgr_custom.cc', 682 'src/core/lib/iomgr/iomgr_internal.cc', 683 'src/core/lib/iomgr/iomgr_posix.cc', 684 'src/core/lib/iomgr/iomgr_posix_cfstream.cc', 685 'src/core/lib/iomgr/iomgr_uv.cc', 686 'src/core/lib/iomgr/iomgr_windows.cc', 687 'src/core/lib/iomgr/is_epollexclusive_available.cc', 688 'src/core/lib/iomgr/load_file.cc', 689 'src/core/lib/iomgr/lockfree_event.cc', 690 'src/core/lib/iomgr/poller/eventmanager_libuv.cc', 691 'src/core/lib/iomgr/polling_entity.cc', 692 'src/core/lib/iomgr/pollset.cc', 693 'src/core/lib/iomgr/pollset_custom.cc', 694 'src/core/lib/iomgr/pollset_set.cc', 695 'src/core/lib/iomgr/pollset_set_custom.cc', 696 'src/core/lib/iomgr/pollset_set_windows.cc', 697 'src/core/lib/iomgr/pollset_uv.cc', 698 'src/core/lib/iomgr/pollset_windows.cc', 699 'src/core/lib/iomgr/resolve_address.cc', 700 'src/core/lib/iomgr/resolve_address_custom.cc', 701 'src/core/lib/iomgr/resolve_address_posix.cc', 702 'src/core/lib/iomgr/resolve_address_windows.cc', 703 'src/core/lib/iomgr/resource_quota.cc', 704 'src/core/lib/iomgr/sockaddr_utils.cc', 705 'src/core/lib/iomgr/socket_factory_posix.cc', 706 'src/core/lib/iomgr/socket_mutator.cc', 707 'src/core/lib/iomgr/socket_utils_common_posix.cc', 708 'src/core/lib/iomgr/socket_utils_linux.cc', 709 'src/core/lib/iomgr/socket_utils_posix.cc', 710 'src/core/lib/iomgr/socket_utils_uv.cc', 711 'src/core/lib/iomgr/socket_utils_windows.cc', 712 'src/core/lib/iomgr/socket_windows.cc', 713 'src/core/lib/iomgr/tcp_client.cc', 714 'src/core/lib/iomgr/tcp_client_cfstream.cc', 715 'src/core/lib/iomgr/tcp_client_custom.cc', 716 'src/core/lib/iomgr/tcp_client_posix.cc', 717 'src/core/lib/iomgr/tcp_client_windows.cc', 718 'src/core/lib/iomgr/tcp_custom.cc', 719 'src/core/lib/iomgr/tcp_posix.cc', 720 'src/core/lib/iomgr/tcp_server.cc', 721 'src/core/lib/iomgr/tcp_server_custom.cc', 722 'src/core/lib/iomgr/tcp_server_posix.cc', 723 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc', 724 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc', 725 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc', 726 'src/core/lib/iomgr/tcp_server_windows.cc', 727 'src/core/lib/iomgr/tcp_uv.cc', 728 'src/core/lib/iomgr/tcp_windows.cc', 729 'src/core/lib/iomgr/time_averaged_stats.cc', 730 'src/core/lib/iomgr/timer.cc', 731 'src/core/lib/iomgr/timer_custom.cc', 732 'src/core/lib/iomgr/timer_generic.cc', 733 'src/core/lib/iomgr/timer_heap.cc', 734 'src/core/lib/iomgr/timer_manager.cc', 735 'src/core/lib/iomgr/timer_uv.cc', 736 'src/core/lib/iomgr/udp_server.cc', 737 'src/core/lib/iomgr/unix_sockets_posix.cc', 738 'src/core/lib/iomgr/unix_sockets_posix_noop.cc', 739 'src/core/lib/iomgr/wakeup_fd_eventfd.cc', 740 'src/core/lib/iomgr/wakeup_fd_nospecial.cc', 741 'src/core/lib/iomgr/wakeup_fd_pipe.cc', 742 'src/core/lib/iomgr/wakeup_fd_posix.cc', 743 'src/core/lib/iomgr/work_serializer.cc', 744 'src/core/lib/json/json_reader.cc', 745 'src/core/lib/json/json_writer.cc', 746 'src/core/lib/security/context/security_context.cc', 747 'src/core/lib/security/credentials/alts/alts_credentials.cc', 748 'src/core/lib/security/credentials/alts/check_gcp_environment.cc', 749 'src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc', 750 'src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc', 751 'src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc', 752 'src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc', 753 'src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc', 754 'src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc', 755 'src/core/lib/security/credentials/composite/composite_credentials.cc', 756 'src/core/lib/security/credentials/credentials.cc', 757 'src/core/lib/security/credentials/credentials_metadata.cc', 758 'src/core/lib/security/credentials/fake/fake_credentials.cc', 759 'src/core/lib/security/credentials/google_default/credentials_generic.cc', 760 'src/core/lib/security/credentials/google_default/google_default_credentials.cc', 761 'src/core/lib/security/credentials/iam/iam_credentials.cc', 762 'src/core/lib/security/credentials/jwt/json_token.cc', 763 'src/core/lib/security/credentials/jwt/jwt_credentials.cc', 764 'src/core/lib/security/credentials/jwt/jwt_verifier.cc', 765 'src/core/lib/security/credentials/local/local_credentials.cc', 766 'src/core/lib/security/credentials/oauth2/oauth2_credentials.cc', 767 'src/core/lib/security/credentials/plugin/plugin_credentials.cc', 768 'src/core/lib/security/credentials/ssl/ssl_credentials.cc', 769 'src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc', 770 'src/core/lib/security/credentials/tls/tls_credentials.cc', 771 'src/core/lib/security/security_connector/alts/alts_security_connector.cc', 772 'src/core/lib/security/security_connector/fake/fake_security_connector.cc', 773 'src/core/lib/security/security_connector/load_system_roots_fallback.cc', 774 'src/core/lib/security/security_connector/load_system_roots_linux.cc', 775 'src/core/lib/security/security_connector/local/local_security_connector.cc', 776 'src/core/lib/security/security_connector/security_connector.cc', 777 'src/core/lib/security/security_connector/ssl/ssl_security_connector.cc', 778 'src/core/lib/security/security_connector/ssl_utils.cc', 779 'src/core/lib/security/security_connector/ssl_utils_config.cc', 780 'src/core/lib/security/security_connector/tls/tls_security_connector.cc', 781 'src/core/lib/security/transport/client_auth_filter.cc', 782 'src/core/lib/security/transport/secure_endpoint.cc', 783 'src/core/lib/security/transport/security_handshaker.cc', 784 'src/core/lib/security/transport/server_auth_filter.cc', 785 'src/core/lib/security/transport/target_authority_table.cc', 786 'src/core/lib/security/transport/tsi_error.cc', 787 'src/core/lib/security/util/json_util.cc', 788 'src/core/lib/slice/b64.cc', 789 'src/core/lib/slice/percent_encoding.cc', 790 'src/core/lib/slice/slice.cc', 791 'src/core/lib/slice/slice_buffer.cc', 792 'src/core/lib/slice/slice_intern.cc', 793 'src/core/lib/slice/slice_string_helpers.cc', 794 'src/core/lib/surface/api_trace.cc', 795 'src/core/lib/surface/byte_buffer.cc', 796 'src/core/lib/surface/byte_buffer_reader.cc', 797 'src/core/lib/surface/call.cc', 798 'src/core/lib/surface/call_details.cc', 799 'src/core/lib/surface/call_log_batch.cc', 800 'src/core/lib/surface/channel.cc', 801 'src/core/lib/surface/channel_init.cc', 802 'src/core/lib/surface/channel_ping.cc', 803 'src/core/lib/surface/channel_stack_type.cc', 804 'src/core/lib/surface/completion_queue.cc', 805 'src/core/lib/surface/completion_queue_factory.cc', 806 'src/core/lib/surface/event_string.cc', 807 'src/core/lib/surface/init.cc', 808 'src/core/lib/surface/init_secure.cc', 809 'src/core/lib/surface/lame_client.cc', 810 'src/core/lib/surface/metadata_array.cc', 811 'src/core/lib/surface/server.cc', 812 'src/core/lib/surface/validate_metadata.cc', 813 'src/core/lib/surface/version.cc', 814 'src/core/lib/transport/bdp_estimator.cc', 815 'src/core/lib/transport/byte_stream.cc', 816 'src/core/lib/transport/connectivity_state.cc', 817 'src/core/lib/transport/error_utils.cc', 818 'src/core/lib/transport/metadata.cc', 819 'src/core/lib/transport/metadata_batch.cc', 820 'src/core/lib/transport/pid_controller.cc', 821 'src/core/lib/transport/static_metadata.cc', 822 'src/core/lib/transport/status_conversion.cc', 823 'src/core/lib/transport/status_metadata.cc', 824 'src/core/lib/transport/timeout_encoding.cc', 825 'src/core/lib/transport/transport.cc', 826 'src/core/lib/transport/transport_op_string.cc', 827 'src/core/lib/uri/uri_parser.cc', 828 'src/core/plugin_registry/grpc_plugin_registry.cc', 829 'src/core/tsi/alts/crypt/aes_gcm.cc', 830 'src/core/tsi/alts/crypt/gsec.cc', 831 'src/core/tsi/alts/frame_protector/alts_counter.cc', 832 'src/core/tsi/alts/frame_protector/alts_crypter.cc', 833 'src/core/tsi/alts/frame_protector/alts_frame_protector.cc', 834 'src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc', 835 'src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc', 836 'src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc', 837 'src/core/tsi/alts/frame_protector/frame_handler.cc', 838 'src/core/tsi/alts/handshaker/alts_handshaker_client.cc', 839 'src/core/tsi/alts/handshaker/alts_shared_resource.cc', 840 'src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc', 841 'src/core/tsi/alts/handshaker/alts_tsi_utils.cc', 842 'src/core/tsi/alts/handshaker/transport_security_common_api.cc', 843 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc', 844 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc', 845 'src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc', 846 'src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc', 847 'src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc', 848 'src/core/tsi/fake_transport_security.cc', 849 'src/core/tsi/local_transport_security.cc', 850 'src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc', 851 'src/core/tsi/ssl/session_cache/ssl_session_cache.cc', 852 'src/core/tsi/ssl/session_cache/ssl_session_openssl.cc', 853 'src/core/tsi/ssl_transport_security.cc', 854 'src/core/tsi/transport_security.cc', 855 'src/core/tsi/transport_security_grpc.cc', 856 ], 857 }, 858 { 859 'target_name': 'grpc_csharp_ext', 860 'type': 'static_library', 861 'dependencies': [ 862 'grpc', 863 'gpr', 864 'address_sorting', 865 'upb', 866 ], 867 'sources': [ 868 'src/csharp/ext/grpc_csharp_ext.c', 869 ], 870 }, 871 { 872 'target_name': 'grpc_test_util', 873 'type': 'static_library', 874 'dependencies': [ 875 'grpc', 876 'gpr', 877 'address_sorting', 878 'upb', 879 ], 880 'sources': [ 881 'test/core/util/cmdline.cc', 882 'test/core/util/debugger_macros.cc', 883 'test/core/util/fuzzer_util.cc', 884 'test/core/util/grpc_profiler.cc', 885 'test/core/util/histogram.cc', 886 'test/core/util/memory_counters.cc', 887 'test/core/util/mock_endpoint.cc', 888 'test/core/util/parse_hexstring.cc', 889 'test/core/util/passthru_endpoint.cc', 890 'test/core/util/port.cc', 891 'test/core/util/port_isolated_runtime_environment.cc', 892 'test/core/util/port_server_client.cc', 893 'test/core/util/reconnect_server.cc', 894 'test/core/util/slice_splitter.cc', 895 'test/core/util/subprocess_posix.cc', 896 'test/core/util/subprocess_windows.cc', 897 'test/core/util/test_config.cc', 898 'test/core/util/test_tcp_server.cc', 899 'test/core/util/tracer_util.cc', 900 'test/core/util/trickle_endpoint.cc', 901 ], 902 }, 903 { 904 'target_name': 'grpc_test_util_unsecure', 905 'type': 'static_library', 906 'dependencies': [ 907 'grpc_unsecure', 908 'gpr', 909 'address_sorting', 910 'upb', 911 ], 912 'sources': [ 913 'test/core/util/cmdline.cc', 914 'test/core/util/debugger_macros.cc', 915 'test/core/util/fuzzer_util.cc', 916 'test/core/util/grpc_profiler.cc', 917 'test/core/util/histogram.cc', 918 'test/core/util/memory_counters.cc', 919 'test/core/util/mock_endpoint.cc', 920 'test/core/util/parse_hexstring.cc', 921 'test/core/util/passthru_endpoint.cc', 922 'test/core/util/port.cc', 923 'test/core/util/port_isolated_runtime_environment.cc', 924 'test/core/util/port_server_client.cc', 925 'test/core/util/reconnect_server.cc', 926 'test/core/util/slice_splitter.cc', 927 'test/core/util/subprocess_posix.cc', 928 'test/core/util/subprocess_windows.cc', 929 'test/core/util/test_config.cc', 930 'test/core/util/test_tcp_server.cc', 931 'test/core/util/tracer_util.cc', 932 'test/core/util/trickle_endpoint.cc', 933 ], 934 }, 935 { 936 'target_name': 'grpc_unsecure', 937 'type': 'static_library', 938 'dependencies': [ 939 'gpr', 940 'address_sorting', 941 'upb', 942 'absl/types:optional', 943 'absl/strings:strings', 944 'absl/container:inlined_vector', 945 ], 946 'sources': [ 947 'src/core/ext/filters/census/grpc_context.cc', 948 'src/core/ext/filters/client_channel/backend_metric.cc', 949 'src/core/ext/filters/client_channel/backup_poller.cc', 950 'src/core/ext/filters/client_channel/channel_connectivity.cc', 951 'src/core/ext/filters/client_channel/client_channel.cc', 952 'src/core/ext/filters/client_channel/client_channel_channelz.cc', 953 'src/core/ext/filters/client_channel/client_channel_factory.cc', 954 'src/core/ext/filters/client_channel/client_channel_plugin.cc', 955 'src/core/ext/filters/client_channel/config_selector.cc', 956 'src/core/ext/filters/client_channel/global_subchannel_pool.cc', 957 'src/core/ext/filters/client_channel/health/health_check_client.cc', 958 'src/core/ext/filters/client_channel/http_connect_handshaker.cc', 959 'src/core/ext/filters/client_channel/http_proxy.cc', 960 'src/core/ext/filters/client_channel/lb_policy.cc', 961 'src/core/ext/filters/client_channel/lb_policy/address_filtering.cc', 962 'src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc', 963 'src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc', 964 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc', 965 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc', 966 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel.cc', 967 'src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc', 968 'src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc', 969 'src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc', 970 'src/core/ext/filters/client_channel/lb_policy/priority/priority.cc', 971 'src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc', 972 'src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc', 973 'src/core/ext/filters/client_channel/lb_policy/xds/cds.cc', 974 'src/core/ext/filters/client_channel/lb_policy/xds/eds.cc', 975 'src/core/ext/filters/client_channel/lb_policy/xds/lrs.cc', 976 'src/core/ext/filters/client_channel/lb_policy/xds/xds_routing.cc', 977 'src/core/ext/filters/client_channel/lb_policy_registry.cc', 978 'src/core/ext/filters/client_channel/local_subchannel_pool.cc', 979 'src/core/ext/filters/client_channel/parse_address.cc', 980 'src/core/ext/filters/client_channel/proxy_mapper_registry.cc', 981 'src/core/ext/filters/client_channel/resolver.cc', 982 'src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc', 983 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.cc', 984 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc', 985 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc', 986 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc', 987 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc', 988 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_fallback.cc', 989 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc', 990 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc', 991 'src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc', 992 'src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc', 993 'src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc', 994 'src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc', 995 'src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc', 996 'src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc', 997 'src/core/ext/filters/client_channel/resolver_registry.cc', 998 'src/core/ext/filters/client_channel/resolver_result_parsing.cc', 999 'src/core/ext/filters/client_channel/resolving_lb_policy.cc', 1000 'src/core/ext/filters/client_channel/retry_throttle.cc', 1001 'src/core/ext/filters/client_channel/server_address.cc', 1002 'src/core/ext/filters/client_channel/service_config.cc', 1003 'src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc', 1004 'src/core/ext/filters/client_channel/service_config_parser.cc', 1005 'src/core/ext/filters/client_channel/subchannel.cc', 1006 'src/core/ext/filters/client_channel/subchannel_pool_interface.cc', 1007 'src/core/ext/filters/client_channel/xds/xds_api.cc', 1008 'src/core/ext/filters/client_channel/xds/xds_bootstrap.cc', 1009 'src/core/ext/filters/client_channel/xds/xds_channel.cc', 1010 'src/core/ext/filters/client_channel/xds/xds_client.cc', 1011 'src/core/ext/filters/client_channel/xds/xds_client_stats.cc', 1012 'src/core/ext/filters/client_idle/client_idle_filter.cc', 1013 'src/core/ext/filters/deadline/deadline_filter.cc', 1014 'src/core/ext/filters/http/client/http_client_filter.cc', 1015 'src/core/ext/filters/http/client_authority_filter.cc', 1016 'src/core/ext/filters/http/http_filters_plugin.cc', 1017 'src/core/ext/filters/http/message_compress/message_compress_filter.cc', 1018 'src/core/ext/filters/http/message_compress/message_decompress_filter.cc', 1019 'src/core/ext/filters/http/server/http_server_filter.cc', 1020 'src/core/ext/filters/max_age/max_age_filter.cc', 1021 'src/core/ext/filters/message_size/message_size_filter.cc', 1022 'src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc', 1023 'src/core/ext/filters/workarounds/workaround_utils.cc', 1024 'src/core/ext/transport/chttp2/alpn/alpn.cc', 1025 'src/core/ext/transport/chttp2/client/authority.cc', 1026 'src/core/ext/transport/chttp2/client/chttp2_connector.cc', 1027 'src/core/ext/transport/chttp2/client/insecure/channel_create.cc', 1028 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc', 1029 'src/core/ext/transport/chttp2/server/chttp2_server.cc', 1030 'src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc', 1031 'src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc', 1032 'src/core/ext/transport/chttp2/transport/bin_decoder.cc', 1033 'src/core/ext/transport/chttp2/transport/bin_encoder.cc', 1034 'src/core/ext/transport/chttp2/transport/chttp2_plugin.cc', 1035 'src/core/ext/transport/chttp2/transport/chttp2_transport.cc', 1036 'src/core/ext/transport/chttp2/transport/context_list.cc', 1037 'src/core/ext/transport/chttp2/transport/flow_control.cc', 1038 'src/core/ext/transport/chttp2/transport/frame_data.cc', 1039 'src/core/ext/transport/chttp2/transport/frame_goaway.cc', 1040 'src/core/ext/transport/chttp2/transport/frame_ping.cc', 1041 'src/core/ext/transport/chttp2/transport/frame_rst_stream.cc', 1042 'src/core/ext/transport/chttp2/transport/frame_settings.cc', 1043 'src/core/ext/transport/chttp2/transport/frame_window_update.cc', 1044 'src/core/ext/transport/chttp2/transport/hpack_encoder.cc', 1045 'src/core/ext/transport/chttp2/transport/hpack_parser.cc', 1046 'src/core/ext/transport/chttp2/transport/hpack_table.cc', 1047 'src/core/ext/transport/chttp2/transport/http2_settings.cc', 1048 'src/core/ext/transport/chttp2/transport/huffsyms.cc', 1049 'src/core/ext/transport/chttp2/transport/incoming_metadata.cc', 1050 'src/core/ext/transport/chttp2/transport/parsing.cc', 1051 'src/core/ext/transport/chttp2/transport/stream_lists.cc', 1052 'src/core/ext/transport/chttp2/transport/stream_map.cc', 1053 'src/core/ext/transport/chttp2/transport/varint.cc', 1054 'src/core/ext/transport/chttp2/transport/writing.cc', 1055 'src/core/ext/transport/inproc/inproc_plugin.cc', 1056 'src/core/ext/transport/inproc/inproc_transport.cc', 1057 'src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c', 1058 'src/core/ext/upb-generated/envoy/annotations/resource.upb.c', 1059 'src/core/ext/upb-generated/envoy/api/v2/auth/cert.upb.c', 1060 'src/core/ext/upb-generated/envoy/api/v2/auth/common.upb.c', 1061 'src/core/ext/upb-generated/envoy/api/v2/auth/secret.upb.c', 1062 'src/core/ext/upb-generated/envoy/api/v2/auth/tls.upb.c', 1063 'src/core/ext/upb-generated/envoy/api/v2/cds.upb.c', 1064 'src/core/ext/upb-generated/envoy/api/v2/cluster.upb.c', 1065 'src/core/ext/upb-generated/envoy/api/v2/cluster/circuit_breaker.upb.c', 1066 'src/core/ext/upb-generated/envoy/api/v2/cluster/filter.upb.c', 1067 'src/core/ext/upb-generated/envoy/api/v2/cluster/outlier_detection.upb.c', 1068 'src/core/ext/upb-generated/envoy/api/v2/core/address.upb.c', 1069 'src/core/ext/upb-generated/envoy/api/v2/core/backoff.upb.c', 1070 'src/core/ext/upb-generated/envoy/api/v2/core/base.upb.c', 1071 'src/core/ext/upb-generated/envoy/api/v2/core/config_source.upb.c', 1072 'src/core/ext/upb-generated/envoy/api/v2/core/event_service_config.upb.c', 1073 'src/core/ext/upb-generated/envoy/api/v2/core/grpc_service.upb.c', 1074 'src/core/ext/upb-generated/envoy/api/v2/core/health_check.upb.c', 1075 'src/core/ext/upb-generated/envoy/api/v2/core/http_uri.upb.c', 1076 'src/core/ext/upb-generated/envoy/api/v2/core/protocol.upb.c', 1077 'src/core/ext/upb-generated/envoy/api/v2/core/socket_option.upb.c', 1078 'src/core/ext/upb-generated/envoy/api/v2/discovery.upb.c', 1079 'src/core/ext/upb-generated/envoy/api/v2/eds.upb.c', 1080 'src/core/ext/upb-generated/envoy/api/v2/endpoint.upb.c', 1081 'src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint.upb.c', 1082 'src/core/ext/upb-generated/envoy/api/v2/endpoint/endpoint_components.upb.c', 1083 'src/core/ext/upb-generated/envoy/api/v2/endpoint/load_report.upb.c', 1084 'src/core/ext/upb-generated/envoy/api/v2/lds.upb.c', 1085 'src/core/ext/upb-generated/envoy/api/v2/listener.upb.c', 1086 'src/core/ext/upb-generated/envoy/api/v2/listener/listener.upb.c', 1087 'src/core/ext/upb-generated/envoy/api/v2/listener/listener_components.upb.c', 1088 'src/core/ext/upb-generated/envoy/api/v2/listener/udp_listener_config.upb.c', 1089 'src/core/ext/upb-generated/envoy/api/v2/rds.upb.c', 1090 'src/core/ext/upb-generated/envoy/api/v2/route.upb.c', 1091 'src/core/ext/upb-generated/envoy/api/v2/route/route.upb.c', 1092 'src/core/ext/upb-generated/envoy/api/v2/route/route_components.upb.c', 1093 'src/core/ext/upb-generated/envoy/api/v2/scoped_route.upb.c', 1094 'src/core/ext/upb-generated/envoy/api/v2/srds.upb.c', 1095 'src/core/ext/upb-generated/envoy/config/filter/accesslog/v2/accesslog.upb.c', 1096 'src/core/ext/upb-generated/envoy/config/filter/network/http_connection_manager/v2/http_connection_manager.upb.c', 1097 'src/core/ext/upb-generated/envoy/config/listener/v2/api_listener.upb.c', 1098 'src/core/ext/upb-generated/envoy/config/trace/v2/http_tracer.upb.c', 1099 'src/core/ext/upb-generated/envoy/service/discovery/v2/ads.upb.c', 1100 'src/core/ext/upb-generated/envoy/service/load_stats/v2/lrs.upb.c', 1101 'src/core/ext/upb-generated/envoy/type/http.upb.c', 1102 'src/core/ext/upb-generated/envoy/type/matcher/regex.upb.c', 1103 'src/core/ext/upb-generated/envoy/type/matcher/string.upb.c', 1104 'src/core/ext/upb-generated/envoy/type/metadata/v2/metadata.upb.c', 1105 'src/core/ext/upb-generated/envoy/type/percent.upb.c', 1106 'src/core/ext/upb-generated/envoy/type/range.upb.c', 1107 'src/core/ext/upb-generated/envoy/type/semantic_version.upb.c', 1108 'src/core/ext/upb-generated/envoy/type/tracing/v2/custom_tag.upb.c', 1109 'src/core/ext/upb-generated/gogoproto/gogo.upb.c', 1110 'src/core/ext/upb-generated/google/api/annotations.upb.c', 1111 'src/core/ext/upb-generated/google/api/http.upb.c', 1112 'src/core/ext/upb-generated/google/protobuf/any.upb.c', 1113 'src/core/ext/upb-generated/google/protobuf/descriptor.upb.c', 1114 'src/core/ext/upb-generated/google/protobuf/duration.upb.c', 1115 'src/core/ext/upb-generated/google/protobuf/empty.upb.c', 1116 'src/core/ext/upb-generated/google/protobuf/struct.upb.c', 1117 'src/core/ext/upb-generated/google/protobuf/timestamp.upb.c', 1118 'src/core/ext/upb-generated/google/protobuf/wrappers.upb.c', 1119 'src/core/ext/upb-generated/google/rpc/status.upb.c', 1120 'src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c', 1121 'src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c', 1122 'src/core/ext/upb-generated/udpa/annotations/migrate.upb.c', 1123 'src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c', 1124 'src/core/ext/upb-generated/udpa/annotations/status.upb.c', 1125 'src/core/ext/upb-generated/udpa/data/orca/v1/orca_load_report.upb.c', 1126 'src/core/ext/upb-generated/validate/validate.upb.c', 1127 'src/core/lib/avl/avl.cc', 1128 'src/core/lib/backoff/backoff.cc', 1129 'src/core/lib/channel/channel_args.cc', 1130 'src/core/lib/channel/channel_stack.cc', 1131 'src/core/lib/channel/channel_stack_builder.cc', 1132 'src/core/lib/channel/channel_trace.cc', 1133 'src/core/lib/channel/channelz.cc', 1134 'src/core/lib/channel/channelz_registry.cc', 1135 'src/core/lib/channel/connected_channel.cc', 1136 'src/core/lib/channel/handshaker.cc', 1137 'src/core/lib/channel/handshaker_registry.cc', 1138 'src/core/lib/channel/status_util.cc', 1139 'src/core/lib/compression/compression.cc', 1140 'src/core/lib/compression/compression_args.cc', 1141 'src/core/lib/compression/compression_internal.cc', 1142 'src/core/lib/compression/message_compress.cc', 1143 'src/core/lib/compression/stream_compression.cc', 1144 'src/core/lib/compression/stream_compression_gzip.cc', 1145 'src/core/lib/compression/stream_compression_identity.cc', 1146 'src/core/lib/debug/stats.cc', 1147 'src/core/lib/debug/stats_data.cc', 1148 'src/core/lib/debug/trace.cc', 1149 'src/core/lib/http/format_request.cc', 1150 'src/core/lib/http/httpcli.cc', 1151 'src/core/lib/http/parser.cc', 1152 'src/core/lib/iomgr/buffer_list.cc', 1153 'src/core/lib/iomgr/call_combiner.cc', 1154 'src/core/lib/iomgr/cfstream_handle.cc', 1155 'src/core/lib/iomgr/combiner.cc', 1156 'src/core/lib/iomgr/dualstack_socket_posix.cc', 1157 'src/core/lib/iomgr/endpoint.cc', 1158 'src/core/lib/iomgr/endpoint_cfstream.cc', 1159 'src/core/lib/iomgr/endpoint_pair_posix.cc', 1160 'src/core/lib/iomgr/endpoint_pair_uv.cc', 1161 'src/core/lib/iomgr/endpoint_pair_windows.cc', 1162 'src/core/lib/iomgr/error.cc', 1163 'src/core/lib/iomgr/error_cfstream.cc', 1164 'src/core/lib/iomgr/ev_apple.cc', 1165 'src/core/lib/iomgr/ev_epoll1_linux.cc', 1166 'src/core/lib/iomgr/ev_epollex_linux.cc', 1167 'src/core/lib/iomgr/ev_poll_posix.cc', 1168 'src/core/lib/iomgr/ev_posix.cc', 1169 'src/core/lib/iomgr/ev_windows.cc', 1170 'src/core/lib/iomgr/exec_ctx.cc', 1171 'src/core/lib/iomgr/executor.cc', 1172 'src/core/lib/iomgr/executor/mpmcqueue.cc', 1173 'src/core/lib/iomgr/executor/threadpool.cc', 1174 'src/core/lib/iomgr/fork_posix.cc', 1175 'src/core/lib/iomgr/fork_windows.cc', 1176 'src/core/lib/iomgr/gethostname_fallback.cc', 1177 'src/core/lib/iomgr/gethostname_host_name_max.cc', 1178 'src/core/lib/iomgr/gethostname_sysconf.cc', 1179 'src/core/lib/iomgr/grpc_if_nametoindex_posix.cc', 1180 'src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc', 1181 'src/core/lib/iomgr/internal_errqueue.cc', 1182 'src/core/lib/iomgr/iocp_windows.cc', 1183 'src/core/lib/iomgr/iomgr.cc', 1184 'src/core/lib/iomgr/iomgr_custom.cc', 1185 'src/core/lib/iomgr/iomgr_internal.cc', 1186 'src/core/lib/iomgr/iomgr_posix.cc', 1187 'src/core/lib/iomgr/iomgr_posix_cfstream.cc', 1188 'src/core/lib/iomgr/iomgr_uv.cc', 1189 'src/core/lib/iomgr/iomgr_windows.cc', 1190 'src/core/lib/iomgr/is_epollexclusive_available.cc', 1191 'src/core/lib/iomgr/load_file.cc', 1192 'src/core/lib/iomgr/lockfree_event.cc', 1193 'src/core/lib/iomgr/poller/eventmanager_libuv.cc', 1194 'src/core/lib/iomgr/polling_entity.cc', 1195 'src/core/lib/iomgr/pollset.cc', 1196 'src/core/lib/iomgr/pollset_custom.cc', 1197 'src/core/lib/iomgr/pollset_set.cc', 1198 'src/core/lib/iomgr/pollset_set_custom.cc', 1199 'src/core/lib/iomgr/pollset_set_windows.cc', 1200 'src/core/lib/iomgr/pollset_uv.cc', 1201 'src/core/lib/iomgr/pollset_windows.cc', 1202 'src/core/lib/iomgr/resolve_address.cc', 1203 'src/core/lib/iomgr/resolve_address_custom.cc', 1204 'src/core/lib/iomgr/resolve_address_posix.cc', 1205 'src/core/lib/iomgr/resolve_address_windows.cc', 1206 'src/core/lib/iomgr/resource_quota.cc', 1207 'src/core/lib/iomgr/sockaddr_utils.cc', 1208 'src/core/lib/iomgr/socket_factory_posix.cc', 1209 'src/core/lib/iomgr/socket_mutator.cc', 1210 'src/core/lib/iomgr/socket_utils_common_posix.cc', 1211 'src/core/lib/iomgr/socket_utils_linux.cc', 1212 'src/core/lib/iomgr/socket_utils_posix.cc', 1213 'src/core/lib/iomgr/socket_utils_uv.cc', 1214 'src/core/lib/iomgr/socket_utils_windows.cc', 1215 'src/core/lib/iomgr/socket_windows.cc', 1216 'src/core/lib/iomgr/tcp_client.cc', 1217 'src/core/lib/iomgr/tcp_client_cfstream.cc', 1218 'src/core/lib/iomgr/tcp_client_custom.cc', 1219 'src/core/lib/iomgr/tcp_client_posix.cc', 1220 'src/core/lib/iomgr/tcp_client_windows.cc', 1221 'src/core/lib/iomgr/tcp_custom.cc', 1222 'src/core/lib/iomgr/tcp_posix.cc', 1223 'src/core/lib/iomgr/tcp_server.cc', 1224 'src/core/lib/iomgr/tcp_server_custom.cc', 1225 'src/core/lib/iomgr/tcp_server_posix.cc', 1226 'src/core/lib/iomgr/tcp_server_utils_posix_common.cc', 1227 'src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc', 1228 'src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc', 1229 'src/core/lib/iomgr/tcp_server_windows.cc', 1230 'src/core/lib/iomgr/tcp_uv.cc', 1231 'src/core/lib/iomgr/tcp_windows.cc', 1232 'src/core/lib/iomgr/time_averaged_stats.cc', 1233 'src/core/lib/iomgr/timer.cc', 1234 'src/core/lib/iomgr/timer_custom.cc', 1235 'src/core/lib/iomgr/timer_generic.cc', 1236 'src/core/lib/iomgr/timer_heap.cc', 1237 'src/core/lib/iomgr/timer_manager.cc', 1238 'src/core/lib/iomgr/timer_uv.cc', 1239 'src/core/lib/iomgr/udp_server.cc', 1240 'src/core/lib/iomgr/unix_sockets_posix.cc', 1241 'src/core/lib/iomgr/unix_sockets_posix_noop.cc', 1242 'src/core/lib/iomgr/wakeup_fd_eventfd.cc', 1243 'src/core/lib/iomgr/wakeup_fd_nospecial.cc', 1244 'src/core/lib/iomgr/wakeup_fd_pipe.cc', 1245 'src/core/lib/iomgr/wakeup_fd_posix.cc', 1246 'src/core/lib/iomgr/work_serializer.cc', 1247 'src/core/lib/json/json_reader.cc', 1248 'src/core/lib/json/json_writer.cc', 1249 'src/core/lib/slice/b64.cc', 1250 'src/core/lib/slice/percent_encoding.cc', 1251 'src/core/lib/slice/slice.cc', 1252 'src/core/lib/slice/slice_buffer.cc', 1253 'src/core/lib/slice/slice_intern.cc', 1254 'src/core/lib/slice/slice_string_helpers.cc', 1255 'src/core/lib/surface/api_trace.cc', 1256 'src/core/lib/surface/byte_buffer.cc', 1257 'src/core/lib/surface/byte_buffer_reader.cc', 1258 'src/core/lib/surface/call.cc', 1259 'src/core/lib/surface/call_details.cc', 1260 'src/core/lib/surface/call_log_batch.cc', 1261 'src/core/lib/surface/channel.cc', 1262 'src/core/lib/surface/channel_init.cc', 1263 'src/core/lib/surface/channel_ping.cc', 1264 'src/core/lib/surface/channel_stack_type.cc', 1265 'src/core/lib/surface/completion_queue.cc', 1266 'src/core/lib/surface/completion_queue_factory.cc', 1267 'src/core/lib/surface/event_string.cc', 1268 'src/core/lib/surface/init.cc', 1269 'src/core/lib/surface/init_unsecure.cc', 1270 'src/core/lib/surface/lame_client.cc', 1271 'src/core/lib/surface/metadata_array.cc', 1272 'src/core/lib/surface/server.cc', 1273 'src/core/lib/surface/validate_metadata.cc', 1274 'src/core/lib/surface/version.cc', 1275 'src/core/lib/transport/bdp_estimator.cc', 1276 'src/core/lib/transport/byte_stream.cc', 1277 'src/core/lib/transport/connectivity_state.cc', 1278 'src/core/lib/transport/error_utils.cc', 1279 'src/core/lib/transport/metadata.cc', 1280 'src/core/lib/transport/metadata_batch.cc', 1281 'src/core/lib/transport/pid_controller.cc', 1282 'src/core/lib/transport/static_metadata.cc', 1283 'src/core/lib/transport/status_conversion.cc', 1284 'src/core/lib/transport/status_metadata.cc', 1285 'src/core/lib/transport/timeout_encoding.cc', 1286 'src/core/lib/transport/transport.cc', 1287 'src/core/lib/transport/transport_op_string.cc', 1288 'src/core/lib/uri/uri_parser.cc', 1289 'src/core/plugin_registry/grpc_unsecure_plugin_registry.cc', 1290 ], 1291 }, 1292 { 1293 'target_name': 'benchmark_helpers', 1294 'type': 'static_library', 1295 'dependencies': [ 1296 'grpc_test_util_unsecure', 1297 'grpc++_unsecure', 1298 'grpc_unsecure', 1299 'grpc++_test_config', 1300 'gpr', 1301 'address_sorting', 1302 'upb', 1303 'benchmark', 1304 ], 1305 'sources': [ 1306 'src/proto/grpc/testing/echo.proto', 1307 'src/proto/grpc/testing/echo_messages.proto', 1308 'src/proto/grpc/testing/simple_messages.proto', 1309 'test/cpp/microbenchmarks/helpers.cc', 1310 ], 1311 }, 1312 { 1313 'target_name': 'grpc++', 1314 'type': 'static_library', 1315 'dependencies': [ 1316 'grpc', 1317 'gpr', 1318 'address_sorting', 1319 'upb', 1320 ], 1321 'sources': [ 1322 'src/cpp/client/channel_cc.cc', 1323 'src/cpp/client/client_callback.cc', 1324 'src/cpp/client/client_context.cc', 1325 'src/cpp/client/client_interceptor.cc', 1326 'src/cpp/client/create_channel.cc', 1327 'src/cpp/client/create_channel_internal.cc', 1328 'src/cpp/client/create_channel_posix.cc', 1329 'src/cpp/client/credentials_cc.cc', 1330 'src/cpp/client/insecure_credentials.cc', 1331 'src/cpp/client/secure_credentials.cc', 1332 'src/cpp/codegen/codegen_init.cc', 1333 'src/cpp/common/alarm.cc', 1334 'src/cpp/common/auth_property_iterator.cc', 1335 'src/cpp/common/channel_arguments.cc', 1336 'src/cpp/common/channel_filter.cc', 1337 'src/cpp/common/completion_queue_cc.cc', 1338 'src/cpp/common/core_codegen.cc', 1339 'src/cpp/common/resource_quota_cc.cc', 1340 'src/cpp/common/rpc_method.cc', 1341 'src/cpp/common/secure_auth_context.cc', 1342 'src/cpp/common/secure_channel_arguments.cc', 1343 'src/cpp/common/secure_create_auth_context.cc', 1344 'src/cpp/common/tls_credentials_options.cc', 1345 'src/cpp/common/tls_credentials_options_util.cc', 1346 'src/cpp/common/validate_service_config.cc', 1347 'src/cpp/common/version_cc.cc', 1348 'src/cpp/server/async_generic_service.cc', 1349 'src/cpp/server/channel_argument_option.cc', 1350 'src/cpp/server/create_default_thread_pool.cc', 1351 'src/cpp/server/dynamic_thread_pool.cc', 1352 'src/cpp/server/external_connection_acceptor_impl.cc', 1353 'src/cpp/server/health/default_health_check_service.cc', 1354 'src/cpp/server/health/health_check_service.cc', 1355 'src/cpp/server/health/health_check_service_server_builder_option.cc', 1356 'src/cpp/server/insecure_server_credentials.cc', 1357 'src/cpp/server/secure_server_credentials.cc', 1358 'src/cpp/server/server_builder.cc', 1359 'src/cpp/server/server_callback.cc', 1360 'src/cpp/server/server_cc.cc', 1361 'src/cpp/server/server_context.cc', 1362 'src/cpp/server/server_credentials.cc', 1363 'src/cpp/server/server_posix.cc', 1364 'src/cpp/thread_manager/thread_manager.cc', 1365 'src/cpp/util/byte_buffer_cc.cc', 1366 'src/cpp/util/status.cc', 1367 'src/cpp/util/string_ref.cc', 1368 'src/cpp/util/time_cc.cc', 1369 ], 1370 }, 1371 { 1372 'target_name': 'grpc++_alts', 1373 'type': 'static_library', 1374 'dependencies': [ 1375 'grpc++', 1376 'grpc', 1377 'gpr', 1378 'address_sorting', 1379 'upb', 1380 ], 1381 'sources': [ 1382 'src/cpp/common/alts_context.cc', 1383 'src/cpp/common/alts_util.cc', 1384 ], 1385 }, 1386 { 1387 'target_name': 'grpc++_error_details', 1388 'type': 'static_library', 1389 'dependencies': [ 1390 'grpc++', 1391 'grpc', 1392 'gpr', 1393 'address_sorting', 1394 'upb', 1395 ], 1396 'sources': [ 1397 'src/proto/grpc/status/status.proto', 1398 'src/cpp/util/error_details.cc', 1399 ], 1400 }, 1401 { 1402 'target_name': 'grpc++_reflection', 1403 'type': 'static_library', 1404 'dependencies': [ 1405 'grpc++', 1406 'grpc', 1407 'gpr', 1408 'address_sorting', 1409 'upb', 1410 ], 1411 'sources': [ 1412 'src/proto/grpc/reflection/v1alpha/reflection.proto', 1413 'src/cpp/ext/proto_server_reflection.cc', 1414 'src/cpp/ext/proto_server_reflection_plugin.cc', 1415 ], 1416 }, 1417 { 1418 'target_name': 'grpc++_test', 1419 'type': 'static_library', 1420 'dependencies': [ 1421 'grpc++', 1422 'grpc', 1423 'gpr', 1424 'address_sorting', 1425 'upb', 1426 ], 1427 'sources': [ 1428 'src/cpp/client/channel_test_peer.cc', 1429 ], 1430 }, 1431 { 1432 'target_name': 'grpc++_test_config', 1433 'type': 'static_library', 1434 'dependencies': [ 1435 'gpr', 1436 ], 1437 'sources': [ 1438 'test/cpp/util/test_config_cc.cc', 1439 ], 1440 }, 1441 { 1442 'target_name': 'grpc++_test_util', 1443 'type': 'static_library', 1444 'dependencies': [ 1445 'grpc_test_util', 1446 'grpc++', 1447 'grpc', 1448 'gpr', 1449 'address_sorting', 1450 'upb', 1451 ], 1452 'sources': [ 1453 'test/core/end2end/data/client_certs.cc', 1454 'test/core/end2end/data/server1_cert.cc', 1455 'test/core/end2end/data/server1_key.cc', 1456 'test/core/end2end/data/test_root_cert.cc', 1457 'test/cpp/util/byte_buffer_proto_helper.cc', 1458 'test/cpp/util/create_test_channel.cc', 1459 'test/cpp/util/string_ref_helper.cc', 1460 'test/cpp/util/subprocess.cc', 1461 'test/cpp/util/test_credentials_provider.cc', 1462 ], 1463 }, 1464 { 1465 'target_name': 'grpc++_unsecure', 1466 'type': 'static_library', 1467 'dependencies': [ 1468 'grpc_unsecure', 1469 'gpr', 1470 'address_sorting', 1471 'upb', 1472 ], 1473 'sources': [ 1474 'src/cpp/client/channel_cc.cc', 1475 'src/cpp/client/client_callback.cc', 1476 'src/cpp/client/client_context.cc', 1477 'src/cpp/client/client_interceptor.cc', 1478 'src/cpp/client/create_channel.cc', 1479 'src/cpp/client/create_channel_internal.cc', 1480 'src/cpp/client/create_channel_posix.cc', 1481 'src/cpp/client/credentials_cc.cc', 1482 'src/cpp/client/insecure_credentials.cc', 1483 'src/cpp/codegen/codegen_init.cc', 1484 'src/cpp/common/alarm.cc', 1485 'src/cpp/common/channel_arguments.cc', 1486 'src/cpp/common/channel_filter.cc', 1487 'src/cpp/common/completion_queue_cc.cc', 1488 'src/cpp/common/core_codegen.cc', 1489 'src/cpp/common/insecure_create_auth_context.cc', 1490 'src/cpp/common/resource_quota_cc.cc', 1491 'src/cpp/common/rpc_method.cc', 1492 'src/cpp/common/validate_service_config.cc', 1493 'src/cpp/common/version_cc.cc', 1494 'src/cpp/server/async_generic_service.cc', 1495 'src/cpp/server/channel_argument_option.cc', 1496 'src/cpp/server/create_default_thread_pool.cc', 1497 'src/cpp/server/dynamic_thread_pool.cc', 1498 'src/cpp/server/external_connection_acceptor_impl.cc', 1499 'src/cpp/server/health/default_health_check_service.cc', 1500 'src/cpp/server/health/health_check_service.cc', 1501 'src/cpp/server/health/health_check_service_server_builder_option.cc', 1502 'src/cpp/server/insecure_server_credentials.cc', 1503 'src/cpp/server/server_builder.cc', 1504 'src/cpp/server/server_callback.cc', 1505 'src/cpp/server/server_cc.cc', 1506 'src/cpp/server/server_context.cc', 1507 'src/cpp/server/server_credentials.cc', 1508 'src/cpp/server/server_posix.cc', 1509 'src/cpp/thread_manager/thread_manager.cc', 1510 'src/cpp/util/byte_buffer_cc.cc', 1511 'src/cpp/util/status.cc', 1512 'src/cpp/util/string_ref.cc', 1513 'src/cpp/util/time_cc.cc', 1514 ], 1515 }, 1516 { 1517 'target_name': 'grpc_plugin_support', 1518 'type': 'static_library', 1519 'dependencies': [ 1520 ], 1521 'sources': [ 1522 'src/compiler/cpp_generator.cc', 1523 'src/compiler/csharp_generator.cc', 1524 'src/compiler/node_generator.cc', 1525 'src/compiler/objective_c_generator.cc', 1526 'src/compiler/php_generator.cc', 1527 'src/compiler/python_generator.cc', 1528 'src/compiler/ruby_generator.cc', 1529 ], 1530 }, 1531 { 1532 'target_name': 'grpcpp_channelz', 1533 'type': 'static_library', 1534 'dependencies': [ 1535 'grpc++', 1536 'grpc', 1537 'gpr', 1538 'address_sorting', 1539 'upb', 1540 ], 1541 'sources': [ 1542 'src/proto/grpc/channelz/channelz.proto', 1543 'src/cpp/server/channelz/channelz_service.cc', 1544 'src/cpp/server/channelz/channelz_service_plugin.cc', 1545 ], 1546 }, 1547 { 1548 'target_name': 'boringssl', 1549 'type': 'static_library', 1550 'dependencies': [ 1551 ], 1552 'sources': [ 1553 'third_party/boringssl-with-bazel/err_data.c', 1554 'third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c', 1555 'third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c', 1556 'third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c', 1557 'third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c', 1558 'third_party/boringssl-with-bazel/src/crypto/asn1/a_enum.c', 1559 'third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c', 1560 'third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c', 1561 'third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c', 1562 'third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c', 1563 'third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c', 1564 'third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c', 1565 'third_party/boringssl-with-bazel/src/crypto/asn1/a_print.c', 1566 'third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c', 1567 'third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c', 1568 'third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c', 1569 'third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c', 1570 'third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c', 1571 'third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c', 1572 'third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c', 1573 'third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c', 1574 'third_party/boringssl-with-bazel/src/crypto/asn1/f_enum.c', 1575 'third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c', 1576 'third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c', 1577 'third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c', 1578 'third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c', 1579 'third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c', 1580 'third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c', 1581 'third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c', 1582 'third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c', 1583 'third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c', 1584 'third_party/boringssl-with-bazel/src/crypto/base64/base64.c', 1585 'third_party/boringssl-with-bazel/src/crypto/bio/bio.c', 1586 'third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c', 1587 'third_party/boringssl-with-bazel/src/crypto/bio/connect.c', 1588 'third_party/boringssl-with-bazel/src/crypto/bio/fd.c', 1589 'third_party/boringssl-with-bazel/src/crypto/bio/file.c', 1590 'third_party/boringssl-with-bazel/src/crypto/bio/hexdump.c', 1591 'third_party/boringssl-with-bazel/src/crypto/bio/pair.c', 1592 'third_party/boringssl-with-bazel/src/crypto/bio/printf.c', 1593 'third_party/boringssl-with-bazel/src/crypto/bio/socket.c', 1594 'third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c', 1595 'third_party/boringssl-with-bazel/src/crypto/bn_extra/bn_asn1.c', 1596 'third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c', 1597 'third_party/boringssl-with-bazel/src/crypto/buf/buf.c', 1598 'third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c', 1599 'third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c', 1600 'third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c', 1601 'third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c', 1602 'third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c', 1603 'third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c', 1604 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c', 1605 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c', 1606 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesccm.c', 1607 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c', 1608 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c', 1609 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c', 1610 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c', 1611 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c', 1612 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c', 1613 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c', 1614 'third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c', 1615 'third_party/boringssl-with-bazel/src/crypto/cmac/cmac.c', 1616 'third_party/boringssl-with-bazel/src/crypto/conf/conf.c', 1617 'third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-fuchsia.c', 1618 'third_party/boringssl-with-bazel/src/crypto/cpu-aarch64-linux.c', 1619 'third_party/boringssl-with-bazel/src/crypto/cpu-arm-linux.c', 1620 'third_party/boringssl-with-bazel/src/crypto/cpu-arm.c', 1621 'third_party/boringssl-with-bazel/src/crypto/cpu-intel.c', 1622 'third_party/boringssl-with-bazel/src/crypto/cpu-ppc64le.c', 1623 'third_party/boringssl-with-bazel/src/crypto/crypto.c', 1624 'third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c', 1625 'third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c', 1626 'third_party/boringssl-with-bazel/src/crypto/dh/check.c', 1627 'third_party/boringssl-with-bazel/src/crypto/dh/dh.c', 1628 'third_party/boringssl-with-bazel/src/crypto/dh/dh_asn1.c', 1629 'third_party/boringssl-with-bazel/src/crypto/dh/params.c', 1630 'third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c', 1631 'third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c', 1632 'third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c', 1633 'third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c', 1634 'third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c', 1635 'third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c', 1636 'third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c', 1637 'third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c', 1638 'third_party/boringssl-with-bazel/src/crypto/engine/engine.c', 1639 'third_party/boringssl-with-bazel/src/crypto/err/err.c', 1640 'third_party/boringssl-with-bazel/src/crypto/evp/digestsign.c', 1641 'third_party/boringssl-with-bazel/src/crypto/evp/evp.c', 1642 'third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c', 1643 'third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c', 1644 'third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c', 1645 'third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c', 1646 'third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c', 1647 'third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c', 1648 'third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c', 1649 'third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c', 1650 'third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c', 1651 'third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c', 1652 'third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c', 1653 'third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c', 1654 'third_party/boringssl-with-bazel/src/crypto/evp/print.c', 1655 'third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c', 1656 'third_party/boringssl-with-bazel/src/crypto/evp/sign.c', 1657 'third_party/boringssl-with-bazel/src/crypto/ex_data.c', 1658 'third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c', 1659 'third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c', 1660 'third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c', 1661 'third_party/boringssl-with-bazel/src/crypto/hkdf/hkdf.c', 1662 'third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c', 1663 'third_party/boringssl-with-bazel/src/crypto/lhash/lhash.c', 1664 'third_party/boringssl-with-bazel/src/crypto/mem.c', 1665 'third_party/boringssl-with-bazel/src/crypto/obj/obj.c', 1666 'third_party/boringssl-with-bazel/src/crypto/obj/obj_xref.c', 1667 'third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c', 1668 'third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c', 1669 'third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c', 1670 'third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c', 1671 'third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c', 1672 'third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c', 1673 'third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c', 1674 'third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c', 1675 'third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7.c', 1676 'third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c', 1677 'third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c', 1678 'third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c', 1679 'third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c', 1680 'third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c', 1681 'third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c', 1682 'third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c', 1683 'third_party/boringssl-with-bazel/src/crypto/pool/pool.c', 1684 'third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c', 1685 'third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c', 1686 'third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c', 1687 'third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c', 1688 'third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c', 1689 'third_party/boringssl-with-bazel/src/crypto/rc4/rc4.c', 1690 'third_party/boringssl-with-bazel/src/crypto/refcount_c11.c', 1691 'third_party/boringssl-with-bazel/src/crypto/refcount_lock.c', 1692 'third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c', 1693 'third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_print.c', 1694 'third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c', 1695 'third_party/boringssl-with-bazel/src/crypto/stack/stack.c', 1696 'third_party/boringssl-with-bazel/src/crypto/thread.c', 1697 'third_party/boringssl-with-bazel/src/crypto/thread_none.c', 1698 'third_party/boringssl-with-bazel/src/crypto/thread_pthread.c', 1699 'third_party/boringssl-with-bazel/src/crypto/thread_win.c', 1700 'third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c', 1701 'third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c', 1702 'third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c', 1703 'third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c', 1704 'third_party/boringssl-with-bazel/src/crypto/x509/a_strex.c', 1705 'third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c', 1706 'third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c', 1707 'third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c', 1708 'third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c', 1709 'third_party/boringssl-with-bazel/src/crypto/x509/by_file.c', 1710 'third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c', 1711 'third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c', 1712 'third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c', 1713 'third_party/boringssl-with-bazel/src/crypto/x509/t_req.c', 1714 'third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c', 1715 'third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c', 1716 'third_party/boringssl-with-bazel/src/crypto/x509/x509.c', 1717 'third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c', 1718 'third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c', 1719 'third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c', 1720 'third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c', 1721 'third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c', 1722 'third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c', 1723 'third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c', 1724 'third_party/boringssl-with-bazel/src/crypto/x509/x509_r2x.c', 1725 'third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c', 1726 'third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c', 1727 'third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c', 1728 'third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c', 1729 'third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c', 1730 'third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c', 1731 'third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c', 1732 'third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c', 1733 'third_party/boringssl-with-bazel/src/crypto/x509/x509name.c', 1734 'third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c', 1735 'third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c', 1736 'third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c', 1737 'third_party/boringssl-with-bazel/src/crypto/x509/x_all.c', 1738 'third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c', 1739 'third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c', 1740 'third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c', 1741 'third_party/boringssl-with-bazel/src/crypto/x509/x_info.c', 1742 'third_party/boringssl-with-bazel/src/crypto/x509/x_name.c', 1743 'third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c', 1744 'third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c', 1745 'third_party/boringssl-with-bazel/src/crypto/x509/x_req.c', 1746 'third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c', 1747 'third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c', 1748 'third_party/boringssl-with-bazel/src/crypto/x509/x_val.c', 1749 'third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c', 1750 'third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c', 1751 'third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c', 1752 'third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c', 1753 'third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c', 1754 'third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c', 1755 'third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c', 1756 'third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c', 1757 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c', 1758 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c', 1759 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c', 1760 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c', 1761 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c', 1762 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c', 1763 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c', 1764 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c', 1765 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c', 1766 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c', 1767 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c', 1768 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c', 1769 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c', 1770 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c', 1771 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c', 1772 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c', 1773 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c', 1774 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c', 1775 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c', 1776 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c', 1777 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pku.c', 1778 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c', 1779 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c', 1780 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c', 1781 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c', 1782 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_sxnet.c', 1783 'third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c', 1784 'third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc', 1785 'third_party/boringssl-with-bazel/src/ssl/d1_both.cc', 1786 'third_party/boringssl-with-bazel/src/ssl/d1_lib.cc', 1787 'third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc', 1788 'third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc', 1789 'third_party/boringssl-with-bazel/src/ssl/dtls_method.cc', 1790 'third_party/boringssl-with-bazel/src/ssl/dtls_record.cc', 1791 'third_party/boringssl-with-bazel/src/ssl/handoff.cc', 1792 'third_party/boringssl-with-bazel/src/ssl/handshake.cc', 1793 'third_party/boringssl-with-bazel/src/ssl/handshake_client.cc', 1794 'third_party/boringssl-with-bazel/src/ssl/handshake_server.cc', 1795 'third_party/boringssl-with-bazel/src/ssl/s3_both.cc', 1796 'third_party/boringssl-with-bazel/src/ssl/s3_lib.cc', 1797 'third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc', 1798 'third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc', 1799 'third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc', 1800 'third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc', 1801 'third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc', 1802 'third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc', 1803 'third_party/boringssl-with-bazel/src/ssl/ssl_file.cc', 1804 'third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc', 1805 'third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc', 1806 'third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc', 1807 'third_party/boringssl-with-bazel/src/ssl/ssl_session.cc', 1808 'third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc', 1809 'third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc', 1810 'third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc', 1811 'third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc', 1812 'third_party/boringssl-with-bazel/src/ssl/t1_enc.cc', 1813 'third_party/boringssl-with-bazel/src/ssl/t1_lib.cc', 1814 'third_party/boringssl-with-bazel/src/ssl/tls13_both.cc', 1815 'third_party/boringssl-with-bazel/src/ssl/tls13_client.cc', 1816 'third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc', 1817 'third_party/boringssl-with-bazel/src/ssl/tls13_server.cc', 1818 'third_party/boringssl-with-bazel/src/ssl/tls_method.cc', 1819 'third_party/boringssl-with-bazel/src/ssl/tls_record.cc', 1820 ], 1821 }, 1822 { 1823 'target_name': 'boringssl_test_util', 1824 'type': 'static_library', 1825 'dependencies': [ 1826 ], 1827 'sources': [ 1828 'third_party/boringssl-with-bazel/src/crypto/test/file_test.cc', 1829 'third_party/boringssl-with-bazel/src/crypto/test/malloc.cc', 1830 'third_party/boringssl-with-bazel/src/crypto/test/test_util.cc', 1831 'third_party/boringssl-with-bazel/src/crypto/test/wycheproof_util.cc', 1832 ], 1833 }, 1834 { 1835 'target_name': 'benchmark', 1836 'type': 'static_library', 1837 'dependencies': [ 1838 ], 1839 'sources': [ 1840 'third_party/benchmark/src/benchmark.cc', 1841 'third_party/benchmark/src/benchmark_api_internal.cc', 1842 'third_party/benchmark/src/benchmark_main.cc', 1843 'third_party/benchmark/src/benchmark_name.cc', 1844 'third_party/benchmark/src/benchmark_register.cc', 1845 'third_party/benchmark/src/benchmark_runner.cc', 1846 'third_party/benchmark/src/colorprint.cc', 1847 'third_party/benchmark/src/commandlineflags.cc', 1848 'third_party/benchmark/src/complexity.cc', 1849 'third_party/benchmark/src/console_reporter.cc', 1850 'third_party/benchmark/src/counter.cc', 1851 'third_party/benchmark/src/csv_reporter.cc', 1852 'third_party/benchmark/src/json_reporter.cc', 1853 'third_party/benchmark/src/reporter.cc', 1854 'third_party/benchmark/src/sleep.cc', 1855 'third_party/benchmark/src/statistics.cc', 1856 'third_party/benchmark/src/string_util.cc', 1857 'third_party/benchmark/src/sysinfo.cc', 1858 'third_party/benchmark/src/timers.cc', 1859 ], 1860 }, 1861 { 1862 'target_name': 're2', 1863 'type': 'static_library', 1864 'dependencies': [ 1865 ], 1866 'sources': [ 1867 'third_party/re2/re2/bitstate.cc', 1868 'third_party/re2/re2/compile.cc', 1869 'third_party/re2/re2/dfa.cc', 1870 'third_party/re2/re2/filtered_re2.cc', 1871 'third_party/re2/re2/mimics_pcre.cc', 1872 'third_party/re2/re2/nfa.cc', 1873 'third_party/re2/re2/onepass.cc', 1874 'third_party/re2/re2/parse.cc', 1875 'third_party/re2/re2/perl_groups.cc', 1876 'third_party/re2/re2/prefilter.cc', 1877 'third_party/re2/re2/prefilter_tree.cc', 1878 'third_party/re2/re2/prog.cc', 1879 'third_party/re2/re2/re2.cc', 1880 'third_party/re2/re2/regexp.cc', 1881 'third_party/re2/re2/set.cc', 1882 'third_party/re2/re2/simplify.cc', 1883 'third_party/re2/re2/stringpiece.cc', 1884 'third_party/re2/re2/tostring.cc', 1885 'third_party/re2/re2/unicode_casefold.cc', 1886 'third_party/re2/re2/unicode_groups.cc', 1887 'third_party/re2/util/pcre.cc', 1888 'third_party/re2/util/rune.cc', 1889 'third_party/re2/util/strutil.cc', 1890 ], 1891 }, 1892 { 1893 'target_name': 'upb', 1894 'type': 'static_library', 1895 'dependencies': [ 1896 ], 1897 'sources': [ 1898 'third_party/upb/upb/decode.c', 1899 'third_party/upb/upb/encode.c', 1900 'third_party/upb/upb/msg.c', 1901 'third_party/upb/upb/port.c', 1902 'third_party/upb/upb/table.c', 1903 'third_party/upb/upb/upb.c', 1904 ], 1905 }, 1906 { 1907 'target_name': 'z', 1908 'type': 'static_library', 1909 'dependencies': [ 1910 ], 1911 'sources': [ 1912 'third_party/zlib/adler32.c', 1913 'third_party/zlib/compress.c', 1914 'third_party/zlib/crc32.c', 1915 'third_party/zlib/deflate.c', 1916 'third_party/zlib/gzclose.c', 1917 'third_party/zlib/gzlib.c', 1918 'third_party/zlib/gzread.c', 1919 'third_party/zlib/gzwrite.c', 1920 'third_party/zlib/infback.c', 1921 'third_party/zlib/inffast.c', 1922 'third_party/zlib/inflate.c', 1923 'third_party/zlib/inftrees.c', 1924 'third_party/zlib/trees.c', 1925 'third_party/zlib/uncompr.c', 1926 'third_party/zlib/zutil.c', 1927 ], 1928 }, 1929 ] 1930} 1931