blob: ce2c6a63e25a59c443f2ee168bb9705b284275e9 [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",
]
}
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/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/legacy_openssl.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/arena.cc",
"base/arena.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_chromeos.cc",
"base/network_change_notifier_chromeos.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_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_pool.cc",
"http/http_proxy_client_socket_pool.h",
"http/http_proxy_client_socket_wrapper.cc",
"http/http_proxy_client_socket_wrapper.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",
"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_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_client_socket_pool.cc",
"socket/socks_client_socket_pool.h",
"socket/ssl_client_socket_pool.cc",
"socket/ssl_client_socket_pool.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/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_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/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/http2/decoder/decode_buffer.cc",
"third_party/http2/decoder/decode_buffer.h",
"third_party/http2/decoder/decode_http2_structures.cc",
"third_party/http2/decoder/decode_http2_structures.h",
"third_party/http2/decoder/decode_status.cc",
"third_party/http2/decoder/decode_status.h",
"third_party/http2/decoder/frame_decoder_state.cc",
"third_party/http2/decoder/frame_decoder_state.h",
"third_party/http2/decoder/http2_frame_decoder.cc",
"third_party/http2/decoder/http2_frame_decoder.h",
"third_party/http2/decoder/http2_frame_decoder_listener.cc",
"third_party/http2/decoder/http2_frame_decoder_listener.h",
"third_party/http2/decoder/http2_structure_decoder.cc",
"third_party/http2/decoder/http2_structure_decoder.h",
"third_party/http2/decoder/payload_decoders/altsvc_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/altsvc_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/continuation_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/continuation_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/data_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/data_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/goaway_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/goaway_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/headers_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/headers_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/ping_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/ping_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/priority_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/priority_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/push_promise_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/push_promise_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/settings_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/settings_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/unknown_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/unknown_payload_decoder.h",
"third_party/http2/decoder/payload_decoders/window_update_payload_decoder.cc",
"third_party/http2/decoder/payload_decoders/window_update_payload_decoder.h",
"third_party/http2/hpack/decoder/hpack_block_decoder.cc",
"third_party/http2/hpack/decoder/hpack_block_decoder.h",
"third_party/http2/hpack/decoder/hpack_decoder.cc",
"third_party/http2/hpack/decoder/hpack_decoder.h",
"third_party/http2/hpack/decoder/hpack_decoder_listener.cc",
"third_party/http2/hpack/decoder/hpack_decoder_listener.h",
"third_party/http2/hpack/decoder/hpack_decoder_state.cc",
"third_party/http2/hpack/decoder/hpack_decoder_state.h",
"third_party/http2/hpack/decoder/hpack_decoder_string_buffer.cc",
"third_party/http2/hpack/decoder/hpack_decoder_string_buffer.h",
"third_party/http2/hpack/decoder/hpack_decoder_tables.cc",
"third_party/http2/hpack/decoder/hpack_decoder_tables.h",
"third_party/http2/hpack/decoder/hpack_entry_decoder.cc",
"third_party/http2/hpack/decoder/hpack_entry_decoder.h",
"third_party/http2/hpack/decoder/hpack_entry_decoder_listener.cc",
"third_party/http2/hpack/decoder/hpack_entry_decoder_listener.h",
"third_party/http2/hpack/decoder/hpack_entry_type_decoder.cc",
"third_party/http2/hpack/decoder/hpack_entry_type_decoder.h",
"third_party/http2/hpack/decoder/hpack_string_decoder.cc",
"third_party/http2/hpack/decoder/hpack_string_decoder.h",
"third_party/http2/hpack/decoder/hpack_string_decoder_listener.cc",
"third_party/http2/hpack/decoder/hpack_string_decoder_listener.h",
"third_party/http2/hpack/decoder/hpack_whole_entry_buffer.cc",
"third_party/http2/hpack/decoder/hpack_whole_entry_buffer.h",
"third_party/http2/hpack/decoder/hpack_whole_entry_listener.cc",
"third_party/http2/hpack/decoder/hpack_whole_entry_listener.h",
"third_party/http2/hpack/hpack_static_table_entries.inc",
"third_party/http2/hpack/hpack_string.cc",
"third_party/http2/hpack/hpack_string.h",
"third_party/http2/hpack/http2_hpack_constants.cc",
"third_party/http2/hpack/http2_hpack_constants.h",
"third_party/http2/hpack/huffman/hpack_huffman_decoder.cc",
"third_party/http2/hpack/huffman/hpack_huffman_decoder.h",
"third_party/http2/hpack/huffman/hpack_huffman_encoder.cc",
"third_party/http2/hpack/huffman/hpack_huffman_encoder.h",
"third_party/http2/hpack/huffman/huffman_spec_tables.cc",
"third_party/http2/hpack/huffman/huffman_spec_tables.h",
"third_party/http2/hpack/varint/hpack_varint_decoder.cc",
"third_party/http2/hpack/varint/hpack_varint_decoder.h",
"third_party/http2/hpack/varint/hpack_varint_encoder.cc",
"third_party/http2/hpack/varint/hpack_varint_encoder.h",
"third_party/http2/http2_constants.cc",
"third_party/http2/http2_constants.h",
"third_party/http2/http2_structures.cc",
"third_party/http2/http2_structures.h",
"third_party/http2/platform/api/http2_arraysize.h",
"third_party/http2/platform/api/http2_bug_tracker.h",
"third_party/http2/platform/api/http2_export.h",
"third_party/http2/platform/api/http2_flag_utils.h",
"third_party/http2/platform/api/http2_flags.h",
"third_party/http2/platform/api/http2_optional.h",
"third_party/http2/platform/api/http2_ptr_util.h",
"third_party/http2/platform/api/http2_reconstruct_object.h",
"third_party/http2/platform/api/http2_string.h",
"third_party/http2/platform/api/http2_string_piece.h",
"third_party/http2/platform/api/http2_string_utils.h",
"third_party/http2/platform/impl/http2_arraysize_impl.h",
"third_party/http2/platform/impl/http2_bug_tracker_impl.h",
"third_party/http2/platform/impl/http2_export_impl.h",
"third_party/http2/platform/impl/http2_flag_utils_impl.h",
"third_party/http2/platform/impl/http2_flags_impl.cc",
"third_party/http2/platform/impl/http2_flags_impl.h",
"third_party/http2/platform/impl/http2_optional_impl.h",
"third_party/http2/platform/impl/http2_ptr_util_impl.h",
"third_party/http2/platform/impl/http2_reconstruct_object_impl.h",
"third_party/http2/platform/impl/http2_string_impl.h",
"third_party/http2/platform/impl/http2_string_piece_impl.h",
"third_party/http2/platform/impl/http2_string_utils_impl.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/ephemeral_key_source.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/quic_tls_adapter.cc",
"third_party/quic/core/crypto/quic_tls_adapter.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/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_decoder.cc",
"third_party/quic/core/qpack/qpack_decoder.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_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_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_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/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_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_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.h",
"third_party/quic/platform/api/quic_flag_utils.h",
"third_party/quic/platform/api/quic_flags.h",
"third_party/quic/platform/api/quic_goog_cc_sender.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_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_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_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_goog_cc_sender_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_lru_cache_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/quic/quartc/quartc_factory.cc",
"third_party/quic/quartc/quartc_factory.h",
"third_party/quic/quartc/quartc_packet_writer.cc",
"third_party/quic/quartc/quartc_packet_writer.h",
"third_party/quic/quartc/quartc_session.cc",
"third_party/quic/quartc/quartc_session.h",
"third_party/quic/quartc/quartc_stream.cc",
"third_party/quic/quartc/quartc_stream.h",
"third_party/spdy/core/hpack/hpack_constants.cc",
"third_party/spdy/core/hpack/hpack_constants.h",
"third_party/spdy/core/hpack/hpack_decoder_adapter.cc",
"third_party/spdy/core/hpack/hpack_decoder_adapter.h",
"third_party/spdy/core/hpack/hpack_encoder.cc",
"third_party/spdy/core/hpack/hpack_encoder.h",
"third_party/spdy/core/hpack/hpack_entry.cc",
"third_party/spdy/core/hpack/hpack_entry.h",
"third_party/spdy/core/hpack/hpack_header_table.cc",
"third_party/spdy/core/hpack/hpack_header_table.h",
"third_party/spdy/core/hpack/hpack_huffman_table.cc",
"third_party/spdy/core/hpack/hpack_huffman_table.h",
"third_party/spdy/core/hpack/hpack_output_stream.cc",
"third_party/spdy/core/hpack/hpack_output_stream.h",
"third_party/spdy/core/hpack/hpack_static_table.cc",
"third_party/spdy/core/hpack/hpack_static_table.h",
"third_party/spdy/core/http2_frame_decoder_adapter.cc",
"third_party/spdy/core/http2_frame_decoder_adapter.h",
"third_party/spdy/core/priority_write_scheduler.h",
"third_party/spdy/core/spdy_alt_svc_wire_format.cc",
"third_party/spdy/core/spdy_alt_svc_wire_format.h",
"third_party/spdy/core/spdy_bitmasks.h",
"third_party/spdy/core/spdy_bug_tracker.h",
"third_party/spdy/core/spdy_frame_builder.cc",
"third_party/spdy/core/spdy_frame_builder.h",
"third_party/spdy/core/spdy_frame_reader.cc",
"third_party/spdy/core/spdy_frame_reader.h",
"third_party/spdy/core/spdy_framer.cc",
"third_party/spdy/core/spdy_framer.h",
"third_party/spdy/core/spdy_header_block.cc",
"third_party/spdy/core/spdy_header_block.h",
"third_party/spdy/core/spdy_headers_handler_interface.h",
"third_party/spdy/core/spdy_pinnable_buffer_piece.cc",
"third_party/spdy/core/spdy_pinnable_buffer_piece.h",
"third_party/spdy/core/spdy_prefixed_buffer_reader.cc",
"third_party/spdy/core/spdy_prefixed_buffer_reader.h",
"third_party/spdy/core/spdy_protocol.cc",
"third_party/spdy/core/spdy_protocol.h",
"third_party/spdy/core/write_scheduler.h",
"third_party/spdy/core/zero_copy_output_buffer.h",
"third_party/spdy/platform/api/spdy_arraysize.h",
"third_party/spdy/platform/api/spdy_estimate_memory_usage.h",
"third_party/spdy/platform/api/spdy_export.h",
"third_party/spdy/platform/api/spdy_flags.h",
"third_party/spdy/platform/api/spdy_mem_slice.h",
"third_party/spdy/platform/api/spdy_ptr_util.h",
"third_party/spdy/platform/api/spdy_string.h",
"third_party/spdy/platform/api/spdy_string_piece.h",
"third_party/spdy/platform/api/spdy_string_utils.h",
"third_party/spdy/platform/impl/spdy_arraysize_impl.h",
"third_party/spdy/platform/impl/spdy_estimate_memory_usage_impl.h",
"third_party/spdy/platform/impl/spdy_export_impl.h",
"third_party/spdy/platform/impl/spdy_flags_impl.cc",
"third_party/spdy/platform/impl/spdy_flags_impl.h",
"third_party/spdy/platform/impl/spdy_mem_slice_impl.cc",
"third_party/spdy/platform/impl/spdy_mem_slice_impl.h",
"third_party/spdy/platform/impl/spdy_ptr_util_impl.h",
"third_party/spdy/platform/impl/spdy_string_impl.h",
"third_party/spdy/platform/impl/spdy_string_piece_impl.h",
"third_party/spdy/platform/impl/spdy_string_utils_impl.cc",
"third_party/spdy/platform/impl/spdy_string_utils_impl.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_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_observer.cc",
"reporting/reporting_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_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/platform_mime_util_fuchsia.cc",
"cert/test_root_certs_fuchsia.cc",
]
}
}
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:url_features",
]
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: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_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_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/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/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_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_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/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_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/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_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_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/quartc/counting_packet_filter.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_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 (is_linux) {
sources += [
"third_party/quic/test_tools/bad_packet_writer.cc",
"third_party/quic/test_tools/bad_packet_writer.h",
"third_party/quic/test_tools/fake_epoll_server.cc",
"third_party/quic/test_tools/fake_epoll_server.h",
"third_party/quic/test_tools/limited_mtu_test_writer.cc",
"third_party/quic/test_tools/limited_mtu_test_writer.h",
"third_party/quic/test_tools/packet_dropping_test_writer.cc",
"third_party/quic/test_tools/packet_dropping_test_writer.h",
"third_party/quic/test_tools/packet_reordering_writer.cc",
"third_party/quic/test_tools/packet_reordering_writer.h",
"third_party/quic/test_tools/quic_client_peer.cc",
"third_party/quic/test_tools/quic_client_peer.h",
"third_party/quic/test_tools/quic_server_peer.cc",
"third_party/quic/test_tools/quic_server_peer.h",
"third_party/quic/test_tools/quic_test_client.cc",
"third_party/quic/test_tools/quic_test_client.h",
"third_party/quic/test_tools/quic_test_server.cc",
"third_party/quic/test_tools/quic_test_server.h",
"third_party/quic/test_tools/server_thread.cc",
"third_party/quic/test_tools/server_thread.h",
]
deps += [
":epoll_quic_tools",
":epoll_server",
]
}
}
source_set("simple_quic_tools") {
sources = [
"third_party/quic/core/chlo_extractor.cc",
"third_party/quic/core/chlo_extractor.h",
"third_party/quic/core/http/quic_spdy_client_session.cc",
"third_party/quic/core/http/quic_spdy_client_session.h",
"third_party/quic/core/http/quic_spdy_client_stream.cc",
"third_party/quic/core/http/quic_spdy_client_stream.h",
"third_party/quic/core/http/quic_spdy_server_stream_base.cc",
"third_party/quic/core/http/quic_spdy_server_stream_base.h",
"third_party/quic/core/quic_dispatcher.cc",
"third_party/quic/core/quic_dispatcher.h",
"third_party/quic/core/quic_packet_writer_wrapper.cc",
"third_party/quic/core/quic_packet_writer_wrapper.h",
"third_party/quic/core/quic_process_packet_interface.h",
"third_party/quic/core/quic_time_wait_list_manager.cc",
"third_party/quic/core/quic_time_wait_list_manager.h",
"third_party/quic/core/stateless_rejector.cc",
"third_party/quic/core/stateless_rejector.h",
"third_party/quic/tools/quic_backend_response.cc",
"third_party/quic/tools/quic_backend_response.h",
"third_party/quic/tools/quic_client_base.cc",
"third_party/quic/tools/quic_client_base.h",
"third_party/quic/tools/quic_memory_cache_backend.cc",
"third_party/quic/tools/quic_memory_cache_backend.h",
"third_party/quic/tools/quic_simple_client_session.cc",
"third_party/quic/tools/quic_simple_client_session.h",
"third_party/quic/tools/quic_simple_client_stream.cc",
"third_party/quic/tools/quic_simple_client_stream.h",
"third_party/quic/tools/quic_simple_crypto_server_stream_helper.cc",
"third_party/quic/tools/quic_simple_crypto_server_stream_helper.h",
"third_party/quic/tools/quic_simple_dispatcher.cc",
"third_party/quic/tools/quic_simple_dispatcher.h",
"third_party/quic/tools/quic_simple_server_session.cc",
"third_party/quic/tools/quic_simple_server_session.h",
"third_party/quic/tools/quic_simple_server_stream.cc",
"third_party/quic/tools/quic_simple_server_stream.h",
"third_party/quic/tools/quic_spdy_client_base.cc",
"third_party/quic/tools/quic_spdy_client_base.h",
"third_party/quic/tools/quic_url.cc",
"third_party/quic/tools/quic_url.h",
"tools/quic/quic_client_message_loop_network_helper.cc",
"tools/quic/quic_client_message_loop_network_helper.h",
"tools/quic/quic_http_proxy_backend.cc",
"tools/quic/quic_http_proxy_backend.h",
"tools/quic/quic_http_proxy_backend_stream.cc",
"tools/quic/quic_http_proxy_backend_stream.h",
"tools/quic/quic_simple_client.cc",
"tools/quic/quic_simple_client.h",
"tools/quic/quic_simple_per_connection_packet_writer.cc",
"tools/quic/quic_simple_per_connection_packet_writer.h",
"tools/quic/quic_simple_server.cc",
"tools/quic/quic_simple_server.h",
"tools/quic/quic_simple_server_packet_writer.cc",
"tools/quic/quic_simple_server_packet_writer.h",
"tools/quic/quic_simple_server_session_helper.cc",
"tools/quic/quic_simple_server_session_helper.h",
"tools/quic/synchronous_host_resolver.cc",
"tools/quic/synchronous_host_resolver.h",
]
deps = [
":net",
"//base",
"//base/third_party/dynamic_annotations",
"//third_party/protobuf:protobuf_lite",
"//url",
]
}
if (!is_ios) {
executable("quic_client") {
sources = [
"tools/quic/quic_simple_client_bin.cc",
]
deps = [
":net",
":simple_quic_tools",
"//base",
"//build/win:default_exe_manifest",
"//url",
]
}
executable("quic_server") {
sources = [
"tools/quic/quic_simple_server_bin.cc",
]
deps = [
":net",
":simple_quic_tools",
"//base",
"//build/win:default_exe_manifest",
"//third_party/boringssl",
"//third_party/protobuf:protobuf_lite",
]
}
executable("quic_packet_printer") {
sources = [
"third_party/quic/tools/quic_packet_printer_bin.cc",
]
deps = [
":net",
":simple_quic_tools",
"//base",
"//build/win:default_exe_manifest",
"//third_party/boringssl",
"//third_party/protobuf:protobuf_lite",
]
}
executable("quic_reject_reason_decoder") {
sources = [
"third_party/quic/tools/quic_reject_reason_decoder_bin.cc",
]
deps = [
":net",
":simple_quic_tools",
"//base",
"//build/win:default_exe_manifest",
"//third_party/boringssl",
"//third_party/protobuf:protobuf_lite",
]
}
executable("crypto_message_printer") {
sources = [
"tools/quic/crypto_message_printer_bin.cc",
]
deps = [
":net",
"//base",
"//build/win:default_exe_manifest",
]
}
}
# This section can be updated from globbing rules using:
# python ./tools/update_ios_bundle_data.py
bundle_data("net_unittests_bundle_data") {
testonly = true
sources = [
"data/cert_issuer_source_aia_unittest/i.pem",
"data/cert_issuer_source_aia_unittest/i2.pem",
"data/cert_issuer_source_aia_unittest/i3.pem",
"data/cert_issuer_source_aia_unittest/root.pem",
"data/cert_issuer_source_aia_unittest/target_file_aia.pem",
"data/cert_issuer_source_aia_unittest/target_file_and_http_aia.pem",
"data/cert_issuer_source_aia_unittest/target_invalid_and_http_aia.pem",
"data/cert_issuer_source_aia_unittest/target_invalid_url_aia.pem",
"data/cert_issuer_source_aia_unittest/target_no_aia.pem",
"data/cert_issuer_source_aia_unittest/target_one_aia.pem",
"data/cert_issuer_source_aia_unittest/target_six_aia.pem",
"data/cert_issuer_source_aia_unittest/target_three_aia.pem",
"data/cert_issuer_source_aia_unittest/target_two_aia.pem",
"data/cert_issuer_source_static_unittest/c1.pem",
"data/cert_issuer_source_static_unittest/c2.pem",
"data/cert_issuer_source_static_unittest/d.pem",
"data/cert_issuer_source_static_unittest/e1.pem",
"data/cert_issuer_source_static_unittest/e2.pem",
"data/cert_issuer_source_static_unittest/i1_1.pem",
"data/cert_issuer_source_static_unittest/i1_2.pem",
"data/cert_issuer_source_static_unittest/i2.pem",
"data/cert_issuer_source_static_unittest/i3_1.pem",
"data/cert_issuer_source_static_unittest/i3_2.pem",
"data/cert_issuer_source_static_unittest/root.pem",
"data/certificate_policies_unittest/anypolicy.pem",
"data/certificate_policies_unittest/anypolicy_with_qualifier.pem",
"data/certificate_policies_unittest/invalid-anypolicy_with_custom_qualifier.pem",
"data/certificate_policies_unittest/invalid-empty.pem",
"data/certificate_policies_unittest/invalid-policy_1_2_3_dupe.pem",
"data/certificate_policies_unittest/invalid-policy_1_2_3_policyinformation_unconsumed_data.pem",
"data/certificate_policies_unittest/invalid-policy_1_2_3_policyqualifierinfo_unconsumed_data.pem",
"data/certificate_policies_unittest/invalid-policy_1_2_3_with_empty_qualifiers_sequence.pem",
"data/certificate_policies_unittest/invalid-policy_identifier_not_oid.pem",
"data/certificate_policies_unittest/policy_1_2_3.pem",
"data/certificate_policies_unittest/policy_1_2_3_and_1_2_4.pem",
"data/certificate_policies_unittest/policy_1_2_3_and_1_2_4_with_qualifiers.pem",
"data/certificate_policies_unittest/policy_1_2_3_with_custom_qualifier.pem",
"data/certificate_policies_unittest/policy_1_2_3_with_qualifier.pem",
"data/embedded_test_server/mock-headers-without-crlf.html",
"data/embedded_test_server/mock-headers-without-crlf.html.mock-http-headers",
"data/filter_unittests/google.br",
"data/filter_unittests/google.txt",
"data/name_constraints_unittest/directoryname-excludeall.pem",
"data/name_constraints_unittest/directoryname-excluded.pem",
"data/name_constraints_unittest/directoryname.pem",
"data/name_constraints_unittest/directoryname_and_dnsname.pem",
"data/name_constraints_unittest/directoryname_and_dnsname_and_ipaddress.pem",
"data/name_constraints_unittest/dnsname-exclude_dot.pem",
"data/name_constraints_unittest/dnsname-excludeall.pem",
"data/name_constraints_unittest/dnsname-excluded.pem",
"data/name_constraints_unittest/dnsname-excluded_with_leading_dot.pem",
"data/name_constraints_unittest/dnsname-permitted_two_dot.pem",
"data/name_constraints_unittest/dnsname-permitted_with_leading_dot.pem",
"data/name_constraints_unittest/dnsname-with_max.pem",
"data/name_constraints_unittest/dnsname-with_min_0.pem",
"data/name_constraints_unittest/dnsname-with_min_0_and_max.pem",
"data/name_constraints_unittest/dnsname-with_min_1.pem",
"data/name_constraints_unittest/dnsname-with_min_1_and_max.pem",
"data/name_constraints_unittest/dnsname.pem",
"data/name_constraints_unittest/dnsname2.pem",
"data/name_constraints_unittest/edipartyname-excluded.pem",
"data/name_constraints_unittest/edipartyname-permitted.pem",
"data/name_constraints_unittest/invalid-empty_excluded_subtree.pem",
"data/name_constraints_unittest/invalid-empty_permitted_subtree.pem",
"data/name_constraints_unittest/invalid-no_subtrees.pem",
"data/name_constraints_unittest/ipaddress-excludeall.pem",
"data/name_constraints_unittest/ipaddress-excluded.pem",
"data/name_constraints_unittest/ipaddress-invalid_addr.pem",
"data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_1.pem",
"data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_2.pem",
"data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_3.pem",
"data/name_constraints_unittest/ipaddress-invalid_mask_not_contiguous_4.pem",
"data/name_constraints_unittest/ipaddress-permit_all.pem",
"data/name_constraints_unittest/ipaddress-permit_prefix1.pem",
"data/name_constraints_unittest/ipaddress-permit_prefix31.pem",
"data/name_constraints_unittest/ipaddress-permit_singlehost.pem",
"data/name_constraints_unittest/ipaddress.pem",
"data/name_constraints_unittest/name-ca.pem",
"data/name_constraints_unittest/name-de.pem",
"data/name_constraints_unittest/name-empty.pem",
"data/name_constraints_unittest/name-jp-tokyo.pem",
"data/name_constraints_unittest/name-jp.pem",
"data/name_constraints_unittest/name-us-arizona-1.1.1.1.pem",
"data/name_constraints_unittest/name-us-arizona-192.168.1.1.pem",
"data/name_constraints_unittest/name-us-arizona-email.pem",
"data/name_constraints_unittest/name-us-arizona-foo.com.pem",
"data/name_constraints_unittest/name-us-arizona-ipv6.pem",
"data/name_constraints_unittest/name-us-arizona-permitted.example.com.pem",
"data/name_constraints_unittest/name-us-arizona.pem",
"data/name_constraints_unittest/name-us-california-192.168.1.1.pem",
"data/name_constraints_unittest/name-us-california-mountain_view.pem",
"data/name_constraints_unittest/name-us-california-permitted.example.com.pem",
"data/name_constraints_unittest/name-us-california.pem",
"data/name_constraints_unittest/name-us.pem",
"data/name_constraints_unittest/othername-excluded.pem",
"data/name_constraints_unittest/othername-permitted.pem",
"data/name_constraints_unittest/registeredid-excluded.pem",
"data/name_constraints_unittest/registeredid-permitted.pem",
"data/name_constraints_unittest/rfc822name-excluded.pem",
"data/name_constraints_unittest/rfc822name-permitted.pem",
"data/name_constraints_unittest/san-directoryname.pem",
"data/name_constraints_unittest/san-dnsname.pem",
"data/name_constraints_unittest/san-edipartyname.pem",
"data/name_constraints_unittest/san-excluded-directoryname.pem",
"data/name_constraints_unittest/san-excluded-dnsname.pem",
"data/name_constraints_unittest/san-excluded-ipaddress.pem",
"data/name_constraints_unittest/san-invalid-empty.pem",
"data/name_constraints_unittest/san-invalid-ipaddress.pem",
"data/name_constraints_unittest/san-ipaddress4.pem",
"data/name_constraints_unittest/san-ipaddress6.pem",
"data/name_constraints_unittest/san-othername.pem",
"data/name_constraints_unittest/san-permitted.pem",
"data/name_constraints_unittest/san-registeredid.pem",
"data/name_constraints_unittest/san-rfc822name.pem",
"data/name_constraints_unittest/san-uri.pem",
"data/name_constraints_unittest/san-x400address.pem",
"data/name_constraints_unittest/uri-excluded.pem",
"data/name_constraints_unittest/uri-permitted.pem",
"data/name_constraints_unittest/x400address-excluded.pem",
"data/name_constraints_unittest/x400address-permitted.pem",
"data/ocsp_unittest/bad_ocsp_type.pem",
"data/ocsp_unittest/bad_signature.pem",
"data/ocsp_unittest/bad_status.pem",
"data/ocsp_unittest/good_response.pem",
"data/ocsp_unittest/good_response_next_update.pem",
"data/ocsp_unittest/good_response_sha256.pem",
"data/ocsp_unittest/has_extension.pem",
"data/ocsp_unittest/has_single_extension.pem",
"data/ocsp_unittest/has_version.pem",
"data/ocsp_unittest/malformed_request.pem",
"data/ocsp_unittest/missing_response.pem",
"data/ocsp_unittest/multiple_response.pem",
"data/ocsp_unittest/no_response.pem",
"data/ocsp_unittest/ocsp_extra_certs.pem",
"data/ocsp_unittest/ocsp_sign_bad_indirect.pem",
"data/ocsp_unittest/ocsp_sign_direct.pem",
"data/ocsp_unittest/ocsp_sign_indirect.pem",
"data/ocsp_unittest/ocsp_sign_indirect_missing.pem",
"data/ocsp_unittest/other_response.pem",
"data/ocsp_unittest/responder_id.pem",
"data/ocsp_unittest/responder_name.pem",
"data/ocsp_unittest/revoke_response.pem",
"data/ocsp_unittest/revoke_response_reason.pem",
"data/ocsp_unittest/unknown_response.pem",
"data/ov_name_constraints/int-bmp-o1.pem",
"data/ov_name_constraints/int-cn.pem",
"data/ov_name_constraints/int-o1-o2.pem",
"data/ov_name_constraints/int-o1-plus-o2.pem",
"data/ov_name_constraints/int-o2-o1.pem",
"data/ov_name_constraints/int-o3.pem",
"data/ov_name_constraints/leaf-no-o.pem",
"data/ov_name_constraints/leaf-o1-o2.pem",
"data/ov_name_constraints/leaf-o1.pem",
"data/ov_name_constraints/nc-int-exclude-o1.pem",
"data/ov_name_constraints/nc-int-permit-bmp-o1.pem",
"data/ov_name_constraints/nc-int-permit-cn.pem",
"data/ov_name_constraints/nc-int-permit-dns.pem",
"data/ov_name_constraints/nc-int-permit-o1.pem",
"data/ov_name_constraints/nc-int-permit-o2-o1-o3.pem",
"data/ov_name_constraints/root.pem",
"data/parse_certificate_unittest/bad_key_usage.pem",
"data/parse_certificate_unittest/bad_policy_qualifiers.pem",
"data/parse_certificate_unittest/bad_signature_algorithm_oid.pem",
"data/parse_certificate_unittest/bad_validity.pem",
"data/parse_certificate_unittest/basic_constraints_ca_false.pem",
"data/parse_certificate_unittest/basic_constraints_ca_no_path.pem",
"data/parse_certificate_unittest/basic_constraints_ca_path_9.pem",
"data/parse_certificate_unittest/basic_constraints_negative_path.pem",
"data/parse_certificate_unittest/basic_constraints_not_ca.pem",
"data/parse_certificate_unittest/basic_constraints_path_too_large.pem",
"data/parse_certificate_unittest/basic_constraints_pathlen_255.pem",
"data/parse_certificate_unittest/basic_constraints_pathlen_256.pem",
"data/parse_certificate_unittest/basic_constraints_pathlen_not_ca.pem",
"data/parse_certificate_unittest/basic_constraints_unconsumed_data.pem",
"data/parse_certificate_unittest/cert_algorithm_not_sequence.pem",
"data/parse_certificate_unittest/cert_data_after_signature.pem",
"data/parse_certificate_unittest/cert_empty_sequence.pem",
"data/parse_certificate_unittest/cert_missing_signature.pem",
"data/parse_certificate_unittest/cert_not_sequence.pem",
"data/parse_certificate_unittest/cert_signature_not_bit_string.pem",
"data/parse_certificate_unittest/cert_skeleton.pem",
"data/parse_certificate_unittest/cert_version3.pem",
"data/parse_certificate_unittest/crldp_1uri_noissuer.pem",
"data/parse_certificate_unittest/crldp_3uri_noissuer.pem",
"data/parse_certificate_unittest/crldp_full_name_as_dirname.pem",
"data/parse_certificate_unittest/crldp_issuer_as_dirname.pem",
"data/parse_certificate_unittest/extended_key_usage.pem",
"data/parse_certificate_unittest/extension_critical.pem",
"data/parse_certificate_unittest/extension_critical_0.pem",
"data/parse_certificate_unittest/extension_critical_3.pem",
"data/parse_certificate_unittest/extension_not_critical.pem",
"data/parse_certificate_unittest/extensions_data_after_sequence.pem",
"data/parse_certificate_unittest/extensions_duplicate_key_usage.pem",
"data/parse_certificate_unittest/extensions_empty_sequence.pem",
"data/parse_certificate_unittest/extensions_not_sequence.pem",
"data/parse_certificate_unittest/extensions_real.pem",
"data/parse_certificate_unittest/failed_signature_algorithm.pem",
"data/parse_certificate_unittest/inhibit_any_policy.pem",
"data/parse_certificate_unittest/issuer_bad_printable_string.pem",
"data/parse_certificate_unittest/key_usage.pem",
"data/parse_certificate_unittest/name_constraints_bad_ip.pem",
"data/parse_certificate_unittest/policies.pem",
"data/parse_certificate_unittest/policy_constraints_empty.pem",
"data/parse_certificate_unittest/policy_constraints_inhibit.pem",
"data/parse_certificate_unittest/policy_constraints_inhibit_require.pem",
"data/parse_certificate_unittest/policy_constraints_require.pem",
"data/parse_certificate_unittest/policy_qualifiers_empty_sequence.pem",
"data/parse_certificate_unittest/serial_37_bytes.pem",
"data/parse_certificate_unittest/serial_negative.pem",
"data/parse_certificate_unittest/serial_not_minimal.pem",
"data/parse_certificate_unittest/serial_not_number.pem",
"data/parse_certificate_unittest/serial_zero.pem",
"data/parse_certificate_unittest/serial_zero_padded.pem",
"data/parse_certificate_unittest/serial_zero_padded_21_bytes.pem",
"data/parse_certificate_unittest/signature_algorithm_null.pem",
"data/parse_certificate_unittest/subject_alt_name.pem",
"data/parse_certificate_unittest/subject_blank_subjectaltname_not_critical.pem",
"data/parse_certificate_unittest/subject_not_ascii.pem",
"data/parse_certificate_unittest/subject_not_printable_string.pem",
"data/parse_certificate_unittest/subject_printable_string_containing_utf8_client_cert.pem",
"data/parse_certificate_unittest/subject_t61string.pem",
"data/parse_certificate_unittest/subject_t61string_1-32.pem",
"data/parse_certificate_unittest/subject_t61string_126-160.pem",
"data/parse_certificate_unittest/subject_t61string_actual.pem",
"data/parse_certificate_unittest/subjectaltname_bad_ip.pem",
"data/parse_certificate_unittest/subjectaltname_dns_not_ascii.pem",
"data/parse_certificate_unittest/subjectaltname_general_names_empty_sequence.pem",
"data/parse_certificate_unittest/subjectaltname_trailing_data.pem",
"data/parse_certificate_unittest/tbs_explicit_v1.pem",
"data/parse_certificate_unittest/tbs_v1.pem",
"data/parse_certificate_unittest/tbs_v1_extensions.pem",
"data/parse_certificate_unittest/tbs_v2_extensions.pem",
"data/parse_certificate_unittest/tbs_v2_issuer_and_subject_unique_id.pem",
"data/parse_certificate_unittest/tbs_v2_issuer_unique_id.pem",
"data/parse_certificate_unittest/tbs_v2_no_optionals.pem",
"data/parse_certificate_unittest/tbs_v3_all_optionals.pem",
"data/parse_certificate_unittest/tbs_v3_data_after_extensions.pem",
"data/parse_certificate_unittest/tbs_v3_extensions.pem",
"data/parse_certificate_unittest/tbs_v3_extensions_not_sequence.pem",
"data/parse_certificate_unittest/tbs_v3_no_optionals.pem",
"data/parse_certificate_unittest/tbs_v3_real.pem",
"data/parse_certificate_unittest/tbs_v4.pem",
"data/parse_certificate_unittest/tbs_validity_both_generalized_time.pem",
"data/parse_certificate_unittest/tbs_validity_both_utc_time.pem",
"data/parse_certificate_unittest/tbs_validity_generalized_time_and_utc_time.pem",
"data/parse_certificate_unittest/tbs_validity_relaxed.pem",
"data/parse_certificate_unittest/tbs_validity_utc_time_and_generalized_time.pem",
"data/parse_certificate_unittest/v1_explicit_version.pem",
"data/parse_certificate_unittest/v3_certificate_template.pk8",
"data/test.html",
"data/url_request_unittest/308-without-location-header",
"data/url_request_unittest/308-without-location-header.mock-http-headers",
"data/url_request_unittest/BullRunSpeech.txt",
"data/url_request_unittest/content-type-normalization.html",
"data/url_request_unittest/content-type-normalization.html.mock-http-headers",
"data/url_request_unittest/expect-ct-header-multiple.html",
"data/url_request_unittest/expect-ct-header-multiple.html.mock-http-headers",
"data/url_request_unittest/expect-ct-header-preload.html",
"data/url_request_unittest/expect-ct-header-preload.html.mock-http-headers",
"data/url_request_unittest/expect-ct-header.html",
"data/url_request_unittest/expect-ct-header.html.mock-http-headers",
"data/url_request_unittest/filedir-sentinel",
"data/url_request_unittest/gzip-encoded",
"data/url_request_unittest/gzip-encoded.mock-http-headers",
"data/url_request_unittest/hsts-headers.html",
"data/url_request_unittest/hsts-headers.html.mock-http-headers",
"data/url_request_unittest/hsts-multiple-headers.html",
"data/url_request_unittest/hsts-multiple-headers.html.mock-http-headers",
"data/url_request_unittest/redirect-test.html",
"data/url_request_unittest/redirect-test.html.mock-http-headers",
"data/url_request_unittest/redirect-to-data.html",
"data/url_request_unittest/redirect-to-data.html.mock-http-headers",
"data/url_request_unittest/redirect-to-echoall",
"data/url_request_unittest/redirect-to-echoall.mock-http-headers",
"data/url_request_unittest/redirect-to-file.html",
"data/url_request_unittest/redirect-to-file.html.mock-http-headers",
"data/url_request_unittest/redirect-to-invalid-url.html",
"data/url_request_unittest/redirect-to-invalid-url.html.mock-http-headers",
"data/url_request_unittest/redirect301-to-echo",
"data/url_request_unittest/redirect301-to-echo.mock-http-headers",
"data/url_request_unittest/redirect301-to-https",
"data/url_request_unittest/redirect301-to-https.mock-http-headers",
"data/url_request_unittest/redirect302-to-echo",
"data/url_request_unittest/redirect302-to-echo-cacheable",
"data/url_request_unittest/redirect302-to-echo-cacheable.mock-http-headers",
"data/url_request_unittest/redirect302-to-echo.mock-http-headers",
"data/url_request_unittest/redirect302-to-https",
"data/url_request_unittest/redirect302-to-https.mock-http-headers",
"data/url_request_unittest/redirect303-to-echo",
"data/url_request_unittest/redirect303-to-echo.mock-http-headers",
"data/url_request_unittest/redirect303-to-https",
"data/url_request_unittest/redirect303-to-https.mock-http-headers",
"data/url_request_unittest/redirect307-to-echo",
"data/url_request_unittest/redirect307-to-echo.mock-http-headers",
"data/url_request_unittest/redirect307-to-https",
"data/url_request_unittest/redirect307-to-https.mock-http-headers",
"data/url_request_unittest/redirect308-to-echo",
"data/url_request_unittest/redirect308-to-echo.mock-http-headers",
"data/url_request_unittest/redirect308-to-https",
"data/url_request_unittest/redirect308-to-https.mock-http-headers",
"data/url_request_unittest/simple.html",
"data/url_request_unittest/simple.html.mock-http-headers",
"data/url_request_unittest/two-content-lengths.html",
"data/url_request_unittest/two-content-lengths.html.mock-http-headers",
"data/url_request_unittest/with-headers.html",
"data/url_request_unittest/with-headers.html.mock-http-headers",
"data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/chain.pem",
"data/verify_certificate_chain_unittest/basic-constraints-pathlen-0-self-issued/main.test",
"data/verify_certificate_chain_unittest/expired-intermediate/chain.pem",
"data/verify_certificate_chain_unittest/expired-intermediate/not-after.test",
"data/verify_certificate_chain_unittest/expired-intermediate/not-before.test",
"data/verify_certificate_chain_unittest/expired-root/chain.pem",
"data/verify_certificate_chain_unittest/expired-root/not-after-ta-with-constraints.test",
"data/verify_certificate_chain_unittest/expired-root/not-after.test",
"data/verify_certificate_chain_unittest/expired-root/not-before.test",
"data/verify_certificate_chain_unittest/expired-target/chain.pem",
"data/verify_certificate_chain_unittest/expired-target/not-after.test",
"data/verify_certificate_chain_unittest/expired-target/not-before.test",
"data/verify_certificate_chain_unittest/incorrect-trust-anchor/chain.pem",
"data/verify_certificate_chain_unittest/incorrect-trust-anchor/main.test",
"data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-and-target-wrong-signature/main.test",
"data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-basic-constraints-ca-false/main.test",
"data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-basic-constraints-not-critical/main.test",
"data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/any.test",
"data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/clientauth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-any-and-clientauth/serverauth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-clientauth/any.test",
"data/verify_certificate_chain_unittest/intermediate-eku-clientauth/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-eku-clientauth/clientauth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-clientauth/serverauth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-chain.pem",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-any.test",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-clientAuth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha1-eku-serverAuth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-chain.pem",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-any.test",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-clientAuth.test",
"data/verify_certificate_chain_unittest/intermediate-eku-server-gated-crypto/sha256-eku-serverAuth.test",
"data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-lacks-basic-constraints/main.test",
"data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-lacks-signing-key-usage/main.test",
"data/verify_certificate_chain_unittest/intermediate-signed-with-md5/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-signed-with-md5/main.test",
"data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-unknown-critical-extension/main.test",
"data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/chain.pem",
"data/verify_certificate_chain_unittest/intermediate-unknown-non-critical-extension/main.test",
"data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.pem",
"data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/anchor.test",
"data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.pem",
"data/verify_certificate_chain_unittest/issuer-and-subject-not-byte-for-byte-equal/target.test",
"data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.pem",
"data/verify_certificate_chain_unittest/key-rollover/longrolloverchain.test",
"data/verify_certificate_chain_unittest/key-rollover/newchain.pem",
"data/verify_certificate_chain_unittest/key-rollover/newchain.test",
"data/verify_certificate_chain_unittest/key-rollover/oldchain.pem",
"data/verify_certificate_chain_unittest/key-rollover/oldchain.test",
"data/verify_certificate_chain_unittest/key-rollover/rolloverchain.pem",
"data/verify_certificate_chain_unittest/key-rollover/rolloverchain.test",
"data/verify_certificate_chain_unittest/many-names/ok-all-types.pem",
"data/verify_certificate_chain_unittest/many-names/ok-all-types.test",
"data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.pem",
"data/verify_certificate_chain_unittest/many-names/ok-different-types-dirnames.test",
"data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.pem",
"data/verify_certificate_chain_unittest/many-names/ok-different-types-dns.test",
"data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.pem",
"data/verify_certificate_chain_unittest/many-names/ok-different-types-ips.test",
"data/verify_certificate_chain_unittest/many-names/toomany-all-types.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-all-types.test",
"data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-dirnames-excluded.test",
"data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-dirnames-permitted.test",
"data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-dns-excluded.test",
"data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-dns-permitted.test",
"data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-ips-excluded.test",
"data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.pem",
"data/verify_certificate_chain_unittest/many-names/toomany-ips-permitted.test",
"data/verify_certificate_chain_unittest/non-self-signed-root/chain.pem",
"data/verify_certificate_chain_unittest/non-self-signed-root/main.test",
"data/verify_certificate_chain_unittest/non-self-signed-root/ta-with-constraints.test",
"data/verify_certificate_chain_unittest/pkits_errors/4.1.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.1.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.1.4.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.1.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.1.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.10.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.4.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.7.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.10.8.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.10.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.11.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.8.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.11.9.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.10.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.4.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.12.8.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.10.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.12.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.13.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.15.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.16.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.17.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.20.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.21.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.22.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.23.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.24.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.25.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.26.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.27.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.28.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.29.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.31.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.33.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.34.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.35.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.36.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.37.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.38.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.7.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.8.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.13.9.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.16.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.2.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.2.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.2.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.2.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.2.7.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.3.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.3.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.10.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.11.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.12.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.16.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.6.9.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.7.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.7.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.1.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.12.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.14.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.2.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.4.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.6.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.7.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.8.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.8.9.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.9.3.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.9.5.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.9.7.txt",
"data/verify_certificate_chain_unittest/pkits_errors/4.9.8.txt",
"data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/chain.pem",
"data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/main.test",
"data/verify_certificate_chain_unittest/root-basic-constraints-ca-false/ta-with-constraints.test",
"data/verify_certificate_chain_unittest/root-eku-clientauth/chain.pem",
"data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth-ta-with-constraints.test",
"data/verify_certificate_chain_unittest/root-eku-clientauth/serverauth.test",
"data/verify_certificate_chain_unittest/root-lacks-basic-constraints/chain.pem",
"data/verify_certificate_chain_unittest/root-lacks-basic-constraints/main.test",
"data/verify_certificate_chain_unittest/root-lacks-basic-constraints/ta-with-constraints.test",
"data/verify_certificate_chain_unittest/target-and-intermediate/chain.pem",
"data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root-expired.test",
"data/verify_certificate_chain_unittest/target-and-intermediate/distrusted-root.test",
"data/verify_certificate_chain_unittest/target-and-intermediate/main.test",
"data/verify_certificate_chain_unittest/target-and-intermediate/unspecified-trust-root.test",
"data/verify_certificate_chain_unittest/target-eku-clientauth/any.test",
"data/verify_certificate_chain_unittest/target-eku-clientauth/chain.pem",
"data/verify_certificate_chain_unittest/target-eku-clientauth/clientauth.test",
"data/verify_certificate_chain_unittest/target-eku-clientauth/serverauth.test",
"data/verify_certificate_chain_unittest/target-eku-none/any.test",
"data/verify_certificate_chain_unittest/target-eku-none/chain.pem",
"data/verify_certificate_chain_unittest/target-eku-none/clientauth.test",
"data/verify_certificate_chain_unittest/target-eku-none/serverauth.test",
"data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/chain.pem",
"data/verify_certificate_chain_unittest/target-has-512bit-rsa-key/main.test",
"data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/chain.pem",
"data/verify_certificate_chain_unittest/target-has-keycertsign-but-not-ca/main.test",
"data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/chain.pem",
"data/verify_certificate_chain_unittest/target-has-pathlen-but-not-ca/main.test",
"data/verify_certificate_chain_unittest/target-not-end-entity/chain.pem",
"data/verify_certificate_chain_unittest/target-not-end-entity/main.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-decipherOnly.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-digitalSignature.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyAgreement.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/ec-keyEncipherment.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-decipherOnly.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-digitalSignature.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyAgreement.test",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.pem",
"data/verify_certificate_chain_unittest/target-serverauth-various-keyusages/rsa-keyEncipherment.test",
"data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/chain.pem",
"data/verify_certificate_chain_unittest/target-signed-by-512bit-rsa/main.test",
"data/verify_certificate_chain_unittest/target-signed-using-ecdsa/chain.pem",
"data/verify_certificate_chain_unittest/target-signed-using-ecdsa/main.test",
"data/verify_certificate_chain_unittest/target-signed-with-md5/chain.pem",
"data/verify_certificate_chain_unittest/target-signed-with-md5/main.test",
"data/verify_certificate_chain_unittest/target-unknown-critical-extension/chain.pem",
"data/verify_certificate_chain_unittest/target-unknown-critical-extension/main.test",
"data/verify_certificate_chain_unittest/target-wrong-signature/chain.pem",
"data/verify_certificate_chain_unittest/target-wrong-signature/main.test",
"data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/chain.pem",
"data/verify_certificate_chain_unittest/unknown-critical-policy-qualifier/main.test",
"data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/chain.pem",
"data/verify_certificate_chain_unittest/unknown-non-critical-policy-qualifier/main.test",
"data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/chain.pem",
"data/verify_certificate_chain_unittest/violates-basic-constraints-pathlen-0/main.test",
"data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/chain.pem",
"data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/main.test",
"data/verify_certificate_chain_unittest/violates-pathlen-1-from-root/ta-with-constraints.test",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-case_swap.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-extra_whitespace.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-BMPSTRING-unmangled.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-case_swap.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-extra_whitespace.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_1.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-rdn_sorting_2.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-PRINTABLESTRING-unmangled.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-case_swap-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-case_swap.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-extra_whitespace.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-unmangled-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-T61STRING-unmangled.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-case_swap.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-extra_whitespace.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-UNIVERSALSTRING-unmangled.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-case_swap-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-case_swap-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-case_swap.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-extra_whitespace.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-unmangled-dupe_attr.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_attr.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-unmangled-extra_rdn.pem",
"data/verify_name_match_unittest/names/ascii-UTF8-unmangled.pem",
"data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_1.pem",
"data/verify_name_match_unittest/names/ascii-mixed-rdn_dupetype_sorting_2.pem",
"data/verify_name_match_unittest/names/custom-custom-normalized.pem",
"data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-badAttributeType.pem",
"data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-empty.pem",
"data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-extradata.pem",
"data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-onlyOneElement.pem",
"data/verify_name_match_unittest/names/invalid-AttributeTypeAndValue-setNotSequence.pem",
"data/verify_name_match_unittest/names/invalid-Name-setInsteadOfSequence.pem",
"data/verify_name_match_unittest/names/invalid-RDN-empty.pem",
"data/verify_name_match_unittest/names/invalid-RDN-sequenceInsteadOfSet.pem",
"data/verify_name_match_unittest/names/unicode-mixed-normalized.pem",
"data/verify_name_match_unittest/names/unicode-mixed-unnormalized.pem",
"data/verify_name_match_unittest/names/unicode_bmp-BMPSTRING-unmangled.pem",
"data/verify_name_match_unittest/names/unicode_bmp-UNIVERSALSTRING-unmangled.pem",
"data/verify_name_match_unittest/names/unicode_bmp-UTF8-unmangled.pem",
"data/verify_name_match_unittest/names/unicode_supplementary-UNIVERSALSTRING-unmangled.pem",
"data/verify_name_match_unittest/names/unicode_supplementary-UTF8-unmangled.pem",
"data/verify_name_match_unittest/names/valid-Name-empty.pem",
"data/verify_name_match_unittest/names/valid-minimal.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-spki-params-null.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-unused-bits-signature.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecdh-key.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-ecmqv-key.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-using-rsa-algorithm.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512-wrong-signature-format.pem",
"data/verify_signed_data_unittest/ecdsa-prime256v1-sha512.pem",
"data/verify_signed_data_unittest/ecdsa-secp384r1-sha256-corrupted-data.pem",
"data/verify_signed_data_unittest/ecdsa-secp384r1-sha256.pem",
"data/verify_signed_data_unittest/ecdsa-using-rsa-key.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-length.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha1-bad-key-der-null.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha1-key-params-absent.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha1-using-pss-key-no-params.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha1-wrong-algorithm.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha1.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha256-key-encoded-ber.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha256-spki-non-null-params.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-ecdsa-algorithm.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha256-using-id-ea-rsa.pem",
"data/verify_signed_data_unittest/rsa-pkcs1-sha256.pem",
"data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-no-params.pem",
"data/verify_signed_data_unittest/rsa-pss-sha1-salt20-using-pss-key-with-null-params.pem",
"data/verify_signed_data_unittest/rsa-pss-sha1-salt20.pem",
"data/verify_signed_data_unittest/rsa-pss-sha1-wrong-salt.pem",
"data/verify_signed_data_unittest/rsa-pss-sha256-mgf1-sha512-salt33.pem",
"data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-params.pem",
"data/verify_signed_data_unittest/rsa-pss-sha256-salt10-using-pss-key-with-wrong-params.pem",
"data/verify_signed_data_unittest/rsa-pss-sha256-salt10.pem",
"data/verify_signed_data_unittest/rsa-using-ec-key.pem",
"data/verify_signed_data_unittest/rsa2048-pkcs1-sha512.pem",
"third_party/nist-pkits/certs/AllCertificatesNoPoliciesTest2EE.crt",
"third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest10EE.crt",
"third_party/nist-pkits/certs/AllCertificatesSamePoliciesTest13EE.crt",
"third_party/nist-pkits/certs/AllCertificatesanyPolicyTest11EE.crt",
"third_party/nist-pkits/certs/AnyPolicyTest14EE.crt",
"third_party/nist-pkits/certs/BadCRLIssuerNameCACert.crt",
"third_party/nist-pkits/certs/BadCRLSignatureCACert.crt",
"third_party/nist-pkits/certs/BadSignedCACert.crt",
"third_party/nist-pkits/certs/BadnotAfterDateCACert.crt",
"third_party/nist-pkits/certs/BadnotBeforeDateCACert.crt",
"third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCACert.crt",
"third_party/nist-pkits/certs/BasicSelfIssuedCRLSigningKeyCRLCert.crt",
"third_party/nist-pkits/certs/BasicSelfIssuedNewKeyCACert.crt",
"third_party/nist-pkits/certs/BasicSelfIssuedNewKeyOldWithNewCACert.crt",
"third_party/nist-pkits/certs/BasicSelfIssuedOldKeyCACert.crt",
"third_party/nist-pkits/certs/BasicSelfIssuedOldKeyNewWithOldCACert.crt",
"third_party/nist-pkits/certs/CPSPointerQualifierTest20EE.crt",
"third_party/nist-pkits/certs/DSACACert.crt",
"third_party/nist-pkits/certs/DSAParametersInheritedCACert.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest12EE.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest3EE.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest4EE.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest5EE.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest7EE.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest8EE.crt",
"third_party/nist-pkits/certs/DifferentPoliciesTest9EE.crt",
"third_party/nist-pkits/certs/GeneralizedTimeCRLnextUpdateCACert.crt",
"third_party/nist-pkits/certs/GoodCACert.crt",
"third_party/nist-pkits/certs/GoodsubCACert.crt",
"third_party/nist-pkits/certs/GoodsubCAPanyPolicyMapping1to2CACert.crt",
"third_party/nist-pkits/certs/InvalidBadCRLIssuerNameTest5EE.crt",
"third_party/nist-pkits/certs/InvalidBadCRLSignatureTest4EE.crt",
"third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest7EE.crt",
"third_party/nist-pkits/certs/InvalidBasicSelfIssuedCRLSigningKeyTest8EE.crt",
"third_party/nist-pkits/certs/InvalidBasicSelfIssuedNewWithOldTest5EE.crt",
"third_party/nist-pkits/certs/InvalidBasicSelfIssuedOldWithNewTest2EE.crt",
"third_party/nist-pkits/certs/InvalidCASignatureTest2EE.crt",
"third_party/nist-pkits/certs/InvalidCAnotAfterDateTest5EE.crt",
"third_party/nist-pkits/certs/InvalidCAnotBeforeDateTest1EE.crt",
"third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest31EE.crt",
"third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest33EE.crt",
"third_party/nist-pkits/certs/InvalidDNSnameConstraintsTest38EE.crt",
"third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest28EE.crt",
"third_party/nist-pkits/certs/InvalidDNandRFC822nameConstraintsTest29EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest10EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest12EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest13EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest15EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest16EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest17EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest20EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest2EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest3EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest7EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest8EE.crt",
"third_party/nist-pkits/certs/InvalidDNnameConstraintsTest9EE.crt",
"third_party/nist-pkits/certs/InvalidDSASignatureTest6EE.crt",
"third_party/nist-pkits/certs/InvalidEESignatureTest3EE.crt",
"third_party/nist-pkits/certs/InvalidEEnotAfterDateTest6EE.crt",
"third_party/nist-pkits/certs/InvalidEEnotBeforeDateTest2EE.crt",
"third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest23EE.crt",
"third_party/nist-pkits/certs/InvalidIDPwithindirectCRLTest26EE.crt",
"third_party/nist-pkits/certs/InvalidLongSerialNumberTest18EE.crt",
"third_party/nist-pkits/certs/InvalidMappingFromanyPolicyTest7EE.crt",
"third_party/nist-pkits/certs/InvalidMappingToanyPolicyTest8EE.crt",
"third_party/nist-pkits/certs/InvalidMissingCRLTest1EE.crt",
"third_party/nist-pkits/certs/InvalidMissingbasicConstraintsTest1EE.crt",
"third_party/nist-pkits/certs/InvalidNameChainingOrderTest2EE.crt",
"third_party/nist-pkits/certs/InvalidNameChainingTest1EE.crt",
"third_party/nist-pkits/certs/InvalidNegativeSerialNumberTest15EE.crt",
"third_party/nist-pkits/certs/InvalidOldCRLnextUpdateTest11EE.crt",
"third_party/nist-pkits/certs/InvalidPolicyMappingTest10EE.crt",
"third_party/nist-pkits/certs/InvalidPolicyMappingTest2EE.crt",
"third_party/nist-pkits/certs/InvalidPolicyMappingTest4EE.crt",
"third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest22EE.crt",
"third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest24EE.crt",
"third_party/nist-pkits/certs/InvalidRFC822nameConstraintsTest26EE.crt",
"third_party/nist-pkits/certs/InvalidRevokedCATest2EE.crt",
"third_party/nist-pkits/certs/InvalidRevokedEETest3EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest10EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedinhibitAnyPolicyTest8EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest10EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest11EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest8EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedinhibitPolicyMappingTest9EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedpathLenConstraintTest16EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest7EE.crt",
"third_party/nist-pkits/certs/InvalidSelfIssuedrequireExplicitPolicyTest8EE.crt",
"third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest20EE.crt",
"third_party/nist-pkits/certs/InvalidSeparateCertificateandCRLKeysTest21EE.crt",
"third_party/nist-pkits/certs/InvalidURInameConstraintsTest35EE.crt",
"third_party/nist-pkits/certs/InvalidURInameConstraintsTest37EE.crt",
"third_party/nist-pkits/certs/InvalidUnknownCRLEntryExtensionTest8EE.crt",
"third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest10EE.crt",
"third_party/nist-pkits/certs/InvalidUnknownCRLExtensionTest9EE.crt",
"third_party/nist-pkits/certs/InvalidUnknownCriticalCertificateExtensionTest2EE.crt",
"third_party/nist-pkits/certs/InvalidWrongCRLTest6EE.crt",
"third_party/nist-pkits/certs/InvalidcAFalseTest2EE.crt",
"third_party/nist-pkits/certs/InvalidcAFalseTest3EE.crt",
"third_party/nist-pkits/certs/InvalidcRLIssuerTest27EE.crt",
"third_party/nist-pkits/certs/InvalidcRLIssuerTest31EE.crt",
"third_party/nist-pkits/certs/InvalidcRLIssuerTest32EE.crt",
"third_party/nist-pkits/certs/InvalidcRLIssuerTest34EE.crt",
"third_party/nist-pkits/certs/InvalidcRLIssuerTest35EE.crt",
"third_party/nist-pkits/certs/InvaliddeltaCRLIndicatorNoBaseTest1EE.crt",
"third_party/nist-pkits/certs/InvaliddeltaCRLTest10EE.crt",
"third_party/nist-pkits/certs/InvaliddeltaCRLTest3EE.crt",
"third_party/nist-pkits/certs/InvaliddeltaCRLTest4EE.crt",
"third_party/nist-pkits/certs/InvaliddeltaCRLTest6EE.crt",
"third_party/nist-pkits/certs/InvaliddeltaCRLTest9EE.crt",
"third_party/nist-pkits/certs/InvaliddistributionPointTest2EE.crt",
"third_party/nist-pkits/certs/InvaliddistributionPointTest3EE.crt",
"third_party/nist-pkits/certs/InvaliddistributionPointTest6EE.crt",
"third_party/nist-pkits/certs/InvaliddistributionPointTest8EE.crt",
"third_party/nist-pkits/certs/InvaliddistributionPointTest9EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest1EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest4EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest5EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitAnyPolicyTest6EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest1EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest3EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest5EE.crt",
"third_party/nist-pkits/certs/InvalidinhibitPolicyMappingTest6EE.crt",
"third_party/nist-pkits/certs/InvalidkeyUsageCriticalcRLSignFalseTest4EE.crt",
"third_party/nist-pkits/certs/InvalidkeyUsageCriticalkeyCertSignFalseTest1EE.crt",
"third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalcRLSignFalseTest5EE.crt",
"third_party/nist-pkits/certs/InvalidkeyUsageNotCriticalkeyCertSignFalseTest2EE.crt",
"third_party/nist-pkits/certs/InvalidonlyContainsAttributeCertsTest14EE.crt",
"third_party/nist-pkits/certs/InvalidonlyContainsCACertsTest12EE.crt",
"third_party/nist-pkits/certs/InvalidonlyContainsUserCertsTest11EE.crt",
"third_party/nist-pkits/certs/InvalidonlySomeReasonsTest15EE.crt",
"third_party/nist-pkits/certs/InvalidonlySomeReasonsTest16EE.crt",
"third_party/nist-pkits/certs/InvalidonlySomeReasonsTest17EE.crt",
"third_party/nist-pkits/certs/InvalidonlySomeReasonsTest20EE.crt",
"third_party/nist-pkits/certs/InvalidonlySomeReasonsTest21EE.crt",
"third_party/nist-pkits/certs/InvalidpathLenConstraintTest10EE.crt",
"third_party/nist-pkits/certs/InvalidpathLenConstraintTest11EE.crt",
"third_party/nist-pkits/certs/InvalidpathLenConstraintTest12EE.crt",
"third_party/nist-pkits/certs/InvalidpathLenConstraintTest5EE.crt",
"third_party/nist-pkits/certs/InvalidpathLenConstraintTest6EE.crt",
"third_party/nist-pkits/certs/InvalidpathLenConstraintTest9EE.crt",
"third_party/nist-pkits/certs/Invalidpre2000CRLnextUpdateTest12EE.crt",
"third_party/nist-pkits/certs/Invalidpre2000UTCEEnotAfterDateTest7EE.crt",
"third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest3EE.crt",
"third_party/nist-pkits/certs/InvalidrequireExplicitPolicyTest5EE.crt",
"third_party/nist-pkits/certs/LongSerialNumberCACert.crt",
"third_party/nist-pkits/certs/Mapping1to2CACert.crt",
"third_party/nist-pkits/certs/MappingFromanyPolicyCACert.crt",
"third_party/nist-pkits/certs/MappingToanyPolicyCACert.crt",
"third_party/nist-pkits/certs/MissingbasicConstraintsCACert.crt",
"third_party/nist-pkits/certs/NameOrderingCACert.crt",
"third_party/nist-pkits/certs/NegativeSerialNumberCACert.crt",
"third_party/nist-pkits/certs/NoCRLCACert.crt",
"third_party/nist-pkits/certs/NoPoliciesCACert.crt",
"third_party/nist-pkits/certs/NoissuingDistributionPointCACert.crt",
"third_party/nist-pkits/certs/OldCRLnextUpdateCACert.crt",
"third_party/nist-pkits/certs/OverlappingPoliciesTest6EE.crt",
"third_party/nist-pkits/certs/P12Mapping1to3CACert.crt",
"third_party/nist-pkits/certs/P12Mapping1to3subCACert.crt",
"third_party/nist-pkits/certs/P12Mapping1to3subsubCACert.crt",
"third_party/nist-pkits/certs/P1Mapping1to234CACert.crt",
"third_party/nist-pkits/certs/P1Mapping1to234subCACert.crt",
"third_party/nist-pkits/certs/P1anyPolicyMapping1to2CACert.crt",
"third_party/nist-pkits/certs/PanyPolicyMapping1to2CACert.crt",
"third_party/nist-pkits/certs/PoliciesP1234CACert.crt",
"third_party/nist-pkits/certs/PoliciesP1234subCAP123Cert.crt",
"third_party/nist-pkits/certs/PoliciesP1234subsubCAP123P12Cert.crt",
"third_party/nist-pkits/certs/PoliciesP123CACert.crt",
"third_party/nist-pkits/certs/PoliciesP123subCAP12Cert.crt",
"third_party/nist-pkits/certs/PoliciesP123subsubCAP12P1Cert.crt",
"third_party/nist-pkits/certs/PoliciesP123subsubCAP12P2Cert.crt",
"third_party/nist-pkits/certs/PoliciesP123subsubsubCAP12P2P1Cert.crt",
"third_party/nist-pkits/certs/PoliciesP12CACert.crt",
"third_party/nist-pkits/certs/PoliciesP12subCAP1Cert.crt",
"third_party/nist-pkits/certs/PoliciesP12subsubCAP1P2Cert.crt",
"third_party/nist-pkits/certs/PoliciesP2subCA2Cert.crt",
"third_party/nist-pkits/certs/PoliciesP2subCACert.crt",
"third_party/nist-pkits/certs/PoliciesP3CACert.crt",
"third_party/nist-pkits/certs/RFC3280MandatoryAttributeTypesCACert.crt",
"third_party/nist-pkits/certs/RFC3280OptionalAttributeTypesCACert.crt",
"third_party/nist-pkits/certs/RevokedsubCACert.crt",
"third_party/nist-pkits/certs/RolloverfromPrintableStringtoUTF8StringCACert.crt",
"third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CRLSigningCert.crt",
"third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCA2CertificateSigningCACert.crt",
"third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCRLSigningCert.crt",
"third_party/nist-pkits/certs/SeparateCertificateandCRLKeysCertificateSigningCACert.crt",
"third_party/nist-pkits/certs/TrustAnchorRootCertificate.crt",
"third_party/nist-pkits/certs/TwoCRLsCACert.crt",
"third_party/nist-pkits/certs/UIDCACert.crt",
"third_party/nist-pkits/certs/UTF8StringCaseInsensitiveMatchCACert.crt",
"third_party/nist-pkits/certs/UTF8StringEncodedNamesCACert.crt",
"third_party/nist-pkits/certs/UnknownCRLEntryExtensionCACert.crt",
"third_party/nist-pkits/certs/UnknownCRLExtensionCACert.crt",
"third_party/nist-pkits/certs/UserNoticeQualifierTest15EE.crt",
"third_party/nist-pkits/certs/UserNoticeQualifierTest16EE.crt",
"third_party/nist-pkits/certs/UserNoticeQualifierTest17EE.crt",
"third_party/nist-pkits/certs/UserNoticeQualifierTest18EE.crt",
"third_party/nist-pkits/certs/UserNoticeQualifierTest19EE.crt",
"third_party/nist-pkits/certs/ValidBasicSelfIssuedCRLSigningKeyTest6EE.crt",
"third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest3EE.crt",
"third_party/nist-pkits/certs/ValidBasicSelfIssuedNewWithOldTest4EE.crt",
"third_party/nist-pkits/certs/ValidBasicSelfIssuedOldWithNewTest1EE.crt",
"third_party/nist-pkits/certs/ValidCertificatePathTest1EE.crt",
"third_party/nist-pkits/certs/ValidDNSnameConstraintsTest30EE.crt",
"third_party/nist-pkits/certs/ValidDNSnameConstraintsTest32EE.crt",
"third_party/nist-pkits/certs/ValidDNandRFC822nameConstraintsTest27EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest11EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest14EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest18EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest19EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest1EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest4EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest5EE.crt",
"third_party/nist-pkits/certs/ValidDNnameConstraintsTest6EE.crt",
"third_party/nist-pkits/certs/ValidDSAParameterInheritanceTest5EE.crt",
"third_party/nist-pkits/certs/ValidDSASignaturesTest4EE.crt",
"third_party/nist-pkits/certs/ValidGeneralizedTimeCRLnextUpdateTest13EE.crt",
"third_party/nist-pkits/certs/ValidGeneralizedTimenotAfterDateTest8EE.crt",
"third_party/nist-pkits/certs/ValidGeneralizedTimenotBeforeDateTest4EE.crt",
"third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest22EE.crt",
"third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest24EE.crt",
"third_party/nist-pkits/certs/ValidIDPwithindirectCRLTest25EE.crt",
"third_party/nist-pkits/certs/ValidLongSerialNumberTest16EE.crt",
"third_party/nist-pkits/certs/ValidLongSerialNumberTest17EE.crt",
"third_party/nist-pkits/certs/ValidNameChainingCapitalizationTest5EE.crt",
"third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest3EE.crt",
"third_party/nist-pkits/certs/ValidNameChainingWhitespaceTest4EE.crt",
"third_party/nist-pkits/certs/ValidNameUIDsTest6EE.crt",
"third_party/nist-pkits/certs/ValidNegativeSerialNumberTest14EE.crt",
"third_party/nist-pkits/certs/ValidNoissuingDistributionPointTest10EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest11EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest12EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest13EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest14EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest1EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest3EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest5EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest6EE.crt",
"third_party/nist-pkits/certs/ValidPolicyMappingTest9EE.crt",
"third_party/nist-pkits/certs/ValidRFC3280MandatoryAttributeTypesTest7EE.crt",
"third_party/nist-pkits/certs/ValidRFC3280OptionalAttributeTypesTest8EE.crt",
"third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest21EE.crt",
"third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest23EE.crt",
"third_party/nist-pkits/certs/ValidRFC822nameConstraintsTest25EE.crt",
"third_party/nist-pkits/certs/ValidRolloverfromPrintableStringtoUTF8StringTest10EE.crt",
"third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest7EE.crt",
"third_party/nist-pkits/certs/ValidSelfIssuedinhibitAnyPolicyTest9EE.crt",
"third_party/nist-pkits/certs/ValidSelfIssuedinhibitPolicyMappingTest7EE.crt",
"third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest15EE.crt",
"third_party/nist-pkits/certs/ValidSelfIssuedpathLenConstraintTest17EE.crt",
"third_party/nist-pkits/certs/ValidSelfIssuedrequireExplicitPolicyTest6EE.crt",
"third_party/nist-pkits/certs/ValidSeparateCertificateandCRLKeysTest19EE.crt",
"third_party/nist-pkits/certs/ValidTwoCRLsTest7EE.crt",
"third_party/nist-pkits/certs/ValidURInameConstraintsTest34EE.crt",
"third_party/nist-pkits/certs/ValidURInameConstraintsTest36EE.crt",
"third_party/nist-pkits/certs/ValidUTF8StringCaseInsensitiveMatchTest11EE.crt",
"third_party/nist-pkits/certs/ValidUTF8StringEncodedNamesTest9EE.crt",
"third_party/nist-pkits/certs/ValidUnknownNotCriticalCertificateExtensionTest1EE.crt",
"third_party/nist-pkits/certs/ValidbasicConstraintsNotCriticalTest4EE.crt",
"third_party/nist-pkits/certs/ValidcRLIssuerTest28EE.crt",
"third_party/nist-pkits/certs/ValidcRLIssuerTest29EE.crt",
"third_party/nist-pkits/certs/ValidcRLIssuerTest30EE.crt",
"third_party/nist-pkits/certs/ValidcRLIssuerTest33EE.crt",
"third_party/nist-pkits/certs/ValiddeltaCRLTest2EE.crt",
"third_party/nist-pkits/certs/ValiddeltaCRLTest5EE.crt",
"third_party/nist-pkits/certs/ValiddeltaCRLTest7EE.crt",
"third_party/nist-pkits/certs/ValiddeltaCRLTest8EE.crt",
"third_party/nist-pkits/certs/ValiddistributionPointTest1EE.crt",
"third_party/nist-pkits/certs/ValiddistributionPointTest4EE.crt",
"third_party/nist-pkits/certs/ValiddistributionPointTest5EE.crt",
"third_party/nist-pkits/certs/ValiddistributionPointTest7EE.crt",
"third_party/nist-pkits/certs/ValidinhibitAnyPolicyTest2EE.crt",
"third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest2EE.crt",
"third_party/nist-pkits/certs/ValidinhibitPolicyMappingTest4EE.crt",
"third_party/nist-pkits/certs/ValidkeyUsageNotCriticalTest3EE.crt",
"third_party/nist-pkits/certs/ValidonlyContainsCACertsTest13EE.crt",
"third_party/nist-pkits/certs/ValidonlySomeReasonsTest18EE.crt",
"third_party/nist-pkits/certs/ValidonlySomeReasonsTest19EE.crt",
"third_party/nist-pkits/certs/ValidpathLenConstraintTest13EE.crt",
"third_party/nist-pkits/certs/ValidpathLenConstraintTest14EE.crt",
"third_party/nist-pkits/certs/ValidpathLenConstraintTest7EE.crt",
"third_party/nist-pkits/certs/ValidpathLenConstraintTest8EE.crt",
"third_party/nist-pkits/certs/Validpre2000UTCnotBeforeDateTest3EE.crt",
"third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest1EE.crt",
"third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest2EE.crt",
"third_party/nist-pkits/certs/ValidrequireExplicitPolicyTest4EE.crt",
"third_party/nist-pkits/certs/WrongCRLCACert.crt",
"third_party/nist-pkits/certs/anyPolicyCACert.crt",
"third_party/nist-pkits/certs/basicConstraintsCriticalcAFalseCACert.crt",
"third_party/nist-pkits/certs/basicConstraintsNotCriticalCACert.crt",
"third_party/nist-pkits/certs/basicConstraintsNotCriticalcAFalseCACert.crt",
"third_party/nist-pkits/certs/deltaCRLCA1Cert.crt",
"third_party/nist-pkits/certs/deltaCRLCA2Cert.crt",
"third_party/nist-pkits/certs/deltaCRLCA3Cert.crt",
"third_party/nist-pkits/certs/deltaCRLIndicatorNoBaseCACert.crt",
"third_party/nist-pkits/certs/distributionPoint1CACert.crt",
"third_party/nist-pkits/certs/distributionPoint2CACert.crt",
"third_party/nist-pkits/certs/indirectCRLCA1Cert.crt",
"third_party/nist-pkits/certs/indirectCRLCA2Cert.crt",
"third_party/nist-pkits/certs/indirectCRLCA3Cert.crt",
"third_party/nist-pkits/certs/indirectCRLCA3cRLIssuerCert.crt",
"third_party/nist-pkits/certs/indirectCRLCA4Cert.crt",
"third_party/nist-pkits/certs/indirectCRLCA4cRLIssuerCert.crt",
"third_party/nist-pkits/certs/indirectCRLCA5Cert.crt",
"third_party/nist-pkits/certs/indirectCRLCA6Cert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy0CACert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1CACert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedCACert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1SelfIssuedsubCA2Cert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1subCA1Cert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1subCA2Cert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1subCAIAP5Cert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy1subsubCA2Cert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy5CACert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy5subCACert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicy5subsubCACert.crt",
"third_party/nist-pkits/certs/inhibitAnyPolicyTest3EE.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping0CACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping0subCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P12CACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P12subCAIPM5Cert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P12subsubCAIPM5Cert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P1CACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P1SelfIssuedsubCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P1subCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping1P1subsubCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping5CACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping5subCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping5subsubCACert.crt",
"third_party/nist-pkits/certs/inhibitPolicyMapping5subsubsubCACert.crt",
"third_party/nist-pkits/certs/keyUsageCriticalcRLSignFalseCACert.crt",
"third_party/nist-pkits/certs/keyUsageCriticalkeyCertSignFalseCACert.crt",
"third_party/nist-pkits/certs/keyUsageNotCriticalCACert.crt",
"third_party/nist-pkits/certs/keyUsageNotCriticalcRLSignFalseCACert.crt",
"third_party/nist-pkits/certs/keyUsageNotCriticalkeyCertSignFalseCACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN1CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN1SelfIssuedCACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN1subCA1Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN1subCA2Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN1subCA3Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN2CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN3CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN3subCA1Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN3subCA2Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN4CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDN5CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDNS1CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsDNS2CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsRFC822CA1Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsRFC822CA2Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsRFC822CA3Cert.crt",
"third_party/nist-pkits/certs/nameConstraintsURI1CACert.crt",
"third_party/nist-pkits/certs/nameConstraintsURI2CACert.crt",
"third_party/nist-pkits/certs/onlyContainsAttributeCertsCACert.crt",
"third_party/nist-pkits/certs/onlyContainsCACertsCACert.crt",
"third_party/nist-pkits/certs/onlyContainsUserCertsCACert.crt",
"third_party/nist-pkits/certs/onlySomeReasonsCA1Cert.crt",
"third_party/nist-pkits/certs/onlySomeReasonsCA2Cert.crt",
"third_party/nist-pkits/certs/onlySomeReasonsCA3Cert.crt",
"third_party/nist-pkits/certs/onlySomeReasonsCA4Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint0CACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint0SelfIssuedCACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint0subCA2Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint0subCACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint1CACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedCACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint1SelfIssuedsubCACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint1subCACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6CACert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subCA0Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subCA1Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subCA4Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subsubCA00Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subsubCA11Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subsubCA41Cert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA11XCert.crt",
"third_party/nist-pkits/certs/pathLenConstraint6subsubsubCA41XCert.crt",
"third_party/nist-pkits/certs/pre2000CRLnextUpdateCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy0CACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy0subCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy0subsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy0subsubsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy10CACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy10subCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy10subsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy10subsubsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy2CACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy2SelfIssuedsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy2subCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy4CACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy4subCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy4subsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy4subsubsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy5CACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy5subCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy5subsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy5subsubsubCACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy7CACert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy7subCARE2Cert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy7subsubCARE2RE4Cert.crt",
"third_party/nist-pkits/certs/requireExplicitPolicy7subsubsubCARE2RE4Cert.crt",
"third_party/nist-pkits/crls/BadCRLIssuerNameCACRL.crl",
"third_party/nist-pkits/crls/BadCRLSignatureCACRL.crl",
"third_party/nist-pkits/crls/BadSignedCACRL.crl",
"third_party/nist-pkits/crls/BadnotAfterDateCACRL.crl",
"third_party/nist-pkits/crls/BadnotBeforeDateCACRL.crl",
"third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCACRL.crl",
"third_party/nist-pkits/crls/BasicSelfIssuedCRLSigningKeyCRLCertCRL.crl",
"third_party/nist-pkits/crls/BasicSelfIssuedNewKeyCACRL.crl",
"third_party/nist-pkits/crls/BasicSelfIssuedOldKeyCACRL.crl",
"third_party/nist-pkits/crls/BasicSelfIssuedOldKeySelfIssuedCertCRL.crl",
"third_party/nist-pkits/crls/DSACACRL.crl",
"third_party/nist-pkits/crls/DSAParametersInheritedCACRL.crl",
"third_party/nist-pkits/crls/GeneralizedTimeCRLnextUpdateCACRL.crl",
"third_party/nist-pkits/crls/GoodCACRL.crl",
"third_party/nist-pkits/crls/GoodsubCACRL.crl",
"third_party/nist-pkits/crls/GoodsubCAPanyPolicyMapping1to2CACRL.crl",
"third_party/nist-pkits/crls/LongSerialNumberCACRL.crl",
"third_party/nist-pkits/crls/Mapping1to2CACRL.crl",
"third_party/nist-pkits/crls/MappingFromanyPolicyCACRL.crl",
"third_party/nist-pkits/crls/MappingToanyPolicyCACRL.crl",
"third_party/nist-pkits/crls/MissingbasicConstraintsCACRL.crl",
"third_party/nist-pkits/crls/NameOrderCACRL.crl",
"third_party/nist-pkits/crls/NegativeSerialNumberCACRL.crl",
"third_party/nist-pkits/crls/NoPoliciesCACRL.crl",
"third_party/nist-pkits/crls/NoissuingDistributionPointCACRL.crl",
"third_party/nist-pkits/crls/OldCRLnextUpdateCACRL.crl",
"third_party/nist-pkits/crls/P12Mapping1to3CACRL.crl",
"third_party/nist-pkits/crls/P12Mapping1to3subCACRL.crl",
"third_party/nist-pkits/crls/P12Mapping1to3subsubCACRL.crl",
"third_party/nist-pkits/crls/P1Mapping1to234CACRL.crl",
"third_party/nist-pkits/crls/P1Mapping1to234subCACRL.crl",
"third_party/nist-pkits/crls/P1anyPolicyMapping1to2CACRL.crl",
"third_party/nist-pkits/crls/PanyPolicyMapping1to2CACRL.crl",
"third_party/nist-pkits/crls/PoliciesP1234CACRL.crl",
"third_party/nist-pkits/crls/PoliciesP1234subCAP123CRL.crl",
"third_party/nist-pkits/crls/PoliciesP1234subsubCAP123P12CRL.crl",
"third_party/nist-pkits/crls/PoliciesP123CACRL.crl",
"third_party/nist-pkits/crls/PoliciesP123subCAP12CRL.crl",
"third_party/nist-pkits/crls/PoliciesP123subsubCAP12P1CRL.crl",
"third_party/nist-pkits/crls/PoliciesP123subsubCAP2P2CRL.crl",
"third_party/nist-pkits/crls/PoliciesP123subsubsubCAP12P2P1CRL.crl",
"third_party/nist-pkits/crls/PoliciesP12CACRL.crl",
"third_party/nist-pkits/crls/PoliciesP12subCAP1CRL.crl",
"third_party/nist-pkits/crls/PoliciesP12subsubCAP1P2CRL.crl",
"third_party/nist-pkits/crls/PoliciesP2subCA2CRL.crl",
"third_party/nist-pkits/crls/PoliciesP2subCACRL.crl",
"third_party/nist-pkits/crls/PoliciesP3CACRL.crl",
"third_party/nist-pkits/crls/RFC3280MandatoryAttributeTypesCACRL.crl",
"third_party/nist-pkits/crls/RFC3280OptionalAttributeTypesCACRL.crl",
"third_party/nist-pkits/crls/RevokedsubCACRL.crl",
"third_party/nist-pkits/crls/RolloverfromPrintableStringtoUTF8StringCACRL.crl",
"third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCA2CRL.crl",
"third_party/nist-pkits/crls/SeparateCertificateandCRLKeysCRL.crl",
"third_party/nist-pkits/crls/TrustAnchorRootCRL.crl",
"third_party/nist-pkits/crls/TwoCRLsCABadCRL.crl",
"third_party/nist-pkits/crls/TwoCRLsCAGoodCRL.crl",
"third_party/nist-pkits/crls/UIDCACRL.crl",
"third_party/nist-pkits/crls/UTF8StringCaseInsensitiveMatchCACRL.crl",
"third_party/nist-pkits/crls/UTF8StringEncodedNamesCACRL.crl",
"third_party/nist-pkits/crls/UnknownCRLEntryExtensionCACRL.crl",
"third_party/nist-pkits/crls/UnknownCRLExtensionCACRL.crl",
"third_party/nist-pkits/crls/WrongCRLCACRL.crl",
"third_party/nist-pkits/crls/anyPolicyCACRL.crl",
"third_party/nist-pkits/crls/basicConstraintsCriticalcAFalseCACRL.crl",
"third_party/nist-pkits/crls/basicConstraintsNotCriticalCACRL.crl",
"third_party/nist-pkits/crls/basicConstraintsNotCriticalcAFalseCACRL.crl",
"third_party/nist-pkits/crls/deltaCRLCA1CRL.crl",
"third_party/nist-pkits/crls/deltaCRLCA1deltaCRL.crl",
"third_party/nist-pkits/crls/deltaCRLCA2CRL.crl",
"third_party/nist-pkits/crls/deltaCRLCA2deltaCRL.crl",
"third_party/nist-pkits/crls/deltaCRLCA3CRL.crl",
"third_party/nist-pkits/crls/deltaCRLCA3deltaCRL.crl",
"third_party/nist-pkits/crls/deltaCRLIndicatorNoBaseCACRL.crl",
"third_party/nist-pkits/crls/distributionPoint1CACRL.crl",
"third_party/nist-pkits/crls/distributionPoint2CACRL.crl",
"third_party/nist-pkits/crls/indirectCRLCA1CRL.crl",
"third_party/nist-pkits/crls/indirectCRLCA3CRL.crl",
"third_party/nist-pkits/crls/indirectCRLCA3cRLIssuerCRL.crl",
"third_party/nist-pkits/crls/indirectCRLCA4cRLIssuerCRL.crl",
"third_party/nist-pkits/crls/indirectCRLCA5CRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy0CACRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy1CACRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy1subCA1CRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy1subCA2CRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy1subCAIAP5CRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy1subsubCA2CRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy5CACRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy5subCACRL.crl",
"third_party/nist-pkits/crls/inhibitAnyPolicy5subsubCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping0CACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping0subCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P12CACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P12subCAIPM5CRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P12subsubCAIPM5CRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P1CACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P1subCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping1P1subsubCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping5CACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping5subCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping5subsubCACRL.crl",
"third_party/nist-pkits/crls/inhibitPolicyMapping5subsubsubCACRL.crl",
"third_party/nist-pkits/crls/keyUsageCriticalcRLSignFalseCACRL.crl",
"third_party/nist-pkits/crls/keyUsageCriticalkeyCertSignFalseCACRL.crl",
"third_party/nist-pkits/crls/keyUsageNotCriticalCACRL.crl",
"third_party/nist-pkits/crls/keyUsageNotCriticalcRLSignFalseCACRL.crl",
"third_party/nist-pkits/crls/keyUsageNotCriticalkeyCertSignFalseCACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN1CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN1subCA1CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN1subCA2CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN1subCA3CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN2CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN3CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN3subCA1CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN3subCA2CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN4CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDN5CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDNS1CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsDNS2CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsRFC822CA1CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsRFC822CA2CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsRFC822CA3CRL.crl",
"third_party/nist-pkits/crls/nameConstraintsURI1CACRL.crl",
"third_party/nist-pkits/crls/nameConstraintsURI2CACRL.crl",
"third_party/nist-pkits/crls/onlyContainsAttributeCertsCACRL.crl",
"third_party/nist-pkits/crls/onlyContainsCACertsCACRL.crl",
"third_party/nist-pkits/crls/onlyContainsUserCertsCACRL.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA1compromiseCRL.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA1otherreasonsCRL.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA2CRL1.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA2CRL2.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA3compromiseCRL.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA3otherreasonsCRL.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA4compromiseCRL.crl",
"third_party/nist-pkits/crls/onlySomeReasonsCA4otherreasonsCRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint0CACRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint0subCA2CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint0subCACRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint1CACRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint1subCACRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6CACRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subCA0CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subCA1CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subCA4CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subsubCA00CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subsubCA11CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subsubCA41CRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA11XCRL.crl",
"third_party/nist-pkits/crls/pathLenConstraint6subsubsubCA41XCRL.crl",
"third_party/nist-pkits/crls/pre2000CRLnextUpdateCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy0CACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy0subCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy0subsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy0subsubsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy10CACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy10subCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy10subsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy10subsubsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy2CACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy2subCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy4CACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy4subCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy4subsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy4subsubsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy5CACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy5subCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy5subsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy5subsubsubCACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy7CACRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy7subCARE2CRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy7subsubCARE2RE4CRL.crl",
"third_party/nist-pkits/crls/requireExplicitPolicy7subsubsubCARE2RE4CRL.crl",
]
outputs = [
"{{bundle_resources_dir}}/" +
"{{source_root_relative_dir}}/{{source_file_part}}",
]
}
test("net_unittests") {
sources = [
"android/cellular_signal_strength_unittest.cc",
"android/dummy_spnego_authenticator.cc",
"android/dummy_spnego_authenticator.h",
"android/http_auth_negotiate_android_unittest.cc",
"android/network_change_notifier_android_unittest.cc",
"android/network_library_unittest.cc",
"android/traffic_stats_unittest.cc",
"base/address_family_unittest.cc",
"base/address_list_unittest.cc",
"base/address_tracker_linux_unittest.cc",
"base/arena_unittest.cc",
"base/backoff_entry_serializer_unittest.cc",
"base/backoff_entry_unittest.cc",
"base/chunked_upload_data_stream_unittest.cc",
"base/data_url_unittest.cc",
"base/datagram_buffer_unittest.cc",
"base/directory_lister_unittest.cc",
"base/directory_listing_unittest.cc",
"base/elements_upload_data_stream_unittest.cc",
"base/escape_unittest.cc",
"base/expiring_cache_unittest.cc",
"base/file_stream_unittest.cc",
"base/filename_util_unittest.cc",
"base/hex_utils_test.cc",
"base/host_mapping_rules_unittest.cc",
"base/host_port_pair_unittest.cc",
"base/interval_set_test.cc",
"base/interval_test.cc",
"base/ip_address_unittest.cc",
"base/ip_endpoint_unittest.cc",
"base/ip_pattern_unittest.cc",
"base/layered_network_delegate_unittest.cc",
"base/lookup_string_in_fixed_set_unittest.cc",
"base/mime_sniffer_unittest.cc",
"base/mime_util_unittest.cc",
"base/net_string_util_unittest.cc",
"base/network_activity_monitor_unittest.cc",
"base/network_change_notifier_chromeos_unittest.cc",
"base/network_change_notifier_unittest.cc",
"base/network_change_notifier_win_unittest.cc",
"base/network_interfaces_linux_unittest.cc",
"base/network_interfaces_unittest.cc",
"base/network_interfaces_win_unittest.cc",
"base/parse_number_unittest.cc",
"base/port_util_unittest.cc",
"base/prioritized_dispatcher_unittest.cc",
"base/prioritized_task_runner_unittest.cc",
"base/priority_queue_unittest.cc",
"base/registry_controlled_domains/registry_controlled_domain_unittest.cc",
"base/static_cookie_policy_unittest.cc",
"base/test_completion_callback_unittest.cc",
"base/test_proxy_delegate.cc",
"base/test_proxy_delegate.h",
"base/upload_bytes_element_reader_unittest.cc",
"base/upload_file_element_reader_unittest.cc",
"base/url_util_unittest.cc",
"cert/caching_cert_verifier_unittest.cc",
"cert/cert_verifier_unittest.cc",
"cert/cert_verify_proc_android_unittest.cc",
"cert/cert_verify_proc_ios_unittest.cc",
"cert/cert_verify_proc_mac_unittest.cc",
"cert/cert_verify_proc_unittest.cc",
"cert/crl_set_unittest.cc",
"cert/ct_log_response_parser_unittest.cc",
"cert/ct_log_verifier_unittest.cc",
"cert/ct_objects_extractor_unittest.cc",
"cert/ct_serialization_unittest.cc",
"cert/ev_root_ca_metadata_unittest.cc",
"cert/internal/cert_issuer_source_aia_unittest.cc",
"cert/internal/cert_issuer_source_static_unittest.cc",
"cert/internal/cert_issuer_source_sync_unittest.h",
"cert/internal/certificate_policies_unittest.cc",
"cert/internal/extended_key_usage_unittest.cc",
"cert/internal/general_names_unittest.cc",
"cert/internal/name_constraints_unittest.cc",
"cert/internal/nist_pkits_unittest.cc",
"cert/internal/nist_pkits_unittest.h",
"cert/internal/ocsp_unittest.cc",
"cert/internal/parse_certificate_unittest.cc",
"cert/internal/parse_name_unittest.cc",
"cert/internal/parsed_certificate_unittest.cc",
"cert/internal/path_builder_pkits_unittest.cc",
"cert/internal/path_builder_unittest.cc",
"cert/internal/path_builder_verify_certificate_chain_unittest.cc",
"cert/internal/revocation_checker_unittest.cc",
"cert/internal/signature_algorithm_unittest.cc",
"cert/internal/simple_path_builder_delegate_unittest.cc",
"cert/internal/test_helpers.cc",
"cert/internal/test_helpers.h",
"cert/internal/trust_store_collection_unittest.cc",
"cert/internal/trust_store_mac_unittest.cc",
"cert/internal/trust_store_nss_unittest.cc",
"cert/internal/verify_certificate_chain_pkits_unittest.cc",
"cert/internal/verify_certificate_chain_typed_unittest.h",
"cert/internal/verify_certificate_chain_unittest.cc",
"cert/internal/verify_name_match_unittest.cc",
"cert/internal/verify_signed_data_unittest.cc",
"cert/jwk_serializer_unittest.cc",
"cert/known_roots_unittest.cc",
"cert/merkle_audit_proof_unittest.cc",
"cert/merkle_tree_leaf_unittest.cc",
"cert/multi_log_ct_verifier_unittest.cc",
"cert/multi_threaded_cert_verifier_unittest.cc",
"cert/nss_cert_database_chromeos_unittest.cc",
"cert/nss_cert_database_unittest.cc",
"cert/nss_profile_filter_chromeos_unittest.cc",
"cert/pem_tokenizer_unittest.cc",
"cert/signed_certificate_timestamp_unittest.cc",
"cert/symantec_certs_unittest.cc",
"cert/test_root_certs_unittest.cc",
"cert/x509_cert_types_unittest.cc",
"cert/x509_certificate_unittest.cc",
"cert/x509_util_ios_and_mac_unittest.cc",
"cert/x509_util_nss_unittest.cc",
"cert/x509_util_unittest.cc",
"cert_net/cert_net_fetcher_impl_unittest.cc",
"cert_net/nss_ocsp_unittest.cc",
"cookies/canonical_cookie_unittest.cc",
"cookies/cookie_constants_unittest.cc",
"cookies/cookie_deletion_info_unittest.cc",
"cookies/cookie_monster_unittest.cc",
"cookies/cookie_util_unittest.cc",
"cookies/parsed_cookie_unittest.cc",
"der/encode_values_unittest.cc",
"der/input_unittest.cc",
"der/parse_values_unittest.cc",
"der/parser_unittest.cc",
"disk_cache/backend_cleanup_tracker_unittest.cc",
"disk_cache/backend_unittest.cc",
"disk_cache/blockfile/addr_unittest.cc",
"disk_cache/blockfile/bitmap_unittest.cc",
"disk_cache/blockfile/block_files_unittest.cc",
"disk_cache/blockfile/mapped_file_unittest.cc",
"disk_cache/blockfile/stats_unittest.cc",
"disk_cache/blockfile/storage_block_unittest.cc",
"disk_cache/cache_util_unittest.cc",
"disk_cache/entry_unittest.cc",
"disk_cache/simple/simple_file_tracker_unittest.cc",
"disk_cache/simple/simple_index_file_unittest.cc",
"disk_cache/simple/simple_index_unittest.cc",
"disk_cache/simple/simple_test_util.cc",
"disk_cache/simple/simple_test_util.h",
"disk_cache/simple/simple_util_unittest.cc",
"disk_cache/simple/simple_version_upgrade_unittest.cc",
"extras/sqlite/sqlite_channel_id_store_unittest.cc",
"extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
"filter/brotli_source_stream_unittest.cc",
"filter/filter_source_stream_unittest.cc",
"filter/gzip_source_stream_unittest.cc",
"ftp/ftp_auth_cache_unittest.cc",
"ftp/ftp_ctrl_response_buffer_unittest.cc",
"ftp/ftp_directory_listing_parser_ls_unittest.cc",
"ftp/ftp_directory_listing_parser_unittest.cc",
"ftp/ftp_directory_listing_parser_unittest.h",
"ftp/ftp_directory_listing_parser_vms_unittest.cc",
"ftp/ftp_directory_listing_parser_windows_unittest.cc",
"ftp/ftp_network_transaction_unittest.cc",
"ftp/ftp_util_unittest.cc",
"http/bidirectional_stream_unittest.cc",
"http/broken_alternative_services_unittest.cc",
"http/http_auth_cache_unittest.cc",
"http/http_auth_challenge_tokenizer_unittest.cc",
"http/http_auth_controller_unittest.cc",
"http/http_auth_filter_unittest.cc",
"http/http_auth_handler_basic_unittest.cc",
"http/http_auth_handler_digest_unittest.cc",
"http/http_auth_handler_factory_unittest.cc",
"http/http_auth_handler_mock.cc",
"http/http_auth_handler_mock.h",
"http/http_auth_handler_negotiate_unittest.cc",
"http/http_auth_handler_ntlm_portable_unittest.cc",
"http/http_auth_handler_unittest.cc",
"http/http_auth_multi_round_parse_unittest.cc",
"http/http_auth_preferences_unittest.cc",
"http/http_auth_sspi_win_unittest.cc",
"http/http_auth_unittest.cc",
"http/http_basic_state_unittest.cc",
"http/http_byte_range_unittest.cc",
"http/http_cache_lookup_manager_unittest.cc",
"http/http_cache_unittest.cc",
"http/http_cache_writers_unittest.cc",
"http/http_chunked_decoder_unittest.cc",
"http/http_content_disposition_unittest.cc",
"http/http_log_util_unittest.cc",
"http/http_network_layer_unittest.cc",
"http/http_network_transaction_ssl_unittest.cc",
"http/http_network_transaction_unittest.cc",
"http/http_proxy_client_socket_pool_unittest.cc",
"http/http_proxy_client_socket_unittest.cc",
"http/http_proxy_client_socket_wrapper_unittest.cc",
"http/http_request_headers_unittest.cc",
"http/http_response_body_drainer_unittest.cc",
"http/http_response_headers_unittest.cc",
"http/http_response_info_unittest.cc",
"http/http_security_headers_unittest.cc",
"http/http_server_properties_impl_unittest.cc",
"http/http_server_properties_manager_unittest.cc",
"http/http_status_code_unittest.cc",
"http/http_stream_factory_job_controller_unittest.cc",
"http/http_stream_factory_unittest.cc",
"http/http_stream_parser_unittest.cc",
"http/http_stream_request_unittest.cc",
"http/http_util_unittest.cc",
"http/http_vary_data_unittest.cc",
"http/mock_allow_http_auth_preferences.cc",
"http/mock_allow_http_auth_preferences.h",
"http/mock_http_cache.cc",
"http/mock_http_cache.h",
"http/mock_sspi_library_win.cc",
"http/mock_sspi_library_win.h",
"http/transport_security_persister_unittest.cc",
"http/transport_security_state_unittest.cc",
"http/url_security_manager_unittest.cc",
"log/file_net_log_observer_unittest.cc",
"log/net_log_capture_mode_unittest.cc",
"log/net_log_unittest.cc",
"log/net_log_util_unittest.cc",
"log/trace_net_log_observer_unittest.cc",
"nqe/effective_connection_type_unittest.cc",
"nqe/event_creator_unittest.cc",
"nqe/network_id_unittest.cc",
"nqe/network_qualities_prefs_manager_unittest.cc",
"nqe/network_quality_estimator_params_unittest.cc",
"nqe/network_quality_estimator_unittest.cc",
"nqe/network_quality_estimator_util_unittest.cc",
"nqe/network_quality_store_unittest.cc",
"nqe/observation_buffer_unittest.cc",
"nqe/socket_watcher_unittest.cc",
"nqe/throughput_analyzer_unittest.cc",
"ntlm/ntlm_buffer_reader_unittest.cc",
"ntlm/ntlm_buffer_writer_unittest.cc",
"ntlm/ntlm_client_unittest.cc",
"ntlm/ntlm_test_data.h",
"ntlm/ntlm_unittest.cc",
"proxy_resolution/dhcp_pac_file_adapter_fetcher_win_unittest.cc",
"proxy_resolution/dhcp_pac_file_fetcher_factory_unittest.cc",
"proxy_resolution/dhcp_pac_file_fetcher_win_unittest.cc",
"proxy_resolution/multi_threaded_proxy_resolver_unittest.cc",
"proxy_resolution/network_delegate_error_observer_unittest.cc",
"proxy_resolution/pac_file_decider_unittest.cc",
"proxy_resolution/pac_file_fetcher_impl_unittest.cc",
"proxy_resolution/pac_library_unittest.cc",
"proxy_resolution/proxy_bypass_rules_unittest.cc",
"proxy_resolution/proxy_config_service_android_unittest.cc",
"proxy_resolution/proxy_config_service_linux_unittest.cc",
"proxy_resolution/proxy_config_service_win_unittest.cc",
"proxy_resolution/proxy_config_unittest.cc",
"proxy_resolution/proxy_info_unittest.cc",
"proxy_resolution/proxy_list_unittest.cc",
"proxy_resolution/proxy_resolution_service_unittest.cc",
"proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
"proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
"proxy_resolution/proxy_resolver_v8_unittest.cc",
"proxy_resolution/proxy_server_unittest.cc",
"quic/bidirectional_stream_quic_impl_unittest.cc",
"quic/crypto/proof_test_chromium.cc",
"quic/crypto/proof_verifier_chromium_test.cc",
"quic/mock_quic_data.cc",
"quic/mock_quic_data.h",
"quic/network_connection_unittest.cc",
"quic/properties_based_quic_server_info_test.cc",
"quic/quic_address_mismatch_test.cc",
"quic/quic_chromium_alarm_factory_test.cc",
"quic/quic_chromium_client_session_peer.cc",
"quic/quic_chromium_client_session_peer.h",
"quic/quic_chromium_client_session_test.cc",
"quic/quic_chromium_client_stream_test.cc",
"quic/quic_chromium_connection_helper_test.cc",
"quic/quic_clock_skew_detector_test.cc",
"quic/quic_connectivity_probing_manager_test.cc",
"quic/quic_end_to_end_unittest.cc",
"quic/quic_http_stream_test.cc",
"quic/quic_http_utils_test.cc",
"quic/quic_network_transaction_unittest.cc",
"quic/quic_proxy_client_socket_unittest.cc",
"quic/quic_stream_factory_peer.cc",
"quic/quic_stream_factory_peer.h",
"quic/quic_stream_factory_test.cc",
"quic/quic_test_packet_maker.cc",
"quic/quic_test_packet_maker.h",
"quic/quic_utils_chromium_test.cc",
"socket/client_socket_pool_base_unittest.cc",
"socket/mock_client_socket_pool_manager.cc",
"socket/mock_client_socket_pool_manager.h",
"socket/sequenced_socket_data_unittest.cc",
"socket/socket_bio_adapter_unittest.cc",
"socket/socket_tag_unittest.cc",
"socket/socks5_client_socket_unittest.cc",
"socket/socks_client_socket_pool_unittest.cc",
"socket/socks_client_socket_unittest.cc",
"socket/ssl_client_socket_pool_unittest.cc",
"socket/ssl_client_socket_unittest.cc",
"socket/ssl_server_socket_unittest.cc",
"socket/tcp_client_socket_unittest.cc",
"socket/tcp_server_socket_unittest.cc",
"socket/tcp_socket_unittest.cc",
"socket/transport_client_socket_pool_test_util.cc",
"socket/transport_client_socket_pool_test_util.h",
"socket/transport_client_socket_pool_unittest.cc",
"socket/transport_client_socket_unittest.cc",
"socket/udp_socket_unittest.cc",
"socket/websocket_endpoint_lock_manager_unittest.cc",
"socket/websocket_transport_client_socket_pool_unittest.cc",
"spdy/bidirectional_stream_spdy_impl_unittest.cc",
"spdy/buffered_spdy_framer_unittest.cc",
"spdy/fuzzing/hpack_fuzz_util_test.cc",
"spdy/header_coalescer_test.cc",
"spdy/http2_priority_dependencies_unittest.cc",
"spdy/http2_push_promise_index_test.cc",
"spdy/spdy_buffer_unittest.cc",
"spdy/spdy_http_stream_unittest.cc",
"spdy/spdy_http_utils_unittest.cc",
"spdy/spdy_log_util_unittest.cc",
"spdy/spdy_network_transaction_unittest.cc",
"spdy/spdy_proxy_client_socket_unittest.cc",
"spdy/spdy_read_queue_unittest.cc",
"spdy/spdy_session_pool_unittest.cc",
"spdy/spdy_session_test_util.cc",
"spdy/spdy_session_test_util.h",
"spdy/spdy_session_unittest.cc",
"spdy/spdy_stream_test_util.cc",
"spdy/spdy_stream_test_util.h",
"spdy/spdy_stream_unittest.cc",
"spdy/spdy_write_queue_unittest.cc",
"ssl/channel_id_service_unittest.cc",
"ssl/client_cert_identity_unittest.cc",
"ssl/client_cert_store_mac_unittest.cc",
"ssl/client_cert_store_nss_unittest.cc",
"ssl/client_cert_store_unittest-inl.h",
"ssl/client_cert_store_win_unittest.cc",
"ssl/default_channel_id_store_unittest.cc",
"ssl/ssl_cipher_suite_names_unittest.cc",
"ssl/ssl_client_auth_cache_unittest.cc",
"ssl/ssl_client_session_cache_unittest.cc",
"ssl/ssl_config_service_unittest.cc",
"ssl/ssl_config_unittest.cc",
"ssl/ssl_connection_status_flags_unittest.cc",
"ssl/ssl_platform_key_android_unittest.cc",
"ssl/ssl_platform_key_mac_unittest.cc",
"ssl/ssl_platform_key_nss_unittest.cc",
"ssl/ssl_platform_key_util_unittest.cc",
"ssl/ssl_platform_key_win_unittest.cc",
"test/embedded_test_server/embedded_test_server_unittest.cc",
"test/embedded_test_server/http_request_unittest.cc",
"test/embedded_test_server/http_response_unittest.cc",
"test/run_all_unittests.cc",
"test/tcp_socket_proxy_unittest.cc",
"third_party/http2/decoder/decode_buffer_test.cc",
"third_party/http2/decoder/decode_http2_structures_test.cc",
"third_party/http2/decoder/frame_decoder_state_test_util.cc",
"third_party/http2/decoder/frame_decoder_state_test_util.h",
"third_party/http2/decoder/http2_frame_decoder_listener_test_util.cc",
"third_party/http2/decoder/http2_frame_decoder_listener_test_util.h",
"third_party/http2/decoder/http2_frame_decoder_test.cc",
"third_party/http2/decoder/http2_structure_decoder_test.cc",
"third_party/http2/decoder/http2_structure_decoder_test_util.cc",
"third_party/http2/decoder/http2_structure_decoder_test_util.h",
"third_party/http2/decoder/payload_decoders/altsvc_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/continuation_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/data_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/goaway_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/headers_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/payload_decoder_base_test_util.cc",
"third_party/http2/decoder/payload_decoders/payload_decoder_base_test_util.h",
"third_party/http2/decoder/payload_decoders/ping_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/priority_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/push_promise_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/rst_stream_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/settings_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/unknown_payload_decoder_test.cc",
"third_party/http2/decoder/payload_decoders/window_update_payload_decoder_test.cc",
"third_party/http2/hpack/decoder/hpack_block_collector.cc",
"third_party/http2/hpack/decoder/hpack_block_collector.h",
"third_party/http2/hpack/decoder/hpack_block_decoder_test.cc",
"third_party/http2/hpack/decoder/hpack_decoder_state_test.cc",
"third_party/http2/hpack/decoder/hpack_decoder_string_buffer_test.cc",
"third_party/http2/hpack/decoder/hpack_decoder_tables_test.cc",
"third_party/http2/hpack/decoder/hpack_decoder_test.cc",
"third_party/http2/hpack/decoder/hpack_entry_collector.cc",
"third_party/http2/hpack/decoder/hpack_entry_collector.h",
"third_party/http2/hpack/decoder/hpack_entry_decoder_test.cc",
"third_party/http2/hpack/decoder/hpack_entry_type_decoder_test.cc",
"third_party/http2/hpack/decoder/hpack_string_collector.cc",
"third_party/http2/hpack/decoder/hpack_string_collector.h",
"third_party/http2/hpack/decoder/hpack_string_decoder_test.cc",
"third_party/http2/hpack/decoder/hpack_whole_entry_buffer_test.cc",
"third_party/http2/hpack/hpack_string_test.cc",
"third_party/http2/hpack/http2_hpack_constants_test.cc",
"third_party/http2/hpack/huffman/hpack_huffman_decoder_test.cc",
"third_party/http2/hpack/huffman/hpack_huffman_encoder_test.cc",
"third_party/http2/hpack/huffman/hpack_huffman_transcoder_test.cc",
"third_party/http2/hpack/tools/hpack_block_builder.cc",
"third_party/http2/hpack/tools/hpack_block_builder.h",
"third_party/http2/hpack/tools/hpack_block_builder_test.cc",
"third_party/http2/hpack/tools/hpack_example.cc",
"third_party/http2/hpack/tools/hpack_example.h",
"third_party/http2/hpack/varint/hpack_varint_decoder_test.cc",
"third_party/http2/hpack/varint/hpack_varint_encoder_test.cc",
"third_party/http2/hpack/varint/hpack_varint_round_trip_test.cc",
"third_party/http2/http2_constants_test.cc",
"third_party/http2/http2_constants_test_util.cc",
"third_party/http2/http2_constants_test_util.h",
"third_party/http2/http2_structures_test.cc",
"third_party/http2/http2_structures_test_util.cc",
"third_party/http2/http2_structures_test_util.h",
"third_party/http2/platform/api/http2_mock_log.h",
"third_party/http2/platform/api/http2_string_utils_test.cc",
"third_party/http2/platform/api/http2_test_helpers.h",
"third_party/http2/platform/impl/http2_mock_log_impl.h",
"third_party/http2/platform/impl/http2_test_helpers_impl.cc",
"third_party/http2/platform/impl/http2_test_helpers_impl.h",
"third_party/http2/test_tools/frame_parts.cc",
"third_party/http2/test_tools/frame_parts.h",
"third_party/http2/test_tools/frame_parts_collector.cc",
"third_party/http2/test_tools/frame_parts_collector.h",
"third_party/http2/test_tools/frame_parts_collector_listener.cc",
"third_party/http2/test_tools/frame_parts_collector_listener.h",
"third_party/http2/test_tools/http2_random.cc",
"third_party/http2/test_tools/http2_random.h",
"third_party/http2/test_tools/http2_random_test.cc",
"third_party/http2/tools/http2_frame_builder.cc",
"third_party/http2/tools/http2_frame_builder.h",
"third_party/http2/tools/random_decoder_test.cc",
"third_party/http2/tools/random_decoder_test.h",
"third_party/http2/tools/random_util.cc",
"third_party/http2/tools/random_util.h",
"third_party/nist-pkits/pkits_testcases-inl.h",
"third_party/quic/core/congestion_control/bandwidth_sampler_test.cc",
"third_party/quic/core/congestion_control/bbr_sender_test.cc",
"third_party/quic/core/congestion_control/cubic_bytes_test.cc",
"third_party/quic/core/congestion_control/general_loss_algorithm_test.cc",
"third_party/quic/core/congestion_control/hybrid_slow_start_test.cc",
"third_party/quic/core/congestion_control/pacing_sender_test.cc",
"third_party/quic/core/congestion_control/prr_sender_test.cc",
"third_party/quic/core/congestion_control/rtt_stats_test.cc",
"third_party/quic/core/congestion_control/send_algorithm_test.cc",
"third_party/quic/core/congestion_control/windowed_filter_test.cc",
"third_party/quic/core/crypto/aes_128_gcm_12_decrypter_test.cc",
"third_party/quic/core/crypto/aes_128_gcm_12_encrypter_test.cc",
"third_party/quic/core/crypto/aes_128_gcm_decrypter_test.cc",
"third_party/quic/core/crypto/aes_128_gcm_encrypter_test.cc",
"third_party/quic/core/crypto/aes_256_gcm_decrypter_test.cc",
"third_party/quic/core/crypto/aes_256_gcm_encrypter_test.cc",
"third_party/quic/core/crypto/cert_compressor_test.cc",
"third_party/quic/core/crypto/chacha20_poly1305_decrypter_test.cc",
"third_party/quic/core/crypto/chacha20_poly1305_encrypter_test.cc",
"third_party/quic/core/crypto/chacha20_poly1305_tls_decrypter_test.cc",
"third_party/quic/core/crypto/chacha20_poly1305_tls_encrypter_test.cc",
"third_party/quic/core/crypto/channel_id_test.cc",
"third_party/quic/core/crypto/common_cert_set_test.cc",
"third_party/quic/core/crypto/crypto_framer_test.cc",
"third_party/quic/core/crypto/crypto_handshake_message_test.cc",
"third_party/quic/core/crypto/crypto_secret_boxer_test.cc",
"third_party/quic/core/crypto/crypto_server_test.cc",
"third_party/quic/core/crypto/crypto_utils_test.cc",
"third_party/quic/core/crypto/curve25519_key_exchange_test.cc",
"third_party/quic/core/crypto/null_decrypter_test.cc",
"third_party/quic/core/crypto/null_encrypter_test.cc",
"third_party/quic/core/crypto/p256_key_exchange_test.cc",
"third_party/quic/core/crypto/quic_compressed_certs_cache_test.cc",
"third_party/quic/core/crypto/quic_crypto_client_config_test.cc",
"third_party/quic/core/crypto/quic_crypto_server_config_test.cc",
"third_party/quic/core/crypto/quic_hkdf_test.cc",
"third_party/quic/core/crypto/quic_random_test.cc",
"third_party/quic/core/crypto/quic_tls_adapter_test.cc",
"third_party/quic/core/crypto/transport_parameters_test.cc",
"third_party/quic/core/frames/quic_frames_test.cc",
"third_party/quic/core/http/http_decoder_test.cc",
"third_party/quic/core/http/http_encoder_test.cc",
"third_party/quic/core/http/quic_client_promised_info_test.cc",
"third_party/quic/core/http/quic_client_push_promise_index_test.cc",
"third_party/quic/core/http/quic_header_list_test.cc",
"third_party/quic/core/http/quic_headers_stream_test.cc",
"third_party/quic/core/http/quic_server_session_base_test.cc",
"third_party/quic/core/http/quic_spdy_session_test.cc",
"third_party/quic/core/http/quic_spdy_stream_test.cc",
"third_party/quic/core/http/spdy_utils_test.cc",
"third_party/quic/core/legacy_quic_stream_id_manager_test.cc",
"third_party/quic/core/packet_number_indexed_queue_test.cc",
"third_party/quic/core/qpack/qpack_decoder_test.cc",
"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_stream_receiver_test.cc",
"third_party/quic/core/qpack/qpack_encoder_stream_sender_test.cc",
"third_party/quic/core/qpack/qpack_encoder_test.cc",
"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_header_table_test.cc",
"third_party/quic/core/qpack/qpack_instruction_decoder_test.cc",
"third_party/quic/core/qpack/qpack_instruction_encoder_test.cc",
"third_party/quic/core/qpack/qpack_round_trip_test.cc",
"third_party/quic/core/qpack/qpack_static_table_test.cc",
"third_party/quic/core/qpack/qpack_test_utils.cc",
"third_party/quic/core/qpack/qpack_test_utils.h",
"third_party/quic/core/quic_alarm_test.cc",
"third_party/quic/core/quic_arena_scoped_ptr_test.cc",
"third_party/quic/core/quic_bandwidth_test.cc",
"third_party/quic/core/quic_buffered_packet_store_test.cc",
"third_party/quic/core/quic_config_test.cc",
"third_party/quic/core/quic_connection_test.cc",
"third_party/quic/core/quic_control_frame_manager_test.cc",
"third_party/quic/core/quic_crypto_client_stream_test.cc",
"third_party/quic/core/quic_crypto_server_stream_test.cc",
"third_party/quic/core/quic_crypto_stream_test.cc",
"third_party/quic/core/quic_data_writer_test.cc",
"third_party/quic/core/quic_dispatcher_test.cc",
"third_party/quic/core/quic_error_codes_test.cc",
"third_party/quic/core/quic_flow_controller_test.cc",
"third_party/quic/core/quic_framer_test.cc",
"third_party/quic/core/quic_ietf_framer_test.cc",
"third_party/quic/core/quic_lru_cache_test.cc",
"third_party/quic/core/quic_one_block_arena_test.cc",
"third_party/quic/core/quic_packet_creator_test.cc",
"third_party/quic/core/quic_packet_generator_test.cc",
"third_party/quic/core/quic_received_packet_manager_test.cc",
"third_party/quic/core/quic_sent_packet_manager_test.cc",
"third_party/quic/core/quic_server_id_test.cc",
"third_party/quic/core/quic_session_test.cc",
"third_party/quic/core/quic_simple_buffer_allocator_test.cc",
"third_party/quic/core/quic_socket_address_coder_test.cc",
"third_party/quic/core/quic_stream_id_manager_test.cc",
"third_party/quic/core/quic_stream_send_buffer_test.cc",
"third_party/quic/core/quic_stream_sequencer_buffer_test.cc",
"third_party/quic/core/quic_stream_sequencer_test.cc",
"third_party/quic/core/quic_stream_test.cc",
"third_party/quic/core/quic_sustained_bandwidth_recorder_test.cc",
"third_party/quic/core/quic_tag_test.cc",
"third_party/quic/core/quic_time_test.cc",
"third_party/quic/core/quic_time_wait_list_manager_test.cc",
"third_party/quic/core/quic_trace_visitor_test.cc",
"third_party/quic/core/quic_unacked_packet_map_test.cc",
"third_party/quic/core/quic_utils_test.cc",
"third_party/quic/core/quic_version_manager_test.cc",
"third_party/quic/core/quic_versions_test.cc",
"third_party/quic/core/quic_write_blocked_list_test.cc",
"third_party/quic/core/tls_handshaker_test.cc",
"third_party/quic/platform/api/quic_containers_test.cc",
"third_party/quic/platform/api/quic_endian_test.cc",
"third_party/quic/platform/api/quic_hostname_utils_test.cc",
"third_party/quic/platform/api/quic_mem_slice_span_test.cc",
"third_party/quic/platform/api/quic_mem_slice_storage_test.cc",
"third_party/quic/platform/api/quic_mem_slice_test.cc",
"third_party/quic/platform/api/quic_reference_counted_test.cc",
"third_party/quic/platform/api/quic_singleton_test.cc",
"third_party/quic/platform/api/quic_str_cat_test.cc",
"third_party/quic/platform/api/quic_text_utils_test.cc",
"third_party/quic/platform/impl/quic_chromium_clock_test.cc",
"third_party/quic/platform/impl/quic_uint128_impl_unittest.cc",
"third_party/quic/quartc/quartc_session_test.cc",
"third_party/quic/quartc/quartc_stream_test.cc",
"third_party/quic/quartc/simulated_packet_transport.cc",
"third_party/quic/quartc/simulated_packet_transport.h",
"third_party/quic/quartc/simulated_packet_transport_test.cc",
"third_party/quic/test_tools/crypto_test_utils_test.cc",
"third_party/quic/test_tools/mock_quic_time_wait_list_manager.cc",
"third_party/quic/test_tools/mock_quic_time_wait_list_manager.h",
"third_party/quic/test_tools/quic_test_utils_test.cc",
"third_party/quic/test_tools/simple_session_notifier_test.cc",
"third_party/quic/test_tools/simulator/quic_endpoint_test.cc",
"third_party/quic/test_tools/simulator/simulator_test.cc",
"third_party/spdy/core/array_output_buffer.cc",
"third_party/spdy/core/array_output_buffer.h",
"third_party/spdy/core/array_output_buffer_test.cc",
"third_party/spdy/core/hpack/hpack_decoder_adapter_test.cc",
"third_party/spdy/core/hpack/hpack_encoder_test.cc",
"third_party/spdy/core/hpack/hpack_entry_test.cc",
"third_party/spdy/core/hpack/hpack_header_table_test.cc",
"third_party/spdy/core/hpack/hpack_huffman_table_test.cc",
"third_party/spdy/core/hpack/hpack_output_stream_test.cc",
"third_party/spdy/core/hpack/hpack_round_trip_test.cc",
"third_party/spdy/core/hpack/hpack_static_table_test.cc",
"third_party/spdy/core/mock_spdy_framer_visitor.cc",
"third_party/spdy/core/mock_spdy_framer_visitor.h",
"third_party/spdy/core/priority_write_scheduler_test.cc",
"third_party/spdy/core/spdy_alt_svc_wire_format_test.cc",
"third_party/spdy/core/spdy_deframer_visitor.cc",
"third_party/spdy/core/spdy_deframer_visitor.h",
"third_party/spdy/core/spdy_deframer_visitor_test.cc",
"third_party/spdy/core/spdy_frame_builder_test.cc",
"third_party/spdy/core/spdy_frame_reader_test.cc",
"third_party/spdy/core/spdy_framer_test.cc",
"third_party/spdy/core/spdy_header_block_test.cc",
"third_party/spdy/core/spdy_no_op_visitor.cc",
"third_party/spdy/core/spdy_no_op_visitor.h",
"third_party/spdy/core/spdy_pinnable_buffer_piece_test.cc",
"third_party/spdy/core/spdy_prefixed_buffer_reader_test.cc",
"third_party/spdy/core/spdy_protocol_test.cc",
"third_party/spdy/core/spdy_protocol_test_utils.cc",
"third_party/spdy/core/spdy_protocol_test_utils.h",
"third_party/spdy/core/spdy_test_utils.cc",
"third_party/spdy/core/spdy_test_utils.h",
"third_party/spdy/platform/api/spdy_mem_slice_test.cc",
"third_party/spdy/platform/api/spdy_string_utils_test.cc",
"third_party/uri_template/uri_template_test.cc",
"tools/content_decoder_tool/content_decoder_tool.cc",
"tools/content_decoder_tool/content_decoder_tool.h",
"tools/content_decoder_tool/content_decoder_tool_unittest.cc",
"tools/quic/quic_simple_client_test.cc",
"tools/tld_cleanup/tld_cleanup_util_unittest.cc",
"url_request/redirect_info_unittest.cc",
"url_request/redirect_util_unittest.cc",
"url_request/report_sender_unittest.cc",
"url_request/url_fetcher_impl_unittest.cc",
"url_request/url_fetcher_response_writer_unittest.cc",
"url_request/url_request_context_builder_unittest.cc",
"url_request/url_request_context_unittest.cc",
"url_request/url_request_data_job_unittest.cc",
"url_request/url_request_file_dir_job_unittest.cc",
"url_request/url_request_file_job_unittest.cc",
"url_request/url_request_filter_unittest.cc",
"url_request/url_request_ftp_job_unittest.cc",
"url_request/url_request_http_job_unittest.cc",
"url_request/url_request_job_factory_impl_unittest.cc",
"url_request/url_request_job_unittest.cc",
"url_request/url_request_quic_unittest.cc",
"url_request/url_request_simple_job_unittest.cc",
"url_request/url_request_throttler_simulation_unittest.cc",
"url_request/url_request_throttler_test_support.cc",
"url_request/url_request_throttler_test_support.h",
"url_request/url_request_throttler_unittest.cc",
"url_request/url_request_unittest.cc",
"url_request/view_cache_helper_unittest.cc",
]
net_unfiltered_sources = []
configs += [ "//build/config:precompiled_headers" ]
defines = []
deps = [
":net",
":quic_test_tools",
":simple_quic_tools",
":spdy_test_tools",
":test_support",
"//base",
"//base/third_party/dynamic_annotations",
"//crypto",
"//crypto:platform",
"//crypto:test_support",
"//net/base/registry_controlled_domains",
"//net/dns:tests",
"//net/dns/public:tests",
"//net/http:transport_security_state_unittest_data",
"//net/http:transport_security_state_unittest_data_default",
"//testing/gmock",
"//testing/gtest",
"//third_party/protobuf:protobuf_lite",
"//third_party/zlib",
"//url",
"//url:url_features",
]
if (enable_websockets) {
deps += [ "//net/server:tests" ]
}
if (is_posix || is_fuchsia) {
sources += [ "socket/udp_socket_posix_unittest.cc" ]
}
if (enable_reporting) {
sources += [
"network_error_logging/network_error_logging_end_to_end_test.cc",
"network_error_logging/network_error_logging_service_unittest.cc",
"reporting/reporting_browsing_data_remover_unittest.cc",
"reporting/reporting_cache_unittest.cc",
"reporting/reporting_delivery_agent_unittest.cc",
"reporting/reporting_endpoint_manager_unittest.cc",
"reporting/reporting_garbage_collector_unittest.cc",
"reporting/reporting_header_parser_unittest.cc",
"reporting/reporting_network_change_observer_unittest.cc",
"reporting/reporting_service_unittest.cc",
"reporting/reporting_uploader_unittest.cc",
]
}
if (!is_proto_quic) {
deps += [
":extras",
"//base:i18n",
"//sql",
]
} else {
sources -= [
"extras/sqlite/sqlite_channel_id_store_unittest.cc",
"extras/sqlite/sqlite_persistent_cookie_store_unittest.cc",
]
}
data = []
data_deps = [
"third_party/nist-pkits/",
]
if (is_linux || is_mac || is_win || is_fuchsia) {
deps += [
"//third_party/pyftpdlib/",
"//third_party/pywebsocket/",
"//third_party/tlslite/",
]
data_deps += [
"//third_party/pyftpdlib/",
"//third_party/pywebsocket/",
"//third_party/tlslite/",
]
data += [
"tools/testserver/",
"//third_party/pyftpdlib/",
"//third_party/pywebsocket/src/mod_pywebsocket/",
"//third_party/tlslite/",
]
}
if (is_desktop_linux) {
deps += [ ":epoll_quic_tools" ]
}
if (is_linux) {
sources += [
"third_party/quic/core/chlo_extractor_test.cc",
"third_party/quic/core/http/end_to_end_test.cc",
"third_party/quic/core/http/quic_spdy_client_session_test.cc",
"third_party/quic/core/http/quic_spdy_client_stream_test.cc",
"third_party/quic/core/http/quic_spdy_server_stream_base_test.cc",
"third_party/quic/core/quic_epoll_alarm_factory_test.cc",
"third_party/quic/core/quic_epoll_connection_helper_test.cc",
"third_party/quic/core/stateless_rejector_test.cc",
"third_party/quic/platform/impl/batch_writer/quic_batch_writer_buffer_test.cc",
"third_party/quic/platform/impl/batch_writer/quic_batch_writer_test.h",
"third_party/quic/platform/impl/batch_writer/quic_gso_batch_writer_test.cc",
"third_party/quic/platform/impl/batch_writer/quic_sendmmsg_batch_writer_test.cc",
"third_party/quic/platform/impl/quic_epoll_clock_test.cc",
"third_party/quic/platform/impl/quic_linux_socket_utils_test.cc",
"third_party/quic/platform/impl/quic_socket_utils_test.cc",
"third_party/quic/tools/quic_client_test.cc",
"third_party/quic/tools/quic_memory_cache_backend_test.cc",
"third_party/quic/tools/quic_server_test.cc",
"third_party/quic/tools/quic_simple_server_session_test.cc",
"third_party/quic/tools/quic_simple_server_stream_test.cc",
"third_party/quic/tools/quic_url_test.cc",
"tools/quic/quic_http_proxy_backend_stream_test.cc",
"tools/quic/quic_http_proxy_backend_test.cc",
"tools/quic/quic_simple_server_session_helper_test.cc",
"tools/quic/quic_simple_server_test.cc",
]
deps += [
":epoll_quic_tools",
":epoll_server",
]
}
if (is_mac || is_ios) {
sources += [ "base/mac/url_conversions_unittest.mm" ]
}
if (is_mac) {
libs = [ "Security.framework" ]
}
if (is_chromeos) {
sources -= [ "proxy_resolution/proxy_config_service_linux_unittest.cc" ]
}
if (!is_proto_quic && v8_use_external_startup_data) {
deps += [ "//gin" ]
}
if (is_win) {
sources -= [
"http/http_auth_handler_ntlm_portable_unittest.cc",
"ntlm/ntlm_buffer_reader_unittest.cc",
"ntlm/ntlm_buffer_writer_unittest.cc",
"ntlm/ntlm_client_unittest.cc",
"ntlm/ntlm_test_data.h",
"ntlm/ntlm_unittest.cc",
]
}
if (enable_python_utils) {
sources += [ "test/python_utils_unittest.cc" ]
}
if (is_fuchsia) {
use_test_server = true
deps += [
"//third_party/fuchsia-sdk/sdk:fidl_cpp",
"//third_party/fuchsia-sdk/sdk:netstack",
]
sources += [ "base/network_change_notifier_fuchsia_unittest.cc" ]
}
if (!use_nss_certs) {
sources -= [
"cert/internal/trust_store_nss_unittest.cc",
"cert/nss_cert_database_unittest.cc",
"cert/x509_util_nss_unittest.cc",
"ssl/client_cert_store_nss_unittest.cc",
"ssl/ssl_platform_key_nss_unittest.cc",
]
if (is_chromeos) { # Already removed for all non-ChromeOS builds.
sources -= [
"cert/nss_cert_database_chromeos_unittest.cc",
"cert/nss_profile_filter_chromeos_unittest.cc",
]
}
}
# These are excluded on Android, because the actual Kerberos support, which
# these test, is in a separate app on Android.
if (use_kerberos && ((is_posix && !is_android) || is_fuchsia)) {
sources += [
"http/http_auth_gssapi_posix_unittest.cc",
"http/mock_gssapi_library_posix.cc",
"http/mock_gssapi_library_posix.h",
]
}
if (!use_kerberos) {
sources -= [ "http/http_auth_handler_negotiate_unittest.cc" ]
}
if (!use_nss_certs) {
# Only include this test when using NSS for cert verification.
sources -= [ "cert_net/nss_ocsp_unittest.cc" ]
}
if (enable_websockets) {
sources += [
"websockets/websocket_basic_handshake_stream_test.cc",
"websockets/websocket_basic_stream_adapters_test.cc",
"websockets/websocket_basic_stream_test.cc",
"websockets/websocket_channel_test.cc",
"websockets/websocket_deflate_parameters_test.cc",
"websockets/websocket_deflate_predictor_impl_test.cc",
"websockets/websocket_deflate_stream_test.cc",
"websockets/websocket_deflater_test.cc",
"websockets/websocket_end_to_end_test.cc",
"websockets/websocket_errors_test.cc",
"websockets/websocket_extension_parser_test.cc",
"websockets/websocket_extension_test.cc",
"websockets/websocket_frame_parser_test.cc",
"websockets/websocket_frame_test.cc",
"websockets/websocket_handshake_challenge_test.cc",
"websockets/websocket_handshake_stream_create_helper_test.cc",
"websockets/websocket_inflater_test.cc",
"websockets/websocket_stream_cookie_test.cc",
"websockets/websocket_stream_create_test_base.cc",
"websockets/websocket_stream_create_test_base.h",
"websockets/websocket_stream_test.cc",
"websockets/websocket_test_util.cc",
"websockets/websocket_test_util.h",
]
}
if (disable_file_support) {
sources -= [
"base/directory_lister_unittest.cc",
"base/directory_listing_unittest.cc",
"url_request/url_request_file_dir_job_unittest.cc",
"url_request/url_request_file_job_unittest.cc",
]
}
if (disable_ftp_support) {
sources -= [
"ftp/ftp_auth_cache_unittest.cc",
"ftp/ftp_ctrl_response_buffer_unittest.cc",
"ftp/ftp_directory_listing_parser_ls_unittest.cc",
"ftp/ftp_directory_listing_parser_unittest.cc",
"ftp/ftp_directory_listing_parser_unittest.h",
"ftp/ftp_directory_listing_parser_vms_unittest.cc",
"ftp/ftp_directory_listing_parser_windows_unittest.cc",
"ftp/ftp_network_transaction_unittest.cc",
"ftp/ftp_util_unittest.cc",
"url_request/url_request_ftp_job_unittest.cc",
]
}
if (enable_built_in_dns) {
sources += [ "url_request/http_with_dns_over_https_unittest.cc" ]
}
if (use_v8_in_net) {
deps += [ ":net_with_v8" ]
} else {
sources -= [
"proxy_resolution/proxy_resolver_v8_tracing_unittest.cc",
"proxy_resolution/proxy_resolver_v8_tracing_wrapper_unittest.cc",
"proxy_resolution/proxy_resolver_v8_unittest.cc",
]
}
if (is_ios) {
sources -= [
# TODO(droger): The following tests are disabled because the
# implementation is missing or incomplete.
"disk_cache/backend_unittest.cc",
"disk_cache/blockfile/block_files_unittest.cc",
# Need to read input data files.
"socket/ssl_server_socket_unittest.cc",
"spdy/fuzzing/hpack_fuzz_util_test.cc",
# Need TestServer.
"cert_net/cert_net_fetcher_impl_unittest.cc",
"proxy_resolution/pac_file_fetcher_impl_unittest.cc",
"socket/ssl_client_socket_unittest.cc",
"url_request/url_fetcher_impl_unittest.cc",
"url_request/url_request_context_builder_unittest.cc",
]
net_unfiltered_sources += [ "cert/x509_util_ios_and_mac_unittest.cc" ]
bundle_deps = [ ":net_unittests_bundle_data" ]
}
if (enable_unix_sockets) {
sources += [
"socket/unix_domain_client_socket_posix_unittest.cc",
"socket/unix_domain_server_socket_posix_unittest.cc",
]
}
# Use getifaddrs() on POSIX platforms, except Linux and Android.
if (is_posix && !is_linux && !is_android) {
sources += [ "base/network_interfaces_getifaddrs_unittest.cc" ]
}
# Unit tests that aren't supported by the current ICU alternatives on Android.
if (is_android && use_platform_icu_alternatives) {
sources -= [
"base/filename_util_unittest.cc",
"base/url_util_unittest.cc",
"cert/x509_certificate_unittest.cc",
"proxy_resolution/proxy_resolver_v8_unittest.cc",
"url_request/url_request_job_unittest.cc",
]
deps += [ "//url:url_java" ]
}
# Unit tests that are not supported by the current ICU alternatives on iOS.
if (is_ios && use_platform_icu_alternatives) {
sources -= [
"base/filename_util_unittest.cc",
"base/url_util_unittest.cc",
"cert/x509_certificate_unittest.cc",
"http/http_auth_handler_basic_unittest.cc",
"http/http_auth_handler_digest_unittest.cc",
"http/http_auth_handler_factory_unittest.cc",
"http/http_auth_unittest.cc",
"http/http_content_disposition_unittest.cc",
"http/http_network_transaction_unittest.cc",
"http/http_proxy_client_socket_pool_unittest.cc",
"socket/ssl_client_socket_pool_unittest.cc",
"spdy/spdy_network_transaction_unittest.cc",
"spdy/spdy_proxy_client_socket_unittest.cc",
"url_request/url_request_job_unittest.cc",
"url_request/url_request_unittest.cc",
]
}
# Exclude brotli test if the support for brotli is disabled.
if (disable_brotli_filter) {
sources -= [ "filter/brotli_source_stream_unittest.cc" ]
}
if (is_android) {
data_deps += [ "//net/tools/testserver:testserver_py" ]
deps += [
":net_test_jni_headers",
"//base:base_java_unittest_support",
"//net/android:net_java",
"//net/android:net_java_test_support",
"//net/android:net_java_test_support_provider",
"//net/android:net_javatests",
"//net/android:net_unittests_apk_resources",
# TODO(mmenke): This depends on test_support_base, which depends on
# icu. Figure out a way to remove that dependency.
"//testing/android/native_test:native_test_native_code",
"//v8:v8_external_startup_data_assets",
]
android_manifest = "//net/android/unittest_support/AndroidManifest.xml"
set_sources_assignment_filter([])
sources += [
"base/address_tracker_linux_unittest.cc",
"base/network_interfaces_linux_unittest.cc",
]
set_sources_assignment_filter(sources_assignment_filter)
shard_timeout = 300
}
# Symbols for crashes when running tests on swarming.
if (symbol_level > 0) {
if (is_win) {
data += [ "$root_out_dir/net_unittests.exe.pdb" ]
} else if (is_mac) {
# TODO(crbug.com/330301): make this conditional on mac_strip_release.
# data += [ "$root_out_dir/net_unittests.dSYM/" ]
}
}
if (is_win) {
libs = [
"iphlpapi.lib",
"ncrypt.lib",
]
}
if (is_chromecast && use_nss_certs) {
sources -= [
"ssl/client_cert_store_nss_unittest.cc",
"ssl/ssl_platform_key_nss_unittest.cc",
]
}
# Include transport_security_state_generator tests.
if (host_toolchain == current_toolchain) {
deps += [
"//net/tools/huffman_trie:huffman_trie_generator_test_sources",
"//net/tools/transport_security_state_generator:transport_security_state_generator_test_sources",
]
}
# Add back some sources that were otherwise filtered out.
set_sources_assignment_filter([])
sources += net_unfiltered_sources
set_sources_assignment_filter(sources_assignment_filter)
}
# !is_android && !is_win && !is_mac
if (!is_ios && !is_proto_quic) {
# TODO(crbug.com/594965): this should be converted to "app" template and
# enabled on iOS too.
test("net_perftests") {
sources = [
"base/mime_sniffer_perftest.cc",
"cookies/cookie_monster_perftest.cc",
"disk_cache/disk_cache_perftest.cc",
"extras/sqlite/sqlite_persistent_cookie_store_perftest.cc",
"socket/udp_socket_perftest.cc",
"url_request/url_request_quic_perftest.cc",
]
deps = [
":extras",
":net",
":quic_test_tools",
":simple_quic_tools",
":test_support",
"//base",
"//base:i18n",
"//base/test:test_support_perf",
"//testing/gtest",
"//testing/perf",
"//url",
]
data_deps = [
# Needed for isolate script to execute.
"//testing:run_perf_test",
]
if (enable_websockets) {
sources += [ "websockets/websocket_frame_perftest.cc" ]
}
if (is_win) {
deps += [ "//build/win:default_exe_manifest" ]
}
}
}
# Fuzzers
# This has a global (InitGlobals) that must always be linked in, so
# must be a source set instead of a static library.
source_set("net_fuzzer_test_support") {
testonly = true
sources = [
"base/fuzzer_test_support.cc",
"filter/fuzzed_source_stream.cc",
"filter/fuzzed_source_stream.h",
"socket/fuzzed_datagram_client_socket.cc",
"socket/fuzzed_datagram_client_socket.h",
"socket/fuzzed_server_socket.cc",
"socket/fuzzed_server_socket.h",
"socket/fuzzed_socket.cc",
"socket/fuzzed_socket.h",
"socket/fuzzed_socket_factory.cc",
"socket/fuzzed_socket_factory.h",
]
public_deps = [
"//base/test:test_support",
"//net/dns:fuzzer_test_support",
]
deps = [
"//base",
"//base:i18n",
"//net",
]
allow_circular_includes_from = [ "//net/dns:fuzzer_test_support" ]
}
fuzzer_test("net_data_job_fuzzer") {
sources = [
"url_request/url_request_data_job_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
fuzzer_test("net_mime_sniffer_fuzzer") {
sources = [
"base/mime_sniffer_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_mime_sniffer_fuzzer.dict"
}
fuzzer_test("net_parse_proxy_list_pac_fuzzer") {
sources = [
"proxy_resolution/parse_proxy_list_pac_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
}
fuzzer_test("net_parse_proxy_list_fuzzer") {
sources = [
"proxy_resolution/parse_proxy_list_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
}
fuzzer_test("net_parse_proxy_bypass_rules_fuzzer") {
sources = [
"proxy_resolution/parse_proxy_bypass_rules_fuzzer.cc",
]
libfuzzer_options = [
# The proxy bypass rules aren't very complicated, so this is more than
# enough to explore the grammar. Allowing the length to become too large
# can result in test timeouts (https://crbug.com/813619).
"max_len=512",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
}
fuzzer_test("net_parse_proxy_rules_fuzzer") {
sources = [
"proxy_resolution/parse_proxy_rules_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
dict = "data/fuzzer_dictionaries/net_parse_proxy_bypass_rules_fuzzer.dict"
}
fuzzer_test("net_parse_data_url_fuzzer") {
sources = [
"base/parse_data_url_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_parse_data_url_fuzzer.dict"
}
fuzzer_test("net_parse_ip_pattern_fuzzer") {
sources = [
"base/parse_ip_pattern_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
}
fuzzer_test("net_get_domain_and_registry_fuzzer") {
sources = [
"base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_get_domain_and_registry_fuzzer.dict"
}
fuzzer_test("net_cert_verify_name_match_fuzzer") {
sources = [
"cert/internal/verify_name_match_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
}
fuzzer_test("net_cert_normalize_name_fuzzer") {
sources = [
"cert/internal/verify_name_match_normalizename_fuzzer.cc",
]
deps = [
"//base",
"//net",
]
}
fuzzer_test("net_cert_verify_name_in_subtree_fuzzer") {
sources = [
"cert/internal/verify_name_match_verifynameinsubtree_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
}
fuzzer_test("net_cert_parse_certificate_fuzzer") {
sources = [
"cert/internal/parse_certificate_fuzzer.cc",
]
deps = [
"//base",
"//net",
]
}
fuzzer_test("net_parse_cookie_line_fuzzer") {
sources = [
"cookies/parse_cookie_line_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
}
fuzzer_test("net_http_stream_parser_fuzzer") {
sources = [
"http/http_stream_parser_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_http_stream_parser_fuzzer.dict"
}
if (!is_win) {
fuzzer_test("net_ntlm_ntlm_client_fuzzer") {
sources = [
"ntlm/ntlm_client_fuzzer.cc",
"ntlm/ntlm_test_data.h",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_ntlm_ntlm_client_fuzzer.dict"
seed_corpus = "data/fuzzer_data/ntlm_client_fuzzer/"
}
}
if (!disable_brotli_filter) {
fuzzer_test("net_brotli_source_stream_fuzzer") {
sources = [
"filter/brotli_source_stream_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
}
fuzzer_test("net_gzip_source_stream_fuzzer") {
sources = [
"filter/gzip_source_stream_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
fuzzer_test("net_ftp_ctrl_response_fuzzer") {
sources = [
"ftp/ftp_ctrl_response_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
}
fuzzer_test("net_ftp_directory_listing_fuzzer") {
sources = [
"ftp/ftp_directory_listing_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
}
fuzzer_test("net_unescape_url_component_fuzzer") {
sources = [
"base/unescape_url_component_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
dict = "base/unescape_url_component_fuzzer.dict"
libfuzzer_options = [ "max_len = 2048" ]
}
fuzzer_test("net_websocket_deflate_stream_fuzzer") {
sources = [
"websockets/websocket_deflate_stream_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
libfuzzer_options = [ "max_len=512" ]
}
fuzzer_test("net_websocket_extension_parser_fuzzer") {
sources = [
"websockets/websocket_extension_parser_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
dict = "data/fuzzer_dictionaries/net_websocket_extension_parser_fuzzer.dict"
libfuzzer_options = [ "max_len = 256" ]
}
fuzzer_test("net_websocket_frame_parser_fuzzer") {
sources = [
"websockets/websocket_frame_parser_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
dict = "data/fuzzer_dictionaries/net_websocket_frame_parser_fuzzer.dict"
libfuzzer_options = [ "max_len=256" ]
}
fuzzer_test("net_http_chunked_decoder_fuzzer") {
sources = [
"http/http_chunked_decoder_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
}
fuzzer_test("net_http_proxy_client_socket_fuzzer") {
sources = [
"http/http_proxy_client_socket_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_http_proxy_client_socket_fuzzer.dict"
}
fuzzer_test("net_parse_url_hostname_to_address_fuzzer") {
sources = [
"base/parse_url_hostname_to_address_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
libfuzzer_options = [ "max_len=512" ]
seed_corpus = "data/fuzzer_data/hostnames/"
}
fuzzer_test("net_quic_crypto_framer_parse_message_fuzzer") {
sources = [
"quic/quic_crypto_framer_parse_message_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
}
fuzzer_test("net_quic_transport_parameters_fuzzer") {
sources = [
"quic/quic_transport_parameters_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
}
fuzzer_test("net_socks_client_socket_fuzzer") {
sources = [
"socket/socks_client_socket_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
fuzzer_test("net_socks5_client_socket_fuzzer") {
sources = [
"socket/socks5_client_socket_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
fuzzer_test("net_url_request_ftp_fuzzer") {
sources = [
"url_request/url_request_ftp_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_url_request_ftp_fuzzer.dict"
seed_corpus = "data/fuzzer_data/net_url_request_ftp_fuzzer/"
}
fuzzer_test("net_url_request_fuzzer") {
sources = [
"url_request/url_request_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict"
# TODO(crbug.com/820089): Figure out why this fuzzer's corpus explodes to
# 10 GB. For now, disable it on ClusterFuzz.
additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
}
fuzzer_test("net_auth_challenge_tokenizer_fuzzer") {
sources = [
"http/http_auth_challenge_tokenizer_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
fuzzer_test("net_http_security_headers_expect_ct_fuzzer") {
sources = [
"http/http_security_headers_expect_ct_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
"//url",
]
dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
seed_corpus = "data/fuzzer_data/http_security_headers/"
}
fuzzer_test("net_http_security_headers_hsts_fuzzer") {
sources = [
"http/http_security_headers_hsts_fuzzer.cc",
]
deps = [
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict"
seed_corpus = "data/fuzzer_data/http_security_headers/"
}
fuzzer_test("net_http_transport_security_state_static_fuzzer") {
sources = [
"http/transport_security_state_static_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//net",
]
dict =
"data/fuzzer_dictionaries/net_http_transport_security_state_fuzzer.dict"
}
fuzzer_test("net_spdy_session_fuzzer") {
sources = [
"spdy/spdy_session_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
"//net/data/ssl/certificates:generate_fuzzer_cert_includes",
]
dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
}
fuzzer_test("net_http2_frame_decoder_fuzzer") {
sources = [
"spdy/fuzzing/http2_frame_decoder_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
fuzzer_test("net_hpack_decoder_fuzzer") {
sources = [
"spdy/fuzzing/hpack_decoder_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":test_support",
"//base",
"//net",
]
}
proto_library("reporting_policy_proto") {
import_dirs = [ "//testing/libfuzzer/proto/" ]
sources = [
"reporting/reporting_policy.proto",
]
deps = [
"//testing/libfuzzer/proto:json_proto",
]
}
fuzzer_test("net_reporting_header_parser_fuzzer") {
sources = [
"reporting/reporting_header_parser_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":reporting_policy_proto",
":test_support",
"//base",
"//net",
"//testing/libfuzzer/proto:json_proto",
"//testing/libfuzzer/proto:json_proto_converter",
"//third_party/libprotobuf-mutator",
]
}
fuzzer_test("net_quic_stream_factory_fuzzer") {
sources = [
"quic/quic_stream_factory_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
":quic_test_tools",
":test_support",
"//net",
"//net/data/ssl/certificates:generate_fuzzer_cert_includes",
]
}
fuzzer_test("net_uri_template_fuzzer") {
sources = [
"third_party/uri_template/uri_template_fuzzer.cc",
]
deps = [
":net_fuzzer_test_support",
"//base",
"//net",
]
dict = "data/fuzzer_dictionaries/net_uri_template_fuzzer.dict"
}