blob: 4f87fbf5c6b9f66be16de8851728e26a117021ed [file] [log] [blame]
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/buildflag_header.gni")
import("//build/config/chromecast_build.gni")
import("//build/config/compiler/compiler.gni")
import("//build/config/crypto.gni")
import("//build/config/features.gni")
import("//build/config/ui.gni")
import("//net/features.gni")
import("//testing/libfuzzer/fuzzer_test.gni")
import("//testing/test.gni")
import("//third_party/icu/config.gni")
import("//third_party/protobuf/proto_library.gni")
import("//tools/grit/grit_rule.gni")
import("//url/features.gni")
if (!is_proto_quic) {
import("//v8/gni/v8.gni")
}
if (is_android) {
import("//build/config/android/config.gni")
import("//build/config/android/rules.gni")
} else if (is_mac) {
import("//build/config/mac/mac_sdk.gni")
}
# The way the cache uses mmap() is inefficient on some Android devices. If
# this flag is set, we hackily avoid using mmap() in the disk cache. We are
# pretty confident that mmap-ing the index would not hurt any existing x86
# android devices, but we cannot be so sure about the variety of ARM devices.
# So enable it for x86 only for now.
posix_avoid_mmap = is_android && current_cpu != "x86"
use_v8_in_net = !is_ios && !is_proto_quic
enable_built_in_dns = !is_ios && !is_proto_quic
# Unix sockets are not supported on iOS or NaCl.
enable_unix_sockets = is_posix && !is_ios && !is_nacl
# x86/x64 cast_shell builds run on regular trybots and can use python runtime
# and remote test server. ARM cast_shell builds don't have python runtime.
is_arm_cast_shell_build =
is_chromecast && (current_cpu == "arm" || current_cpu == "arm64")
# Python works only on Linux, MacOS and Windows so exclude the others,
# chromecast, android, fuchsia, ios.
enable_python_utils =
!is_arm_cast_shell_build && !is_android && !is_fuchsia && !is_ios
# Platforms that cannot use python_utils (like Android but see full
# list above) will instead use a remote server, except for iOS which
# won't get either.
use_remote_test_server = !enable_python_utils && !is_ios
config("net_test_config") {
if (use_remote_test_server) {
defines = [ "USE_REMOTE_TEST_SERVER" ]
}
}
buildflag_header("buildflags") {
header = "net_buildflags.h"
flags = [
"POSIX_AVOID_MMAP=$posix_avoid_mmap",
"DISABLE_FILE_SUPPORT=$disable_file_support",
"DISABLE_FTP_SUPPORT=$disable_ftp_support",
"ENABLE_MDNS=$enable_mdns",
"ENABLE_REPORTING=$enable_reporting",
"ENABLE_WEBSOCKETS=$enable_websockets",
"INCLUDE_TRANSPORT_SECURITY_STATE_PRELOAD_LIST=$include_transport_security_state_preload_list",
"USE_KERBEROS=$use_kerberos",
"TRIAL_COMPARISON_CERT_VERIFIER_SUPPORTED=$trial_comparison_cert_verifier_supported",
]
}
config("net_internal_config") {
defines = [
"DLOPEN_KERBEROS",
"NET_IMPLEMENTATION",
]
if (use_kerberos && is_android) {
include_dirs = [ "/usr/include/kerberosV" ]
}
if (enable_built_in_dns) {
defines += [ "ENABLE_BUILT_IN_DNS" ]
}
}
net_configs = [
":net_internal_config",
"//build/config:precompiled_headers",
"//build/config/compiler:wexit_time_destructors",
]
if (is_linux) {
net_configs += [ "//build/config/linux:libresolv" ]
}
source_set("constants") {
sources = [
"base/trace_constants.h",
]
deps = [
"//base",
]
}
component("net") {
sources = [
"base/address_family.cc",
"base/address_family.h",
"base/address_list.cc",
"base/address_list.h",
"base/auth.cc",
"base/auth.h",
"base/completion_callback.h",
"base/completion_once_callback.h",
"base/completion_repeating_callback.h",
"base/datagram_buffer.cc",
"base/datagram_buffer.h",
"base/escape.cc",
"base/escape.h",
"base/features.cc",
"base/features.h",
"base/hash_value.cc",
"base/hash_value.h",
"base/host_port_pair.cc",
"base/host_port_pair.h",
"base/interval.h",
"base/interval_set.h",
"base/io_buffer.cc",
"base/io_buffer.h",
"base/ip_address.cc",
"base/ip_address.h",
"base/ip_endpoint.cc",
"base/ip_endpoint.h",
"base/load_timing_info.cc",
"base/load_timing_info.h",
"base/lookup_string_in_fixed_set.cc",
"base/lookup_string_in_fixed_set.h",
"base/net_error_details.h",
"base/net_error_list.h",
"base/net_errors.cc",
"base/net_errors.h",
"base/net_export.h",
"base/net_module.cc",
"base/net_module.h",
"base/net_string_util.h",
"base/network_interfaces.cc",
"base/network_interfaces.h",
"base/parse_number.cc",
"base/parse_number.h",
"base/port_util.cc",
"base/port_util.h",
"base/privacy_mode.h",
"base/rand_callback.h",
"base/registry_controlled_domains/registry_controlled_domain.cc",
"base/registry_controlled_domains/registry_controlled_domain.h",
"base/sockaddr_storage.cc",
"base/sockaddr_storage.h",
"base/sys_addrinfo.h",
"base/url_util.cc",
"base/url_util.h",
"cert/asn1_util.cc",
"cert/asn1_util.h",
"cert/cert_database.cc",
"cert/cert_database.h",
"cert/cert_status_flags.cc",
"cert/cert_status_flags.h",
"cert/cert_status_flags_list.h",
"cert/cert_verifier.cc",
"cert/cert_verifier.h",
"cert/cert_verify_result.cc",
"cert/cert_verify_result.h",
"cert/client_cert_verifier.h",
"cert/crl_set.cc",
"cert/crl_set.h",
"cert/ct_policy_enforcer.cc",
"cert/ct_policy_enforcer.h",
"cert/ct_policy_status.h",
"cert/ct_verifier.h",
"cert/ct_verify_result.cc",
"cert/ct_verify_result.h",
"cert/do_nothing_ct_verifier.cc",
"cert/do_nothing_ct_verifier.h",
"cert/internal/cert_error_id.cc",
"cert/internal/cert_error_id.h",
"cert/internal/cert_error_params.cc",
"cert/internal/cert_error_params.h",
"cert/internal/cert_errors.cc",
"cert/internal/cert_errors.h",
"cert/internal/cert_issuer_source.h",
"cert/internal/cert_issuer_source_aia.cc",
"cert/internal/cert_issuer_source_aia.h",
"cert/internal/cert_issuer_source_static.cc",
"cert/internal/cert_issuer_source_static.h",
"cert/internal/certificate_policies.cc",
"cert/internal/certificate_policies.h",
"cert/internal/common_cert_errors.cc",
"cert/internal/common_cert_errors.h",
"cert/internal/extended_key_usage.cc",
"cert/internal/extended_key_usage.h",
"cert/internal/general_names.cc",
"cert/internal/general_names.h",
"cert/internal/name_constraints.cc",
"cert/internal/name_constraints.h",
"cert/internal/ocsp.cc",
"cert/internal/ocsp.h",
"cert/internal/parse_certificate.cc",
"cert/internal/parse_certificate.h",
"cert/internal/parse_name.cc",
"cert/internal/parse_name.h",
"cert/internal/parsed_certificate.cc",
"cert/internal/parsed_certificate.h",
"cert/internal/path_builder.cc",
"cert/internal/path_builder.h",
"cert/internal/revocation_checker.cc",
"cert/internal/revocation_checker.h",
"cert/internal/signature_algorithm.cc",
"cert/internal/signature_algorithm.h",
"cert/internal/simple_path_builder_delegate.cc",
"cert/internal/simple_path_builder_delegate.h",
"cert/internal/trust_store.cc",
"cert/internal/trust_store.h",
"cert/internal/trust_store_collection.cc",
"cert/internal/trust_store_collection.h",
"cert/internal/trust_store_in_memory.cc",
"cert/internal/trust_store_in_memory.h",
"cert/internal/verify_certificate_chain.cc",
"cert/internal/verify_certificate_chain.h",
"cert/internal/verify_name_match.cc",
"cert/internal/verify_name_match.h",
"cert/internal/verify_signed_data.cc",
"cert/internal/verify_signed_data.h",
"cert/ocsp_revocation_status.h",
"cert/ocsp_verify_result.cc",
"cert/ocsp_verify_result.h",
"cert/pem_tokenizer.cc",
"cert/pem_tokenizer.h",
"cert/sct_status_flags.cc",
"cert/sct_status_flags.h",
"cert/signed_certificate_timestamp.cc",
"cert/signed_certificate_timestamp.h",
"cert/signed_certificate_timestamp_and_status.cc",
"cert/signed_certificate_timestamp_and_status.h",
"cert/signed_tree_head.cc",
"cert/signed_tree_head.h",
"cert/symantec_certs.cc",
"cert/symantec_certs.h",
"cert/x509_cert_types.cc",
"cert/x509_cert_types.h",
"cert/x509_certificate.cc",
"cert/x509_certificate.h",
"cert/x509_certificate_net_log_param.cc",
"cert/x509_certificate_net_log_param.h",
"cert/x509_util.cc",
"cert/x509_util.h",
"der/encode_values.cc",
"der/encode_values.h",
"der/input.cc",
"der/input.h",
"der/parse_values.cc",
"der/parse_values.h",
"der/parser.cc",
"der/parser.h",
"der/tag.cc",
"der/tag.h",
"http/http_auth_challenge_tokenizer.cc",
"http/http_auth_challenge_tokenizer.h",
"http/http_auth_scheme.cc",
"http/http_auth_scheme.h",
"http/http_byte_range.cc",
"http/http_byte_range.h",
"http/http_log_util.cc",
"http/http_log_util.h",
"http/http_raw_request_headers.cc",
"http/http_raw_request_headers.h",
"http/http_request_headers.cc",
"http/http_request_headers.h",
"http/http_response_headers.cc",
"http/http_response_headers.h",
"http/http_response_info.cc",
"http/http_response_info.h",
"http/http_security_headers.cc",
"http/http_security_headers.h",
"http/http_status_code_list.h",
"http/http_util.cc",
"http/http_util.h",
"http/http_vary_data.cc",
"http/http_vary_data.h",
"http/transport_security_state.cc",
"http/transport_security_state.h",
"http/transport_security_state_source.cc",
"http/transport_security_state_source.h",
"log/net_log.cc",
"log/net_log.h",
"log/net_log_capture_mode.cc",
"log/net_log_capture_mode.h",
"log/net_log_entry.cc",
"log/net_log_entry.h",
"log/net_log_event_type.h",
"log/net_log_event_type_list.h",
"log/net_log_parameters_callback.h",
"log/net_log_source.cc",
"log/net_log_source.h",
"log/net_log_source_type.h",
"log/net_log_source_type_list.h",
"log/net_log_with_source.cc",
"log/net_log_with_source.h",
"socket/client_socket_handle.cc",
"socket/client_socket_handle.h",
"socket/connect_job.cc",
"socket/connect_job.h",
"socket/connection_attempts.h",
"socket/next_proto.cc",
"socket/next_proto.h",
"socket/socket.cc",
"socket/socket.h",
"socket/socket_bio_adapter.cc",
"socket/socket_bio_adapter.h",
"socket/socket_performance_watcher.h",
"socket/socket_performance_watcher_factory.h",
"socket/ssl_client_socket.cc",
"socket/ssl_client_socket.h",
"socket/ssl_client_socket_impl.cc",
"socket/ssl_client_socket_impl.h",
"socket/ssl_socket.h",
"socket/stream_socket.cc",
"socket/stream_socket.h",
"ssl/channel_id_service.cc",
"ssl/channel_id_service.h",
"ssl/channel_id_store.cc",
"ssl/channel_id_store.h",
"ssl/client_cert_identity.cc",
"ssl/client_cert_identity.h",
"ssl/client_cert_identity_mac.cc",
"ssl/client_cert_identity_mac.h",
"ssl/default_channel_id_store.cc",
"ssl/default_channel_id_store.h",
"ssl/openssl_ssl_util.cc",
"ssl/openssl_ssl_util.h",
"ssl/ssl_cert_request_info.cc",
"ssl/ssl_cert_request_info.h",
"ssl/ssl_cipher_suite_names.cc",
"ssl/ssl_cipher_suite_names.h",
"ssl/ssl_client_auth_cache.cc",
"ssl/ssl_client_auth_cache.h",
"ssl/ssl_client_cert_type.h",
"ssl/ssl_client_session_cache.cc",
"ssl/ssl_client_session_cache.h",
"ssl/ssl_config.cc",
"ssl/ssl_config.h",
"ssl/ssl_config_service.cc",
"ssl/ssl_config_service.h",
"ssl/ssl_connection_status_flags.h",
"ssl/ssl_info.cc",
"ssl/ssl_info.h",
"ssl/ssl_key_logger.h",
"ssl/ssl_private_key.cc",
"ssl/ssl_private_key.h",
"ssl/ssl_server_config.cc",
"ssl/ssl_server_config.h",
"third_party/quic/core/quic_error_codes.cc",
"third_party/quic/core/quic_error_codes.h",
"third_party/uri_template/uri_template.cc",
"third_party/uri_template/uri_template.h",
]
net_unfiltered_sources = []
if (is_posix || is_fuchsia) {
sources += [ "base/net_errors_posix.cc" ]
}
defines = []
if (disable_brotli_filter || is_nacl) {
defines += [ "NET_DISABLE_BROTLI" ]
}
deps = [
":net_deps",
]
public_deps = [
":net_public_deps",
"//net/dns",
"//net/dns:dns_client",
"//net/dns:host_resolver",
"//net/dns:host_resolver_impl",
"//net/dns:mdns_client",
"//net/dns/public",
]
allow_circular_includes_from = [
"//net/dns",
"//net/dns:dns_client",
"//net/dns:host_resolver",
"//net/dns:host_resolver_impl",
"//net/dns:mdns_client",
"//net/dns/public",
]
if (!is_nacl) {
sources += [
"android/android_http_util.cc",
"android/cellular_signal_strength.cc",
"android/cellular_signal_strength.h",
"android/cert_verify_result_android.cc",
"android/cert_verify_result_android.h",
"android/gurl_utils.cc",
"android/http_auth_negotiate_android.cc",
"android/http_auth_negotiate_android.h",
"android/keystore.cc",
"android/keystore.h",
"android/network_change_notifier_android.cc",
"android/network_change_notifier_android.h",
"android/network_change_notifier_delegate_android.cc",
"android/network_change_notifier_delegate_android.h",
"android/network_change_notifier_factory_android.cc",
"android/network_change_notifier_factory_android.h",
"android/network_library.cc",
"android/network_library.h",
"android/traffic_stats.cc",
"android/traffic_stats.h",
"base/address_tracker_linux.cc",
"base/address_tracker_linux.h",
"base/backoff_entry.cc",
"base/backoff_entry.h",
"base/backoff_entry_serializer.cc",
"base/backoff_entry_serializer.h",
"base/cache_type.h",
"base/chunked_upload_data_stream.cc",
"base/chunked_upload_data_stream.h",
"base/data_url.cc",
"base/data_url.h",
"base/elements_upload_data_stream.cc",
"base/elements_upload_data_stream.h",
"base/expiring_cache.h",
"base/file_stream.cc",
"base/file_stream.h",
"base/file_stream_context.cc",
"base/file_stream_context.h",
"base/file_stream_context_win.cc",
"base/filename_util.cc",
"base/filename_util.h",
"base/filename_util_internal.cc",
"base/filename_util_internal.h",
"base/hex_utils.cc",
"base/hex_utils.h",
"base/host_mapping_rules.cc",
"base/host_mapping_rules.h",
"base/ip_pattern.cc",
"base/ip_pattern.h",
"base/layered_network_delegate.cc",
"base/layered_network_delegate.h",
"base/linked_hash_map.h",
"base/load_flags.h",
"base/load_flags_list.h",
"base/load_states.h",
"base/load_states_list.h",
"base/logging_network_change_observer.cc",
"base/logging_network_change_observer.h",
"base/mime_sniffer.cc",
"base/mime_sniffer.h",
"base/mime_util.cc",
"base/mime_util.h",
"base/net_errors_win.cc",
"base/net_info_source_list.h",
"base/network_activity_monitor.cc",
"base/network_activity_monitor.h",
"base/network_change_notifier.cc",
"base/network_change_notifier.h",
"base/network_change_notifier_factory.h",
"base/network_change_notifier_linux.cc",
"base/network_change_notifier_linux.h",
"base/network_change_notifier_mac.cc",
"base/network_change_notifier_mac.h",
"base/network_change_notifier_win.cc",
"base/network_change_notifier_win.h",
"base/network_config_watcher_mac.cc",
"base/network_config_watcher_mac.h",
"base/network_delegate.cc",
"base/network_delegate.h",
"base/network_delegate_impl.cc",
"base/network_delegate_impl.h",
"base/network_interfaces_linux.cc",
"base/network_interfaces_linux.h",
"base/network_interfaces_nacl.cc",
"base/network_interfaces_win.cc",
"base/network_interfaces_win.h",
"base/platform_mime_util.h",
"base/platform_mime_util_linux.cc",
"base/platform_mime_util_mac.mm",
"base/platform_mime_util_win.cc",
"base/prioritized_dispatcher.cc",
"base/prioritized_dispatcher.h",
"base/prioritized_task_runner.cc",
"base/prioritized_task_runner.h",
"base/priority_queue.h",
"base/proxy_delegate.h",
"base/proxy_server.cc",
"base/proxy_server.h",
"base/proxy_server_mac.cc",
"base/request_priority.cc",
"base/request_priority.h",
"base/static_cookie_policy.cc",
"base/static_cookie_policy.h",
"base/test_data_stream.cc",
"base/test_data_stream.h",
"base/upload_bytes_element_reader.cc",
"base/upload_bytes_element_reader.h",
"base/upload_data_stream.cc",
"base/upload_data_stream.h",
"base/upload_element_reader.cc",
"base/upload_element_reader.h",
"base/upload_file_element_reader.cc",
"base/upload_file_element_reader.h",
"base/upload_progress.h",
"base/winsock_init.cc",
"base/winsock_init.h",
"base/winsock_util.cc",
"base/winsock_util.h",
"cert/caching_cert_verifier.cc",
"cert/caching_cert_verifier.h",
"cert/cert_database_mac.cc",
"cert/cert_net_fetcher.cc",
"cert/cert_net_fetcher.h",
"cert/cert_verify_proc.cc",
"cert/cert_verify_proc.h",
"cert/cert_verify_proc_android.cc",
"cert/cert_verify_proc_android.h",
"cert/cert_verify_proc_builtin.cc",
"cert/cert_verify_proc_builtin.h",
"cert/cert_verify_proc_ios.cc",
"cert/cert_verify_proc_ios.h",
"cert/cert_verify_proc_mac.cc",
"cert/cert_verify_proc_mac.h",
"cert/cert_verify_proc_nss.cc",
"cert/cert_verify_proc_nss.h",
"cert/cert_verify_proc_win.cc",
"cert/cert_verify_proc_win.h",
"cert/ct_log_response_parser.cc",
"cert/ct_log_response_parser.h",
"cert/ct_log_verifier.cc",
"cert/ct_log_verifier.h",
"cert/ct_log_verifier_util.cc",
"cert/ct_log_verifier_util.h",
"cert/ct_objects_extractor.cc",
"cert/ct_objects_extractor.h",
"cert/ct_sct_to_string.cc",
"cert/ct_sct_to_string.h",
"cert/ct_serialization.cc",
"cert/ct_serialization.h",
"cert/ct_signed_certificate_timestamp_log_param.cc",
"cert/ct_signed_certificate_timestamp_log_param.h",
"cert/ev_root_ca_metadata.cc",
"cert/ev_root_ca_metadata.h",
"cert/internal/system_trust_store.cc",
"cert/internal/system_trust_store.h",
"cert/internal/trust_store_mac.cc",
"cert/internal/trust_store_mac.h",
"cert/internal/trust_store_nss.cc",
"cert/internal/trust_store_nss.h",
"cert/jwk_serializer.cc",
"cert/jwk_serializer.h",
"cert/known_roots.cc",
"cert/known_roots.h",
"cert/known_roots_mac.cc",
"cert/known_roots_mac.h",
"cert/known_roots_nss.cc",
"cert/known_roots_nss.h",
"cert/known_roots_win.cc",
"cert/known_roots_win.h",
"cert/merkle_audit_proof.cc",
"cert/merkle_audit_proof.h",
"cert/merkle_consistency_proof.cc",
"cert/merkle_consistency_proof.h",
"cert/merkle_tree_leaf.cc",
"cert/merkle_tree_leaf.h",
"cert/multi_log_ct_verifier.cc",
"cert/multi_log_ct_verifier.h",
"cert/multi_threaded_cert_verifier.cc",
"cert/multi_threaded_cert_verifier.h",
"cert/nss_cert_database.cc",
"cert/nss_cert_database.h",
"cert/nss_cert_database_chromeos.cc",
"cert/nss_cert_database_chromeos.h",
"cert/nss_profile_filter_chromeos.cc",
"cert/nss_profile_filter_chromeos.h",
"cert/root_cert_list_generated.h",
"cert/test_keychain_search_list_mac.cc",
"cert/test_keychain_search_list_mac.h",
"cert/test_root_certs.cc",
"cert/test_root_certs.h",
"cert/test_root_certs_android.cc",
"cert/test_root_certs_mac.cc",
"cert/test_root_certs_nss.cc",
"cert/test_root_certs_win.cc",
"cert/x509_util_android.cc",
"cert/x509_util_ios.cc",
"cert/x509_util_ios.h",
"cert/x509_util_ios_and_mac.cc",
"cert/x509_util_ios_and_mac.h",
"cert/x509_util_mac.cc",
"cert/x509_util_mac.h",
"cert/x509_util_nss.cc",
"cert/x509_util_nss.h",
"cert/x509_util_win.cc",
"cert/x509_util_win.h",
"cert_net/cert_net_fetcher_impl.cc",
"cert_net/cert_net_fetcher_impl.h",
"cert_net/nss_ocsp.cc",
"cert_net/nss_ocsp.h",
"cookies/canonical_cookie.cc",
"cookies/canonical_cookie.h",
"cookies/cookie_change_dispatcher.cc",
"cookies/cookie_change_dispatcher.h",
"cookies/cookie_constants.cc",
"cookies/cookie_constants.h",
"cookies/cookie_deletion_info.cc",
"cookies/cookie_deletion_info.h",
"cookies/cookie_monster.cc",
"cookies/cookie_monster.h",
"cookies/cookie_monster_change_dispatcher.cc",
"cookies/cookie_monster_change_dispatcher.h",
"cookies/cookie_monster_netlog_params.cc",
"cookies/cookie_monster_netlog_params.h",
"cookies/cookie_options.cc",
"cookies/cookie_options.h",
"cookies/cookie_store.cc",
"cookies/cookie_store.h",
"cookies/cookie_util.cc",
"cookies/cookie_util.h",
"cookies/parsed_cookie.cc",
"cookies/parsed_cookie.h",
"disk_cache/backend_cleanup_tracker.cc",
"disk_cache/backend_cleanup_tracker.h",
"disk_cache/blockfile/addr.cc",
"disk_cache/blockfile/addr.h",
"disk_cache/blockfile/backend_impl.cc",
"disk_cache/blockfile/backend_impl.h",
"disk_cache/blockfile/bitmap.cc",
"disk_cache/blockfile/bitmap.h",
"disk_cache/blockfile/block_files.cc",
"disk_cache/blockfile/block_files.h",
"disk_cache/blockfile/disk_format.cc",
"disk_cache/blockfile/disk_format.h",
"disk_cache/blockfile/disk_format_base.h",
"disk_cache/blockfile/entry_impl.cc",
"disk_cache/blockfile/entry_impl.h",
"disk_cache/blockfile/errors.h",
"disk_cache/blockfile/eviction.cc",
"disk_cache/blockfile/eviction.h",
"disk_cache/blockfile/experiments.h",
"disk_cache/blockfile/file.cc",
"disk_cache/blockfile/file.h",
"disk_cache/blockfile/file_block.h",
"disk_cache/blockfile/file_ios.cc",
"disk_cache/blockfile/file_lock.cc",
"disk_cache/blockfile/file_lock.h",
"disk_cache/blockfile/file_win.cc",
"disk_cache/blockfile/histogram_macros.h",
"disk_cache/blockfile/in_flight_backend_io.cc",
"disk_cache/blockfile/in_flight_backend_io.h",
"disk_cache/blockfile/in_flight_io.cc",
"disk_cache/blockfile/in_flight_io.h",
"disk_cache/blockfile/mapped_file.cc",
"disk_cache/blockfile/mapped_file.h",
"disk_cache/blockfile/mapped_file_win.cc",
"disk_cache/blockfile/rankings.cc",
"disk_cache/blockfile/rankings.h",
"disk_cache/blockfile/sparse_control.cc",
"disk_cache/blockfile/sparse_control.h",
"disk_cache/blockfile/stats.cc",
"disk_cache/blockfile/stats.h",
"disk_cache/blockfile/storage_block-inl.h",
"disk_cache/blockfile/storage_block.h",
"disk_cache/blockfile/stress_support.h",
"disk_cache/blockfile/trace.cc",
"disk_cache/blockfile/trace.h",
"disk_cache/blockfile/webfonts_histogram.cc",
"disk_cache/blockfile/webfonts_histogram.h",
"disk_cache/cache_util.cc",
"disk_cache/cache_util.h",
"disk_cache/cache_util_win.cc",
"disk_cache/disk_cache.cc",
"disk_cache/disk_cache.h",
"disk_cache/memory/mem_backend_impl.cc",
"disk_cache/memory/mem_backend_impl.h",
"disk_cache/memory/mem_entry_impl.cc",
"disk_cache/memory/mem_entry_impl.h",
"disk_cache/net_log_parameters.cc",
"disk_cache/net_log_parameters.h",
"disk_cache/simple/simple_backend_impl.cc",
"disk_cache/simple/simple_backend_impl.h",
"disk_cache/simple/simple_backend_version.h",
"disk_cache/simple/simple_entry_format.cc",
"disk_cache/simple/simple_entry_format.h",
"disk_cache/simple/simple_entry_format_history.h",
"disk_cache/simple/simple_entry_impl.cc",
"disk_cache/simple/simple_entry_impl.h",
"disk_cache/simple/simple_entry_operation.cc",
"disk_cache/simple/simple_entry_operation.h",
"disk_cache/simple/simple_file_tracker.cc",
"disk_cache/simple/simple_file_tracker.h",
"disk_cache/simple/simple_histogram_macros.h",
"disk_cache/simple/simple_index.cc",
"disk_cache/simple/simple_index.h",
"disk_cache/simple/simple_index_delegate.h",
"disk_cache/simple/simple_index_file.cc",
"disk_cache/simple/simple_index_file.h",
"disk_cache/simple/simple_index_file_win.cc",
"disk_cache/simple/simple_net_log_parameters.cc",
"disk_cache/simple/simple_net_log_parameters.h",
"disk_cache/simple/simple_synchronous_entry.cc",
"disk_cache/simple/simple_synchronous_entry.h",
"disk_cache/simple/simple_util.cc",
"disk_cache/simple/simple_util.h",
"disk_cache/simple/simple_util_win.cc",
"disk_cache/simple/simple_version_upgrade.cc",
"disk_cache/simple/simple_version_upgrade.h",
"filter/filter_source_stream.cc",
"filter/filter_source_stream.h",
"filter/gzip_header.cc",
"filter/gzip_header.h",
"filter/gzip_source_stream.cc",
"filter/gzip_source_stream.h",
"filter/source_stream.cc",
"filter/source_stream.h",
"filter/source_stream_type_list.h",
"http/bidirectional_stream.cc",
"http/bidirectional_stream.h",
"http/bidirectional_stream_impl.cc",
"http/bidirectional_stream_impl.h",
"http/bidirectional_stream_request_info.cc",
"http/bidirectional_stream_request_info.h",
"http/broken_alternative_services.cc",
"http/broken_alternative_services.h",
"http/failing_http_transaction_factory.cc",
"http/failing_http_transaction_factory.h",
"http/http_auth.cc",
"http/http_auth.h",
"http/http_auth_cache.cc",
"http/http_auth_cache.h",
"http/http_auth_controller.cc",
"http/http_auth_controller.h",
"http/http_auth_filter.cc",
"http/http_auth_filter.h",
"http/http_auth_handler.cc",
"http/http_auth_handler.h",
"http/http_auth_handler_basic.cc",
"http/http_auth_handler_basic.h",
"http/http_auth_handler_digest.cc",
"http/http_auth_handler_digest.h",
"http/http_auth_handler_factory.cc",
"http/http_auth_handler_factory.h",
"http/http_auth_handler_negotiate.cc",
"http/http_auth_handler_negotiate.h",
"http/http_auth_handler_ntlm.cc",
"http/http_auth_handler_ntlm.h",
"http/http_auth_handler_ntlm_portable.cc",
"http/http_auth_handler_ntlm_win.cc",
"http/http_auth_multi_round_parse.cc",
"http/http_auth_multi_round_parse.h",
"http/http_auth_preferences.cc",
"http/http_auth_preferences.h",
"http/http_auth_sspi_win.cc",
"http/http_auth_sspi_win.h",
"http/http_basic_state.cc",
"http/http_basic_state.h",
"http/http_basic_stream.cc",
"http/http_basic_stream.h",
"http/http_cache.cc",
"http/http_cache.h",
"http/http_cache_lookup_manager.cc",
"http/http_cache_lookup_manager.h",
"http/http_cache_transaction.cc",
"http/http_cache_transaction.h",
"http/http_cache_writers.cc",
"http/http_cache_writers.h",
"http/http_chunked_decoder.cc",
"http/http_chunked_decoder.h",
"http/http_content_disposition.cc",
"http/http_content_disposition.h",
"http/http_negotiate_auth_system.h",
"http/http_network_layer.cc",
"http/http_network_layer.h",
"http/http_network_session.cc",
"http/http_network_session.h",
"http/http_network_session_peer.cc",
"http/http_network_session_peer.h",
"http/http_network_transaction.cc",
"http/http_network_transaction.h",
"http/http_proxy_client_socket.cc",
"http/http_proxy_client_socket.h",
"http/http_proxy_client_socket_wrapper.cc",
"http/http_proxy_client_socket_wrapper.h",
"http/http_proxy_connect_job.cc",
"http/http_proxy_connect_job.h",
"http/http_request_info.cc",
"http/http_request_info.h",
"http/http_response_body_drainer.cc",
"http/http_response_body_drainer.h",
"http/http_server_properties.cc",
"http/http_server_properties.h",
"http/http_server_properties_impl.cc",
"http/http_server_properties_impl.h",
"http/http_server_properties_manager.cc",
"http/http_server_properties_manager.h",
"http/http_status_code.cc",
"http/http_status_code.h",
"http/http_stream.h",
"http/http_stream_factory.cc",
"http/http_stream_factory.h",
"http/http_stream_factory_job.cc",
"http/http_stream_factory_job.h",
"http/http_stream_factory_job_controller.cc",
"http/http_stream_factory_job_controller.h",
"http/http_stream_parser.cc",
"http/http_stream_parser.h",
"http/http_stream_request.cc",
"http/http_stream_request.h",
"http/http_transaction.h",
"http/http_transaction_factory.h",
"http/http_version.h",
"http/partial_data.cc",
"http/partial_data.h",
"http/proxy_client_socket.cc",
"http/proxy_client_socket.h",
"http/proxy_connect_redirect_http_stream.cc",
"http/proxy_connect_redirect_http_stream.h",
"http/proxy_fallback.cc",
"http/proxy_fallback.h",
"http/transport_security_persister.cc",
"http/transport_security_persister.h",
"http/url_security_manager.cc",
"http/url_security_manager.h",
"http/url_security_manager_win.cc",
"http2/platform/impl/http2_arraysize_impl.h",
"http2/platform/impl/http2_bug_tracker_impl.h",
"http2/platform/impl/http2_containers_impl.h",
"http2/platform/impl/http2_estimate_memory_usage_impl.h",
"http2/platform/impl/http2_export_impl.h",
"http2/platform/impl/http2_flag_utils_impl.h",
"http2/platform/impl/http2_flags_impl.cc",
"http2/platform/impl/http2_flags_impl.h",
"http2/platform/impl/http2_macros_impl.h",
"http2/platform/impl/http2_optional_impl.h",
"http2/platform/impl/http2_ptr_util_impl.h",
"http2/platform/impl/http2_reconstruct_object_impl.h",
"http2/platform/impl/http2_string_impl.h",
"http2/platform/impl/http2_string_piece_impl.h",
"http2/platform/impl/http2_string_utils_impl.h",
"log/file_net_log_observer.cc",
"log/file_net_log_observer.h",
"log/net_log_util.cc",
"log/net_log_util.h",
"log/trace_net_log_observer.cc",
"log/trace_net_log_observer.h",
"nqe/cached_network_quality.cc",
"nqe/cached_network_quality.h",
"nqe/effective_connection_type.cc",
"nqe/effective_connection_type.h",
"nqe/effective_connection_type_observer.h",
"nqe/event_creator.cc",
"nqe/event_creator.h",
"nqe/network_id.cc",
"nqe/network_id.h",
"nqe/network_qualities_prefs_manager.cc",
"nqe/network_qualities_prefs_manager.h",
"nqe/network_quality.cc",
"nqe/network_quality.h",
"nqe/network_quality_estimator.cc",
"nqe/network_quality_estimator.h",
"nqe/network_quality_estimator_params.cc",
"nqe/network_quality_estimator_params.h",
"nqe/network_quality_estimator_util.cc",
"nqe/network_quality_estimator_util.h",
"nqe/network_quality_observation.cc",
"nqe/network_quality_observation.h",
"nqe/network_quality_observation_source.cc",
"nqe/network_quality_observation_source.h",
"nqe/network_quality_store.cc",
"nqe/network_quality_store.h",
"nqe/observation_buffer.cc",
"nqe/observation_buffer.h",
"nqe/rtt_throughput_estimates_observer.h",
"nqe/socket_watcher.cc",
"nqe/socket_watcher.h",
"nqe/socket_watcher_factory.cc",
"nqe/socket_watcher_factory.h",
"nqe/throughput_analyzer.cc",
"nqe/throughput_analyzer.h",
"nqe/weighted_observation.h",
"ntlm/ntlm.cc",
"ntlm/ntlm.h",
"ntlm/ntlm_buffer_reader.cc",
"ntlm/ntlm_buffer_reader.h",
"ntlm/ntlm_buffer_writer.cc",
"ntlm/ntlm_buffer_writer.h",
"ntlm/ntlm_client.cc",
"ntlm/ntlm_client.h",
"ntlm/ntlm_constants.cc",
"ntlm/ntlm_constants.h",
"proxy_resolution/dhcp_pac_file_adapter_fetcher_win.cc",
"proxy_resolution/dhcp_pac_file_adapter_fetcher_win.h",
"proxy_resolution/dhcp_pac_file_fetcher.cc",
"proxy_resolution/dhcp_pac_file_fetcher.h",
"proxy_resolution/dhcp_pac_file_fetcher_factory.cc",
"proxy_resolution/dhcp_pac_file_fetcher_factory.h",
"proxy_resolution/dhcp_pac_file_fetcher_win.cc",
"proxy_resolution/dhcp_pac_file_fetcher_win.h",
"proxy_resolution/dhcpcsvc_init_win.cc",
"proxy_resolution/dhcpcsvc_init_win.h",
"proxy_resolution/multi_threaded_proxy_resolver.cc",
"proxy_resolution/multi_threaded_proxy_resolver.h",
"proxy_resolution/network_delegate_error_observer.cc",
"proxy_resolution/network_delegate_error_observer.h",
"proxy_resolution/pac_file_data.cc",
"proxy_resolution/pac_file_data.h",
"proxy_resolution/pac_file_decider.cc",
"proxy_resolution/pac_file_decider.h",
"proxy_resolution/pac_file_fetcher.h",
"proxy_resolution/pac_file_fetcher_impl.cc",
"proxy_resolution/pac_file_fetcher_impl.h",
"proxy_resolution/pac_js_library.h",
"proxy_resolution/pac_library.cc",
"proxy_resolution/pac_library.h",
"proxy_resolution/polling_proxy_config_service.cc",
"proxy_resolution/polling_proxy_config_service.h",
"proxy_resolution/proxy_bypass_rules.cc",
"proxy_resolution/proxy_bypass_rules.h",
"proxy_resolution/proxy_config.cc",
"proxy_resolution/proxy_config.h",
"proxy_resolution/proxy_config_service.h",
"proxy_resolution/proxy_config_service_android.cc",
"proxy_resolution/proxy_config_service_android.h",
"proxy_resolution/proxy_config_service_fixed.cc",
"proxy_resolution/proxy_config_service_fixed.h",
"proxy_resolution/proxy_config_service_ios.cc",
"proxy_resolution/proxy_config_service_ios.h",
"proxy_resolution/proxy_config_service_linux.cc",
"proxy_resolution/proxy_config_service_linux.h",
"proxy_resolution/proxy_config_service_mac.cc",
"proxy_resolution/proxy_config_service_mac.h",
"proxy_resolution/proxy_config_service_win.cc",
"proxy_resolution/proxy_config_service_win.h",
"proxy_resolution/proxy_config_with_annotation.cc",
"proxy_resolution/proxy_config_with_annotation.h",
"proxy_resolution/proxy_info.cc",
"proxy_resolution/proxy_info.h",
"proxy_resolution/proxy_list.cc",
"proxy_resolution/proxy_list.h",
"proxy_resolution/proxy_resolution_service.cc",
"proxy_resolution/proxy_resolution_service.h",
"proxy_resolution/proxy_resolve_dns_operation.h",
"proxy_resolution/proxy_resolver.h",
"proxy_resolution/proxy_resolver_error_observer.h",
"proxy_resolution/proxy_resolver_factory.cc",
"proxy_resolution/proxy_resolver_factory.h",
"proxy_resolution/proxy_resolver_mac.cc",
"proxy_resolution/proxy_resolver_mac.h",
"proxy_resolution/proxy_resolver_winhttp.cc",
"proxy_resolution/proxy_resolver_winhttp.h",
"proxy_resolution/proxy_retry_info.h",
"quic/bidirectional_stream_quic_impl.cc",
"quic/bidirectional_stream_quic_impl.h",
"quic/crypto/proof_source_chromium.cc",
"quic/crypto/proof_source_chromium.h",
"quic/crypto/proof_verifier_chromium.cc",
"quic/crypto/proof_verifier_chromium.h",
"quic/network_connection.cc",
"quic/network_connection.h",
"quic/properties_based_quic_server_info.cc",
"quic/properties_based_quic_server_info.h",
"quic/quic_address_mismatch.cc",
"quic/quic_address_mismatch.h",
"quic/quic_chromium_alarm_factory.cc",
"quic/quic_chromium_alarm_factory.h",
"quic/quic_chromium_client_session.cc",
"quic/quic_chromium_client_session.h",
"quic/quic_chromium_client_stream.cc",
"quic/quic_chromium_client_stream.h",
"quic/quic_chromium_connection_helper.cc",
"quic/quic_chromium_connection_helper.h",
"quic/quic_chromium_packet_reader.cc",
"quic/quic_chromium_packet_reader.h",
"quic/quic_chromium_packet_writer.cc",
"quic/quic_chromium_packet_writer.h",
"quic/quic_clock_skew_detector.cc",
"quic/quic_clock_skew_detector.h",
"quic/quic_connection_logger.cc",
"quic/quic_connection_logger.h",
"quic/quic_connectivity_probing_manager.cc",
"quic/quic_connectivity_probing_manager.h",
"quic/quic_crypto_client_stream_factory.cc",
"quic/quic_crypto_client_stream_factory.h",
"quic/quic_flags_list.h",
"quic/quic_http_stream.cc",
"quic/quic_http_stream.h",
"quic/quic_http_utils.cc",
"quic/quic_http_utils.h",
"quic/quic_proxy_client_socket.cc",
"quic/quic_proxy_client_socket.h",
"quic/quic_server_info.cc",
"quic/quic_server_info.h",
"quic/quic_session_key.cc",
"quic/quic_session_key.h",
"quic/quic_stream_factory.cc",
"quic/quic_stream_factory.h",
"quic/quic_utils_chromium.cc",
"quic/quic_utils_chromium.h",
"socket/client_socket_factory.cc",
"socket/client_socket_factory.h",
"socket/client_socket_pool.cc",
"socket/client_socket_pool.h",
"socket/client_socket_pool_base.cc",
"socket/client_socket_pool_base.h",
"socket/client_socket_pool_manager.cc",
"socket/client_socket_pool_manager.h",
"socket/client_socket_pool_manager_impl.cc",
"socket/client_socket_pool_manager_impl.h",
"socket/datagram_client_socket.h",
"socket/datagram_server_socket.h",
"socket/datagram_socket.h",
"socket/diff_serv_code_point.h",
"socket/server_socket.cc",
"socket/server_socket.h",
"socket/socket_descriptor.cc",
"socket/socket_descriptor.h",
"socket/socket_net_log_params.cc",
"socket/socket_net_log_params.h",
"socket/socket_options.cc",
"socket/socket_options.h",
"socket/socket_tag.cc",
"socket/socket_tag.h",
"socket/socks5_client_socket.cc",
"socket/socks5_client_socket.h",
"socket/socks_client_socket.cc",
"socket/socks_client_socket.h",
"socket/socks_connect_job.cc",
"socket/socks_connect_job.h",
"socket/ssl_connect_job.cc",
"socket/ssl_connect_job.h",
"socket/ssl_server_socket.h",
"socket/ssl_server_socket_impl.cc",
"socket/ssl_server_socket_impl.h",
"socket/tcp_client_socket.cc",
"socket/tcp_client_socket.h",
"socket/tcp_server_socket.cc",
"socket/tcp_server_socket.h",
"socket/tcp_socket.h",
"socket/tcp_socket_win.cc",
"socket/tcp_socket_win.h",
"socket/transport_client_socket.cc",
"socket/transport_client_socket.h",
"socket/transport_client_socket_pool.cc",
"socket/transport_client_socket_pool.h",
"socket/transport_connect_job.cc",
"socket/transport_connect_job.h",
"socket/udp_client_socket.cc",
"socket/udp_client_socket.h",
"socket/udp_net_log_parameters.cc",
"socket/udp_net_log_parameters.h",
"socket/udp_server_socket.cc",
"socket/udp_server_socket.h",
"socket/udp_socket.h",
"socket/udp_socket_win.cc",
"socket/udp_socket_win.h",
"socket/websocket_endpoint_lock_manager.cc",
"socket/websocket_endpoint_lock_manager.h",
"socket/websocket_transport_client_socket_pool.cc",
"socket/websocket_transport_client_socket_pool.h",
"socket/websocket_transport_connect_job.cc",
"socket/websocket_transport_connect_job.h",
"socket/websocket_transport_connect_sub_job.cc",
"socket/websocket_transport_connect_sub_job.h",
"spdy/bidirectional_stream_spdy_impl.cc",
"spdy/bidirectional_stream_spdy_impl.h",
"spdy/buffered_spdy_framer.cc",
"spdy/buffered_spdy_framer.h",
"spdy/header_coalescer.cc",
"spdy/header_coalescer.h",
"spdy/http2_priority_dependencies.cc",
"spdy/http2_priority_dependencies.h",
"spdy/http2_push_promise_index.cc",
"spdy/http2_push_promise_index.h",
"spdy/multiplexed_http_stream.cc",
"spdy/multiplexed_http_stream.h",
"spdy/multiplexed_session.cc",
"spdy/multiplexed_session.h",
"spdy/platform/impl/spdy_arraysize_impl.h",
"spdy/platform/impl/spdy_bug_tracker_impl.h",
"spdy/platform/impl/spdy_containers_impl.h",
"spdy/platform/impl/spdy_endianness_util_impl.h",
"spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
"spdy/platform/impl/spdy_export_impl.h",
"spdy/platform/impl/spdy_flags_impl.cc",
"spdy/platform/impl/spdy_flags_impl.h",
"spdy/platform/impl/spdy_macros_impl.h",
"spdy/platform/impl/spdy_mem_slice_impl.cc",
"spdy/platform/impl/spdy_mem_slice_impl.h",
"spdy/platform/impl/spdy_ptr_util_impl.h",
"spdy/platform/impl/spdy_string_impl.h",
"spdy/platform/impl/spdy_string_piece_impl.h",
"spdy/platform/impl/spdy_string_utils_impl.cc",
"spdy/platform/impl/spdy_string_utils_impl.h",
"spdy/platform/impl/spdy_test_utils_prod_impl.h",
"spdy/platform/impl/spdy_unsafe_arena_impl.cc",
"spdy/platform/impl/spdy_unsafe_arena_impl.h",
"spdy/server_push_delegate.h",
"spdy/spdy_buffer.cc",
"spdy/spdy_buffer.h",
"spdy/spdy_buffer_producer.cc",
"spdy/spdy_buffer_producer.h",
"spdy/spdy_http_stream.cc",
"spdy/spdy_http_stream.h",
"spdy/spdy_http_utils.cc",
"spdy/spdy_http_utils.h",
"spdy/spdy_log_util.cc",
"spdy/spdy_log_util.h",
"spdy/spdy_proxy_client_socket.cc",
"spdy/spdy_proxy_client_socket.h",
"spdy/spdy_read_queue.cc",
"spdy/spdy_read_queue.h",
"spdy/spdy_session.cc",
"spdy/spdy_session.h",
"spdy/spdy_session_key.cc",
"spdy/spdy_session_key.h",
"spdy/spdy_session_pool.cc",
"spdy/spdy_session_pool.h",
"spdy/spdy_stream.cc",
"spdy/spdy_stream.h",
"spdy/spdy_write_queue.cc",
"spdy/spdy_write_queue.h",
"ssl/client_cert_store.h",
"ssl/client_cert_store_mac.cc",
"ssl/client_cert_store_mac.h",
"ssl/client_cert_store_nss.cc",
"ssl/client_cert_store_nss.h",
"ssl/client_cert_store_win.cc",
"ssl/client_cert_store_win.h",
"ssl/ssl_config_service_defaults.cc",
"ssl/ssl_config_service_defaults.h",
"ssl/ssl_key_logger_impl.cc",
"ssl/ssl_key_logger_impl.h",
"ssl/ssl_platform_key_android.cc",
"ssl/ssl_platform_key_android.h",
"ssl/ssl_platform_key_mac.cc",
"ssl/ssl_platform_key_mac.h",
"ssl/ssl_platform_key_nss.cc",
"ssl/ssl_platform_key_nss.h",
"ssl/ssl_platform_key_util.cc",
"ssl/ssl_platform_key_util.h",
"ssl/ssl_platform_key_win.cc",
"ssl/test_ssl_private_key.cc",
"ssl/test_ssl_private_key.h",
"ssl/threaded_ssl_private_key.cc",
"ssl/threaded_ssl_private_key.h",
"third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
"third_party/mozilla_security_manager/nsNSSCertificateDB.h",
"third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
"third_party/mozilla_security_manager/nsPKCS12Blob.h",
"third_party/quic/core/congestion_control/bandwidth_sampler.cc",
"third_party/quic/core/congestion_control/bandwidth_sampler.h",
"third_party/quic/core/congestion_control/bbr_sender.cc",
"third_party/quic/core/congestion_control/bbr_sender.h",
"third_party/quic/core/congestion_control/cubic_bytes.cc",
"third_party/quic/core/congestion_control/cubic_bytes.h",
"third_party/quic/core/congestion_control/general_loss_algorithm.cc",
"third_party/quic/core/congestion_control/general_loss_algorithm.h",
"third_party/quic/core/congestion_control/hybrid_slow_start.cc",
"third_party/quic/core/congestion_control/hybrid_slow_start.h",
"third_party/quic/core/congestion_control/loss_detection_interface.h",
"third_party/quic/core/congestion_control/pacing_sender.cc",
"third_party/quic/core/congestion_control/pacing_sender.h",
"third_party/quic/core/congestion_control/prr_sender.cc",
"third_party/quic/core/congestion_control/prr_sender.h",
"third_party/quic/core/congestion_control/rtt_stats.cc",
"third_party/quic/core/congestion_control/rtt_stats.h",
"third_party/quic/core/congestion_control/send_algorithm_interface.cc",
"third_party/quic/core/congestion_control/send_algorithm_interface.h",
"third_party/quic/core/congestion_control/tcp_cubic_sender_bytes.cc",
"third_party/quic/core/congestion_control/tcp_cubic_sender_bytes.h",
"third_party/quic/core/congestion_control/windowed_filter.h",
"third_party/quic/core/crypto/aead_base_decrypter.cc",
"third_party/quic/core/crypto/aead_base_decrypter.h",
"third_party/quic/core/crypto/aead_base_encrypter.cc",
"third_party/quic/core/crypto/aead_base_encrypter.h",
"third_party/quic/core/crypto/aes_128_gcm_12_decrypter.cc",
"third_party/quic/core/crypto/aes_128_gcm_12_decrypter.h",
"third_party/quic/core/crypto/aes_128_gcm_12_encrypter.cc",
"third_party/quic/core/crypto/aes_128_gcm_12_encrypter.h",
"third_party/quic/core/crypto/aes_128_gcm_decrypter.cc",
"third_party/quic/core/crypto/aes_128_gcm_decrypter.h",
"third_party/quic/core/crypto/aes_128_gcm_encrypter.cc",
"third_party/quic/core/crypto/aes_128_gcm_encrypter.h",
"third_party/quic/core/crypto/aes_256_gcm_decrypter.cc",
"third_party/quic/core/crypto/aes_256_gcm_decrypter.h",
"third_party/quic/core/crypto/aes_256_gcm_encrypter.cc",
"third_party/quic/core/crypto/aes_256_gcm_encrypter.h",
"third_party/quic/core/crypto/cert_compressor.cc",
"third_party/quic/core/crypto/cert_compressor.h",
"third_party/quic/core/crypto/chacha20_poly1305_decrypter.cc",
"third_party/quic/core/crypto/chacha20_poly1305_decrypter.h",
"third_party/quic/core/crypto/chacha20_poly1305_encrypter.cc",
"third_party/quic/core/crypto/chacha20_poly1305_encrypter.h",
"third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter.cc",
"third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter.h",
"third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter.cc",
"third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter.h",
"third_party/quic/core/crypto/channel_id.cc",
"third_party/quic/core/crypto/channel_id.h",
"third_party/quic/core/crypto/common_cert_set.cc",
"third_party/quic/core/crypto/common_cert_set.h",
"third_party/quic/core/crypto/crypto_framer.cc",
"third_party/quic/core/crypto/crypto_framer.h",
"third_party/quic/core/crypto/crypto_handshake.cc",
"third_party/quic/core/crypto/crypto_handshake.h",
"third_party/quic/core/crypto/crypto_handshake_message.cc",
"third_party/quic/core/crypto/crypto_handshake_message.h",
"third_party/quic/core/crypto/crypto_message_parser.h",
"third_party/quic/core/crypto/crypto_protocol.h",
"third_party/quic/core/crypto/crypto_secret_boxer.cc",
"third_party/quic/core/crypto/crypto_secret_boxer.h",
"third_party/quic/core/crypto/crypto_utils.cc",
"third_party/quic/core/crypto/crypto_utils.h",
"third_party/quic/core/crypto/curve25519_key_exchange.cc",
"third_party/quic/core/crypto/curve25519_key_exchange.h",
"third_party/quic/core/crypto/key_exchange.h",
"third_party/quic/core/crypto/null_decrypter.cc",
"third_party/quic/core/crypto/null_decrypter.h",
"third_party/quic/core/crypto/null_encrypter.cc",
"third_party/quic/core/crypto/null_encrypter.h",
"third_party/quic/core/crypto/p256_key_exchange.cc",
"third_party/quic/core/crypto/p256_key_exchange.h",
"third_party/quic/core/crypto/proof_source.cc",
"third_party/quic/core/crypto/proof_source.h",
"third_party/quic/core/crypto/proof_verifier.h",
"third_party/quic/core/crypto/quic_compressed_certs_cache.cc",
"third_party/quic/core/crypto/quic_compressed_certs_cache.h",
"third_party/quic/core/crypto/quic_crypter.h",
"third_party/quic/core/crypto/quic_crypto_client_config.cc",
"third_party/quic/core/crypto/quic_crypto_client_config.h",
"third_party/quic/core/crypto/quic_crypto_proof.cc",
"third_party/quic/core/crypto/quic_crypto_proof.h",
"third_party/quic/core/crypto/quic_crypto_server_config.cc",
"third_party/quic/core/crypto/quic_crypto_server_config.h",
"third_party/quic/core/crypto/quic_decrypter.cc",
"third_party/quic/core/crypto/quic_decrypter.h",
"third_party/quic/core/crypto/quic_encrypter.cc",
"third_party/quic/core/crypto/quic_encrypter.h",
"third_party/quic/core/crypto/quic_hkdf.cc",
"third_party/quic/core/crypto/quic_hkdf.h",
"third_party/quic/core/crypto/quic_random.cc",
"third_party/quic/core/crypto/quic_random.h",
"third_party/quic/core/crypto/transport_parameters.cc",
"third_party/quic/core/crypto/transport_parameters.h",
"third_party/quic/core/frames/quic_ack_frame.cc",
"third_party/quic/core/frames/quic_ack_frame.h",
"third_party/quic/core/frames/quic_application_close_frame.cc",
"third_party/quic/core/frames/quic_application_close_frame.h",
"third_party/quic/core/frames/quic_blocked_frame.cc",
"third_party/quic/core/frames/quic_blocked_frame.h",
"third_party/quic/core/frames/quic_connection_close_frame.cc",
"third_party/quic/core/frames/quic_connection_close_frame.h",
"third_party/quic/core/frames/quic_crypto_frame.cc",
"third_party/quic/core/frames/quic_crypto_frame.h",
"third_party/quic/core/frames/quic_frame.cc",
"third_party/quic/core/frames/quic_frame.h",
"third_party/quic/core/frames/quic_goaway_frame.cc",
"third_party/quic/core/frames/quic_goaway_frame.h",
"third_party/quic/core/frames/quic_inlined_frame.h",
"third_party/quic/core/frames/quic_max_stream_id_frame.cc",
"third_party/quic/core/frames/quic_max_stream_id_frame.h",
"third_party/quic/core/frames/quic_message_frame.cc",
"third_party/quic/core/frames/quic_message_frame.h",
"third_party/quic/core/frames/quic_mtu_discovery_frame.h",
"third_party/quic/core/frames/quic_new_connection_id_frame.cc",
"third_party/quic/core/frames/quic_new_connection_id_frame.h",
"third_party/quic/core/frames/quic_new_token_frame.cc",
"third_party/quic/core/frames/quic_new_token_frame.h",
"third_party/quic/core/frames/quic_padding_frame.cc",
"third_party/quic/core/frames/quic_padding_frame.h",
"third_party/quic/core/frames/quic_path_challenge_frame.cc",
"third_party/quic/core/frames/quic_path_challenge_frame.h",
"third_party/quic/core/frames/quic_path_response_frame.cc",
"third_party/quic/core/frames/quic_path_response_frame.h",
"third_party/quic/core/frames/quic_ping_frame.cc",
"third_party/quic/core/frames/quic_ping_frame.h",
"third_party/quic/core/frames/quic_retire_connection_id_frame.cc",
"third_party/quic/core/frames/quic_retire_connection_id_frame.h",
"third_party/quic/core/frames/quic_rst_stream_frame.cc",
"third_party/quic/core/frames/quic_rst_stream_frame.h",
"third_party/quic/core/frames/quic_stop_sending_frame.cc",
"third_party/quic/core/frames/quic_stop_sending_frame.h",
"third_party/quic/core/frames/quic_stop_waiting_frame.cc",
"third_party/quic/core/frames/quic_stop_waiting_frame.h",
"third_party/quic/core/frames/quic_stream_frame.cc",
"third_party/quic/core/frames/quic_stream_frame.h",
"third_party/quic/core/frames/quic_stream_id_blocked_frame.cc",
"third_party/quic/core/frames/quic_stream_id_blocked_frame.h",
"third_party/quic/core/frames/quic_window_update_frame.cc",
"third_party/quic/core/frames/quic_window_update_frame.h",
"third_party/quic/core/http/http_decoder.cc",
"third_party/quic/core/http/http_decoder.h",
"third_party/quic/core/http/http_encoder.cc",
"third_party/quic/core/http/http_encoder.h",
"third_party/quic/core/http/http_frames.h",
"third_party/quic/core/http/quic_client_promised_info.cc",
"third_party/quic/core/http/quic_client_promised_info.h",
"third_party/quic/core/http/quic_client_push_promise_index.cc",
"third_party/quic/core/http/quic_client_push_promise_index.h",
"third_party/quic/core/http/quic_header_list.cc",
"third_party/quic/core/http/quic_header_list.h",
"third_party/quic/core/http/quic_headers_stream.cc",
"third_party/quic/core/http/quic_headers_stream.h",
"third_party/quic/core/http/quic_server_session_base.cc",
"third_party/quic/core/http/quic_server_session_base.h",
"third_party/quic/core/http/quic_spdy_client_session_base.cc",
"third_party/quic/core/http/quic_spdy_client_session_base.h",
"third_party/quic/core/http/quic_spdy_session.cc",
"third_party/quic/core/http/quic_spdy_session.h",
"third_party/quic/core/http/quic_spdy_stream.cc",
"third_party/quic/core/http/quic_spdy_stream.h",
"third_party/quic/core/http/quic_spdy_stream_body_buffer.cc",
"third_party/quic/core/http/quic_spdy_stream_body_buffer.h",
"third_party/quic/core/http/spdy_utils.cc",
"third_party/quic/core/http/spdy_utils.h",
"third_party/quic/core/legacy_quic_stream_id_manager.cc",
"third_party/quic/core/legacy_quic_stream_id_manager.h",
"third_party/quic/core/packet_number_indexed_queue.h",
"third_party/quic/core/qpack/qpack_constants.cc",
"third_party/quic/core/qpack/qpack_constants.h",
"third_party/quic/core/qpack/qpack_decoded_headers_accumulator.cc",
"third_party/quic/core/qpack/qpack_decoded_headers_accumulator.h",
"third_party/quic/core/qpack/qpack_decoder.cc",
"third_party/quic/core/qpack/qpack_decoder.h",
"third_party/quic/core/qpack/qpack_decoder_stream_receiver.cc",
"third_party/quic/core/qpack/qpack_decoder_stream_receiver.h",
"third_party/quic/core/qpack/qpack_decoder_stream_sender.cc",
"third_party/quic/core/qpack/qpack_decoder_stream_sender.h",
"third_party/quic/core/qpack/qpack_encoder.cc",
"third_party/quic/core/qpack/qpack_encoder.h",
"third_party/quic/core/qpack/qpack_encoder_stream_receiver.cc",
"third_party/quic/core/qpack/qpack_encoder_stream_receiver.h",
"third_party/quic/core/qpack/qpack_encoder_stream_sender.cc",
"third_party/quic/core/qpack/qpack_encoder_stream_sender.h",
"third_party/quic/core/qpack/qpack_header_table.cc",
"third_party/quic/core/qpack/qpack_header_table.h",
"third_party/quic/core/qpack/qpack_instruction_decoder.cc",
"third_party/quic/core/qpack/qpack_instruction_decoder.h",
"third_party/quic/core/qpack/qpack_instruction_encoder.cc",
"third_party/quic/core/qpack/qpack_instruction_encoder.h",
"third_party/quic/core/qpack/qpack_progressive_decoder.cc",
"third_party/quic/core/qpack/qpack_progressive_decoder.h",
"third_party/quic/core/qpack/qpack_progressive_encoder.cc",
"third_party/quic/core/qpack/qpack_progressive_encoder.h",
"third_party/quic/core/qpack/qpack_static_table.cc",
"third_party/quic/core/qpack/qpack_static_table.h",
"third_party/quic/core/quic_ack_listener_interface.cc",
"third_party/quic/core/quic_ack_listener_interface.h",
"third_party/quic/core/quic_alarm.cc",
"third_party/quic/core/quic_alarm.h",
"third_party/quic/core/quic_alarm_factory.h",
"third_party/quic/core/quic_arena_scoped_ptr.h",
"third_party/quic/core/quic_bandwidth.cc",
"third_party/quic/core/quic_bandwidth.h",
"third_party/quic/core/quic_blocked_writer_interface.h",
"third_party/quic/core/quic_buffer_allocator.cc",
"third_party/quic/core/quic_buffer_allocator.h",
"third_party/quic/core/quic_buffered_packet_store.cc",
"third_party/quic/core/quic_buffered_packet_store.h",
"third_party/quic/core/quic_config.cc",
"third_party/quic/core/quic_config.h",
"third_party/quic/core/quic_connection.cc",
"third_party/quic/core/quic_connection.h",
"third_party/quic/core/quic_connection_close_delegate_interface.h",
"third_party/quic/core/quic_connection_id.cc",
"third_party/quic/core/quic_connection_id.h",
"third_party/quic/core/quic_connection_stats.cc",
"third_party/quic/core/quic_connection_stats.h",
"third_party/quic/core/quic_constants.cc",
"third_party/quic/core/quic_constants.h",
"third_party/quic/core/quic_control_frame_manager.cc",
"third_party/quic/core/quic_control_frame_manager.h",
"third_party/quic/core/quic_crypto_client_handshaker.cc",
"third_party/quic/core/quic_crypto_client_handshaker.h",
"third_party/quic/core/quic_crypto_client_stream.cc",
"third_party/quic/core/quic_crypto_client_stream.h",
"third_party/quic/core/quic_crypto_handshaker.cc",
"third_party/quic/core/quic_crypto_handshaker.h",
"third_party/quic/core/quic_crypto_server_handshaker.cc",
"third_party/quic/core/quic_crypto_server_handshaker.h",
"third_party/quic/core/quic_crypto_server_stream.cc",
"third_party/quic/core/quic_crypto_server_stream.h",
"third_party/quic/core/quic_crypto_stream.cc",
"third_party/quic/core/quic_crypto_stream.h",
"third_party/quic/core/quic_data_reader.cc",
"third_party/quic/core/quic_data_reader.h",
"third_party/quic/core/quic_data_writer.cc",
"third_party/quic/core/quic_data_writer.h",
"third_party/quic/core/quic_flow_controller.cc",
"third_party/quic/core/quic_flow_controller.h",
"third_party/quic/core/quic_framer.cc",
"third_party/quic/core/quic_framer.h",
"third_party/quic/core/quic_lru_cache.h",
"third_party/quic/core/quic_one_block_arena.h",
"third_party/quic/core/quic_packet_creator.cc",
"third_party/quic/core/quic_packet_creator.h",
"third_party/quic/core/quic_packet_generator.cc",
"third_party/quic/core/quic_packet_generator.h",
"third_party/quic/core/quic_packet_number.cc",
"third_party/quic/core/quic_packet_number.h",
"third_party/quic/core/quic_packet_writer.h",
"third_party/quic/core/quic_packets.cc",
"third_party/quic/core/quic_packets.h",
"third_party/quic/core/quic_pending_retransmission.h",
"third_party/quic/core/quic_received_packet_manager.cc",
"third_party/quic/core/quic_received_packet_manager.h",
"third_party/quic/core/quic_sent_packet_manager.cc",
"third_party/quic/core/quic_sent_packet_manager.h",
"third_party/quic/core/quic_server_id.cc",
"third_party/quic/core/quic_server_id.h",
"third_party/quic/core/quic_session.cc",
"third_party/quic/core/quic_session.h",
"third_party/quic/core/quic_simple_buffer_allocator.cc",
"third_party/quic/core/quic_simple_buffer_allocator.h",
"third_party/quic/core/quic_socket_address_coder.cc",
"third_party/quic/core/quic_socket_address_coder.h",
"third_party/quic/core/quic_stream.cc",
"third_party/quic/core/quic_stream.h",
"third_party/quic/core/quic_stream_frame_data_producer.h",
"third_party/quic/core/quic_stream_id_manager.cc",
"third_party/quic/core/quic_stream_id_manager.h",
"third_party/quic/core/quic_stream_send_buffer.cc",
"third_party/quic/core/quic_stream_send_buffer.h",
"third_party/quic/core/quic_stream_sequencer.cc",
"third_party/quic/core/quic_stream_sequencer.h",
"third_party/quic/core/quic_stream_sequencer_buffer.cc",
"third_party/quic/core/quic_stream_sequencer_buffer.h",
"third_party/quic/core/quic_sustained_bandwidth_recorder.cc",
"third_party/quic/core/quic_sustained_bandwidth_recorder.h",
"third_party/quic/core/quic_tag.cc",
"third_party/quic/core/quic_tag.h",
"third_party/quic/core/quic_time.cc",
"third_party/quic/core/quic_time.h",
"third_party/quic/core/quic_transmission_info.cc",
"third_party/quic/core/quic_transmission_info.h",
"third_party/quic/core/quic_types.cc",
"third_party/quic/core/quic_types.h",
"third_party/quic/core/quic_unacked_packet_map.cc",
"third_party/quic/core/quic_unacked_packet_map.h",
"third_party/quic/core/quic_utils.cc",
"third_party/quic/core/quic_utils.h",
"third_party/quic/core/quic_version_manager.cc",
"third_party/quic/core/quic_version_manager.h",
"third_party/quic/core/quic_versions.cc",
"third_party/quic/core/quic_versions.h",
"third_party/quic/core/quic_write_blocked_list.cc",
"third_party/quic/core/quic_write_blocked_list.h",
"third_party/quic/core/tls_client_handshaker.cc",
"third_party/quic/core/tls_client_handshaker.h",
"third_party/quic/core/tls_handshaker.cc",
"third_party/quic/core/tls_handshaker.h",
"third_party/quic/core/tls_server_handshaker.cc",
"third_party/quic/core/tls_server_handshaker.h",
"third_party/quic/core/uber_quic_stream_id_manager.cc",
"third_party/quic/core/uber_quic_stream_id_manager.h",
"third_party/quic/platform/api/quic_aligned.h",
"third_party/quic/platform/api/quic_arraysize.h",
"third_party/quic/platform/api/quic_bug_tracker.h",
"third_party/quic/platform/api/quic_cert_utils.h",
"third_party/quic/platform/api/quic_client_stats.h",
"third_party/quic/platform/api/quic_clock.cc",
"third_party/quic/platform/api/quic_clock.h",
"third_party/quic/platform/api/quic_containers.h",
"third_party/quic/platform/api/quic_endian.h",
"third_party/quic/platform/api/quic_error_code_wrappers.h",
"third_party/quic/platform/api/quic_estimate_memory_usage.h",
"third_party/quic/platform/api/quic_export.h",
"third_party/quic/platform/api/quic_exported_stats.h",
"third_party/quic/platform/api/quic_fallthrough.h",
"third_party/quic/platform/api/quic_file_utils.cc",
"third_party/quic/platform/api/quic_file_utils.h",
"third_party/quic/platform/api/quic_flag_utils.h",
"third_party/quic/platform/api/quic_flags.h",
"third_party/quic/platform/api/quic_hostname_utils.cc",
"third_party/quic/platform/api/quic_hostname_utils.h",
"third_party/quic/platform/api/quic_interval.h",
"third_party/quic/platform/api/quic_iovec.h",
"third_party/quic/platform/api/quic_ip_address.cc",
"third_party/quic/platform/api/quic_ip_address.h",
"third_party/quic/platform/api/quic_ip_address_family.h",
"third_party/quic/platform/api/quic_logging.h",
"third_party/quic/platform/api/quic_macros.h",
"third_party/quic/platform/api/quic_map_util.h",
"third_party/quic/platform/api/quic_mem_slice.h",
"third_party/quic/platform/api/quic_mem_slice_span.h",
"third_party/quic/platform/api/quic_mem_slice_storage.h",
"third_party/quic/platform/api/quic_mutex.cc",
"third_party/quic/platform/api/quic_mutex.h",
"third_party/quic/platform/api/quic_pcc_sender.h",
"third_party/quic/platform/api/quic_prefetch.h",
"third_party/quic/platform/api/quic_ptr_util.h",
"third_party/quic/platform/api/quic_reference_counted.h",
"third_party/quic/platform/api/quic_server_stats.h",
"third_party/quic/platform/api/quic_singleton.h",
"third_party/quic/platform/api/quic_sleep.h",
"third_party/quic/platform/api/quic_socket_address.cc",
"third_party/quic/platform/api/quic_socket_address.h",
"third_party/quic/platform/api/quic_stack_trace.h",
"third_party/quic/platform/api/quic_str_cat.h",
"third_party/quic/platform/api/quic_string.h",
"third_party/quic/platform/api/quic_string_piece.h",
"third_party/quic/platform/api/quic_text_utils.h",
"third_party/quic/platform/impl/quic_aligned_impl.h",
"third_party/quic/platform/impl/quic_arraysize_impl.h",
"third_party/quic/platform/impl/quic_bug_tracker_impl.h",
"third_party/quic/platform/impl/quic_cert_utils_impl.h",
"third_party/quic/platform/impl/quic_chromium_clock.cc",
"third_party/quic/platform/impl/quic_chromium_clock.h",
"third_party/quic/platform/impl/quic_client_stats_impl.h",
"third_party/quic/platform/impl/quic_containers_impl.h",
"third_party/quic/platform/impl/quic_endian_impl.h",
"third_party/quic/platform/impl/quic_error_code_wrappers_impl.h",
"third_party/quic/platform/impl/quic_estimate_memory_usage_impl.h",
"third_party/quic/platform/impl/quic_export_impl.h",
"third_party/quic/platform/impl/quic_fallthrough_impl.h",
"third_party/quic/platform/impl/quic_file_utils_impl.h",
"third_party/quic/platform/impl/quic_flag_utils_impl.h",
"third_party/quic/platform/impl/quic_flags_impl.cc",
"third_party/quic/platform/impl/quic_flags_impl.h",
"third_party/quic/platform/impl/quic_hostname_utils_impl.cc",
"third_party/quic/platform/impl/quic_hostname_utils_impl.h",
"third_party/quic/platform/impl/quic_interval_impl.h",
"third_party/quic/platform/impl/quic_iovec_impl.h",
"third_party/quic/platform/impl/quic_ip_address_impl.cc",
"third_party/quic/platform/impl/quic_ip_address_impl.h",
"third_party/quic/platform/impl/quic_logging_impl.h",
"third_party/quic/platform/impl/quic_macros_impl.h",
"third_party/quic/platform/impl/quic_map_util_impl.h",
"third_party/quic/platform/impl/quic_mem_slice_impl.cc",
"third_party/quic/platform/impl/quic_mem_slice_impl.h",
"third_party/quic/platform/impl/quic_mem_slice_span_impl.cc",
"third_party/quic/platform/impl/quic_mem_slice_span_impl.h",
"third_party/quic/platform/impl/quic_mem_slice_storage_impl.cc",
"third_party/quic/platform/impl/quic_mem_slice_storage_impl.h",
"third_party/quic/platform/impl/quic_mutex_impl.cc",
"third_party/quic/platform/impl/quic_mutex_impl.h",
"third_party/quic/platform/impl/quic_pcc_sender_impl.h",
"third_party/quic/platform/impl/quic_prefetch_impl.h",
"third_party/quic/platform/impl/quic_ptr_util_impl.h",
"third_party/quic/platform/impl/quic_reference_counted_impl.h",
"third_party/quic/platform/impl/quic_server_stats_impl.h",
"third_party/quic/platform/impl/quic_singleton_impl.h",
"third_party/quic/platform/impl/quic_sleep_impl.h",
"third_party/quic/platform/impl/quic_socket_address_impl.cc",
"third_party/quic/platform/impl/quic_socket_address_impl.h",
"third_party/quic/platform/impl/quic_stack_trace_impl.h",
"third_party/quic/platform/impl/quic_str_cat_impl.h",
"third_party/quic/platform/impl/quic_string_impl.h",
"third_party/quic/platform/impl/quic_string_piece_impl.h",
"third_party/quic/platform/impl/quic_text_utils_impl.h",
"third_party/quiche/src/http2/decoder/decode_buffer.cc",
"third_party/quiche/src/http2/decoder/decode_buffer.h",
"third_party/quiche/src/http2/decoder/decode_http2_structures.cc",
"third_party/quiche/src/http2/decoder/decode_http2_structures.h",
"third_party/quiche/src/http2/decoder/decode_status.cc",
"third_party/quiche/src/http2/decoder/decode_status.h",
"third_party/quiche/src/http2/decoder/frame_decoder_state.cc",
"third_party/quiche/src/http2/decoder/frame_decoder_state.h",
"third_party/quiche/src/http2/decoder/http2_frame_decoder.cc",
"third_party/quiche/src/http2/decoder/http2_frame_decoder.h",
"third_party/quiche/src/http2/decoder/http2_frame_decoder_listener.cc",
"third_party/quiche/src/http2/decoder/http2_frame_decoder_listener.h",
"third_party/quiche/src/http2/decoder/http2_structure_decoder.cc",
"third_party/quiche/src/http2/decoder/http2_structure_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/altsvc_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/continuation_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/data_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/goaway_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/headers_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/ping_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/priority_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/push_promise_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/settings_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/unknown_payload_decoder.h",
"third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder.cc",
"third_party/quiche/src/http2/decoder/payload_decoders/window_update_payload_decoder.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_block_decoder.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_listener.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_state.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_string_buffer.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_decoder_tables.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_entry_decoder_listener.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_entry_type_decoder.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_string_decoder_listener.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_buffer.h",
"third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.cc",
"third_party/quiche/src/http2/hpack/decoder/hpack_whole_entry_listener.h",
"third_party/quiche/src/http2/hpack/hpack_static_table_entries.inc",
"third_party/quiche/src/http2/hpack/hpack_string.cc",
"third_party/quiche/src/http2/hpack/hpack_string.h",
"third_party/quiche/src/http2/hpack/http2_hpack_constants.cc",
"third_party/quiche/src/http2/hpack/http2_hpack_constants.h",
"third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.cc",
"third_party/quiche/src/http2/hpack/huffman/hpack_huffman_decoder.h",
"third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.cc",
"third_party/quiche/src/http2/hpack/huffman/hpack_huffman_encoder.h",
"third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.cc",
"third_party/quiche/src/http2/hpack/huffman/huffman_spec_tables.h",
"third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.cc",
"third_party/quiche/src/http2/hpack/varint/hpack_varint_decoder.h",
"third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.cc",
"third_party/quiche/src/http2/hpack/varint/hpack_varint_encoder.h",
"third_party/quiche/src/http2/http2_constants.cc",
"third_party/quiche/src/http2/http2_constants.h",
"third_party/quiche/src/http2/http2_structures.cc",
"third_party/quiche/src/http2/http2_structures.h",
"third_party/quiche/src/http2/platform/api/http2_arraysize.h",
"third_party/quiche/src/http2/platform/api/http2_bug_tracker.h",
"third_party/quiche/src/http2/platform/api/http2_export.h",
"third_party/quiche/src/http2/platform/api/http2_flag_utils.h",
"third_party/quiche/src/http2/platform/api/http2_flags.h",
"third_party/quiche/src/http2/platform/api/http2_optional.h",
"third_party/quiche/src/http2/platform/api/http2_ptr_util.h",
"third_party/quiche/src/http2/platform/api/http2_reconstruct_object.h",
"third_party/quiche/src/http2/platform/api/http2_string.h",
"third_party/quiche/src/http2/platform/api/http2_string_piece.h",
"third_party/quiche/src/http2/platform/api/http2_string_utils.h",
"third_party/quiche/src/spdy/core/hpack/hpack_constants.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_constants.h",
"third_party/quiche/src/spdy/core/hpack/hpack_decoder_adapter.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_decoder_adapter.h",
"third_party/quiche/src/spdy/core/hpack/hpack_encoder.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_encoder.h",
"third_party/quiche/src/spdy/core/hpack/hpack_entry.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_entry.h",
"third_party/quiche/src/spdy/core/hpack/hpack_header_table.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_header_table.h",
"third_party/quiche/src/spdy/core/hpack/hpack_huffman_table.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_huffman_table.h",
"third_party/quiche/src/spdy/core/hpack/hpack_output_stream.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_output_stream.h",
"third_party/quiche/src/spdy/core/hpack/hpack_static_table.cc",
"third_party/quiche/src/spdy/core/hpack/hpack_static_table.h",
"third_party/quiche/src/spdy/core/http2_frame_decoder_adapter.cc",
"third_party/quiche/src/spdy/core/http2_frame_decoder_adapter.h",
"third_party/quiche/src/spdy/core/priority_write_scheduler.h",
"third_party/quiche/src/spdy/core/spdy_alt_svc_wire_format.cc",
"third_party/quiche/src/spdy/core/spdy_alt_svc_wire_format.h",
"third_party/quiche/src/spdy/core/spdy_bitmasks.h",
"third_party/quiche/src/spdy/core/spdy_frame_builder.cc",
"third_party/quiche/src/spdy/core/spdy_frame_builder.h",
"third_party/quiche/src/spdy/core/spdy_frame_reader.cc",
"third_party/quiche/src/spdy/core/spdy_frame_reader.h",
"third_party/quiche/src/spdy/core/spdy_framer.cc",
"third_party/quiche/src/spdy/core/spdy_framer.h",
"third_party/quiche/src/spdy/core/spdy_header_block.cc",
"third_party/quiche/src/spdy/core/spdy_header_block.h",
"third_party/quiche/src/spdy/core/spdy_headers_handler_interface.h",
"third_party/quiche/src/spdy/core/spdy_pinnable_buffer_piece.cc",
"third_party/quiche/src/spdy/core/spdy_pinnable_buffer_piece.h",
"third_party/quiche/src/spdy/core/spdy_prefixed_buffer_reader.cc",
"third_party/quiche/src/spdy/core/spdy_prefixed_buffer_reader.h",
"third_party/quiche/src/spdy/core/spdy_protocol.cc",
"third_party/quiche/src/spdy/core/spdy_protocol.h",
"third_party/quiche/src/spdy/core/write_scheduler.h",
"third_party/quiche/src/spdy/core/zero_copy_output_buffer.h",
"third_party/quiche/src/spdy/platform/api/spdy_arraysize.h",
"third_party/quiche/src/spdy/platform/api/spdy_bug_tracker.h",
"third_party/quiche/src/spdy/platform/api/spdy_containers.h",
"third_party/quiche/src/spdy/platform/api/spdy_endianness_util.h",
"third_party/quiche/src/spdy/platform/api/spdy_estimate_memory_usage.h",
"third_party/quiche/src/spdy/platform/api/spdy_export.h",
"third_party/quiche/src/spdy/platform/api/spdy_flags.h",
"third_party/quiche/src/spdy/platform/api/spdy_macros.h",
"third_party/quiche/src/spdy/platform/api/spdy_mem_slice.h",
"third_party/quiche/src/spdy/platform/api/spdy_ptr_util.h",
"third_party/quiche/src/spdy/platform/api/spdy_string.h",
"third_party/quiche/src/spdy/platform/api/spdy_string_piece.h",
"third_party/quiche/src/spdy/platform/api/spdy_string_utils.h",
"third_party/quiche/src/spdy/platform/api/spdy_test_utils_prod.h",
"third_party/quiche/src/spdy/platform/api/spdy_unsafe_arena.h",
"url_request/data_protocol_handler.cc",
"url_request/data_protocol_handler.h",
"url_request/http_user_agent_settings.h",
"url_request/redirect_info.cc",
"url_request/redirect_info.h",
"url_request/redirect_util.cc",
"url_request/redirect_util.h",
"url_request/report_sender.cc",
"url_request/report_sender.h",
"url_request/static_http_user_agent_settings.cc",
"url_request/static_http_user_agent_settings.h",
"url_request/url_fetcher.cc",
"url_request/url_fetcher.h",
"url_request/url_fetcher_core.cc",
"url_request/url_fetcher_core.h",
"url_request/url_fetcher_delegate.cc",
"url_request/url_fetcher_delegate.h",
"url_request/url_fetcher_factory.h",
"url_request/url_fetcher_impl.cc",
"url_request/url_fetcher_impl.h",
"url_request/url_fetcher_response_writer.cc",
"url_request/url_fetcher_response_writer.h",
"url_request/url_range_request_job.cc",
"url_request/url_range_request_job.h",
"url_request/url_request.cc",
"url_request/url_request.h",
"url_request/url_request_context.cc",
"url_request/url_request_context.h",
"url_request/url_request_context_builder.cc",
"url_request/url_request_context_builder.h",
"url_request/url_request_context_getter.cc",
"url_request/url_request_context_getter.h",
"url_request/url_request_context_getter_observer.h",
"url_request/url_request_context_storage.cc",
"url_request/url_request_context_storage.h",
"url_request/url_request_data_job.cc",
"url_request/url_request_data_job.h",
"url_request/url_request_error_job.cc",
"url_request/url_request_error_job.h",
"url_request/url_request_filter.cc",
"url_request/url_request_filter.h",
"url_request/url_request_http_job.cc",
"url_request/url_request_http_job.h",
"url_request/url_request_http_job_histogram.h",
"url_request/url_request_intercepting_job_factory.cc",
"url_request/url_request_intercepting_job_factory.h",
"url_request/url_request_interceptor.cc",
"url_request/url_request_interceptor.h",
"url_request/url_request_job.cc",
"url_request/url_request_job.h",
"url_request/url_request_job_factory.cc",
"url_request/url_request_job_factory.h",
"url_request/url_request_job_factory_impl.cc",
"url_request/url_request_job_factory_impl.h",
"url_request/url_request_job_manager.cc",
"url_request/url_request_job_manager.h",
"url_request/url_request_netlog_params.cc",
"url_request/url_request_netlog_params.h",
"url_request/url_request_redirect_job.cc",
"url_request/url_request_redirect_job.h",
"url_request/url_request_simple_job.cc",
"url_request/url_request_simple_job.h",
"url_request/url_request_status.cc",
"url_request/url_request_status.h",
"url_request/url_request_test_job.cc",
"url_request/url_request_test_job.h",
"url_request/url_request_throttler_entry.cc",
"url_request/url_request_throttler_entry.h",
"url_request/url_request_throttler_entry_interface.h",
"url_request/url_request_throttler_manager.cc",
"url_request/url_request_throttler_manager.h",
"url_request/view_cache_helper.cc",
"url_request/view_cache_helper.h",
"url_request/websocket_handshake_userdata_key.cc",
"url_request/websocket_handshake_userdata_key.h",
]
if (enable_reporting) {
sources += [
"network_error_logging/network_error_logging_delegate.cc",
"network_error_logging/network_error_logging_delegate.h",
"network_error_logging/network_error_logging_service.cc",
"network_error_logging/network_error_logging_service.h",
"reporting/reporting_browsing_data_remover.cc",
"reporting/reporting_browsing_data_remover.h",
"reporting/reporting_cache.cc",
"reporting/reporting_cache.h",
"reporting/reporting_cache_impl.cc",
"reporting/reporting_cache_impl.h",
"reporting/reporting_cache_observer.cc",
"reporting/reporting_cache_observer.h",
"reporting/reporting_client.cc",
"reporting/reporting_client.h",
"reporting/reporting_context.cc",
"reporting/reporting_context.h",
"reporting/reporting_delegate.cc",
"reporting/reporting_delegate.h",
"reporting/reporting_delivery_agent.cc",
"reporting/reporting_delivery_agent.h",
"reporting/reporting_endpoint_manager.cc",
"reporting/reporting_endpoint_manager.h",
"reporting/reporting_garbage_collector.cc",
"reporting/reporting_garbage_collector.h",
"reporting/reporting_header_parser.cc",
"reporting/reporting_header_parser.h",
"reporting/reporting_network_change_observer.cc",
"reporting/reporting_network_change_observer.h",
"reporting/reporting_policy.cc",
"reporting/reporting_policy.h",
"reporting/reporting_report.cc",
"reporting/reporting_report.h",
"reporting/reporting_service.cc",
"reporting/reporting_service.h",
"reporting/reporting_uploader.cc",
"reporting/reporting_uploader.h",
]
}
if (!use_kerberos) {
sources -= [
"http/http_auth_handler_negotiate.cc",
"http/http_auth_handler_negotiate.h",
]
}
if (is_posix || is_fuchsia) {
sources += [
"base/file_stream_context_posix.cc",
"base/network_interfaces_posix.cc",
"base/network_interfaces_posix.h",
"disk_cache/blockfile/file_posix.cc",
"disk_cache/cache_util_posix.cc",
"disk_cache/simple/simple_index_file_posix.cc",
"disk_cache/simple/simple_util_posix.cc",
"http/url_security_manager_posix.cc",
"socket/socket_posix.cc",
"socket/socket_posix.h",
"socket/tcp_socket_posix.cc",
"socket/tcp_socket_posix.h",
"socket/udp_socket_posix.cc",
"socket/udp_socket_posix.h",
]
if (posix_avoid_mmap) {
sources += [ "disk_cache/blockfile/mapped_file_avoid_mmap_posix.cc" ]
} else {
sources += [ "disk_cache/blockfile/mapped_file_posix.cc" ]
}
}
if (is_android || is_chromeos) {
sources += [
"base/network_change_notifier_posix.cc",
"base/network_change_notifier_posix.h",
]
}
if (is_win) {
sources -= [
"ntlm/ntlm.cc",
"ntlm/ntlm.h",
"ntlm/ntlm_buffer_reader.cc",
"ntlm/ntlm_buffer_reader.h",
"ntlm/ntlm_buffer_writer.cc",
"ntlm/ntlm_buffer_writer.h",
"ntlm/ntlm_client.cc",
"ntlm/ntlm_client.h",
"ntlm/ntlm_constants.h",
]
}
if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) {
sources += [
"http/http_auth_gssapi_posix.cc",
"http/http_auth_gssapi_posix.h",
]
}
if (!is_nacl) {
sources -= [ "base/network_interfaces_nacl.cc" ]
}
# Use getifaddrs() on POSIX platforms, except Linux and Android.
if (is_posix && !is_linux && !is_android) {
sources += [
"base/network_interfaces_getifaddrs.cc",
"base/network_interfaces_getifaddrs.h",
]
}
if (!use_nss_certs) {
sources -= [
"cert/internal/trust_store_nss.cc",
"cert/internal/trust_store_nss.h",
"cert/known_roots_nss.cc",
"cert/known_roots_nss.h",
"cert/nss_cert_database.cc",
"cert/nss_cert_database.h",
"ssl/client_cert_store_nss.cc",
"ssl/client_cert_store_nss.h",
"third_party/mozilla_security_manager/nsNSSCertificateDB.cpp",
"third_party/mozilla_security_manager/nsNSSCertificateDB.h",
"third_party/mozilla_security_manager/nsPKCS12Blob.cpp",
"third_party/mozilla_security_manager/nsPKCS12Blob.h",
]
if (is_chromeos) {
# These were already removed on non-ChromeOS.
sources -= [
"cert/nss_cert_database_chromeos.cc",
"cert/nss_cert_database_chromeos.h",
"cert/nss_profile_filter_chromeos.cc",
"cert/nss_profile_filter_chromeos.h",
]
}
sources -= [ "ssl/ssl_platform_key_nss.cc" ]
} else {
sources += [
"third_party/nss/ssl/cmpcert.cc",
"third_party/nss/ssl/cmpcert.h",
]
}
if (!use_nss_certs) {
# These files are part of the partial implementation of NSS for
# cert verification, so keep them in that case.
sources -= [
"cert/cert_verify_proc_nss.cc",
"cert/cert_verify_proc_nss.h",
"cert/test_root_certs_nss.cc",
"cert/x509_util_nss.cc",
"cert_net/nss_ocsp.cc",
"cert_net/nss_ocsp.h",
]
}
if (is_chromecast && use_nss_certs) {
sources -= [
"ssl/client_cert_store_nss.cc",
"ssl/client_cert_store_nss.h",
"ssl/ssl_platform_key_nss.cc",
]
}
if (is_win) {
sources -= [ "http/http_auth_handler_ntlm_portable.cc" ]
} else { # !is_win
sources -= [
"base/winsock_init.cc",
"base/winsock_init.h",
"base/winsock_util.cc",
"base/winsock_util.h",
"proxy_resolution/proxy_resolver_winhttp.cc",
"proxy_resolution/proxy_resolver_winhttp.h",
]
}
if (is_ios) {
# Add back some sources that were otherwise filtered out.
# iOS needs some Mac files.
net_unfiltered_sources += [
"base/mac/url_conversions.h",
"base/mac/url_conversions.mm",
"base/network_change_notifier_mac.cc",
"base/network_change_notifier_mac.h",
"base/network_config_watcher_mac.cc",
"base/network_config_watcher_mac.h",
"base/platform_mime_util_mac.mm",
"base/proxy_server_mac.cc",
"cert/test_root_certs_mac.cc",
"cert/x509_util_ios_and_mac.cc",
"cert/x509_util_ios_and_mac.h",
"proxy_resolution/proxy_resolver_mac.cc",
"proxy_resolution/proxy_resolver_mac.h",
]
sources -= [ "disk_cache/blockfile/file_posix.cc" ]
}
if (is_ios || is_mac) {
sources += [
"base/mac/url_conversions.h",
"base/mac/url_conversions.mm",
]
}
if (is_android) {
# Add some Linux sources that were excluded by the filter, but which
# are needed.
net_unfiltered_sources += [
"base/address_tracker_linux.cc",
"base/address_tracker_linux.h",
"base/network_interfaces_linux.cc",
"base/network_interfaces_linux.h",
"base/platform_mime_util_linux.cc",
]
}
if (is_fuchsia) {
sources += [
"base/network_change_notifier_fuchsia.cc",
"base/network_change_notifier_fuchsia.h",
"base/network_interfaces_fuchsia.cc",
"base/network_interfaces_fuchsia.h",
"base/platform_mime_util_fuchsia.cc",
"cert/test_root_certs_fuchsia.cc",
]
}
if (trial_comparison_cert_verifier_supported) {
sources += [
"cert/trial_comparison_cert_verifier.cc",
"cert/trial_comparison_cert_verifier.h",
]
}
}
if (enable_unix_sockets) {
sources += [
"socket/unix_domain_client_socket_posix.cc",
"socket/unix_domain_client_socket_posix.h",
"socket/unix_domain_server_socket_posix.cc",
"socket/unix_domain_server_socket_posix.h",
]
}
# Add back some sources that were otherwise filtered out.
set_sources_assignment_filter([])
sources += net_unfiltered_sources
set_sources_assignment_filter(sources_assignment_filter)
cflags = []
if (is_mac) {
libs = [
"CFNetwork.framework",
"CoreServices.framework",
"Foundation.framework",
"Security.framework",
"SystemConfiguration.framework",
"resolv",
]
}
if (is_ios) {
libs = [
"CFNetwork.framework",
"MobileCoreServices.framework",
"Security.framework",
"SystemConfiguration.framework",
"resolv",
]
}
if (is_win) {
libs = [
"crypt32.lib",
"dhcpcsvc.lib",
"iphlpapi.lib",
"ncrypt.lib",
"rpcrt4.lib",
"secur32.lib",
"urlmon.lib",
"winhttp.lib",
]
}
if (!is_nacl) {
if (!disable_file_support) {
sources += [
"base/directory_lister.cc",
"base/directory_lister.h",
"base/directory_listing.cc",
"base/directory_listing.h",
"url_request/file_protocol_handler.cc",
"url_request/file_protocol_handler.h",
"url_request/url_request_file_dir_job.cc",
"url_request/url_request_file_dir_job.h",
"url_request/url_request_file_job.cc",
"url_request/url_request_file_job.h",
]
}
if (!disable_ftp_support) {
sources += [
"ftp/ftp_auth_cache.cc",
"ftp/ftp_auth_cache.h",
"ftp/ftp_ctrl_response_buffer.cc",
"ftp/ftp_ctrl_response_buffer.h",
"ftp/ftp_directory_listing_parser.cc",
"ftp/ftp_directory_listing_parser.h",
"ftp/ftp_directory_listing_parser_ls.cc",
"ftp/ftp_directory_listing_parser_ls.h",
"ftp/ftp_directory_listing_parser_vms.cc",
"ftp/ftp_directory_listing_parser_vms.h",
"ftp/ftp_directory_listing_parser_windows.cc",
"ftp/ftp_directory_listing_parser_windows.h",
"ftp/ftp_network_layer.cc",
"ftp/ftp_network_layer.h",
"ftp/ftp_network_session.cc",
"ftp/ftp_network_session.h",
"ftp/ftp_network_transaction.cc",
"ftp/ftp_network_transaction.h",
"ftp/ftp_request_info.h",
"ftp/ftp_response_info.cc",
"ftp/ftp_response_info.h",
"ftp/ftp_server_type_histograms.cc",
"ftp/ftp_server_type_histograms.h",
"ftp/ftp_transaction.h",
"ftp/ftp_transaction_factory.h",
"ftp/ftp_util.cc",
"ftp/ftp_util.h",
"url_request/ftp_protocol_handler.cc",
"url_request/ftp_protocol_handler.h",
"url_request/url_request_ftp_job.cc",
"url_request/url_request_ftp_job.h",
]
}
if (enable_websockets) {
sources += [
"websockets/websocket_basic_handshake_stream.cc",
"websockets/websocket_basic_handshake_stream.h",
"websockets/websocket_basic_stream.cc",
"websockets/websocket_basic_stream.h",
"websockets/websocket_basic_stream_adapters.cc",
"websockets/websocket_basic_stream_adapters.h",
"websockets/websocket_channel.cc",
"websockets/websocket_channel.h",
"websockets/websocket_deflate_parameters.cc",
"websockets/websocket_deflate_parameters.h",
"websockets/websocket_deflate_predictor.h",
"websockets/websocket_deflate_predictor_impl.cc",
"websockets/websocket_deflate_predictor_impl.h",
"websockets/websocket_deflate_stream.cc",
"websockets/websocket_deflate_stream.h",
"websockets/websocket_deflater.cc",
"websockets/websocket_deflater.h",
"websockets/websocket_errors.cc",
"websockets/websocket_errors.h",
"websockets/websocket_event_interface.h",
"websockets/websocket_extension.cc",
"websockets/websocket_extension.h",
"websockets/websocket_extension_parser.cc",
"websockets/websocket_extension_parser.h",
"websockets/websocket_frame.cc",
"websockets/websocket_frame.h",
"websockets/websocket_frame_parser.cc",
"websockets/websocket_frame_parser.h",
"websockets/websocket_handshake_challenge.cc",
"websockets/websocket_handshake_challenge.h",
"websockets/websocket_handshake_constants.cc",
"websockets/websocket_handshake_constants.h",
"websockets/websocket_handshake_request_info.cc",
"websockets/websocket_handshake_request_info.h",
"websockets/websocket_handshake_response_info.cc",
"websockets/websocket_handshake_response_info.h",
"websockets/websocket_handshake_stream_base.cc",
"websockets/websocket_handshake_stream_base.h",
"websockets/websocket_handshake_stream_create_helper.cc",
"websockets/websocket_handshake_stream_create_helper.h",
"websockets/websocket_http2_handshake_stream.cc",
"websockets/websocket_http2_handshake_stream.h",
"websockets/websocket_inflater.cc",
"websockets/websocket_inflater.h",
"websockets/websocket_stream.cc",
"websockets/websocket_stream.h",
]
}
# ICU support.
if (use_platform_icu_alternatives) {
if (is_android) {
# Use ICU alternative on Android.
sources += [ "base/net_string_util_icu_alternatives_android.cc" ]
} else if (is_ios) {
# Use ICU alternative on iOS.
sources += [ "base/net_string_util_icu_alternatives_ios.mm" ]
} else {
assert(false,
"ICU alternative is not implemented for platform: " + target_os)
}
} else {
# Use ICU.
sources += [
"base/filename_util_icu.cc",
"base/net_string_util_icu.cc",
]
}
# Brotli support.
if (!disable_brotli_filter) {
sources += [
"filter/brotli_source_stream.cc",
"filter/brotli_source_stream.h",
]
} else {
sources += [ "filter/brotli_source_stream_disabled.cc" ]
}
}
}
# Private dependencies for the //net component and for any build targets (e.g.
# source sets with circular dependencies with //net) that need to share the same
# dependencies.
source_set("net_deps") {
visibility = [
":net",
"//net/dns",
"//net/dns:dns_client",
"//net/dns:host_resolver",
"//net/dns:host_resolver_impl",
"//net/dns:mdns_client",
"//net/dns/public",
]
public_deps = [
":constants",
":net_resources",
":preload_decoder",
"//base",
"//net/base/registry_controlled_domains",
"//third_party/protobuf:protobuf_lite",
"//url:buildflags",
]
public_configs = net_configs
if (include_transport_security_state_preload_list) {
public_deps += [ "//net/http:generate_transport_security_state" ]
}
if (!is_nacl) {
public_deps += [
"//base/third_party/dynamic_annotations",
"//third_party/zlib",
]
if (use_gio) {
public_configs += [ "//build/linux:gio_config" ]
}
if (is_android) {
public_deps += [ ":net_jni_headers" ]
}
if (is_fuchsia) {
public_deps += [
"//third_party/fuchsia-sdk/sdk:hardware_ethernet",
"//third_party/fuchsia-sdk/sdk:netstack",
]
}
if (use_platform_icu_alternatives) {
if (is_android) {
public_deps += [ ":net_jni_headers" ]
}
} else {
public_deps += [
"//base:i18n",
"//third_party/icu",
]
}
if (!disable_brotli_filter) {
public_deps += [ "//third_party/brotli:dec" ]
}
}
}
# Public dependencies for the //net component and for any build targets (e.g.
# source sets with circular dependencies with //net) that need to share the same
# dependencies.
source_set("net_public_deps") {
visibility = [
":net",
"//net/dns",
"//net/dns:dns_client",
"//net/dns:host_resolver",
"//net/dns:host_resolver_impl",
"//net/dns:mdns_client",
"//net/dns/public",
]
public_deps = [
":buildflags",
":net_nqe_proto",
":net_quic_proto",
"//crypto",
"//crypto:platform",
"//net/traffic_annotation",
"//third_party/boringssl",
"//url",
]
if (is_nacl) {
public_deps += [ "//native_client_sdk/src/libraries/nacl_io" ]
}
}
grit("net_resources") {
source = "base/net_resources.grd"
outputs = [
"grit/net_resources.h",
"net_resources.pak",
]
}
proto_library("net_nqe_proto") {
visibility = [ ":net_public_deps" ]
sources = [
"nqe/proto/network_id_proto.proto",
]
cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
cc_include = "net/base/net_export.h"
component_build_force_source_set = true
defines = [ "NET_IMPLEMENTATION" ]
extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
}
proto_library("net_quic_proto") {
visibility = [ ":net_public_deps" ]
sources = [
"third_party/quic/core/proto/cached_network_parameters.proto",
"third_party/quic/core/proto/crypto_server_config.proto",
"third_party/quic/core/proto/source_address_token.proto",
]
cc_generator_options = "dllexport_decl=NET_EXPORT_PRIVATE:"
cc_include = "net/base/net_export.h"
component_build_force_source_set = true
defines = [ "NET_IMPLEMENTATION" ]
extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
}
if (!is_proto_quic) {
component("extras") {
sources = [
"extras/sqlite/cookie_crypto_delegate.h",
"extras/sqlite/sqlite_channel_id_store.cc",
"extras/sqlite/sqlite_channel_id_store.h",
"extras/sqlite/sqlite_persistent_cookie_store.cc",
"extras/sqlite/sqlite_persistent_cookie_store.h",
]
defines = [ "IS_NET_EXTRAS_IMPL" ]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
":net",
"//base",
"//sql:sql",
]
}
}
static_library("preload_decoder") {
sources = [
"extras/preload_data/decoder.cc",
"extras/preload_data/decoder.h",
]
deps = [
"//base",
]
}
if (!is_ios) {
executable("dump_cache") {
testonly = true
sources = [
"tools/dump_cache/dump_cache.cc",
"tools/dump_cache/dump_files.cc",
"tools/dump_cache/dump_files.h",
]
deps = [
":net",
":test_support",
"//base",
"//build/win:default_exe_manifest",
]
}
}
# This section can be updated from globbing rules using:
# python ./tools/update_ios_bundle_data.py
bundle_data("test_support_bundle_data") {
visibility = [ ":test_support" ]
testonly = true
sources = [
"data/quic_http_response_cache_data_with_push/test.example.com/favicon.ico",
"data/quic_http_response_cache_data_with_push/test.example.com/index.html",
"data/quic_http_response_cache_data_with_push/test.example.com/index2.html",
"data/quic_http_response_cache_data_with_push/test.example.com/kitten-1.jpg",
"data/ssl/certificates/1024-rsa-ee-by-1024-rsa-intermediate.pem",
"data/ssl/certificates/1024-rsa-ee-by-2048-rsa-intermediate.pem",
"data/ssl/certificates/1024-rsa-ee-by-768-rsa-intermediate.pem",
"data/ssl/certificates/1024-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
"data/ssl/certificates/1024-rsa-intermediate.pem",
"data/ssl/certificates/10_year_validity.pem",
"data/ssl/certificates/11_year_validity.pem",
"data/ssl/certificates/2029_globalsign_com_cert.pem",
"data/ssl/certificates/2048-rsa-ee-by-1024-rsa-intermediate.pem",
"data/ssl/certificates/2048-rsa-ee-by-2048-rsa-intermediate.pem",
"data/ssl/certificates/2048-rsa-ee-by-768-rsa-intermediate.pem",
"data/ssl/certificates/2048-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
"data/ssl/certificates/2048-rsa-intermediate.pem",
"data/ssl/certificates/2048-rsa-root.pem",
"data/ssl/certificates/39_months_after_2015_04.pem",
"data/ssl/certificates/39_months_based_on_last_day.pem",
"data/ssl/certificates/40_months_after_2015_04.pem",
"data/ssl/certificates/60_months_after_2012_07.pem",
"data/ssl/certificates/61_months_after_2012_07.pem",
"data/ssl/certificates/768-rsa-ee-by-1024-rsa-intermediate.pem",
"data/ssl/certificates/768-rsa-ee-by-2048-rsa-intermediate.pem",
"data/ssl/certificates/768-rsa-ee-by-768-rsa-intermediate.pem",
"data/ssl/certificates/768-rsa-ee-by-prime256v1-ecdsa-intermediate.pem",
"data/ssl/certificates/768-rsa-intermediate.pem",
"data/ssl/certificates/825_days_1_second_after_2018_03_01.pem",
"data/ssl/certificates/825_days_after_2018_03_01.pem",
"data/ssl/certificates/826_days_after_2018_03_01.pem",
"data/ssl/certificates/BUILD.gn",
"data/ssl/certificates/README",
"data/ssl/certificates/aia-cert.pem",
"data/ssl/certificates/aia-intermediate.der",
"data/ssl/certificates/aia-root.pem",
"data/ssl/certificates/bad_validity.pem",
"data/ssl/certificates/can_sign_http_exchanges_draft_extension.pem",
"data/ssl/certificates/can_sign_http_exchanges_draft_extension_invalid.pem",
"data/ssl/certificates/client-empty-password.p12",
"data/ssl/certificates/client-nokey.p12",
"data/ssl/certificates/client-null-password.p12",
"data/ssl/certificates/client.p12",
"data/ssl/certificates/client_1.key",
"data/ssl/certificates/client_1.pem",
"data/ssl/certificates/client_1.pk8",
"data/ssl/certificates/client_1_ca.pem",
"data/ssl/certificates/client_2.key",
"data/ssl/certificates/client_2.pem",
"data/ssl/certificates/client_2.pk8",
"data/ssl/certificates/client_2_ca.pem",
"data/ssl/certificates/client_3.key",
"data/ssl/certificates/client_3.pem",
"data/ssl/certificates/client_3.pk8",
"data/ssl/certificates/client_3_ca.pem",
"data/ssl/certificates/client_4.key",
"data/ssl/certificates/client_4.pem",
"data/ssl/certificates/client_4.pk8",
"data/ssl/certificates/client_4_ca.pem",
"data/ssl/certificates/client_5.key",
"data/ssl/certificates/client_5.pem",
"data/ssl/certificates/client_5.pk8",
"data/ssl/certificates/client_5_ca.pem",
"data/ssl/certificates/client_6.key",
"data/ssl/certificates/client_6.pem",
"data/ssl/certificates/client_6.pk8",
"data/ssl/certificates/client_6_ca.pem",
"data/ssl/certificates/client_root_ca.pem",
"data/ssl/certificates/common_name_only.pem",
"data/ssl/certificates/comodo-chain.pem",
"data/ssl/certificates/crit-codeSigning-chain.pem",
"data/ssl/certificates/crlset_by_intermediate_serial.raw",
"data/ssl/certificates/crlset_by_leaf_spki.raw",
"data/ssl/certificates/crlset_by_leaf_subject_no_spki.raw",
"data/ssl/certificates/crlset_by_root_serial.raw",
"data/ssl/certificates/crlset_by_root_subject.raw",
"data/ssl/certificates/crlset_by_root_subject_no_spki.raw",
"data/ssl/certificates/cross-signed-leaf.pem",
"data/ssl/certificates/cross-signed-root-md5.pem",
"data/ssl/certificates/cross-signed-root-sha256.pem",
"data/ssl/certificates/ct-test-embedded-cert.pem",
"data/ssl/certificates/ct-test-embedded-with-intermediate-chain.pem",
"data/ssl/certificates/ct-test-embedded-with-intermediate-preca-chain.pem",
"data/ssl/certificates/ct-test-embedded-with-preca-chain.pem",
"data/ssl/certificates/daltonridgeapts.com-chain.pem",
"data/ssl/certificates/dec_2017.pem",
"data/ssl/certificates/diginotar_cyber_ca.pem",
"data/ssl/certificates/diginotar_pkioverheid.pem",
"data/ssl/certificates/diginotar_pkioverheid_g2.pem",
"data/ssl/certificates/diginotar_public_ca_2025.pem",
"data/ssl/certificates/diginotar_root_ca.pem",
"data/ssl/certificates/diginotar_services_1024_ca.pem",
"data/ssl/certificates/duplicate_cn_1.p12",
"data/ssl/certificates/duplicate_cn_1.pem",
"data/ssl/certificates/duplicate_cn_2.p12",
"data/ssl/certificates/duplicate_cn_2.pem",
"data/ssl/certificates/eku-test-root.pem",
"data/ssl/certificates/empty_subject_cert.der",
"data/ssl/certificates/expired_cert.pem",
"data/ssl/certificates/explicit-policy-chain.pem",
"data/ssl/certificates/foaf.me.chromium-test-cert.der",
"data/ssl/certificates/gms.hongleong.com.my-verisign-chain.pem",
"data/ssl/certificates/google.binary.p7b",
"data/ssl/certificates/google.chain.pem",
"data/ssl/certificates/google.pem_cert.p7b",
"data/ssl/certificates/google.pem_pkcs7.p7b",
"data/ssl/certificates/google.single.der",
"data/ssl/certificates/google.single.pem",
"data/ssl/certificates/google_diginotar.pem",
"data/ssl/certificates/googlenew.chain.pem",
"data/ssl/certificates/intermediate_ca_cert.pem",
"data/ssl/certificates/invalid_key_usage_cert.der",
"data/ssl/certificates/key_usage_p256.key",
"data/ssl/certificates/key_usage_p256_both.pem",
"data/ssl/certificates/key_usage_p256_digitalsignature.pem",
"data/ssl/certificates/key_usage_p256_keyagreement.pem",
"data/ssl/certificates/key_usage_p256_no_extension.pem",
"data/ssl/certificates/key_usage_rsa.key",
"data/ssl/certificates/key_usage_rsa_both.pem",
"data/ssl/certificates/key_usage_rsa_digitalsignature.pem",
"data/ssl/certificates/key_usage_rsa_keyencipherment.pem",
"data/ssl/certificates/key_usage_rsa_no_extension.pem",
"data/ssl/certificates/large_key.pem",
"data/ssl/certificates/localhost_cert.pem",
"data/ssl/certificates/login.trustwave.com.pem",
"data/ssl/certificates/may_2018.pem",
"data/ssl/certificates/mit.davidben.der",
"data/ssl/certificates/multi-root-A-by-B.pem",
"data/ssl/certificates/multi-root-B-by-C.pem",
"data/ssl/certificates/multi-root-B-by-F.pem",
"data/ssl/certificates/multi-root-BFE.keychain",
"data/ssl/certificates/multi-root-C-by-D.pem",
"data/ssl/certificates/multi-root-C-by-E.pem",
"data/ssl/certificates/multi-root-D-by-D.pem",
"data/ssl/certificates/multi-root-E-by-E.pem",
"data/ssl/certificates/multi-root-F-by-E.pem",
"data/ssl/certificates/multi-root-chain1.pem",
"data/ssl/certificates/multi-root-chain2.pem",
"data/ssl/certificates/multi-root-crlset-C.raw",
"data/ssl/certificates/multi-root-crlset-CD-and-FE.raw",
"data/ssl/certificates/multi-root-crlset-D-and-E.raw",
"data/ssl/certificates/multi-root-crlset-E.raw",
"data/ssl/certificates/multi-root-crlset-unrelated.raw",
"data/ssl/certificates/multi-root.keychain",
"data/ssl/certificates/multivalue_rdn.pem",
"data/ssl/certificates/name_constraint_bad.pem",
"data/ssl/certificates/name_constraint_good.pem",
"data/ssl/certificates/ndn.ca.crt",
"data/ssl/certificates/nist.der",
"data/ssl/certificates/no_subject_common_name_cert.pem",
"data/ssl/certificates/non-crit-codeSigning-chain.pem",
"data/ssl/certificates/ocsp-test-root.pem",
"data/ssl/certificates/ok_cert.pem",
"data/ssl/certificates/ok_cert_by_intermediate.pem",
"data/ssl/certificates/post_june_2016.pem",
"data/ssl/certificates/pre_br_validity_bad_121.pem",
"data/ssl/certificates/pre_br_validity_bad_2020.pem",
"data/ssl/certificates/pre_br_validity_ok.pem",
"data/ssl/certificates/pre_june_2016.pem",
"data/ssl/certificates/prime256v1-ecdsa-ee-by-1024-rsa-intermediate.pem",
"data/ssl/certificates/prime256v1-ecdsa-ee-by-2048-rsa-intermediate.pem",
"data/ssl/certificates/prime256v1-ecdsa-ee-by-768-rsa-intermediate.pem",
"data/ssl/certificates/prime256v1-ecdsa-ee-by-prime256v1-ecdsa-intermediate.pem",
"data/ssl/certificates/prime256v1-ecdsa-intermediate.pem",
"data/ssl/certificates/punycodetest.pem",
"data/ssl/certificates/quic-chain.pem",
"data/ssl/certificates/quic-leaf-cert.key",
"data/ssl/certificates/quic-leaf-cert.key.pkcs8.pem",
"data/ssl/certificates/quic-leaf-cert.key.sct",
"data/ssl/certificates/quic-root.pem",
"data/ssl/certificates/redundant-server-chain.pem",
"data/ssl/certificates/redundant-validated-chain-root.pem",
"data/ssl/certificates/redundant-validated-chain.pem",
"data/ssl/certificates/reject_intranet_hosts.pem",
"data/ssl/certificates/root_ca_cert.pem",
"data/ssl/certificates/salesforce_com_test.pem",
"data/ssl/certificates/self-signed-invalid-name.pem",
"data/ssl/certificates/self-signed-invalid-sig.pem",
"data/ssl/certificates/sha1_2016.pem",
"data/ssl/certificates/sha1_leaf.pem",
"data/ssl/certificates/spdy_pooling.pem",
"data/ssl/certificates/start_after_expiry.pem",
"data/ssl/certificates/subjectAltName_sanity_check.pem",
"data/ssl/certificates/subjectAltName_www_example_com.pem",
"data/ssl/certificates/thawte.single.pem",
"data/ssl/certificates/tls_feature_extension.pem",
"data/ssl/certificates/unescaped.pem",
"data/ssl/certificates/unittest.key.bin",
"data/ssl/certificates/unittest.originbound.der",
"data/ssl/certificates/unittest.originbound.key.der",
"data/ssl/certificates/unittest.selfsigned.der",
"data/ssl/certificates/verisign_class3_g5_crosssigned-trusted.keychain",
"data/ssl/certificates/verisign_class3_g5_crosssigned.pem",
"data/ssl/certificates/verisign_intermediate_ca_2011.pem",
"data/ssl/certificates/verisign_intermediate_ca_2016.pem",
"data/ssl/certificates/weak_digest_md2_ee.pem",
"data/ssl/certificates/weak_digest_md2_intermediate.pem",
"data/ssl/certificates/weak_digest_md2_root.pem",
"data/ssl/certificates/weak_digest_md4_ee.pem",
"data/ssl/certificates/weak_digest_md4_intermediate.pem",
"data/ssl/certificates/weak_digest_md4_root.pem",
"data/ssl/certificates/weak_digest_md5_ee.pem",
"data/ssl/certificates/weak_digest_md5_intermediate.pem",
"data/ssl/certificates/weak_digest_md5_root.pem",
"data/ssl/certificates/weak_digest_sha1_ee.pem",
"data/ssl/certificates/weak_digest_sha1_intermediate.pem",
"data/ssl/certificates/weak_digest_sha1_root.pem",
"data/ssl/certificates/websocket_cacert.pem",
"data/ssl/certificates/websocket_client_cert.p12",
"data/ssl/certificates/wildcard.pem",
"data/ssl/certificates/www.ahrn.com.pem",
"data/ssl/certificates/x509_verify_results.chain.pem",
]
outputs = [
"{{bundle_resources_dir}}/" +
"{{source_root_relative_dir}}/{{source_file_part}}",
]
}
static_library("test_support") {
testonly = true
sources = [
"base/load_timing_info_test_util.cc",
"base/load_timing_info_test_util.h",
"base/mock_file_stream.cc",
"base/mock_file_stream.h",
"base/mock_network_change_notifier.cc",
"base/mock_network_change_notifier.h",
"base/test_completion_callback.cc",
"base/test_completion_callback.h",
"cert/mock_cert_verifier.cc",
"cert/mock_cert_verifier.h",
"cert/mock_client_cert_verifier.cc",
"cert/mock_client_cert_verifier.h",
"cookies/canonical_cookie_test_helpers.h",
"cookies/cookie_change_dispatcher_test_helpers.cc",
"cookies/cookie_change_dispatcher_test_helpers.h",
"cookies/cookie_monster_store_test.cc",
"cookies/cookie_monster_store_test.h",
"cookies/cookie_store_change_unittest.h",
"cookies/cookie_store_test_callbacks.cc",
"cookies/cookie_store_test_callbacks.h",
"cookies/cookie_store_test_helpers.cc",
"cookies/cookie_store_test_helpers.h",
"cookies/cookie_store_unittest.h",
"disk_cache/disk_cache_test_base.cc",
"disk_cache/disk_cache_test_base.h",
"disk_cache/disk_cache_test_util.cc",
"disk_cache/disk_cache_test_util.h",
"filter/filter_source_stream_test_util.cc",
"filter/filter_source_stream_test_util.h",
"filter/mock_source_stream.cc",
"filter/mock_source_stream.h",
"http/http_stream_factory_test_util.cc",
"http/http_stream_factory_test_util.h",
"http/http_transaction_test_util.cc",
"http/http_transaction_test_util.h",
"http/mock_http_cache.cc",
"http/mock_http_cache.h",
"http/transport_security_state_test_util.cc",
"http/transport_security_state_test_util.h",
"log/test_net_log.cc",
"log/test_net_log.h",
"log/test_net_log_entry.cc",
"log/test_net_log_entry.h",
"log/test_net_log_util.cc",
"log/test_net_log_util.h",
"nqe/network_quality_estimator_test_util.cc",
"nqe/network_quality_estimator_test_util.h",
"proxy_resolution/mock_pac_file_fetcher.cc",
"proxy_resolution/mock_pac_file_fetcher.h",
"proxy_resolution/mock_proxy_host_resolver.cc",
"proxy_resolution/mock_proxy_host_resolver.h",
"proxy_resolution/mock_proxy_resolver.cc",
"proxy_resolution/mock_proxy_resolver.h",
"proxy_resolution/proxy_config_service_common_unittest.cc",
"proxy_resolution/proxy_config_service_common_unittest.h",
"socket/socket_test_util.cc",
"socket/socket_test_util.h",
"spdy/spdy_test_util_common.cc",
"spdy/spdy_test_util_common.h",
"ssl/client_cert_identity_test_util.cc",
"ssl/client_cert_identity_test_util.h",
"ssl/ssl_private_key_test_util.cc",
"ssl/ssl_private_key_test_util.h",
"test/cert_test_util.cc",
"test/cert_test_util.h",
"test/cert_test_util_nss.cc",
"test/channel_id_test_util.cc",
"test/channel_id_test_util.h",
"test/ct_test_util.cc",
"test/ct_test_util.h",
"test/embedded_test_server/controllable_http_response.cc",
"test/embedded_test_server/controllable_http_response.h",
"test/embedded_test_server/default_handlers.cc",
"test/embedded_test_server/default_handlers.h",
"test/embedded_test_server/embedded_test_server.cc",
"test/embedded_test_server/embedded_test_server.h",
"test/embedded_test_server/embedded_test_server_connection_listener.h",
"test/embedded_test_server/http_connection.cc",
"test/embedded_test_server/http_connection.h",
"test/embedded_test_server/http_request.cc",
"test/embedded_test_server/http_request.h",
"test/embedded_test_server/http_response.cc",
"test/embedded_test_server/http_response.h",
"test/embedded_test_server/request_handler_util.cc",
"test/embedded_test_server/request_handler_util.h",
"test/embedded_test_server/simple_connection_listener.cc",
"test/embedded_test_server/simple_connection_listener.h",
"test/event_waiter.h",
"test/gtest_util.h",
"test/keychain_test_util_mac.cc",
"test/keychain_test_util_mac.h",
"test/net_test_suite.cc",
"test/net_test_suite.h",
"test/quic_simple_test_server.cc",
"test/quic_simple_test_server.h",
"test/scoped_disable_exit_on_dfatal.cc",
"test/scoped_disable_exit_on_dfatal.h",
"test/tcp_socket_proxy.cc",
"test/tcp_socket_proxy.h",
"test/test_certificate_data.h",
"test/test_data_directory.cc",
"test/test_data_directory.h",
"test/test_with_scoped_task_environment.h",
"test/url_request/ssl_certificate_error_job.cc",
"test/url_request/ssl_certificate_error_job.h",
"test/url_request/url_request_failed_job.cc",
"test/url_request/url_request_failed_job.h",
"test/url_request/url_request_hanging_read_job.cc",
"test/url_request/url_request_hanging_read_job.h",
"test/url_request/url_request_mock_data_job.cc",
"test/url_request/url_request_mock_data_job.h",
"test/url_request/url_request_slow_download_job.cc",
"test/url_request/url_request_slow_download_job.h",
"url_request/test_url_fetcher_factory.cc",
"url_request/test_url_fetcher_factory.h",
"url_request/url_request_test_util.cc",
"url_request/url_request_test_util.h",
]
configs += [ "//build/config:precompiled_headers" ]
public_deps = [
"//base",
"//base/test:test_support",
"//crypto",
"//net",
"//net/dns:test_support",
"//net/tools/tld_cleanup",
"//net/traffic_annotation:test_support",
"//testing/gmock",
"//testing/gtest",
"//url",
]
deps = [
":simple_quic_tools",
"//net/http:transport_security_state_unittest_data_default",
"//third_party/zlib",
]
allow_circular_includes_from = [ "//net/dns:test_support" ]
data = [
"data/",
]
if (is_mac) {
libs = [ "Security.framework" ]
}
if (is_ios) {
deps += [ ":test_support_bundle_data" ]
} else {
public_deps += [ "//third_party/protobuf:py_proto" ]
}
if (use_nss_certs) {
public_deps += [ "//crypto:platform" ]
}
if (!is_ios) {
sources += [
"test/spawned_test_server/base_test_server.cc",
"test/spawned_test_server/base_test_server.h",
"test/spawned_test_server/spawned_test_server.h",
]
}
public_configs = [ ":net_test_config" ]
if (use_remote_test_server) {
sources += [
"test/spawned_test_server/remote_test_server.cc",
"test/spawned_test_server/remote_test_server.h",
"test/spawned_test_server/remote_test_server_config.cc",
"test/spawned_test_server/remote_test_server_config.h",
"test/spawned_test_server/remote_test_server_spawner_request.cc",
"test/spawned_test_server/remote_test_server_spawner_request.h",
]
} else if (!is_ios) {
sources += [
"test/spawned_test_server/local_test_server.cc",
"test/spawned_test_server/local_test_server.h",
]
if (is_win) {
sources += [ "test/spawned_test_server/local_test_server_win.cc" ]
} else if (is_posix || is_fuchsia) {
sources += [ "test/spawned_test_server/local_test_server_posix.cc" ]
}
}
if (enable_python_utils) {
sources += [
"test/python_utils.cc",
"test/python_utils.h",
]
}
if (use_v8_in_net) {
public_deps += [ ":net_with_v8" ]
}
if (!use_nss_certs) {
sources -= [ "test/cert_test_util_nss.cc" ]
}
if (!disable_file_support) {
sources += [
"test/url_request/url_request_mock_http_job.cc",
"test/url_request/url_request_mock_http_job.h",
"url_request/test_url_request_interceptor.cc",
"url_request/test_url_request_interceptor.h",
]
}
if (enable_reporting) {
sources += [
"network_error_logging/network_error_logging_test_util.cc",
"network_error_logging/network_error_logging_test_util.h",
"reporting/reporting_test_util.cc",
"reporting/reporting_test_util.h",
]
}
}
if (use_v8_in_net) {
component("net_with_v8") {
sources = [
"proxy_resolution/proxy_host_resolver.h",
"proxy_resolution/proxy_resolver_v8.cc",
"proxy_resolution/proxy_resolver_v8.h",
"proxy_resolution/proxy_resolver_v8_tracing.cc",
"proxy_resolution/proxy_resolver_v8_tracing.h",
"proxy_resolution/proxy_resolver_v8_tracing_wrapper.cc",
"proxy_resolution/proxy_resolver_v8_tracing_wrapper.h",
]
defines = [ "NET_IMPLEMENTATION" ]
configs += [
"//build/config/compiler:wexit_time_destructors",
"//v8:external_startup_data",
]
public_deps = [
":constants",
":net",
]
deps = [
"//base",
"//gin",
"//url",
"//v8",
]
}
}
if (!is_ios && !is_android) {
executable("cert_verify_tool") {
testonly = true
sources = [
"tools/cert_verify_tool/cert_verify_tool.cc",
"tools/cert_verify_tool/cert_verify_tool_util.cc",
"tools/cert_verify_tool/cert_verify_tool_util.h",
"tools/cert_verify_tool/verify_using_cert_verify_proc.cc",
"tools/cert_verify_tool/verify_using_cert_verify_proc.h",
"tools/cert_verify_tool/verify_using_path_builder.cc",
"tools/cert_verify_tool/verify_using_path_builder.h",
]
deps = [
":net",
":test_support",
"//base",
"//build/win:default_exe_manifest",
]
if (is_mac) {
libs = [ "Security.framework" ]
}
}
executable("crash_cache") {
testonly = true
sources = [
"tools/crash_cache/crash_cache.cc",
]
deps = [
":net",
":test_support",
"//base",
"//build/win:default_exe_manifest",
]
}
executable("dns_fuzz_stub") {
testonly = true
sources = [
"tools/dns_fuzz_stub/dns_fuzz_stub.cc",
]
deps = [
":net",
"//base",
"//build/win:default_exe_manifest",
]
}
executable("hpack_example_generator") {
testonly = true
sources = [
"spdy/fuzzing/hpack_example_generator.cc",
]
deps = [
":net",
":spdy_test_tools",
"//base",
"//build/win:default_exe_manifest",
]
}
if (use_v8_in_net) {
executable("net_watcher") {
testonly = true
sources = [
"tools/net_watcher/net_watcher.cc",
]
deps = [
":net",
":net_with_v8",
"//base",
"//build/win:default_exe_manifest",
]
}
}
executable("run_testserver") {
testonly = true
sources = [
"tools/testserver/run_testserver.cc",
]
deps = [
":test_support",
"//base",
"//base/test:test_support",
"//build/win:default_exe_manifest",
"//testing/gtest",
]
}
executable("stress_cache") {
testonly = true
sources = [
"tools/stress_cache/stress_cache.cc",
]
deps = [
":net",
":test_support",
"//base",
"//build/win:default_exe_manifest",
]
}
executable("tld_cleanup") {
sources = [
"tools/tld_cleanup/tld_cleanup.cc",
]
deps = [
"//base",
"//base:i18n",
"//build/win:default_exe_manifest",
"//net/tools/tld_cleanup",
]
}
}
if (is_linux || is_mac) {
executable("cachetool") {
testonly = true
sources = [
"tools/cachetool/cachetool.cc",
]
deps = [
":net",
":test_support",
"//base",
]
}
executable("content_decoder_tool") {
testonly = true
sources = [
"tools/content_decoder_tool/content_decoder_tool.cc",
"tools/content_decoder_tool/content_decoder_tool.h",
"tools/content_decoder_tool/content_decoder_tool_bin.cc",
]
deps = [
":net",
":test_support",
"//base",
"//url",
]
}
}
if (is_linux) {
static_library("epoll_server") {
sources = [
"tools/epoll_server/epoll_server.cc",
"tools/epoll_server/epoll_server.h",
]
deps = [
":net",
"//base",
]
}
source_set("epoll_quic_tools") {
sources = [
"third_party/quic/core/quic_default_packet_writer.cc",
"third_party/quic/core/quic_default_packet_writer.h",
"third_party/quic/core/quic_epoll_alarm_factory.cc",
"third_party/quic/core/quic_epoll_alarm_factory.h",
"third_party/quic/core/quic_epoll_connection_helper.cc",
"third_party/quic/core/quic_epoll_connection_helper.h",
"third_party/quic/core/quic_packet_reader.cc",
"third_party/quic/core/quic_packet_reader.h",
"third_party/quic/platform/api/quic_default_proof_providers.h",
"third_party/quic/platform/impl/batch_writer/quic_batch_writer_base.cc",
"third_party/quic/platform/impl/batch_writer/quic_batch_writer_base.h",
"third_party/quic/platform/impl/batch_writer/quic_batch_writer_buffer.cc",
"third_party/quic/platform/impl/batch_writer/quic_batch_writer_buffer.h",
"third_party/quic/platform/impl/batch_writer/quic_gso_batch_writer.cc",
"third_party/quic/platform/impl/batch_writer/quic_gso_batch_writer.h",
"third_party/quic/platform/impl/batch_writer/quic_sendmmsg_batch_writer.cc",
"third_party/quic/platform/impl/batch_writer/quic_sendmmsg_batch_writer.h",
"third_party/quic/platform/impl/quic_default_proof_providers_impl.cc",
"third_party/quic/platform/impl/quic_default_proof_providers_impl.h",
"third_party/quic/platform/impl/quic_epoll_clock.cc",
"third_party/quic/platform/impl/quic_epoll_clock.h",
"third_party/quic/platform/impl/quic_linux_socket_utils.cc",
"third_party/quic/platform/impl/quic_linux_socket_utils.h",
"third_party/quic/platform/impl/quic_socket_utils.cc",
"third_party/quic/platform/impl/quic_socket_utils.h",
"third_party/quic/tools/quic_client.cc",
"third_party/quic/tools/quic_client.h",
"third_party/quic/tools/quic_client_epoll_network_helper.cc",
"third_party/quic/tools/quic_client_epoll_network_helper.h",
"third_party/quic/tools/quic_server.cc",
"third_party/quic/tools/quic_server.h",
]
deps = [
":epoll_server",
":net",
":simple_quic_tools",
"//base",
"//base/third_party/dynamic_annotations",
"//crypto",
"//third_party/boringssl",
"//url",
]
}
executable("epoll_quic_client") {
sources = [
"third_party/quic/tools/quic_client_bin.cc",
]
deps = [
":epoll_quic_tools",
":epoll_server",
":net",
":simple_quic_tools",
"//base",
"//third_party/boringssl",
]
}
executable("epoll_quic_server") {
sources = [
"third_party/quic/tools/quic_server_bin.cc",
]
deps = [
":epoll_quic_tools",
":epoll_server",
":net",
":simple_quic_tools",
"//base",
"//third_party/boringssl",
]
}
}
if (is_android) {
generate_jni("net_jni_headers") {
sources = [
"android/java/src/org/chromium/net/AndroidCellularSignalStrength.java",
"android/java/src/org/chromium/net/AndroidCertVerifyResult.java",
"android/java/src/org/chromium/net/AndroidKeyStore.java",
"android/java/src/org/chromium/net/AndroidNetworkLibrary.java",
"android/java/src/org/chromium/net/AndroidTrafficStats.java",
"android/java/src/org/chromium/net/GURLUtils.java",
"android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java",
"android/java/src/org/chromium/net/HttpUtil.java",
"android/java/src/org/chromium/net/NetStringUtil.java",
"android/java/src/org/chromium/net/NetworkChangeNotifier.java",
"android/java/src/org/chromium/net/ProxyChangeListener.java",
"android/java/src/org/chromium/net/X509Util.java",
]
jni_package = "net"
}
generate_jni("net_test_jni_headers") {
sources = [
"android/javatests/src/org/chromium/net/AndroidKeyStoreTestUtil.java",
"android/javatests/src/org/chromium/net/AndroidNetworkLibraryTestUtil.java",
"android/javatests/src/org/chromium/net/AndroidProxyConfigServiceTestUtil.java",
"test/android/javatests/src/org/chromium/net/test/DummySpnegoAuthenticator.java",
"test/android/javatests/src/org/chromium/net/test/EmbeddedTestServerImpl.java",
]
jni_package = "net/test"
}
}
if (is_android || is_linux) {
executable("disk_cache_memory_test") {
testonly = true
sources = [
"tools/disk_cache_memory_test/disk_cache_memory_test.cc",
]
deps = [
":net",
"//base",
]
}
}
source_set("spdy_test_tools") {
testonly = true
sources = [
"spdy/fuzzing/hpack_fuzz_util.cc",
"spdy/fuzzing/hpack_fuzz_util.h",
]
deps = [
":net",
"//base",
]
}
source_set("quic_test_tools") {
testonly = true
sources = [
"quic/crypto_test_utils_chromium.cc",
"quic/mock_crypto_client_stream.cc",
"quic/mock_crypto_client_stream.h",
"quic/mock_crypto_client_stream_factory.cc",
"quic/mock_crypto_client_stream_factory.h",
"quic/mock_decrypter.cc",
"quic/mock_decrypter.h",
"quic/mock_encrypter.cc",
"quic/mock_encrypter.h",
"quic/test_task_runner.cc",
"quic/test_task_runner.h",
"third_party/quic/core/qpack/offline/qpack_offline_decoder.cc",
"third_party/quic/core/qpack/offline/qpack_offline_decoder.h",
"third_party/quic/core/qpack/qpack_decoder_test_utils.cc",
"third_party/quic/core/qpack/qpack_decoder_test_utils.h",
"third_party/quic/core/qpack/qpack_encoder_test_utils.cc",
"third_party/quic/core/qpack/qpack_encoder_test_utils.h",
"third_party/quic/core/qpack/qpack_test_utils.cc",
"third_party/quic/core/qpack/qpack_test_utils.h",
"third_party/quic/core/quic_trace_visitor.cc",
"third_party/quic/core/quic_trace_visitor.h",
"third_party/quic/platform/api/quic_expect_bug.h",
"third_party/quic/platform/api/quic_mock_log.h",
"third_party/quic/platform/api/quic_port_utils.h",
"third_party/quic/platform/api/quic_test.h",
"third_party/quic/platform/api/quic_test_loopback.cc",
"third_party/quic/platform/api/quic_test_loopback.h",
"third_party/quic/platform/api/quic_test_mem_slice_vector.h",
"third_party/quic/platform/api/quic_test_output.h",
"third_party/quic/platform/impl/quic_expect_bug_impl.h",
"third_party/quic/platform/impl/quic_mock_log_impl.h",
"third_party/quic/platform/impl/quic_port_utils_impl.cc",
"third_party/quic/platform/impl/quic_port_utils_impl.h",
"third_party/quic/platform/impl/quic_test_impl.cc",
"third_party/quic/platform/impl/quic_test_impl.h",
"third_party/quic/platform/impl/quic_test_loopback_impl.cc",
"third_party/quic/platform/impl/quic_test_loopback_impl.h",
"third_party/quic/platform/impl/quic_test_mem_slice_vector_impl.cc",
"third_party/quic/platform/impl/quic_test_mem_slice_vector_impl.h",
"third_party/quic/platform/impl/quic_test_output_impl.cc",
"third_party/quic/platform/impl/quic_test_output_impl.h",
"third_party/quic/test_tools/crypto_test_utils.cc",
"third_party/quic/test_tools/crypto_test_utils.h",
"third_party/quic/test_tools/failing_proof_source.cc",
"third_party/quic/test_tools/failing_proof_source.h",
"third_party/quic/test_tools/fake_proof_source.cc",
"third_party/quic/test_tools/fake_proof_source.h",
"third_party/quic/test_tools/mock_clock.cc",
"third_party/quic/test_tools/mock_clock.h",
"third_party/quic/test_tools/mock_quic_client_promised_info.cc",
"third_party/quic/test_tools/mock_quic_client_promised_info.h",
"third_party/quic/test_tools/mock_quic_dispatcher.cc",
"third_party/quic/test_tools/mock_quic_dispatcher.h",
"third_party/quic/test_tools/mock_quic_session_visitor.cc",
"third_party/quic/test_tools/mock_quic_session_visitor.h",
"third_party/quic/test_tools/mock_quic_spdy_client_stream.cc",
"third_party/quic/test_tools/mock_quic_spdy_client_stream.h",
"third_party/quic/test_tools/mock_random.cc",
"third_party/quic/test_tools/mock_random.h",
"third_party/quic/test_tools/quic_buffered_packet_store_peer.cc",
"third_party/quic/test_tools/quic_buffered_packet_store_peer.h",
"third_party/quic/test_tools/quic_client_promised_info_peer.cc",
"third_party/quic/test_tools/quic_client_promised_info_peer.h",
"third_party/quic/test_tools/quic_config_peer.cc",
"third_party/quic/test_tools/quic_config_peer.h",
"third_party/quic/test_tools/quic_connection_peer.cc",
"third_party/quic/test_tools/quic_connection_peer.h",
"third_party/quic/test_tools/quic_crypto_server_config_peer.cc",
"third_party/quic/test_tools/quic_crypto_server_config_peer.h",
"third_party/quic/test_tools/quic_dispatcher_peer.cc",
"third_party/quic/test_tools/quic_dispatcher_peer.h",
"third_party/quic/test_tools/quic_flow_controller_peer.cc",
"third_party/quic/test_tools/quic_flow_controller_peer.h",
"third_party/quic/test_tools/quic_framer_peer.cc",
"third_party/quic/test_tools/quic_framer_peer.h",
"third_party/quic/test_tools/quic_packet_creator_peer.cc",
"third_party/quic/test_tools/quic_packet_creator_peer.h",
"third_party/quic/test_tools/quic_packet_generator_peer.cc",
"third_party/quic/test_tools/quic_packet_generator_peer.h",
"third_party/quic/test_tools/quic_sent_packet_manager_peer.cc",
"third_party/quic/test_tools/quic_sent_packet_manager_peer.h",
"third_party/quic/test_tools/quic_server_session_base_peer.h",
"third_party/quic/test_tools/quic_session_peer.cc",
"third_party/quic/test_tools/quic_session_peer.h",
"third_party/quic/test_tools/quic_spdy_session_peer.cc",
"third_party/quic/test_tools/quic_spdy_session_peer.h",
"third_party/quic/test_tools/quic_spdy_stream_peer.cc",
"third_party/quic/test_tools/quic_spdy_stream_peer.h",
"third_party/quic/test_tools/quic_stream_id_manager_peer.cc",
"third_party/quic/test_tools/quic_stream_id_manager_peer.h",
"third_party/quic/test_tools/quic_stream_peer.cc",
"third_party/quic/test_tools/quic_stream_peer.h",
"third_party/quic/test_tools/quic_stream_send_buffer_peer.cc",
"third_party/quic/test_tools/quic_stream_send_buffer_peer.h",
"third_party/quic/test_tools/quic_stream_sequencer_buffer_peer.cc",
"third_party/quic/test_tools/quic_stream_sequencer_buffer_peer.h",
"third_party/quic/test_tools/quic_stream_sequencer_peer.cc",
"third_party/quic/test_tools/quic_stream_sequencer_peer.h",
"third_party/quic/test_tools/quic_sustained_bandwidth_recorder_peer.cc",
"third_party/quic/test_tools/quic_sustained_bandwidth_recorder_peer.h",
"third_party/quic/test_tools/quic_test_utils.cc",
"third_party/quic/test_tools/quic_test_utils.h",
"third_party/quic/test_tools/quic_time_wait_list_manager_peer.cc",
"third_party/quic/test_tools/quic_time_wait_list_manager_peer.h",
"third_party/quic/test_tools/rtt_stats_peer.cc",
"third_party/quic/test_tools/rtt_stats_peer.h",
"third_party/quic/test_tools/simple_data_producer.cc",
"third_party/quic/test_tools/simple_data_producer.h",
"third_party/quic/test_tools/simple_quic_framer.cc",
"third_party/quic/test_tools/simple_quic_framer.h",
"third_party/quic/test_tools/simple_session_notifier.cc",
"third_party/quic/test_tools/simple_session_notifier.h",
"third_party/quic/test_tools/simulator/actor.cc",
"third_party/quic/test_tools/simulator/actor.h",
"third_party/quic/test_tools/simulator/alarm_factory.cc",
"third_party/quic/test_tools/simulator/alarm_factory.h",
"third_party/quic/test_tools/simulator/link.cc",
"third_party/quic/test_tools/simulator/link.h",
"third_party/quic/test_tools/simulator/packet_filter.cc",
"third_party/quic/test_tools/simulator/packet_filter.h",
"third_party/quic/test_tools/simulator/port.cc",
"third_party/quic/test_tools/simulator/port.h",
"third_party/quic/test_tools/simulator/queue.cc",
"third_party/quic/test_tools/simulator/queue.h",
"third_party/quic/test_tools/simulator/quic_endpoint.cc",
"third_party/quic/test_tools/simulator/quic_endpoint.h",
"third_party/quic/test_tools/simulator/simulator.cc",
"third_party/quic/test_tools/simulator/simulator.h",
"third_party/quic/test_tools/simulator/switch.cc",
"third_party/quic/test_tools/simulator/switch.h",
"third_party/quic/test_tools/simulator/traffic_policer.cc",
"third_party/quic/test_tools/simulator/traffic_policer.h",
"third_party/quic/tools/quic_tcp_like_trace_converter.cc",
"third_party/quic/tools/quic_tcp_like_trace_converter.h",
"third_party/quic/tools/quic_tcp_like_trace_converter_test.cc",
]
deps = [
":net",
":simple_quic_tools",
":test_support",
"//base",
"//crypto:test_support",
"//testing/gmock",
"//testing/gtest",
"//third_party/boringssl",
"//third_party/protobuf:protobuf_lite",
"//third_party/quic_trace:quic_trace_proto",
]
if (